From f2fa470740e300adfba042b46af2a6d9cc35fa90 Mon Sep 17 00:00:00 2001 From: Rudi Chiarito Date: Tue, 16 Aug 2016 15:45:23 -0700 Subject: [PATCH] Add ExternalName to ServiceSpec ExternalName allows kubedns to return CNAME records for external services. No proxying is involved. See original issue at https://github.com/kubernetes/kubernetes/issues/13748 Feature tracking at https://github.com/kubernetes/features/issues/33 --- api/swagger-spec/v1.json | 10 +- docs/api-reference/v1/definitions.html | 15 +- pkg/api/types.generated.go | 21363 +++++++++---------- pkg/api/types.go | 38 +- pkg/api/v1/defaults.go | 2 + pkg/api/v1/generated.pb.go | 703 +- pkg/api/v1/generated.proto | 34 +- pkg/api/v1/types.generated.go | 21906 ++++++++++---------- pkg/api/v1/types.go | 39 +- pkg/api/v1/types_swagger_doc_generated.go | 7 +- pkg/api/v1/zz_generated.conversion.go | 2 + pkg/api/v1/zz_generated.deepcopy.go | 1 + pkg/api/validation/validation.go | 27 +- pkg/api/validation/validation_test.go | 34 + pkg/api/zz_generated.deepcopy.go | 1 + 15 files changed, 22212 insertions(+), 21970 deletions(-) diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index b598ff06143c2..756148c85554c 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -19247,15 +19247,15 @@ }, "selector": { "type": "object", - "description": "This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If not specified, endpoints must be manually specified and the system will not automatically manage them. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview" + "description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview" }, "clusterIP": { "type": "string", - "description": "ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (\"\"), or a valid IP address. 'None' can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies" + "description": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies" }, "type": { "type": "string", - "description": "Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services" + "description": "type determines how to expose the service. Defaults to ClusterIP and only applies if clusterIP != \"None\". Valid options are ClusterIP, NodePort, LoadBalancer, ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview" }, "externalIPs": { "type": "array", @@ -19285,6 +19285,10 @@ "type": "string" }, "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md" + }, + "externalName": { + "type": "string", + "description": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName." } } }, diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index cdf5978a00201..03668f69c5f7b 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -7892,21 +7892,21 @@

v1.ServiceSpec

selector

-

This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If not specified, endpoints must be manually specified and the system will not automatically manage them. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview

+

Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview

false

object

clusterIP

-

ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (""), or a valid IP address. None can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies

+

clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies

false

string

type

-

Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services

+

type determines how to expose the service. Defaults to ClusterIP and only applies if clusterIP != "None". Valid options are ClusterIP, NodePort, LoadBalancer, ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview

false

string

@@ -7946,6 +7946,13 @@

v1.ServiceSpec

string array

+ +

externalName

+

externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName.

+

false

+

string

+ + @@ -8167,7 +8174,7 @@

any

diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index fcc399e283f39..b519dd375b911 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -31927,20 +31927,20 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2425 := !z.EncBinary() yy2arr2425 := z.EncBasicHandle().StructToArray - var yyq2425 [8]bool + var yyq2425 [9]bool _, _, _ = yysep2425, yyq2425, yy2arr2425 const yyr2425 bool = false yyq2425[0] = x.Type != "" yyq2425[3] = x.ClusterIP != "" - yyq2425[4] = len(x.ExternalIPs) != 0 - yyq2425[5] = x.LoadBalancerIP != "" - yyq2425[6] = x.SessionAffinity != "" - yyq2425[7] = len(x.LoadBalancerSourceRanges) != 0 + yyq2425[5] = len(x.ExternalIPs) != 0 + yyq2425[6] = x.LoadBalancerIP != "" + yyq2425[7] = x.SessionAffinity != "" + yyq2425[8] = len(x.LoadBalancerSourceRanges) != 0 var yynn2425 int if yyr2425 || yy2arr2425 { - r.EncodeArrayStart(8) + r.EncodeArrayStart(9) } else { - yynn2425 = 2 + yynn2425 = 3 for _, b := range yyq2425 { if b { yynn2425++ @@ -32045,12 +32045,31 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2425[4] { + yym2437 := z.EncBinary() + _ = yym2437 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("ExternalName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2438 := z.EncBinary() + _ = yym2438 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } + if yyr2425 || yy2arr2425 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2425[5] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2437 := z.EncBinary() - _ = yym2437 + yym2440 := z.EncBinary() + _ = yym2440 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -32060,15 +32079,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2425[4] { + if yyq2425[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2438 := z.EncBinary() - _ = yym2438 + yym2441 := z.EncBinary() + _ = yym2441 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -32078,9 +32097,9 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2425[5] { - yym2440 := z.EncBinary() - _ = yym2440 + if yyq2425[6] { + yym2443 := z.EncBinary() + _ = yym2443 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -32089,12 +32108,12 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2425[5] { + if yyq2425[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2441 := z.EncBinary() - _ = yym2441 + yym2444 := z.EncBinary() + _ = yym2444 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -32103,13 +32122,13 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2425[6] { + if yyq2425[7] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2425[6] { + if yyq2425[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -32118,12 +32137,12 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2425[7] { + if yyq2425[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2444 := z.EncBinary() - _ = yym2444 + yym2447 := z.EncBinary() + _ = yym2447 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -32133,15 +32152,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2425[7] { + if yyq2425[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2445 := z.EncBinary() - _ = yym2445 + yym2448 := z.EncBinary() + _ = yym2448 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -32162,25 +32181,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2446 := z.DecBinary() - _ = yym2446 + yym2449 := z.DecBinary() + _ = yym2449 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2447 := r.ContainerType() - if yyct2447 == codecSelferValueTypeMap1234 { - yyl2447 := r.ReadMapStart() - if yyl2447 == 0 { + yyct2450 := r.ContainerType() + if yyct2450 == codecSelferValueTypeMap1234 { + yyl2450 := r.ReadMapStart() + if yyl2450 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2447, d) + x.codecDecodeSelfFromMap(yyl2450, d) } - } else if yyct2447 == codecSelferValueTypeArray1234 { - yyl2447 := r.ReadArrayStart() - if yyl2447 == 0 { + } else if yyct2450 == codecSelferValueTypeArray1234 { + yyl2450 := r.ReadArrayStart() + if yyl2450 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2447, d) + x.codecDecodeSelfFromArray(yyl2450, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32192,12 +32211,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2448Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2448Slc - var yyhl2448 bool = l >= 0 - for yyj2448 := 0; ; yyj2448++ { - if yyhl2448 { - if yyj2448 >= l { + var yys2451Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2451Slc + var yyhl2451 bool = l >= 0 + for yyj2451 := 0; ; yyj2451++ { + if yyhl2451 { + if yyj2451 >= l { break } } else { @@ -32206,10 +32225,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2448Slc = r.DecodeBytes(yys2448Slc, true, true) - yys2448 := string(yys2448Slc) + yys2451Slc = r.DecodeBytes(yys2451Slc, true, true) + yys2451 := string(yys2451Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2448 { + switch yys2451 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -32220,24 +32239,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2450 := &x.Ports - yym2451 := z.DecBinary() - _ = yym2451 + yyv2453 := &x.Ports + yym2454 := z.DecBinary() + _ = yym2454 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2450), d) + h.decSliceServicePort((*[]ServicePort)(yyv2453), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2452 := &x.Selector - yym2453 := z.DecBinary() - _ = yym2453 + yyv2455 := &x.Selector + yym2456 := z.DecBinary() + _ = yym2456 if false { } else { - z.F.DecMapStringStringX(yyv2452, false, d) + z.F.DecMapStringStringX(yyv2455, false, d) } } case "clusterIP": @@ -32246,16 +32265,22 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } + case "ExternalName": + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } case "externalIPs": if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2455 := &x.ExternalIPs - yym2456 := z.DecBinary() - _ = yym2456 + yyv2459 := &x.ExternalIPs + yym2460 := z.DecBinary() + _ = yym2460 if false { } else { - z.F.DecSliceStringX(yyv2455, false, d) + z.F.DecSliceStringX(yyv2459, false, d) } } case "loadBalancerIP": @@ -32274,18 +32299,18 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2459 := &x.LoadBalancerSourceRanges - yym2460 := z.DecBinary() - _ = yym2460 + yyv2463 := &x.LoadBalancerSourceRanges + yym2464 := z.DecBinary() + _ = yym2464 if false { } else { - z.F.DecSliceStringX(yyv2459, false, d) + z.F.DecSliceStringX(yyv2463, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2448) - } // end switch yys2448 - } // end for yyj2448 + z.DecStructFieldNotFound(-1, yys2451) + } // end switch yys2451 + } // end for yyj2451 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32293,16 +32318,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2461 int - var yyb2461 bool - var yyhl2461 bool = l >= 0 - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + var yyj2465 int + var yyb2465 bool + var yyhl2465 bool = l >= 0 + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32312,13 +32337,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32326,21 +32351,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2463 := &x.Ports - yym2464 := z.DecBinary() - _ = yym2464 + yyv2467 := &x.Ports + yym2468 := z.DecBinary() + _ = yym2468 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2463), d) + h.decSliceServicePort((*[]ServicePort)(yyv2467), d) } } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32348,21 +32373,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2465 := &x.Selector - yym2466 := z.DecBinary() - _ = yym2466 + yyv2469 := &x.Selector + yym2470 := z.DecBinary() + _ = yym2470 if false { } else { - z.F.DecMapStringStringX(yyv2465, false, d) + z.F.DecMapStringStringX(yyv2469, false, d) } } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32372,13 +32397,29 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l + } else { + yyb2465 = r.CheckBreak() + } + if yyb2465 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32386,21 +32427,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2468 := &x.ExternalIPs - yym2469 := z.DecBinary() - _ = yym2469 + yyv2473 := &x.ExternalIPs + yym2474 := z.DecBinary() + _ = yym2474 if false { } else { - z.F.DecSliceStringX(yyv2468, false, d) + z.F.DecSliceStringX(yyv2473, false, d) } } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32410,13 +32451,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32426,13 +32467,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32440,26 +32481,26 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2472 := &x.LoadBalancerSourceRanges - yym2473 := z.DecBinary() - _ = yym2473 + yyv2477 := &x.LoadBalancerSourceRanges + yym2478 := z.DecBinary() + _ = yym2478 if false { } else { - z.F.DecSliceStringX(yyv2472, false, d) + z.F.DecSliceStringX(yyv2477, false, d) } } for { - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2461-1, "") + z.DecStructFieldNotFound(yyj2465-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32471,33 +32512,33 @@ func (x *ServicePort) 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 - var yynn2475 int - if yyr2475 || yy2arr2475 { + yysep2480 := !z.EncBinary() + yy2arr2480 := z.EncBasicHandle().StructToArray + var yyq2480 [5]bool + _, _, _ = yysep2480, yyq2480, yy2arr2480 + const yyr2480 bool = false + var yynn2480 int + if yyr2480 || yy2arr2480 { r.EncodeArrayStart(5) } else { - yynn2475 = 5 - for _, b := range yyq2475 { + yynn2480 = 5 + 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) - yym2477 := z.EncBinary() - _ = yym2477 + yym2482 := z.EncBinary() + _ = yym2482 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -32506,14 +32547,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2478 := z.EncBinary() - _ = yym2478 + yym2483 := z.EncBinary() + _ = yym2483 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -32522,10 +32563,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2481 := z.EncBinary() - _ = yym2481 + yym2486 := z.EncBinary() + _ = yym2486 if false { } else { r.EncodeInt(int64(x.Port)) @@ -32534,44 +32575,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2482 := z.EncBinary() - _ = yym2482 + yym2487 := z.EncBinary() + _ = yym2487 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2484 := &x.TargetPort - yym2485 := z.EncBinary() - _ = yym2485 + yy2489 := &x.TargetPort + yym2490 := z.EncBinary() + _ = yym2490 if false { - } else if z.HasExtensions() && z.EncExt(yy2484) { - } else if !yym2485 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2484) + } else if z.HasExtensions() && z.EncExt(yy2489) { + } else if !yym2490 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2489) } else { - z.EncFallback(yy2484) + z.EncFallback(yy2489) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2486 := &x.TargetPort - yym2487 := z.EncBinary() - _ = yym2487 + yy2491 := &x.TargetPort + yym2492 := z.EncBinary() + _ = yym2492 if false { - } else if z.HasExtensions() && z.EncExt(yy2486) { - } else if !yym2487 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2486) + } else if z.HasExtensions() && z.EncExt(yy2491) { + } else if !yym2492 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2491) } else { - z.EncFallback(yy2486) + z.EncFallback(yy2491) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2489 := z.EncBinary() - _ = yym2489 + yym2494 := z.EncBinary() + _ = yym2494 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -32580,14 +32621,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2490 := z.EncBinary() - _ = yym2490 + yym2495 := z.EncBinary() + _ = yym2495 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32600,25 +32641,25 @@ func (x *ServicePort) 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) @@ -32630,12 +32671,12 @@ func (x *ServicePort) 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 { @@ -32644,10 +32685,10 @@ func (x *ServicePort) 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 "name": if r.TryDecodeAsNil() { x.Name = "" @@ -32670,15 +32711,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2497 := &x.TargetPort - yym2498 := z.DecBinary() - _ = yym2498 + yyv2502 := &x.TargetPort + yym2503 := z.DecBinary() + _ = yym2503 if false { - } else if z.HasExtensions() && z.DecExt(yyv2497) { - } else if !yym2498 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2497) + } else if z.HasExtensions() && z.DecExt(yyv2502) { + } else if !yym2503 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2502) } else { - z.DecFallback(yyv2497, false) + z.DecFallback(yyv2502, false) } } case "nodePort": @@ -32688,9 +32729,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } 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) } @@ -32698,16 +32739,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2500 int - var yyb2500 bool - var yyhl2500 bool = l >= 0 - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + var yyj2505 int + var yyb2505 bool + var yyhl2505 bool = l >= 0 + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32717,13 +32758,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32733,13 +32774,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32749,13 +32790,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32763,24 +32804,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2504 := &x.TargetPort - yym2505 := z.DecBinary() - _ = yym2505 + yyv2509 := &x.TargetPort + yym2510 := z.DecBinary() + _ = yym2510 if false { - } else if z.HasExtensions() && z.DecExt(yyv2504) { - } else if !yym2505 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2504) + } else if z.HasExtensions() && z.DecExt(yyv2509) { + } else if !yym2510 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2509) } else { - z.DecFallback(yyv2504, false) + z.DecFallback(yyv2509, false) } } - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32791,17 +32832,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2500-1, "") + z.DecStructFieldNotFound(yyj2505-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32813,39 +32854,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2507 := z.EncBinary() - _ = yym2507 + yym2512 := z.EncBinary() + _ = yym2512 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2508 := !z.EncBinary() - yy2arr2508 := z.EncBasicHandle().StructToArray - var yyq2508 [5]bool - _, _, _ = yysep2508, yyq2508, yy2arr2508 - const yyr2508 bool = false - yyq2508[0] = x.Kind != "" - yyq2508[1] = x.APIVersion != "" - yyq2508[2] = true - yyq2508[3] = true - yyq2508[4] = true - var yynn2508 int - if yyr2508 || yy2arr2508 { + yysep2513 := !z.EncBinary() + yy2arr2513 := z.EncBasicHandle().StructToArray + var yyq2513 [5]bool + _, _, _ = yysep2513, yyq2513, yy2arr2513 + const yyr2513 bool = false + yyq2513[0] = x.Kind != "" + yyq2513[1] = x.APIVersion != "" + yyq2513[2] = true + yyq2513[3] = true + yyq2513[4] = true + var yynn2513 int + if yyr2513 || yy2arr2513 { r.EncodeArrayStart(5) } else { - yynn2508 = 0 - for _, b := range yyq2508 { + yynn2513 = 0 + for _, b := range yyq2513 { if b { - yynn2508++ + yynn2513++ } } - r.EncodeMapStart(yynn2508) - yynn2508 = 0 + r.EncodeMapStart(yynn2513) + yynn2513 = 0 } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[0] { - yym2510 := z.EncBinary() - _ = yym2510 + if yyq2513[0] { + yym2515 := z.EncBinary() + _ = yym2515 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32854,23 +32895,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2508[0] { + if yyq2513[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2511 := z.EncBinary() - _ = yym2511 + yym2516 := z.EncBinary() + _ = yym2516 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[1] { - yym2513 := z.EncBinary() - _ = yym2513 + if yyq2513[1] { + yym2518 := z.EncBinary() + _ = yym2518 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32879,70 +32920,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2508[1] { + if yyq2513[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2514 := z.EncBinary() - _ = yym2514 + yym2519 := z.EncBinary() + _ = yym2519 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[2] { - yy2516 := &x.ObjectMeta - yy2516.CodecEncodeSelf(e) + if yyq2513[2] { + yy2521 := &x.ObjectMeta + yy2521.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2508[2] { + if yyq2513[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2517 := &x.ObjectMeta - yy2517.CodecEncodeSelf(e) + yy2522 := &x.ObjectMeta + yy2522.CodecEncodeSelf(e) } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[3] { - yy2519 := &x.Spec - yy2519.CodecEncodeSelf(e) + if yyq2513[3] { + yy2524 := &x.Spec + yy2524.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2508[3] { + if yyq2513[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2520 := &x.Spec - yy2520.CodecEncodeSelf(e) + yy2525 := &x.Spec + yy2525.CodecEncodeSelf(e) } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[4] { - yy2522 := &x.Status - yy2522.CodecEncodeSelf(e) + if yyq2513[4] { + yy2527 := &x.Status + yy2527.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2508[4] { + if yyq2513[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2523 := &x.Status - yy2523.CodecEncodeSelf(e) + yy2528 := &x.Status + yy2528.CodecEncodeSelf(e) } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32955,25 +32996,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2524 := z.DecBinary() - _ = yym2524 + yym2529 := z.DecBinary() + _ = yym2529 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2525 := r.ContainerType() - if yyct2525 == codecSelferValueTypeMap1234 { - yyl2525 := r.ReadMapStart() - if yyl2525 == 0 { + yyct2530 := r.ContainerType() + if yyct2530 == codecSelferValueTypeMap1234 { + yyl2530 := r.ReadMapStart() + if yyl2530 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2525, d) + x.codecDecodeSelfFromMap(yyl2530, d) } - } else if yyct2525 == codecSelferValueTypeArray1234 { - yyl2525 := r.ReadArrayStart() - if yyl2525 == 0 { + } else if yyct2530 == codecSelferValueTypeArray1234 { + yyl2530 := r.ReadArrayStart() + if yyl2530 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2525, d) + x.codecDecodeSelfFromArray(yyl2530, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32985,12 +33026,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2526Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2526Slc - var yyhl2526 bool = l >= 0 - for yyj2526 := 0; ; yyj2526++ { - if yyhl2526 { - if yyj2526 >= l { + var yys2531Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2531Slc + var yyhl2531 bool = l >= 0 + for yyj2531 := 0; ; yyj2531++ { + if yyhl2531 { + if yyj2531 >= l { break } } else { @@ -32999,10 +33040,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2526Slc = r.DecodeBytes(yys2526Slc, true, true) - yys2526 := string(yys2526Slc) + yys2531Slc = r.DecodeBytes(yys2531Slc, true, true) + yys2531 := string(yys2531Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2526 { + switch yys2531 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33019,27 +33060,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2529 := &x.ObjectMeta - yyv2529.CodecDecodeSelf(d) + yyv2534 := &x.ObjectMeta + yyv2534.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2530 := &x.Spec - yyv2530.CodecDecodeSelf(d) + yyv2535 := &x.Spec + yyv2535.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2531 := &x.Status - yyv2531.CodecDecodeSelf(d) + yyv2536 := &x.Status + yyv2536.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2526) - } // end switch yys2526 - } // end for yyj2526 + z.DecStructFieldNotFound(-1, yys2531) + } // end switch yys2531 + } // end for yyj2531 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33047,16 +33088,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2532 int - var yyb2532 bool - var yyhl2532 bool = l >= 0 - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + var yyj2537 int + var yyb2537 bool + var yyhl2537 bool = l >= 0 + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33066,13 +33107,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33082,13 +33123,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33096,16 +33137,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2535 := &x.ObjectMeta - yyv2535.CodecDecodeSelf(d) + yyv2540 := &x.ObjectMeta + yyv2540.CodecDecodeSelf(d) } - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33113,16 +33154,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2536 := &x.Spec - yyv2536.CodecDecodeSelf(d) + yyv2541 := &x.Spec + yyv2541.CodecDecodeSelf(d) } - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33130,21 +33171,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2537 := &x.Status - yyv2537.CodecDecodeSelf(d) + yyv2542 := &x.Status + yyv2542.CodecDecodeSelf(d) } for { - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2532-1, "") + z.DecStructFieldNotFound(yyj2537-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33156,38 +33197,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2538 := z.EncBinary() - _ = yym2538 + yym2543 := z.EncBinary() + _ = yym2543 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2539 := !z.EncBinary() - yy2arr2539 := z.EncBasicHandle().StructToArray - var yyq2539 [5]bool - _, _, _ = yysep2539, yyq2539, yy2arr2539 - const yyr2539 bool = false - yyq2539[0] = x.Kind != "" - yyq2539[1] = x.APIVersion != "" - yyq2539[2] = true - yyq2539[4] = len(x.ImagePullSecrets) != 0 - var yynn2539 int - if yyr2539 || yy2arr2539 { + yysep2544 := !z.EncBinary() + yy2arr2544 := z.EncBasicHandle().StructToArray + var yyq2544 [5]bool + _, _, _ = yysep2544, yyq2544, yy2arr2544 + const yyr2544 bool = false + yyq2544[0] = x.Kind != "" + yyq2544[1] = x.APIVersion != "" + yyq2544[2] = true + yyq2544[4] = len(x.ImagePullSecrets) != 0 + var yynn2544 int + if yyr2544 || yy2arr2544 { r.EncodeArrayStart(5) } else { - yynn2539 = 1 - for _, b := range yyq2539 { + yynn2544 = 1 + for _, b := range yyq2544 { if b { - yynn2539++ + yynn2544++ } } - r.EncodeMapStart(yynn2539) - yynn2539 = 0 + r.EncodeMapStart(yynn2544) + yynn2544 = 0 } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2539[0] { - yym2541 := z.EncBinary() - _ = yym2541 + if yyq2544[0] { + yym2546 := z.EncBinary() + _ = yym2546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33196,23 +33237,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2539[0] { + if yyq2544[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2542 := z.EncBinary() - _ = yym2542 + yym2547 := z.EncBinary() + _ = yym2547 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2539[1] { - yym2544 := z.EncBinary() - _ = yym2544 + if yyq2544[1] { + yym2549 := z.EncBinary() + _ = yym2549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33221,42 +33262,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2539[1] { + if yyq2544[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2545 := z.EncBinary() - _ = yym2545 + yym2550 := z.EncBinary() + _ = yym2550 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2539[2] { - yy2547 := &x.ObjectMeta - yy2547.CodecEncodeSelf(e) + if yyq2544[2] { + yy2552 := &x.ObjectMeta + yy2552.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2539[2] { + if yyq2544[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2548 := &x.ObjectMeta - yy2548.CodecEncodeSelf(e) + yy2553 := &x.ObjectMeta + yy2553.CodecEncodeSelf(e) } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2550 := z.EncBinary() - _ = yym2550 + yym2555 := z.EncBinary() + _ = yym2555 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33269,22 +33310,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2551 := z.EncBinary() - _ = yym2551 + yym2556 := z.EncBinary() + _ = yym2556 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2539[4] { + if yyq2544[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2553 := z.EncBinary() - _ = yym2553 + yym2558 := z.EncBinary() + _ = yym2558 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33294,15 +33335,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2539[4] { + if yyq2544[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2554 := z.EncBinary() - _ = yym2554 + yym2559 := z.EncBinary() + _ = yym2559 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33310,7 +33351,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33323,25 +33364,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2555 := z.DecBinary() - _ = yym2555 + yym2560 := z.DecBinary() + _ = yym2560 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2556 := r.ContainerType() - if yyct2556 == codecSelferValueTypeMap1234 { - yyl2556 := r.ReadMapStart() - if yyl2556 == 0 { + yyct2561 := r.ContainerType() + if yyct2561 == codecSelferValueTypeMap1234 { + yyl2561 := r.ReadMapStart() + if yyl2561 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2556, d) + x.codecDecodeSelfFromMap(yyl2561, d) } - } else if yyct2556 == codecSelferValueTypeArray1234 { - yyl2556 := r.ReadArrayStart() - if yyl2556 == 0 { + } else if yyct2561 == codecSelferValueTypeArray1234 { + yyl2561 := r.ReadArrayStart() + if yyl2561 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2556, d) + x.codecDecodeSelfFromArray(yyl2561, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33353,12 +33394,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2557Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2557Slc - var yyhl2557 bool = l >= 0 - for yyj2557 := 0; ; yyj2557++ { - if yyhl2557 { - if yyj2557 >= l { + var yys2562Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2562Slc + var yyhl2562 bool = l >= 0 + for yyj2562 := 0; ; yyj2562++ { + if yyhl2562 { + if yyj2562 >= l { break } } else { @@ -33367,10 +33408,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2557Slc = r.DecodeBytes(yys2557Slc, true, true) - yys2557 := string(yys2557Slc) + yys2562Slc = r.DecodeBytes(yys2562Slc, true, true) + yys2562 := string(yys2562Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2557 { + switch yys2562 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33387,37 +33428,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2560 := &x.ObjectMeta - yyv2560.CodecDecodeSelf(d) + yyv2565 := &x.ObjectMeta + yyv2565.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2561 := &x.Secrets - yym2562 := z.DecBinary() - _ = yym2562 + yyv2566 := &x.Secrets + yym2567 := z.DecBinary() + _ = yym2567 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2561), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2566), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2563 := &x.ImagePullSecrets - yym2564 := z.DecBinary() - _ = yym2564 + yyv2568 := &x.ImagePullSecrets + yym2569 := z.DecBinary() + _ = yym2569 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2563), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2568), d) } } default: - z.DecStructFieldNotFound(-1, yys2557) - } // end switch yys2557 - } // end for yyj2557 + z.DecStructFieldNotFound(-1, yys2562) + } // end switch yys2562 + } // end for yyj2562 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33425,16 +33466,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2565 int - var yyb2565 bool - var yyhl2565 bool = l >= 0 - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + var yyj2570 int + var yyb2570 bool + var yyhl2570 bool = l >= 0 + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33444,13 +33485,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33460,13 +33501,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33474,16 +33515,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2568 := &x.ObjectMeta - yyv2568.CodecDecodeSelf(d) + yyv2573 := &x.ObjectMeta + yyv2573.CodecDecodeSelf(d) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33491,21 +33532,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2569 := &x.Secrets - yym2570 := z.DecBinary() - _ = yym2570 + yyv2574 := &x.Secrets + yym2575 := z.DecBinary() + _ = yym2575 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2569), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2574), d) } } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33513,26 +33554,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2571 := &x.ImagePullSecrets - yym2572 := z.DecBinary() - _ = yym2572 + yyv2576 := &x.ImagePullSecrets + yym2577 := z.DecBinary() + _ = yym2577 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2571), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2576), d) } } for { - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2565-1, "") + z.DecStructFieldNotFound(yyj2570-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33544,37 +33585,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2573 := z.EncBinary() - _ = yym2573 + yym2578 := z.EncBinary() + _ = yym2578 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2574 := !z.EncBinary() - yy2arr2574 := z.EncBasicHandle().StructToArray - var yyq2574 [4]bool - _, _, _ = yysep2574, yyq2574, yy2arr2574 - const yyr2574 bool = false - yyq2574[0] = x.Kind != "" - yyq2574[1] = x.APIVersion != "" - yyq2574[2] = true - var yynn2574 int - if yyr2574 || yy2arr2574 { + yysep2579 := !z.EncBinary() + yy2arr2579 := z.EncBasicHandle().StructToArray + var yyq2579 [4]bool + _, _, _ = yysep2579, yyq2579, yy2arr2579 + const yyr2579 bool = false + yyq2579[0] = x.Kind != "" + yyq2579[1] = x.APIVersion != "" + yyq2579[2] = true + var yynn2579 int + if yyr2579 || yy2arr2579 { r.EncodeArrayStart(4) } else { - yynn2574 = 1 - for _, b := range yyq2574 { + yynn2579 = 1 + for _, b := range yyq2579 { if b { - yynn2574++ + yynn2579++ } } - r.EncodeMapStart(yynn2574) - yynn2574 = 0 + r.EncodeMapStart(yynn2579) + yynn2579 = 0 } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2574[0] { - yym2576 := z.EncBinary() - _ = yym2576 + if yyq2579[0] { + yym2581 := z.EncBinary() + _ = yym2581 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33583,23 +33624,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2574[0] { + if yyq2579[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2577 := z.EncBinary() - _ = yym2577 + yym2582 := z.EncBinary() + _ = yym2582 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2574[1] { - yym2579 := z.EncBinary() - _ = yym2579 + if yyq2579[1] { + yym2584 := z.EncBinary() + _ = yym2584 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33608,54 +33649,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2574[1] { + if yyq2579[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2580 := z.EncBinary() - _ = yym2580 + yym2585 := z.EncBinary() + _ = yym2585 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2574[2] { - yy2582 := &x.ListMeta - yym2583 := z.EncBinary() - _ = yym2583 + if yyq2579[2] { + yy2587 := &x.ListMeta + yym2588 := z.EncBinary() + _ = yym2588 if false { - } else if z.HasExtensions() && z.EncExt(yy2582) { + } else if z.HasExtensions() && z.EncExt(yy2587) { } else { - z.EncFallback(yy2582) + z.EncFallback(yy2587) } } else { r.EncodeNil() } } else { - if yyq2574[2] { + if yyq2579[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2584 := &x.ListMeta - yym2585 := z.EncBinary() - _ = yym2585 + yy2589 := &x.ListMeta + yym2590 := z.EncBinary() + _ = yym2590 if false { - } else if z.HasExtensions() && z.EncExt(yy2584) { + } else if z.HasExtensions() && z.EncExt(yy2589) { } else { - z.EncFallback(yy2584) + z.EncFallback(yy2589) } } } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2587 := z.EncBinary() - _ = yym2587 + yym2592 := z.EncBinary() + _ = yym2592 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -33668,15 +33709,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2588 := z.EncBinary() - _ = yym2588 + yym2593 := z.EncBinary() + _ = yym2593 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33689,25 +33730,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2589 := z.DecBinary() - _ = yym2589 + yym2594 := z.DecBinary() + _ = yym2594 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2590 := r.ContainerType() - if yyct2590 == codecSelferValueTypeMap1234 { - yyl2590 := r.ReadMapStart() - if yyl2590 == 0 { + yyct2595 := r.ContainerType() + if yyct2595 == codecSelferValueTypeMap1234 { + yyl2595 := r.ReadMapStart() + if yyl2595 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2590, d) + x.codecDecodeSelfFromMap(yyl2595, d) } - } else if yyct2590 == codecSelferValueTypeArray1234 { - yyl2590 := r.ReadArrayStart() - if yyl2590 == 0 { + } else if yyct2595 == codecSelferValueTypeArray1234 { + yyl2595 := r.ReadArrayStart() + if yyl2595 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2590, d) + x.codecDecodeSelfFromArray(yyl2595, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33719,12 +33760,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2591Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2591Slc - var yyhl2591 bool = l >= 0 - for yyj2591 := 0; ; yyj2591++ { - if yyhl2591 { - if yyj2591 >= l { + var yys2596Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2596Slc + var yyhl2596 bool = l >= 0 + for yyj2596 := 0; ; yyj2596++ { + if yyhl2596 { + if yyj2596 >= l { break } } else { @@ -33733,10 +33774,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2591Slc = r.DecodeBytes(yys2591Slc, true, true) - yys2591 := string(yys2591Slc) + yys2596Slc = r.DecodeBytes(yys2596Slc, true, true) + yys2596 := string(yys2596Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2591 { + switch yys2596 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33753,31 +33794,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2594 := &x.ListMeta - yym2595 := z.DecBinary() - _ = yym2595 + yyv2599 := &x.ListMeta + yym2600 := z.DecBinary() + _ = yym2600 if false { - } else if z.HasExtensions() && z.DecExt(yyv2594) { + } else if z.HasExtensions() && z.DecExt(yyv2599) { } else { - z.DecFallback(yyv2594, false) + z.DecFallback(yyv2599, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2596 := &x.Items - yym2597 := z.DecBinary() - _ = yym2597 + yyv2601 := &x.Items + yym2602 := z.DecBinary() + _ = yym2602 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2596), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2601), d) } } default: - z.DecStructFieldNotFound(-1, yys2591) - } // end switch yys2591 - } // end for yyj2591 + z.DecStructFieldNotFound(-1, yys2596) + } // end switch yys2596 + } // end for yyj2596 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33785,16 +33826,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2598 int - var yyb2598 bool - var yyhl2598 bool = l >= 0 - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + var yyj2603 int + var yyb2603 bool + var yyhl2603 bool = l >= 0 + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33804,13 +33845,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33820,13 +33861,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33834,22 +33875,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2601 := &x.ListMeta - yym2602 := z.DecBinary() - _ = yym2602 + yyv2606 := &x.ListMeta + yym2607 := z.DecBinary() + _ = yym2607 if false { - } else if z.HasExtensions() && z.DecExt(yyv2601) { + } else if z.HasExtensions() && z.DecExt(yyv2606) { } else { - z.DecFallback(yyv2601, false) + z.DecFallback(yyv2606, false) } } - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33857,26 +33898,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2603 := &x.Items - yym2604 := z.DecBinary() - _ = yym2604 + yyv2608 := &x.Items + yym2609 := z.DecBinary() + _ = yym2609 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2603), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2608), d) } } for { - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2598-1, "") + z.DecStructFieldNotFound(yyj2603-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33888,37 +33929,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2605 := z.EncBinary() - _ = yym2605 + yym2610 := z.EncBinary() + _ = yym2610 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2606 := !z.EncBinary() - yy2arr2606 := z.EncBasicHandle().StructToArray - var yyq2606 [4]bool - _, _, _ = yysep2606, yyq2606, yy2arr2606 - const yyr2606 bool = false - yyq2606[0] = x.Kind != "" - yyq2606[1] = x.APIVersion != "" - yyq2606[2] = true - var yynn2606 int - if yyr2606 || yy2arr2606 { + yysep2611 := !z.EncBinary() + yy2arr2611 := z.EncBasicHandle().StructToArray + var yyq2611 [4]bool + _, _, _ = yysep2611, yyq2611, yy2arr2611 + const yyr2611 bool = false + yyq2611[0] = x.Kind != "" + yyq2611[1] = x.APIVersion != "" + yyq2611[2] = true + var yynn2611 int + if yyr2611 || yy2arr2611 { r.EncodeArrayStart(4) } else { - yynn2606 = 1 - for _, b := range yyq2606 { + yynn2611 = 1 + for _, b := range yyq2611 { if b { - yynn2606++ + yynn2611++ } } - r.EncodeMapStart(yynn2606) - yynn2606 = 0 + r.EncodeMapStart(yynn2611) + yynn2611 = 0 } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2606[0] { - yym2608 := z.EncBinary() - _ = yym2608 + if yyq2611[0] { + yym2613 := z.EncBinary() + _ = yym2613 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33927,23 +33968,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2606[0] { + if yyq2611[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2609 := z.EncBinary() - _ = yym2609 + yym2614 := z.EncBinary() + _ = yym2614 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2606[1] { - yym2611 := z.EncBinary() - _ = yym2611 + if yyq2611[1] { + yym2616 := z.EncBinary() + _ = yym2616 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33952,42 +33993,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2606[1] { + if yyq2611[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2612 := z.EncBinary() - _ = yym2612 + yym2617 := z.EncBinary() + _ = yym2617 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2606[2] { - yy2614 := &x.ObjectMeta - yy2614.CodecEncodeSelf(e) + if yyq2611[2] { + yy2619 := &x.ObjectMeta + yy2619.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2606[2] { + if yyq2611[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2615 := &x.ObjectMeta - yy2615.CodecEncodeSelf(e) + yy2620 := &x.ObjectMeta + yy2620.CodecEncodeSelf(e) } } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2617 := z.EncBinary() - _ = yym2617 + yym2622 := z.EncBinary() + _ = yym2622 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -34000,15 +34041,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2618 := z.EncBinary() - _ = yym2618 + yym2623 := z.EncBinary() + _ = yym2623 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34021,25 +34062,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2619 := z.DecBinary() - _ = yym2619 + yym2624 := z.DecBinary() + _ = yym2624 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2620 := r.ContainerType() - if yyct2620 == codecSelferValueTypeMap1234 { - yyl2620 := r.ReadMapStart() - if yyl2620 == 0 { + yyct2625 := r.ContainerType() + if yyct2625 == codecSelferValueTypeMap1234 { + yyl2625 := r.ReadMapStart() + if yyl2625 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2620, d) + x.codecDecodeSelfFromMap(yyl2625, d) } - } else if yyct2620 == codecSelferValueTypeArray1234 { - yyl2620 := r.ReadArrayStart() - if yyl2620 == 0 { + } else if yyct2625 == codecSelferValueTypeArray1234 { + yyl2625 := r.ReadArrayStart() + if yyl2625 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2620, d) + x.codecDecodeSelfFromArray(yyl2625, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34051,12 +34092,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2621Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2621Slc - var yyhl2621 bool = l >= 0 - for yyj2621 := 0; ; yyj2621++ { - if yyhl2621 { - if yyj2621 >= l { + var yys2626Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2626Slc + var yyhl2626 bool = l >= 0 + for yyj2626 := 0; ; yyj2626++ { + if yyhl2626 { + if yyj2626 >= l { break } } else { @@ -34065,10 +34106,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2621Slc = r.DecodeBytes(yys2621Slc, true, true) - yys2621 := string(yys2621Slc) + yys2626Slc = r.DecodeBytes(yys2626Slc, true, true) + yys2626 := string(yys2626Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2621 { + switch yys2626 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34085,25 +34126,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2624 := &x.ObjectMeta - yyv2624.CodecDecodeSelf(d) + yyv2629 := &x.ObjectMeta + yyv2629.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2625 := &x.Subsets - yym2626 := z.DecBinary() - _ = yym2626 + yyv2630 := &x.Subsets + yym2631 := z.DecBinary() + _ = yym2631 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2625), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2630), d) } } default: - z.DecStructFieldNotFound(-1, yys2621) - } // end switch yys2621 - } // end for yyj2621 + z.DecStructFieldNotFound(-1, yys2626) + } // end switch yys2626 + } // end for yyj2626 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34111,16 +34152,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2627 int - var yyb2627 bool - var yyhl2627 bool = l >= 0 - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + var yyj2632 int + var yyb2632 bool + var yyhl2632 bool = l >= 0 + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34130,13 +34171,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34146,13 +34187,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34160,16 +34201,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2630 := &x.ObjectMeta - yyv2630.CodecDecodeSelf(d) + yyv2635 := &x.ObjectMeta + yyv2635.CodecDecodeSelf(d) } - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34177,26 +34218,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2631 := &x.Subsets - yym2632 := z.DecBinary() - _ = yym2632 + yyv2636 := &x.Subsets + yym2637 := z.DecBinary() + _ = yym2637 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2631), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2636), d) } } for { - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2627-1, "") + z.DecStructFieldNotFound(yyj2632-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34208,36 +34249,36 @@ func (x *EndpointSubset) 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 [3]bool - _, _, _ = yysep2634, yyq2634, yy2arr2634 - const yyr2634 bool = false - var yynn2634 int - if yyr2634 || yy2arr2634 { + yysep2639 := !z.EncBinary() + yy2arr2639 := z.EncBasicHandle().StructToArray + var yyq2639 [3]bool + _, _, _ = yysep2639, yyq2639, yy2arr2639 + const yyr2639 bool = false + var yynn2639 int + if yyr2639 || yy2arr2639 { r.EncodeArrayStart(3) } else { - yynn2634 = 3 - for _, b := range yyq2634 { + yynn2639 = 3 + 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 x.Addresses == nil { r.EncodeNil() } else { - yym2636 := z.EncBinary() - _ = yym2636 + yym2641 := z.EncBinary() + _ = yym2641 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34250,21 +34291,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2637 := z.EncBinary() - _ = yym2637 + yym2642 := z.EncBinary() + _ = yym2642 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2639 := z.EncBinary() - _ = yym2639 + yym2644 := z.EncBinary() + _ = yym2644 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34277,21 +34318,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2640 := z.EncBinary() - _ = yym2640 + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2642 := z.EncBinary() - _ = yym2642 + yym2647 := z.EncBinary() + _ = yym2647 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34304,15 +34345,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2643 := z.EncBinary() - _ = yym2643 + yym2648 := z.EncBinary() + _ = yym2648 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34325,25 +34366,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2644 := z.DecBinary() - _ = yym2644 + yym2649 := z.DecBinary() + _ = yym2649 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2645 := r.ContainerType() - if yyct2645 == codecSelferValueTypeMap1234 { - yyl2645 := r.ReadMapStart() - if yyl2645 == 0 { + yyct2650 := r.ContainerType() + if yyct2650 == codecSelferValueTypeMap1234 { + yyl2650 := r.ReadMapStart() + if yyl2650 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2645, d) + x.codecDecodeSelfFromMap(yyl2650, d) } - } else if yyct2645 == codecSelferValueTypeArray1234 { - yyl2645 := r.ReadArrayStart() - if yyl2645 == 0 { + } else if yyct2650 == codecSelferValueTypeArray1234 { + yyl2650 := r.ReadArrayStart() + if yyl2650 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2645, d) + x.codecDecodeSelfFromArray(yyl2650, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34355,12 +34396,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2646Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2646Slc - var yyhl2646 bool = l >= 0 - for yyj2646 := 0; ; yyj2646++ { - if yyhl2646 { - if yyj2646 >= l { + var yys2651Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2651Slc + var yyhl2651 bool = l >= 0 + for yyj2651 := 0; ; yyj2651++ { + if yyhl2651 { + if yyj2651 >= l { break } } else { @@ -34369,50 +34410,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2646Slc = r.DecodeBytes(yys2646Slc, true, true) - yys2646 := string(yys2646Slc) + yys2651Slc = r.DecodeBytes(yys2651Slc, true, true) + yys2651 := string(yys2651Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2646 { + switch yys2651 { case "Addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2647 := &x.Addresses - yym2648 := z.DecBinary() - _ = yym2648 + yyv2652 := &x.Addresses + yym2653 := z.DecBinary() + _ = yym2653 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2647), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2652), d) } } case "NotReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2649 := &x.NotReadyAddresses - yym2650 := z.DecBinary() - _ = yym2650 + yyv2654 := &x.NotReadyAddresses + yym2655 := z.DecBinary() + _ = yym2655 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2649), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2654), d) } } case "Ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2651 := &x.Ports - yym2652 := z.DecBinary() - _ = yym2652 + yyv2656 := &x.Ports + yym2657 := z.DecBinary() + _ = yym2657 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2651), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2656), d) } } default: - z.DecStructFieldNotFound(-1, yys2646) - } // end switch yys2646 - } // end for yyj2646 + z.DecStructFieldNotFound(-1, yys2651) + } // end switch yys2651 + } // end for yyj2651 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34420,16 +34461,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2653 int - var yyb2653 bool - var yyhl2653 bool = l >= 0 - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l + var yyj2658 int + var yyb2658 bool + var yyhl2658 bool = l >= 0 + yyj2658++ + if yyhl2658 { + yyb2658 = yyj2658 > l } else { - yyb2653 = r.CheckBreak() + yyb2658 = r.CheckBreak() } - if yyb2653 { + if yyb2658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34437,21 +34478,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2654 := &x.Addresses - yym2655 := z.DecBinary() - _ = yym2655 + yyv2659 := &x.Addresses + yym2660 := z.DecBinary() + _ = yym2660 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2654), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2659), d) } } - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l + yyj2658++ + if yyhl2658 { + yyb2658 = yyj2658 > l } else { - yyb2653 = r.CheckBreak() + yyb2658 = r.CheckBreak() } - if yyb2653 { + if yyb2658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34459,21 +34500,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2656 := &x.NotReadyAddresses - yym2657 := z.DecBinary() - _ = yym2657 + yyv2661 := &x.NotReadyAddresses + yym2662 := z.DecBinary() + _ = yym2662 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2656), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2661), d) } } - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l + yyj2658++ + if yyhl2658 { + yyb2658 = yyj2658 > l } else { - yyb2653 = r.CheckBreak() + yyb2658 = r.CheckBreak() } - if yyb2653 { + if yyb2658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34481,26 +34522,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2658 := &x.Ports - yym2659 := z.DecBinary() - _ = yym2659 + yyv2663 := &x.Ports + yym2664 := z.DecBinary() + _ = yym2664 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2658), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2663), d) } } for { - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l + yyj2658++ + if yyhl2658 { + yyb2658 = yyj2658 > l } else { - yyb2653 = r.CheckBreak() + yyb2658 = r.CheckBreak() } - if yyb2653 { + if yyb2658 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2653-1, "") + z.DecStructFieldNotFound(yyj2658-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34512,35 +34553,35 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2660 := z.EncBinary() - _ = yym2660 + yym2665 := z.EncBinary() + _ = yym2665 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2661 := !z.EncBinary() - yy2arr2661 := z.EncBasicHandle().StructToArray - var yyq2661 [4]bool - _, _, _ = yysep2661, yyq2661, yy2arr2661 - const yyr2661 bool = false - yyq2661[1] = x.Hostname != "" - yyq2661[2] = x.NodeName != nil - var yynn2661 int - if yyr2661 || yy2arr2661 { + yysep2666 := !z.EncBinary() + yy2arr2666 := z.EncBasicHandle().StructToArray + var yyq2666 [4]bool + _, _, _ = yysep2666, yyq2666, yy2arr2666 + const yyr2666 bool = false + yyq2666[1] = x.Hostname != "" + yyq2666[2] = x.NodeName != nil + var yynn2666 int + if yyr2666 || yy2arr2666 { r.EncodeArrayStart(4) } else { - yynn2661 = 2 - for _, b := range yyq2661 { + yynn2666 = 2 + for _, b := range yyq2666 { if b { - yynn2661++ + yynn2666++ } } - r.EncodeMapStart(yynn2661) - yynn2661 = 0 + r.EncodeMapStart(yynn2666) + yynn2666 = 0 } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2663 := z.EncBinary() - _ = yym2663 + yym2668 := z.EncBinary() + _ = yym2668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -34549,18 +34590,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("IP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2664 := z.EncBinary() - _ = yym2664 + yym2669 := z.EncBinary() + _ = yym2669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2661[1] { - yym2666 := z.EncBinary() - _ = yym2666 + if yyq2666[1] { + yym2671 := z.EncBinary() + _ = yym2671 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -34569,54 +34610,54 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2661[1] { + if yyq2666[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2667 := z.EncBinary() - _ = yym2667 + yym2672 := z.EncBinary() + _ = yym2672 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2661[2] { + if yyq2666[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2669 := *x.NodeName - yym2670 := z.EncBinary() - _ = yym2670 + yy2674 := *x.NodeName + yym2675 := z.EncBinary() + _ = yym2675 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2669)) + r.EncodeString(codecSelferC_UTF81234, string(yy2674)) } } } else { r.EncodeNil() } } else { - if yyq2661[2] { + if yyq2666[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2671 := *x.NodeName - yym2672 := z.EncBinary() - _ = yym2672 + yy2676 := *x.NodeName + yym2677 := z.EncBinary() + _ = yym2677 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2671)) + r.EncodeString(codecSelferC_UTF81234, string(yy2676)) } } } } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetRef == nil { r.EncodeNil() @@ -34633,7 +34674,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { x.TargetRef.CodecEncodeSelf(e) } } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34646,25 +34687,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2674 := z.DecBinary() - _ = yym2674 + yym2679 := z.DecBinary() + _ = yym2679 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2675 := r.ContainerType() - if yyct2675 == codecSelferValueTypeMap1234 { - yyl2675 := r.ReadMapStart() - if yyl2675 == 0 { + yyct2680 := r.ContainerType() + if yyct2680 == codecSelferValueTypeMap1234 { + yyl2680 := r.ReadMapStart() + if yyl2680 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2675, d) + x.codecDecodeSelfFromMap(yyl2680, d) } - } else if yyct2675 == codecSelferValueTypeArray1234 { - yyl2675 := r.ReadArrayStart() - if yyl2675 == 0 { + } else if yyct2680 == codecSelferValueTypeArray1234 { + yyl2680 := r.ReadArrayStart() + if yyl2680 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2675, d) + x.codecDecodeSelfFromArray(yyl2680, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34676,12 +34717,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2676Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2676Slc - var yyhl2676 bool = l >= 0 - for yyj2676 := 0; ; yyj2676++ { - if yyhl2676 { - if yyj2676 >= l { + var yys2681Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2681Slc + var yyhl2681 bool = l >= 0 + for yyj2681 := 0; ; yyj2681++ { + if yyhl2681 { + if yyj2681 >= l { break } } else { @@ -34690,10 +34731,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2676Slc = r.DecodeBytes(yys2676Slc, true, true) - yys2676 := string(yys2676Slc) + yys2681Slc = r.DecodeBytes(yys2681Slc, true, true) + yys2681 := string(yys2681Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2676 { + switch yys2681 { case "IP": if r.TryDecodeAsNil() { x.IP = "" @@ -34715,8 +34756,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2680 := z.DecBinary() - _ = yym2680 + yym2685 := z.DecBinary() + _ = yym2685 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -34734,9 +34775,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2676) - } // end switch yys2676 - } // end for yyj2676 + z.DecStructFieldNotFound(-1, yys2681) + } // end switch yys2681 + } // end for yyj2681 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34744,16 +34785,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2682 int - var yyb2682 bool - var yyhl2682 bool = l >= 0 - yyj2682++ - if yyhl2682 { - yyb2682 = yyj2682 > l + var yyj2687 int + var yyb2687 bool + var yyhl2687 bool = l >= 0 + yyj2687++ + if yyhl2687 { + yyb2687 = yyj2687 > l } else { - yyb2682 = r.CheckBreak() + yyb2687 = r.CheckBreak() } - if yyb2682 { + if yyb2687 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34763,13 +34804,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2682++ - if yyhl2682 { - yyb2682 = yyj2682 > l + yyj2687++ + if yyhl2687 { + yyb2687 = yyj2687 > l } else { - yyb2682 = r.CheckBreak() + yyb2687 = r.CheckBreak() } - if yyb2682 { + if yyb2687 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34779,13 +34820,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2682++ - if yyhl2682 { - yyb2682 = yyj2682 > l + yyj2687++ + if yyhl2687 { + yyb2687 = yyj2687 > l } else { - yyb2682 = r.CheckBreak() + yyb2687 = r.CheckBreak() } - if yyb2682 { + if yyb2687 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34798,20 +34839,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2686 := z.DecBinary() - _ = yym2686 + yym2691 := z.DecBinary() + _ = yym2691 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2682++ - if yyhl2682 { - yyb2682 = yyj2682 > l + yyj2687++ + if yyhl2687 { + yyb2687 = yyj2687 > l } else { - yyb2682 = r.CheckBreak() + yyb2687 = r.CheckBreak() } - if yyb2682 { + if yyb2687 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34827,17 +34868,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2682++ - if yyhl2682 { - yyb2682 = yyj2682 > l + yyj2687++ + if yyhl2687 { + yyb2687 = yyj2687 > l } else { - yyb2682 = r.CheckBreak() + yyb2687 = r.CheckBreak() } - if yyb2682 { + if yyb2687 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2682-1, "") + z.DecStructFieldNotFound(yyj2687-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34849,33 +34890,33 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2688 := z.EncBinary() - _ = yym2688 + yym2693 := z.EncBinary() + _ = yym2693 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2689 := !z.EncBinary() - yy2arr2689 := z.EncBasicHandle().StructToArray - var yyq2689 [3]bool - _, _, _ = yysep2689, yyq2689, yy2arr2689 - const yyr2689 bool = false - var yynn2689 int - if yyr2689 || yy2arr2689 { + yysep2694 := !z.EncBinary() + yy2arr2694 := z.EncBasicHandle().StructToArray + var yyq2694 [3]bool + _, _, _ = yysep2694, yyq2694, yy2arr2694 + const yyr2694 bool = false + var yynn2694 int + if yyr2694 || yy2arr2694 { r.EncodeArrayStart(3) } else { - yynn2689 = 3 - for _, b := range yyq2689 { + yynn2694 = 3 + for _, b := range yyq2694 { if b { - yynn2689++ + yynn2694++ } } - r.EncodeMapStart(yynn2689) - yynn2689 = 0 + r.EncodeMapStart(yynn2694) + yynn2694 = 0 } - if yyr2689 || yy2arr2689 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2691 := z.EncBinary() - _ = yym2691 + yym2696 := z.EncBinary() + _ = yym2696 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34884,17 +34925,17 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2692 := z.EncBinary() - _ = yym2692 + yym2697 := z.EncBinary() + _ = yym2697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2689 || yy2arr2689 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2694 := z.EncBinary() - _ = yym2694 + yym2699 := z.EncBinary() + _ = yym2699 if false { } else { r.EncodeInt(int64(x.Port)) @@ -34903,14 +34944,14 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2695 := z.EncBinary() - _ = yym2695 + yym2700 := z.EncBinary() + _ = yym2700 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2689 || yy2arr2689 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -34919,7 +34960,7 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2689 || yy2arr2689 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34932,25 +34973,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2697 := z.DecBinary() - _ = yym2697 + yym2702 := z.DecBinary() + _ = yym2702 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2698 := r.ContainerType() - if yyct2698 == codecSelferValueTypeMap1234 { - yyl2698 := r.ReadMapStart() - if yyl2698 == 0 { + yyct2703 := r.ContainerType() + if yyct2703 == codecSelferValueTypeMap1234 { + yyl2703 := r.ReadMapStart() + if yyl2703 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2698, d) + x.codecDecodeSelfFromMap(yyl2703, d) } - } else if yyct2698 == codecSelferValueTypeArray1234 { - yyl2698 := r.ReadArrayStart() - if yyl2698 == 0 { + } else if yyct2703 == codecSelferValueTypeArray1234 { + yyl2703 := r.ReadArrayStart() + if yyl2703 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2698, d) + x.codecDecodeSelfFromArray(yyl2703, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34962,12 +35003,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2699Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2699Slc - var yyhl2699 bool = l >= 0 - for yyj2699 := 0; ; yyj2699++ { - if yyhl2699 { - if yyj2699 >= l { + var yys2704Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2704Slc + var yyhl2704 bool = l >= 0 + for yyj2704 := 0; ; yyj2704++ { + if yyhl2704 { + if yyj2704 >= l { break } } else { @@ -34976,10 +35017,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2699Slc = r.DecodeBytes(yys2699Slc, true, true) - yys2699 := string(yys2699Slc) + yys2704Slc = r.DecodeBytes(yys2704Slc, true, true) + yys2704 := string(yys2704Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2699 { + switch yys2704 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -34999,9 +35040,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2699) - } // end switch yys2699 - } // end for yyj2699 + z.DecStructFieldNotFound(-1, yys2704) + } // end switch yys2704 + } // end for yyj2704 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35009,16 +35050,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2703 int - var yyb2703 bool - var yyhl2703 bool = l >= 0 - yyj2703++ - if yyhl2703 { - yyb2703 = yyj2703 > l + var yyj2708 int + var yyb2708 bool + var yyhl2708 bool = l >= 0 + yyj2708++ + if yyhl2708 { + yyb2708 = yyj2708 > l } else { - yyb2703 = r.CheckBreak() + yyb2708 = r.CheckBreak() } - if yyb2703 { + if yyb2708 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35028,13 +35069,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2703++ - if yyhl2703 { - yyb2703 = yyj2703 > l + yyj2708++ + if yyhl2708 { + yyb2708 = yyj2708 > l } else { - yyb2703 = r.CheckBreak() + yyb2708 = r.CheckBreak() } - if yyb2703 { + if yyb2708 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35044,13 +35085,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2703++ - if yyhl2703 { - yyb2703 = yyj2703 > l + yyj2708++ + if yyhl2708 { + yyb2708 = yyj2708 > l } else { - yyb2703 = r.CheckBreak() + yyb2708 = r.CheckBreak() } - if yyb2703 { + if yyb2708 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35061,17 +35102,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2703++ - if yyhl2703 { - yyb2703 = yyj2703 > l + yyj2708++ + if yyhl2708 { + yyb2708 = yyj2708 > l } else { - yyb2703 = r.CheckBreak() + yyb2708 = r.CheckBreak() } - if yyb2703 { + if yyb2708 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2703-1, "") + z.DecStructFieldNotFound(yyj2708-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35083,37 +35124,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2707 := z.EncBinary() - _ = yym2707 + yym2712 := z.EncBinary() + _ = yym2712 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2708 := !z.EncBinary() - yy2arr2708 := z.EncBasicHandle().StructToArray - var yyq2708 [4]bool - _, _, _ = yysep2708, yyq2708, yy2arr2708 - const yyr2708 bool = false - yyq2708[0] = x.Kind != "" - yyq2708[1] = x.APIVersion != "" - yyq2708[2] = true - var yynn2708 int - if yyr2708 || yy2arr2708 { + yysep2713 := !z.EncBinary() + yy2arr2713 := z.EncBasicHandle().StructToArray + var yyq2713 [4]bool + _, _, _ = yysep2713, yyq2713, yy2arr2713 + const yyr2713 bool = false + yyq2713[0] = x.Kind != "" + yyq2713[1] = x.APIVersion != "" + yyq2713[2] = true + var yynn2713 int + if yyr2713 || yy2arr2713 { r.EncodeArrayStart(4) } else { - yynn2708 = 1 - for _, b := range yyq2708 { + yynn2713 = 1 + for _, b := range yyq2713 { if b { - yynn2708++ + yynn2713++ } } - r.EncodeMapStart(yynn2708) - yynn2708 = 0 + r.EncodeMapStart(yynn2713) + yynn2713 = 0 } - if yyr2708 || yy2arr2708 { + if yyr2713 || yy2arr2713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2708[0] { - yym2710 := z.EncBinary() - _ = yym2710 + if yyq2713[0] { + yym2715 := z.EncBinary() + _ = yym2715 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35122,23 +35163,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2708[0] { + if yyq2713[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2711 := z.EncBinary() - _ = yym2711 + yym2716 := z.EncBinary() + _ = yym2716 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2708 || yy2arr2708 { + if yyr2713 || yy2arr2713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2708[1] { - yym2713 := z.EncBinary() - _ = yym2713 + if yyq2713[1] { + yym2718 := z.EncBinary() + _ = yym2718 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35147,54 +35188,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2708[1] { + if yyq2713[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2714 := z.EncBinary() - _ = yym2714 + yym2719 := z.EncBinary() + _ = yym2719 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2708 || yy2arr2708 { + if yyr2713 || yy2arr2713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2708[2] { - yy2716 := &x.ListMeta - yym2717 := z.EncBinary() - _ = yym2717 + if yyq2713[2] { + yy2721 := &x.ListMeta + yym2722 := z.EncBinary() + _ = yym2722 if false { - } else if z.HasExtensions() && z.EncExt(yy2716) { + } else if z.HasExtensions() && z.EncExt(yy2721) { } else { - z.EncFallback(yy2716) + z.EncFallback(yy2721) } } else { r.EncodeNil() } } else { - if yyq2708[2] { + if yyq2713[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2718 := &x.ListMeta - yym2719 := z.EncBinary() - _ = yym2719 + yy2723 := &x.ListMeta + yym2724 := z.EncBinary() + _ = yym2724 if false { - } else if z.HasExtensions() && z.EncExt(yy2718) { + } else if z.HasExtensions() && z.EncExt(yy2723) { } else { - z.EncFallback(yy2718) + z.EncFallback(yy2723) } } } - if yyr2708 || yy2arr2708 { + if yyr2713 || yy2arr2713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2721 := z.EncBinary() - _ = yym2721 + yym2726 := z.EncBinary() + _ = yym2726 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -35207,15 +35248,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2722 := z.EncBinary() - _ = yym2722 + yym2727 := z.EncBinary() + _ = yym2727 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2708 || yy2arr2708 { + if yyr2713 || yy2arr2713 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35228,25 +35269,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2723 := z.DecBinary() - _ = yym2723 + yym2728 := z.DecBinary() + _ = yym2728 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2724 := r.ContainerType() - if yyct2724 == codecSelferValueTypeMap1234 { - yyl2724 := r.ReadMapStart() - if yyl2724 == 0 { + yyct2729 := r.ContainerType() + if yyct2729 == codecSelferValueTypeMap1234 { + yyl2729 := r.ReadMapStart() + if yyl2729 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2724, d) + x.codecDecodeSelfFromMap(yyl2729, d) } - } else if yyct2724 == codecSelferValueTypeArray1234 { - yyl2724 := r.ReadArrayStart() - if yyl2724 == 0 { + } else if yyct2729 == codecSelferValueTypeArray1234 { + yyl2729 := r.ReadArrayStart() + if yyl2729 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2724, d) + x.codecDecodeSelfFromArray(yyl2729, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35258,12 +35299,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2725Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2725Slc - var yyhl2725 bool = l >= 0 - for yyj2725 := 0; ; yyj2725++ { - if yyhl2725 { - if yyj2725 >= l { + var yys2730Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2730Slc + var yyhl2730 bool = l >= 0 + for yyj2730 := 0; ; yyj2730++ { + if yyhl2730 { + if yyj2730 >= l { break } } else { @@ -35272,10 +35313,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2725Slc = r.DecodeBytes(yys2725Slc, true, true) - yys2725 := string(yys2725Slc) + yys2730Slc = r.DecodeBytes(yys2730Slc, true, true) + yys2730 := string(yys2730Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2725 { + switch yys2730 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35292,31 +35333,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2728 := &x.ListMeta - yym2729 := z.DecBinary() - _ = yym2729 + yyv2733 := &x.ListMeta + yym2734 := z.DecBinary() + _ = yym2734 if false { - } else if z.HasExtensions() && z.DecExt(yyv2728) { + } else if z.HasExtensions() && z.DecExt(yyv2733) { } else { - z.DecFallback(yyv2728, false) + z.DecFallback(yyv2733, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2730 := &x.Items - yym2731 := z.DecBinary() - _ = yym2731 + yyv2735 := &x.Items + yym2736 := z.DecBinary() + _ = yym2736 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2730), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2735), d) } } default: - z.DecStructFieldNotFound(-1, yys2725) - } // end switch yys2725 - } // end for yyj2725 + z.DecStructFieldNotFound(-1, yys2730) + } // end switch yys2730 + } // end for yyj2730 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35324,16 +35365,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2732 int - var yyb2732 bool - var yyhl2732 bool = l >= 0 - yyj2732++ - if yyhl2732 { - yyb2732 = yyj2732 > l + var yyj2737 int + var yyb2737 bool + var yyhl2737 bool = l >= 0 + yyj2737++ + if yyhl2737 { + yyb2737 = yyj2737 > l } else { - yyb2732 = r.CheckBreak() + yyb2737 = r.CheckBreak() } - if yyb2732 { + if yyb2737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35343,13 +35384,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2732++ - if yyhl2732 { - yyb2732 = yyj2732 > l + yyj2737++ + if yyhl2737 { + yyb2737 = yyj2737 > l } else { - yyb2732 = r.CheckBreak() + yyb2737 = r.CheckBreak() } - if yyb2732 { + if yyb2737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35359,13 +35400,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2732++ - if yyhl2732 { - yyb2732 = yyj2732 > l + yyj2737++ + if yyhl2737 { + yyb2737 = yyj2737 > l } else { - yyb2732 = r.CheckBreak() + yyb2737 = r.CheckBreak() } - if yyb2732 { + if yyb2737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35373,22 +35414,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2735 := &x.ListMeta - yym2736 := z.DecBinary() - _ = yym2736 + yyv2740 := &x.ListMeta + yym2741 := z.DecBinary() + _ = yym2741 if false { - } else if z.HasExtensions() && z.DecExt(yyv2735) { + } else if z.HasExtensions() && z.DecExt(yyv2740) { } else { - z.DecFallback(yyv2735, false) + z.DecFallback(yyv2740, false) } } - yyj2732++ - if yyhl2732 { - yyb2732 = yyj2732 > l + yyj2737++ + if yyhl2737 { + yyb2737 = yyj2737 > l } else { - yyb2732 = r.CheckBreak() + yyb2737 = r.CheckBreak() } - if yyb2732 { + if yyb2737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35396,26 +35437,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2737 := &x.Items - yym2738 := z.DecBinary() - _ = yym2738 + yyv2742 := &x.Items + yym2743 := z.DecBinary() + _ = yym2743 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2737), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2742), d) } } for { - yyj2732++ - if yyhl2732 { - yyb2732 = yyj2732 > l + yyj2737++ + if yyhl2737 { + yyb2737 = yyj2737 > l } else { - yyb2732 = r.CheckBreak() + yyb2737 = r.CheckBreak() } - if yyb2732 { + if yyb2737 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2732-1, "") + z.DecStructFieldNotFound(yyj2737-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35427,38 +35468,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2739 := z.EncBinary() - _ = yym2739 + yym2744 := z.EncBinary() + _ = yym2744 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2740 := !z.EncBinary() - yy2arr2740 := z.EncBasicHandle().StructToArray - var yyq2740 [4]bool - _, _, _ = yysep2740, yyq2740, yy2arr2740 - const yyr2740 bool = false - yyq2740[0] = x.PodCIDR != "" - yyq2740[1] = x.ExternalID != "" - yyq2740[2] = x.ProviderID != "" - yyq2740[3] = x.Unschedulable != false - var yynn2740 int - if yyr2740 || yy2arr2740 { + yysep2745 := !z.EncBinary() + yy2arr2745 := z.EncBasicHandle().StructToArray + var yyq2745 [4]bool + _, _, _ = yysep2745, yyq2745, yy2arr2745 + const yyr2745 bool = false + yyq2745[0] = x.PodCIDR != "" + yyq2745[1] = x.ExternalID != "" + yyq2745[2] = x.ProviderID != "" + yyq2745[3] = x.Unschedulable != false + var yynn2745 int + if yyr2745 || yy2arr2745 { r.EncodeArrayStart(4) } else { - yynn2740 = 0 - for _, b := range yyq2740 { + yynn2745 = 0 + for _, b := range yyq2745 { if b { - yynn2740++ + yynn2745++ } } - r.EncodeMapStart(yynn2740) - yynn2740 = 0 + r.EncodeMapStart(yynn2745) + yynn2745 = 0 } - if yyr2740 || yy2arr2740 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2740[0] { - yym2742 := z.EncBinary() - _ = yym2742 + if yyq2745[0] { + yym2747 := z.EncBinary() + _ = yym2747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -35467,23 +35508,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2740[0] { + if yyq2745[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2743 := z.EncBinary() - _ = yym2743 + yym2748 := z.EncBinary() + _ = yym2748 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2740 || yy2arr2740 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2740[1] { - yym2745 := z.EncBinary() - _ = yym2745 + if yyq2745[1] { + yym2750 := z.EncBinary() + _ = yym2750 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -35492,23 +35533,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2740[1] { + if yyq2745[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2746 := z.EncBinary() - _ = yym2746 + yym2751 := z.EncBinary() + _ = yym2751 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2740 || yy2arr2740 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2740[2] { - yym2748 := z.EncBinary() - _ = yym2748 + if yyq2745[2] { + yym2753 := z.EncBinary() + _ = yym2753 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -35517,23 +35558,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2740[2] { + if yyq2745[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2749 := z.EncBinary() - _ = yym2749 + yym2754 := z.EncBinary() + _ = yym2754 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2740 || yy2arr2740 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2740[3] { - yym2751 := z.EncBinary() - _ = yym2751 + if yyq2745[3] { + yym2756 := z.EncBinary() + _ = yym2756 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -35542,19 +35583,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2740[3] { + if yyq2745[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2752 := z.EncBinary() - _ = yym2752 + yym2757 := z.EncBinary() + _ = yym2757 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2740 || yy2arr2740 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35567,25 +35608,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2753 := z.DecBinary() - _ = yym2753 + yym2758 := z.DecBinary() + _ = yym2758 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2754 := r.ContainerType() - if yyct2754 == codecSelferValueTypeMap1234 { - yyl2754 := r.ReadMapStart() - if yyl2754 == 0 { + yyct2759 := r.ContainerType() + if yyct2759 == codecSelferValueTypeMap1234 { + yyl2759 := r.ReadMapStart() + if yyl2759 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2754, d) + x.codecDecodeSelfFromMap(yyl2759, d) } - } else if yyct2754 == codecSelferValueTypeArray1234 { - yyl2754 := r.ReadArrayStart() - if yyl2754 == 0 { + } else if yyct2759 == codecSelferValueTypeArray1234 { + yyl2759 := r.ReadArrayStart() + if yyl2759 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2754, d) + x.codecDecodeSelfFromArray(yyl2759, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35597,12 +35638,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2755Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2755Slc - var yyhl2755 bool = l >= 0 - for yyj2755 := 0; ; yyj2755++ { - if yyhl2755 { - if yyj2755 >= l { + var yys2760Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2760Slc + var yyhl2760 bool = l >= 0 + for yyj2760 := 0; ; yyj2760++ { + if yyhl2760 { + if yyj2760 >= l { break } } else { @@ -35611,10 +35652,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2755Slc = r.DecodeBytes(yys2755Slc, true, true) - yys2755 := string(yys2755Slc) + yys2760Slc = r.DecodeBytes(yys2760Slc, true, true) + yys2760 := string(yys2760Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2755 { + switch yys2760 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -35640,9 +35681,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2755) - } // end switch yys2755 - } // end for yyj2755 + z.DecStructFieldNotFound(-1, yys2760) + } // end switch yys2760 + } // end for yyj2760 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35650,16 +35691,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2760 int - var yyb2760 bool - var yyhl2760 bool = l >= 0 - yyj2760++ - if yyhl2760 { - yyb2760 = yyj2760 > l + var yyj2765 int + var yyb2765 bool + var yyhl2765 bool = l >= 0 + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l } else { - yyb2760 = r.CheckBreak() + yyb2765 = r.CheckBreak() } - if yyb2760 { + if yyb2765 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35669,13 +35710,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2760++ - if yyhl2760 { - yyb2760 = yyj2760 > l + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l } else { - yyb2760 = r.CheckBreak() + yyb2765 = r.CheckBreak() } - if yyb2760 { + if yyb2765 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35685,13 +35726,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2760++ - if yyhl2760 { - yyb2760 = yyj2760 > l + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l } else { - yyb2760 = r.CheckBreak() + yyb2765 = r.CheckBreak() } - if yyb2760 { + if yyb2765 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35701,13 +35742,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2760++ - if yyhl2760 { - yyb2760 = yyj2760 > l + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l } else { - yyb2760 = r.CheckBreak() + yyb2765 = r.CheckBreak() } - if yyb2760 { + if yyb2765 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35718,17 +35759,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2760++ - if yyhl2760 { - yyb2760 = yyj2760 > l + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l } else { - yyb2760 = r.CheckBreak() + yyb2765 = r.CheckBreak() } - if yyb2760 { + if yyb2765 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2760-1, "") + z.DecStructFieldNotFound(yyj2765-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35740,33 +35781,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2765 := z.EncBinary() - _ = yym2765 + yym2770 := z.EncBinary() + _ = yym2770 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2766 := !z.EncBinary() - yy2arr2766 := z.EncBasicHandle().StructToArray - var yyq2766 [1]bool - _, _, _ = yysep2766, yyq2766, yy2arr2766 - const yyr2766 bool = false - var yynn2766 int - if yyr2766 || yy2arr2766 { + yysep2771 := !z.EncBinary() + yy2arr2771 := z.EncBasicHandle().StructToArray + var yyq2771 [1]bool + _, _, _ = yysep2771, yyq2771, yy2arr2771 + const yyr2771 bool = false + var yynn2771 int + if yyr2771 || yy2arr2771 { r.EncodeArrayStart(1) } else { - yynn2766 = 1 - for _, b := range yyq2766 { + yynn2771 = 1 + for _, b := range yyq2771 { if b { - yynn2766++ + yynn2771++ } } - r.EncodeMapStart(yynn2766) - yynn2766 = 0 + r.EncodeMapStart(yynn2771) + yynn2771 = 0 } - if yyr2766 || yy2arr2766 { + if yyr2771 || yy2arr2771 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2768 := z.EncBinary() - _ = yym2768 + yym2773 := z.EncBinary() + _ = yym2773 if false { } else { r.EncodeInt(int64(x.Port)) @@ -35775,14 +35816,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2769 := z.EncBinary() - _ = yym2769 + yym2774 := z.EncBinary() + _ = yym2774 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2766 || yy2arr2766 { + if yyr2771 || yy2arr2771 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35795,25 +35836,25 @@ func (x *DaemonEndpoint) 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) @@ -35825,12 +35866,12 @@ func (x *DaemonEndpoint) 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 { @@ -35839,10 +35880,10 @@ func (x *DaemonEndpoint) 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 "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -35850,9 +35891,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } 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) } @@ -35860,16 +35901,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2774 int - var yyb2774 bool - var yyhl2774 bool = l >= 0 - yyj2774++ - if yyhl2774 { - yyb2774 = yyj2774 > l + var yyj2779 int + var yyb2779 bool + var yyhl2779 bool = l >= 0 + yyj2779++ + if yyhl2779 { + yyb2779 = yyj2779 > l } else { - yyb2774 = r.CheckBreak() + yyb2779 = r.CheckBreak() } - if yyb2774 { + if yyb2779 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35880,17 +35921,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2774++ - if yyhl2774 { - yyb2774 = yyj2774 > l + yyj2779++ + if yyhl2779 { + yyb2779 = yyj2779 > l } else { - yyb2774 = r.CheckBreak() + yyb2779 = r.CheckBreak() } - if yyb2774 { + if yyb2779 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2774-1, "") + z.DecStructFieldNotFound(yyj2779-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35902,48 +35943,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2776 := z.EncBinary() - _ = yym2776 + yym2781 := z.EncBinary() + _ = yym2781 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2777 := !z.EncBinary() - yy2arr2777 := z.EncBasicHandle().StructToArray - var yyq2777 [1]bool - _, _, _ = yysep2777, yyq2777, yy2arr2777 - const yyr2777 bool = false - yyq2777[0] = true - var yynn2777 int - if yyr2777 || yy2arr2777 { + yysep2782 := !z.EncBinary() + yy2arr2782 := z.EncBasicHandle().StructToArray + var yyq2782 [1]bool + _, _, _ = yysep2782, yyq2782, yy2arr2782 + const yyr2782 bool = false + yyq2782[0] = true + var yynn2782 int + if yyr2782 || yy2arr2782 { r.EncodeArrayStart(1) } else { - yynn2777 = 0 - for _, b := range yyq2777 { + yynn2782 = 0 + for _, b := range yyq2782 { if b { - yynn2777++ + yynn2782++ } } - r.EncodeMapStart(yynn2777) - yynn2777 = 0 + r.EncodeMapStart(yynn2782) + yynn2782 = 0 } - if yyr2777 || yy2arr2777 { + if yyr2782 || yy2arr2782 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2777[0] { - yy2779 := &x.KubeletEndpoint - yy2779.CodecEncodeSelf(e) + if yyq2782[0] { + yy2784 := &x.KubeletEndpoint + yy2784.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2777[0] { + if yyq2782[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2780 := &x.KubeletEndpoint - yy2780.CodecEncodeSelf(e) + yy2785 := &x.KubeletEndpoint + yy2785.CodecEncodeSelf(e) } } - if yyr2777 || yy2arr2777 { + if yyr2782 || yy2arr2782 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35956,25 +35997,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2781 := z.DecBinary() - _ = yym2781 + yym2786 := z.DecBinary() + _ = yym2786 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2782 := r.ContainerType() - if yyct2782 == codecSelferValueTypeMap1234 { - yyl2782 := r.ReadMapStart() - if yyl2782 == 0 { + yyct2787 := r.ContainerType() + if yyct2787 == codecSelferValueTypeMap1234 { + yyl2787 := r.ReadMapStart() + if yyl2787 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2782, d) + x.codecDecodeSelfFromMap(yyl2787, d) } - } else if yyct2782 == codecSelferValueTypeArray1234 { - yyl2782 := r.ReadArrayStart() - if yyl2782 == 0 { + } else if yyct2787 == codecSelferValueTypeArray1234 { + yyl2787 := r.ReadArrayStart() + if yyl2787 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2782, d) + x.codecDecodeSelfFromArray(yyl2787, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35986,12 +36027,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2783Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2783Slc - var yyhl2783 bool = l >= 0 - for yyj2783 := 0; ; yyj2783++ { - if yyhl2783 { - if yyj2783 >= l { + var yys2788Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2788Slc + var yyhl2788 bool = l >= 0 + for yyj2788 := 0; ; yyj2788++ { + if yyhl2788 { + if yyj2788 >= l { break } } else { @@ -36000,21 +36041,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2783Slc = r.DecodeBytes(yys2783Slc, true, true) - yys2783 := string(yys2783Slc) + yys2788Slc = r.DecodeBytes(yys2788Slc, true, true) + yys2788 := string(yys2788Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2783 { + switch yys2788 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2784 := &x.KubeletEndpoint - yyv2784.CodecDecodeSelf(d) + yyv2789 := &x.KubeletEndpoint + yyv2789.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2783) - } // end switch yys2783 - } // end for yyj2783 + z.DecStructFieldNotFound(-1, yys2788) + } // end switch yys2788 + } // end for yyj2788 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36022,16 +36063,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2785 int - var yyb2785 bool - var yyhl2785 bool = l >= 0 - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l + var yyj2790 int + var yyb2790 bool + var yyhl2790 bool = l >= 0 + yyj2790++ + if yyhl2790 { + yyb2790 = yyj2790 > l } else { - yyb2785 = r.CheckBreak() + yyb2790 = r.CheckBreak() } - if yyb2785 { + if yyb2790 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36039,21 +36080,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2786 := &x.KubeletEndpoint - yyv2786.CodecDecodeSelf(d) + yyv2791 := &x.KubeletEndpoint + yyv2791.CodecDecodeSelf(d) } for { - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l + yyj2790++ + if yyhl2790 { + yyb2790 = yyj2790 > l } else { - yyb2785 = r.CheckBreak() + yyb2790 = r.CheckBreak() } - if yyb2785 { + if yyb2790 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2785-1, "") + z.DecStructFieldNotFound(yyj2790-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36065,33 +36106,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2787 := z.EncBinary() - _ = yym2787 + yym2792 := z.EncBinary() + _ = yym2792 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2788 := !z.EncBinary() - yy2arr2788 := z.EncBasicHandle().StructToArray - var yyq2788 [10]bool - _, _, _ = yysep2788, yyq2788, yy2arr2788 - const yyr2788 bool = false - var yynn2788 int - if yyr2788 || yy2arr2788 { + yysep2793 := !z.EncBinary() + yy2arr2793 := z.EncBasicHandle().StructToArray + var yyq2793 [10]bool + _, _, _ = yysep2793, yyq2793, yy2arr2793 + const yyr2793 bool = false + var yynn2793 int + if yyr2793 || yy2arr2793 { r.EncodeArrayStart(10) } else { - yynn2788 = 10 - for _, b := range yyq2788 { + yynn2793 = 10 + for _, b := range yyq2793 { if b { - yynn2788++ + yynn2793++ } } - r.EncodeMapStart(yynn2788) - yynn2788 = 0 + r.EncodeMapStart(yynn2793) + yynn2793 = 0 } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2790 := z.EncBinary() - _ = yym2790 + yym2795 := z.EncBinary() + _ = yym2795 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -36100,17 +36141,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2791 := z.EncBinary() - _ = yym2791 + yym2796 := z.EncBinary() + _ = yym2796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2793 := z.EncBinary() - _ = yym2793 + yym2798 := z.EncBinary() + _ = yym2798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -36119,17 +36160,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2794 := z.EncBinary() - _ = yym2794 + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2796 := z.EncBinary() - _ = yym2796 + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -36138,17 +36179,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2797 := z.EncBinary() - _ = yym2797 + yym2802 := z.EncBinary() + _ = yym2802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2799 := z.EncBinary() - _ = yym2799 + yym2804 := z.EncBinary() + _ = yym2804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -36157,17 +36198,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2800 := z.EncBinary() - _ = yym2800 + yym2805 := z.EncBinary() + _ = yym2805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2802 := z.EncBinary() - _ = yym2802 + yym2807 := z.EncBinary() + _ = yym2807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -36176,17 +36217,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2803 := z.EncBinary() - _ = yym2803 + yym2808 := z.EncBinary() + _ = yym2808 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2805 := z.EncBinary() - _ = yym2805 + yym2810 := z.EncBinary() + _ = yym2810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -36195,17 +36236,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2806 := z.EncBinary() - _ = yym2806 + yym2811 := z.EncBinary() + _ = yym2811 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2808 := z.EncBinary() - _ = yym2808 + yym2813 := z.EncBinary() + _ = yym2813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -36214,17 +36255,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2809 := z.EncBinary() - _ = yym2809 + yym2814 := z.EncBinary() + _ = yym2814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2811 := z.EncBinary() - _ = yym2811 + yym2816 := z.EncBinary() + _ = yym2816 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -36233,17 +36274,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2812 := z.EncBinary() - _ = yym2812 + yym2817 := z.EncBinary() + _ = yym2817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2814 := z.EncBinary() - _ = yym2814 + yym2819 := z.EncBinary() + _ = yym2819 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -36252,17 +36293,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2815 := z.EncBinary() - _ = yym2815 + yym2820 := z.EncBinary() + _ = yym2820 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2817 := z.EncBinary() - _ = yym2817 + yym2822 := z.EncBinary() + _ = yym2822 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -36271,14 +36312,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2818 := z.EncBinary() - _ = yym2818 + yym2823 := z.EncBinary() + _ = yym2823 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2788 || yy2arr2788 { + if yyr2793 || yy2arr2793 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36291,25 +36332,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2819 := z.DecBinary() - _ = yym2819 + yym2824 := z.DecBinary() + _ = yym2824 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2820 := r.ContainerType() - if yyct2820 == codecSelferValueTypeMap1234 { - yyl2820 := r.ReadMapStart() - if yyl2820 == 0 { + yyct2825 := r.ContainerType() + if yyct2825 == codecSelferValueTypeMap1234 { + yyl2825 := r.ReadMapStart() + if yyl2825 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2820, d) + x.codecDecodeSelfFromMap(yyl2825, d) } - } else if yyct2820 == codecSelferValueTypeArray1234 { - yyl2820 := r.ReadArrayStart() - if yyl2820 == 0 { + } else if yyct2825 == codecSelferValueTypeArray1234 { + yyl2825 := r.ReadArrayStart() + if yyl2825 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2820, d) + x.codecDecodeSelfFromArray(yyl2825, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36321,12 +36362,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2821Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2821Slc - var yyhl2821 bool = l >= 0 - for yyj2821 := 0; ; yyj2821++ { - if yyhl2821 { - if yyj2821 >= l { + var yys2826Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2826Slc + var yyhl2826 bool = l >= 0 + for yyj2826 := 0; ; yyj2826++ { + if yyhl2826 { + if yyj2826 >= l { break } } else { @@ -36335,10 +36376,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2821Slc = r.DecodeBytes(yys2821Slc, true, true) - yys2821 := string(yys2821Slc) + yys2826Slc = r.DecodeBytes(yys2826Slc, true, true) + yys2826 := string(yys2826Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2821 { + switch yys2826 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -36400,9 +36441,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2821) - } // end switch yys2821 - } // end for yyj2821 + z.DecStructFieldNotFound(-1, yys2826) + } // end switch yys2826 + } // end for yyj2826 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36410,16 +36451,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2832 int - var yyb2832 bool - var yyhl2832 bool = l >= 0 - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + var yyj2837 int + var yyb2837 bool + var yyhl2837 bool = l >= 0 + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36429,13 +36470,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36445,13 +36486,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36461,13 +36502,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36477,13 +36518,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36493,13 +36534,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36509,13 +36550,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36525,13 +36566,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36541,13 +36582,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36557,13 +36598,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36574,17 +36615,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2832++ - if yyhl2832 { - yyb2832 = yyj2832 > l + yyj2837++ + if yyhl2837 { + yyb2837 = yyj2837 > l } else { - yyb2832 = r.CheckBreak() + yyb2837 = r.CheckBreak() } - if yyb2832 { + if yyb2837 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2832-1, "") + z.DecStructFieldNotFound(yyj2837-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36596,42 +36637,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2843 := z.EncBinary() - _ = yym2843 + yym2848 := z.EncBinary() + _ = yym2848 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2844 := !z.EncBinary() - yy2arr2844 := z.EncBasicHandle().StructToArray - var yyq2844 [10]bool - _, _, _ = yysep2844, yyq2844, yy2arr2844 - const yyr2844 bool = false - yyq2844[0] = len(x.Capacity) != 0 - yyq2844[1] = len(x.Allocatable) != 0 - yyq2844[2] = x.Phase != "" - yyq2844[3] = len(x.Conditions) != 0 - yyq2844[4] = len(x.Addresses) != 0 - yyq2844[5] = true - yyq2844[6] = true - yyq2844[7] = len(x.Images) != 0 - yyq2844[8] = len(x.VolumesInUse) != 0 - yyq2844[9] = len(x.VolumesAttached) != 0 - var yynn2844 int - if yyr2844 || yy2arr2844 { + yysep2849 := !z.EncBinary() + yy2arr2849 := z.EncBasicHandle().StructToArray + var yyq2849 [10]bool + _, _, _ = yysep2849, yyq2849, yy2arr2849 + const yyr2849 bool = false + yyq2849[0] = len(x.Capacity) != 0 + yyq2849[1] = len(x.Allocatable) != 0 + yyq2849[2] = x.Phase != "" + yyq2849[3] = len(x.Conditions) != 0 + yyq2849[4] = len(x.Addresses) != 0 + yyq2849[5] = true + yyq2849[6] = true + yyq2849[7] = len(x.Images) != 0 + yyq2849[8] = len(x.VolumesInUse) != 0 + yyq2849[9] = len(x.VolumesAttached) != 0 + var yynn2849 int + if yyr2849 || yy2arr2849 { r.EncodeArrayStart(10) } else { - yynn2844 = 0 - for _, b := range yyq2844 { + yynn2849 = 0 + for _, b := range yyq2849 { if b { - yynn2844++ + yynn2849++ } } - r.EncodeMapStart(yynn2844) - yynn2844 = 0 + r.EncodeMapStart(yynn2849) + yynn2849 = 0 } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[0] { + if yyq2849[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -36641,7 +36682,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2844[0] { + if yyq2849[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36652,9 +36693,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[1] { + if yyq2849[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -36664,7 +36705,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2844[1] { + if yyq2849[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36675,29 +36716,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[2] { + if yyq2849[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2844[2] { + if yyq2849[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[3] { + if yyq2849[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2849 := z.EncBinary() - _ = yym2849 + yym2854 := z.EncBinary() + _ = yym2854 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36707,15 +36748,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2844[3] { + if yyq2849[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2850 := z.EncBinary() - _ = yym2850 + yym2855 := z.EncBinary() + _ = yym2855 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36723,14 +36764,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[4] { + if yyq2849[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2852 := z.EncBinary() - _ = yym2852 + yym2857 := z.EncBinary() + _ = yym2857 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36740,15 +36781,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2844[4] { + if yyq2849[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2853 := z.EncBinary() - _ = yym2853 + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36756,48 +36797,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[5] { - yy2855 := &x.DaemonEndpoints - yy2855.CodecEncodeSelf(e) + if yyq2849[5] { + yy2860 := &x.DaemonEndpoints + yy2860.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2844[5] { + if yyq2849[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2856 := &x.DaemonEndpoints - yy2856.CodecEncodeSelf(e) + yy2861 := &x.DaemonEndpoints + yy2861.CodecEncodeSelf(e) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[6] { - yy2858 := &x.NodeInfo - yy2858.CodecEncodeSelf(e) + if yyq2849[6] { + yy2863 := &x.NodeInfo + yy2863.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2844[6] { + if yyq2849[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2859 := &x.NodeInfo - yy2859.CodecEncodeSelf(e) + yy2864 := &x.NodeInfo + yy2864.CodecEncodeSelf(e) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[7] { + if yyq2849[7] { if x.Images == nil { r.EncodeNil() } else { - yym2861 := z.EncBinary() - _ = yym2861 + yym2866 := z.EncBinary() + _ = yym2866 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36807,15 +36848,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2844[7] { + if yyq2849[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2862 := z.EncBinary() - _ = yym2862 + yym2867 := z.EncBinary() + _ = yym2867 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36823,14 +36864,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[8] { + if yyq2849[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2864 := z.EncBinary() - _ = yym2864 + yym2869 := z.EncBinary() + _ = yym2869 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36840,15 +36881,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2844[8] { + if yyq2849[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2865 := z.EncBinary() - _ = yym2865 + yym2870 := z.EncBinary() + _ = yym2870 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36856,14 +36897,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2844[9] { + if yyq2849[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2867 := z.EncBinary() - _ = yym2867 + yym2872 := z.EncBinary() + _ = yym2872 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36873,15 +36914,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2844[9] { + if yyq2849[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2868 := z.EncBinary() - _ = yym2868 + yym2873 := z.EncBinary() + _ = yym2873 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36889,7 +36930,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36902,25 +36943,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2869 := z.DecBinary() - _ = yym2869 + yym2874 := z.DecBinary() + _ = yym2874 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2870 := r.ContainerType() - if yyct2870 == codecSelferValueTypeMap1234 { - yyl2870 := r.ReadMapStart() - if yyl2870 == 0 { + yyct2875 := r.ContainerType() + if yyct2875 == codecSelferValueTypeMap1234 { + yyl2875 := r.ReadMapStart() + if yyl2875 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2870, d) + x.codecDecodeSelfFromMap(yyl2875, d) } - } else if yyct2870 == codecSelferValueTypeArray1234 { - yyl2870 := r.ReadArrayStart() - if yyl2870 == 0 { + } else if yyct2875 == codecSelferValueTypeArray1234 { + yyl2875 := r.ReadArrayStart() + if yyl2875 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2870, d) + x.codecDecodeSelfFromArray(yyl2875, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36932,12 +36973,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2871Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2871Slc - var yyhl2871 bool = l >= 0 - for yyj2871 := 0; ; yyj2871++ { - if yyhl2871 { - if yyj2871 >= l { + var yys2876Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2876Slc + var yyhl2876 bool = l >= 0 + for yyj2876 := 0; ; yyj2876++ { + if yyhl2876 { + if yyj2876 >= l { break } } else { @@ -36946,23 +36987,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2871Slc = r.DecodeBytes(yys2871Slc, true, true) - yys2871 := string(yys2871Slc) + yys2876Slc = r.DecodeBytes(yys2876Slc, true, true) + yys2876 := string(yys2876Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2871 { + switch yys2876 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2872 := &x.Capacity - yyv2872.CodecDecodeSelf(d) + yyv2877 := &x.Capacity + yyv2877.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2873 := &x.Allocatable - yyv2873.CodecDecodeSelf(d) + yyv2878 := &x.Allocatable + yyv2878.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -36974,80 +37015,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2875 := &x.Conditions - yym2876 := z.DecBinary() - _ = yym2876 + yyv2880 := &x.Conditions + yym2881 := z.DecBinary() + _ = yym2881 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2875), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2880), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2877 := &x.Addresses - yym2878 := z.DecBinary() - _ = yym2878 + yyv2882 := &x.Addresses + yym2883 := z.DecBinary() + _ = yym2883 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2877), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2882), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2879 := &x.DaemonEndpoints - yyv2879.CodecDecodeSelf(d) + yyv2884 := &x.DaemonEndpoints + yyv2884.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2880 := &x.NodeInfo - yyv2880.CodecDecodeSelf(d) + yyv2885 := &x.NodeInfo + yyv2885.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2881 := &x.Images - yym2882 := z.DecBinary() - _ = yym2882 + yyv2886 := &x.Images + yym2887 := z.DecBinary() + _ = yym2887 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2881), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2886), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2883 := &x.VolumesInUse - yym2884 := z.DecBinary() - _ = yym2884 + yyv2888 := &x.VolumesInUse + yym2889 := z.DecBinary() + _ = yym2889 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2883), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2888), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2885 := &x.VolumesAttached - yym2886 := z.DecBinary() - _ = yym2886 + yyv2890 := &x.VolumesAttached + yym2891 := z.DecBinary() + _ = yym2891 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2885), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2890), d) } } default: - z.DecStructFieldNotFound(-1, yys2871) - } // end switch yys2871 - } // end for yyj2871 + z.DecStructFieldNotFound(-1, yys2876) + } // end switch yys2876 + } // end for yyj2876 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37055,16 +37096,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2887 int - var yyb2887 bool - var yyhl2887 bool = l >= 0 - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + var yyj2892 int + var yyb2892 bool + var yyhl2892 bool = l >= 0 + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37072,16 +37113,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2888 := &x.Capacity - yyv2888.CodecDecodeSelf(d) + yyv2893 := &x.Capacity + yyv2893.CodecDecodeSelf(d) } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37089,16 +37130,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2889 := &x.Allocatable - yyv2889.CodecDecodeSelf(d) + yyv2894 := &x.Allocatable + yyv2894.CodecDecodeSelf(d) } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37108,13 +37149,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37122,21 +37163,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2891 := &x.Conditions - yym2892 := z.DecBinary() - _ = yym2892 + yyv2896 := &x.Conditions + yym2897 := z.DecBinary() + _ = yym2897 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2891), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2896), d) } } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37144,21 +37185,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2893 := &x.Addresses - yym2894 := z.DecBinary() - _ = yym2894 + yyv2898 := &x.Addresses + yym2899 := z.DecBinary() + _ = yym2899 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2893), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2898), d) } } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37166,16 +37207,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2895 := &x.DaemonEndpoints - yyv2895.CodecDecodeSelf(d) + yyv2900 := &x.DaemonEndpoints + yyv2900.CodecDecodeSelf(d) } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37183,16 +37224,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2896 := &x.NodeInfo - yyv2896.CodecDecodeSelf(d) + yyv2901 := &x.NodeInfo + yyv2901.CodecDecodeSelf(d) } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37200,21 +37241,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2897 := &x.Images - yym2898 := z.DecBinary() - _ = yym2898 + yyv2902 := &x.Images + yym2903 := z.DecBinary() + _ = yym2903 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2897), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2902), d) } } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37222,21 +37263,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2899 := &x.VolumesInUse - yym2900 := z.DecBinary() - _ = yym2900 + yyv2904 := &x.VolumesInUse + yym2905 := z.DecBinary() + _ = yym2905 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2899), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2904), d) } } - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37244,26 +37285,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2901 := &x.VolumesAttached - yym2902 := z.DecBinary() - _ = yym2902 + yyv2906 := &x.VolumesAttached + yym2907 := z.DecBinary() + _ = yym2907 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2901), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2906), d) } } for { - yyj2887++ - if yyhl2887 { - yyb2887 = yyj2887 > l + yyj2892++ + if yyhl2892 { + yyb2892 = yyj2892 > l } else { - yyb2887 = r.CheckBreak() + yyb2892 = r.CheckBreak() } - if yyb2887 { + if yyb2892 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2887-1, "") + z.DecStructFieldNotFound(yyj2892-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37272,8 +37313,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2903 := z.EncBinary() - _ = yym2903 + yym2908 := z.EncBinary() + _ = yym2908 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37285,8 +37326,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2904 := z.DecBinary() - _ = yym2904 + yym2909 := z.DecBinary() + _ = yym2909 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37301,30 +37342,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2905 := z.EncBinary() - _ = yym2905 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2906 := !z.EncBinary() - yy2arr2906 := z.EncBasicHandle().StructToArray - var yyq2906 [2]bool - _, _, _ = yysep2906, yyq2906, yy2arr2906 - const yyr2906 bool = false - var yynn2906 int - if yyr2906 || yy2arr2906 { + yysep2911 := !z.EncBinary() + yy2arr2911 := z.EncBasicHandle().StructToArray + var yyq2911 [2]bool + _, _, _ = yysep2911, yyq2911, yy2arr2911 + const yyr2911 bool = false + var yynn2911 int + if yyr2911 || yy2arr2911 { r.EncodeArrayStart(2) } else { - yynn2906 = 2 - for _, b := range yyq2906 { + yynn2911 = 2 + for _, b := range yyq2911 { if b { - yynn2906++ + yynn2911++ } } - r.EncodeMapStart(yynn2906) - yynn2906 = 0 + r.EncodeMapStart(yynn2911) + yynn2911 = 0 } - if yyr2906 || yy2arr2906 { + if yyr2911 || yy2arr2911 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -37333,10 +37374,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2906 || yy2arr2906 { + if yyr2911 || yy2arr2911 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2909 := z.EncBinary() - _ = yym2909 + yym2914 := z.EncBinary() + _ = yym2914 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -37345,14 +37386,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2910 := z.EncBinary() - _ = yym2910 + yym2915 := z.EncBinary() + _ = yym2915 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2906 || yy2arr2906 { + if yyr2911 || yy2arr2911 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37365,25 +37406,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2911 := z.DecBinary() - _ = yym2911 + yym2916 := z.DecBinary() + _ = yym2916 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2912 := r.ContainerType() - if yyct2912 == codecSelferValueTypeMap1234 { - yyl2912 := r.ReadMapStart() - if yyl2912 == 0 { + yyct2917 := r.ContainerType() + if yyct2917 == codecSelferValueTypeMap1234 { + yyl2917 := r.ReadMapStart() + if yyl2917 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2912, d) + x.codecDecodeSelfFromMap(yyl2917, d) } - } else if yyct2912 == codecSelferValueTypeArray1234 { - yyl2912 := r.ReadArrayStart() - if yyl2912 == 0 { + } else if yyct2917 == codecSelferValueTypeArray1234 { + yyl2917 := r.ReadArrayStart() + if yyl2917 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2912, d) + x.codecDecodeSelfFromArray(yyl2917, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37395,12 +37436,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2913Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2913Slc - var yyhl2913 bool = l >= 0 - for yyj2913 := 0; ; yyj2913++ { - if yyhl2913 { - if yyj2913 >= l { + var yys2918Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2918Slc + var yyhl2918 bool = l >= 0 + for yyj2918 := 0; ; yyj2918++ { + if yyhl2918 { + if yyj2918 >= l { break } } else { @@ -37409,10 +37450,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2913Slc = r.DecodeBytes(yys2913Slc, true, true) - yys2913 := string(yys2913Slc) + yys2918Slc = r.DecodeBytes(yys2918Slc, true, true) + yys2918 := string(yys2918Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2913 { + switch yys2918 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37426,9 +37467,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2913) - } // end switch yys2913 - } // end for yyj2913 + z.DecStructFieldNotFound(-1, yys2918) + } // end switch yys2918 + } // end for yyj2918 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37436,16 +37477,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2916 int - var yyb2916 bool - var yyhl2916 bool = l >= 0 - yyj2916++ - if yyhl2916 { - yyb2916 = yyj2916 > l + var yyj2921 int + var yyb2921 bool + var yyhl2921 bool = l >= 0 + yyj2921++ + if yyhl2921 { + yyb2921 = yyj2921 > l } else { - yyb2916 = r.CheckBreak() + yyb2921 = r.CheckBreak() } - if yyb2916 { + if yyb2921 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37455,13 +37496,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj2916++ - if yyhl2916 { - yyb2916 = yyj2916 > l + yyj2921++ + if yyhl2921 { + yyb2921 = yyj2921 > l } else { - yyb2916 = r.CheckBreak() + yyb2921 = r.CheckBreak() } - if yyb2916 { + if yyb2921 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37472,17 +37513,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj2916++ - if yyhl2916 { - yyb2916 = yyj2916 > l + yyj2921++ + if yyhl2921 { + yyb2921 = yyj2921 > l } else { - yyb2916 = r.CheckBreak() + yyb2921 = r.CheckBreak() } - if yyb2916 { + if yyb2921 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2916-1, "") + z.DecStructFieldNotFound(yyj2921-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37494,38 +37535,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2919 := z.EncBinary() - _ = yym2919 + yym2924 := z.EncBinary() + _ = yym2924 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2920 := !z.EncBinary() - yy2arr2920 := z.EncBasicHandle().StructToArray - var yyq2920 [1]bool - _, _, _ = yysep2920, yyq2920, yy2arr2920 - const yyr2920 bool = false - yyq2920[0] = len(x.PreferAvoidPods) != 0 - var yynn2920 int - if yyr2920 || yy2arr2920 { + yysep2925 := !z.EncBinary() + yy2arr2925 := z.EncBasicHandle().StructToArray + var yyq2925 [1]bool + _, _, _ = yysep2925, yyq2925, yy2arr2925 + const yyr2925 bool = false + yyq2925[0] = len(x.PreferAvoidPods) != 0 + var yynn2925 int + if yyr2925 || yy2arr2925 { r.EncodeArrayStart(1) } else { - yynn2920 = 0 - for _, b := range yyq2920 { + yynn2925 = 0 + for _, b := range yyq2925 { if b { - yynn2920++ + yynn2925++ } } - r.EncodeMapStart(yynn2920) - yynn2920 = 0 + r.EncodeMapStart(yynn2925) + yynn2925 = 0 } - if yyr2920 || yy2arr2920 { + if yyr2925 || yy2arr2925 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2920[0] { + if yyq2925[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2922 := z.EncBinary() - _ = yym2922 + yym2927 := z.EncBinary() + _ = yym2927 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37535,15 +37576,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2920[0] { + if yyq2925[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2923 := z.EncBinary() - _ = yym2923 + yym2928 := z.EncBinary() + _ = yym2928 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37551,7 +37592,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2920 || yy2arr2920 { + if yyr2925 || yy2arr2925 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37564,25 +37605,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2924 := z.DecBinary() - _ = yym2924 + yym2929 := z.DecBinary() + _ = yym2929 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2925 := r.ContainerType() - if yyct2925 == codecSelferValueTypeMap1234 { - yyl2925 := r.ReadMapStart() - if yyl2925 == 0 { + yyct2930 := r.ContainerType() + if yyct2930 == codecSelferValueTypeMap1234 { + yyl2930 := r.ReadMapStart() + if yyl2930 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2925, d) + x.codecDecodeSelfFromMap(yyl2930, d) } - } else if yyct2925 == codecSelferValueTypeArray1234 { - yyl2925 := r.ReadArrayStart() - if yyl2925 == 0 { + } else if yyct2930 == codecSelferValueTypeArray1234 { + yyl2930 := r.ReadArrayStart() + if yyl2930 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2925, d) + x.codecDecodeSelfFromArray(yyl2930, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37594,12 +37635,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2926Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2926Slc - var yyhl2926 bool = l >= 0 - for yyj2926 := 0; ; yyj2926++ { - if yyhl2926 { - if yyj2926 >= l { + var yys2931Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2931Slc + var yyhl2931 bool = l >= 0 + for yyj2931 := 0; ; yyj2931++ { + if yyhl2931 { + if yyj2931 >= l { break } } else { @@ -37608,26 +37649,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2926Slc = r.DecodeBytes(yys2926Slc, true, true) - yys2926 := string(yys2926Slc) + yys2931Slc = r.DecodeBytes(yys2931Slc, true, true) + yys2931 := string(yys2931Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2926 { + switch yys2931 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2927 := &x.PreferAvoidPods - yym2928 := z.DecBinary() - _ = yym2928 + yyv2932 := &x.PreferAvoidPods + yym2933 := z.DecBinary() + _ = yym2933 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2927), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2932), d) } } default: - z.DecStructFieldNotFound(-1, yys2926) - } // end switch yys2926 - } // end for yyj2926 + z.DecStructFieldNotFound(-1, yys2931) + } // end switch yys2931 + } // end for yyj2931 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37635,16 +37676,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2929 int - var yyb2929 bool - var yyhl2929 bool = l >= 0 - yyj2929++ - if yyhl2929 { - yyb2929 = yyj2929 > l + var yyj2934 int + var yyb2934 bool + var yyhl2934 bool = l >= 0 + yyj2934++ + if yyhl2934 { + yyb2934 = yyj2934 > l } else { - yyb2929 = r.CheckBreak() + yyb2934 = r.CheckBreak() } - if yyb2929 { + if yyb2934 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37652,26 +37693,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2930 := &x.PreferAvoidPods - yym2931 := z.DecBinary() - _ = yym2931 + yyv2935 := &x.PreferAvoidPods + yym2936 := z.DecBinary() + _ = yym2936 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2930), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2935), d) } } for { - yyj2929++ - if yyhl2929 { - yyb2929 = yyj2929 > l + yyj2934++ + if yyhl2934 { + yyb2934 = yyj2934 > l } else { - yyb2929 = r.CheckBreak() + yyb2934 = r.CheckBreak() } - if yyb2929 { + if yyb2934 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2929-1, "") + z.DecStructFieldNotFound(yyj2934-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37683,85 +37724,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2932 := z.EncBinary() - _ = yym2932 + yym2937 := z.EncBinary() + _ = yym2937 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2933 := !z.EncBinary() - yy2arr2933 := z.EncBasicHandle().StructToArray - var yyq2933 [4]bool - _, _, _ = yysep2933, yyq2933, yy2arr2933 - const yyr2933 bool = false - yyq2933[1] = true - yyq2933[2] = x.Reason != "" - yyq2933[3] = x.Message != "" - var yynn2933 int - if yyr2933 || yy2arr2933 { + yysep2938 := !z.EncBinary() + yy2arr2938 := z.EncBasicHandle().StructToArray + var yyq2938 [4]bool + _, _, _ = yysep2938, yyq2938, yy2arr2938 + const yyr2938 bool = false + yyq2938[1] = true + yyq2938[2] = x.Reason != "" + yyq2938[3] = x.Message != "" + var yynn2938 int + if yyr2938 || yy2arr2938 { r.EncodeArrayStart(4) } else { - yynn2933 = 1 - for _, b := range yyq2933 { + yynn2938 = 1 + for _, b := range yyq2938 { if b { - yynn2933++ + yynn2938++ } } - r.EncodeMapStart(yynn2933) - yynn2933 = 0 + r.EncodeMapStart(yynn2938) + yynn2938 = 0 } - if yyr2933 || yy2arr2933 { + if yyr2938 || yy2arr2938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2935 := &x.PodSignature - yy2935.CodecEncodeSelf(e) + yy2940 := &x.PodSignature + yy2940.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2936 := &x.PodSignature - yy2936.CodecEncodeSelf(e) + yy2941 := &x.PodSignature + yy2941.CodecEncodeSelf(e) } - if yyr2933 || yy2arr2933 { + if yyr2938 || yy2arr2938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2933[1] { - yy2938 := &x.EvictionTime - yym2939 := z.EncBinary() - _ = yym2939 + if yyq2938[1] { + yy2943 := &x.EvictionTime + yym2944 := z.EncBinary() + _ = yym2944 if false { - } else if z.HasExtensions() && z.EncExt(yy2938) { - } else if yym2939 { - z.EncBinaryMarshal(yy2938) - } else if !yym2939 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2938) + } else if z.HasExtensions() && z.EncExt(yy2943) { + } else if yym2944 { + z.EncBinaryMarshal(yy2943) + } else if !yym2944 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2943) } else { - z.EncFallback(yy2938) + z.EncFallback(yy2943) } } else { r.EncodeNil() } } else { - if yyq2933[1] { + if yyq2938[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2940 := &x.EvictionTime - yym2941 := z.EncBinary() - _ = yym2941 + yy2945 := &x.EvictionTime + yym2946 := z.EncBinary() + _ = yym2946 if false { - } else if z.HasExtensions() && z.EncExt(yy2940) { - } else if yym2941 { - z.EncBinaryMarshal(yy2940) - } else if !yym2941 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2940) + } else if z.HasExtensions() && z.EncExt(yy2945) { + } else if yym2946 { + z.EncBinaryMarshal(yy2945) + } else if !yym2946 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2945) } else { - z.EncFallback(yy2940) + z.EncFallback(yy2945) } } } - if yyr2933 || yy2arr2933 { + if yyr2938 || yy2arr2938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2933[2] { - yym2943 := z.EncBinary() - _ = yym2943 + if yyq2938[2] { + yym2948 := z.EncBinary() + _ = yym2948 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -37770,23 +37811,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2933[2] { + if yyq2938[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2944 := z.EncBinary() - _ = yym2944 + yym2949 := z.EncBinary() + _ = yym2949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2933 || yy2arr2933 { + if yyr2938 || yy2arr2938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2933[3] { - yym2946 := z.EncBinary() - _ = yym2946 + if yyq2938[3] { + yym2951 := z.EncBinary() + _ = yym2951 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -37795,19 +37836,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2933[3] { + if yyq2938[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2947 := z.EncBinary() - _ = yym2947 + yym2952 := z.EncBinary() + _ = yym2952 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2933 || yy2arr2933 { + if yyr2938 || yy2arr2938 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37820,25 +37861,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2948 := z.DecBinary() - _ = yym2948 + yym2953 := z.DecBinary() + _ = yym2953 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2949 := r.ContainerType() - if yyct2949 == codecSelferValueTypeMap1234 { - yyl2949 := r.ReadMapStart() - if yyl2949 == 0 { + yyct2954 := r.ContainerType() + if yyct2954 == codecSelferValueTypeMap1234 { + yyl2954 := r.ReadMapStart() + if yyl2954 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2949, d) + x.codecDecodeSelfFromMap(yyl2954, d) } - } else if yyct2949 == codecSelferValueTypeArray1234 { - yyl2949 := r.ReadArrayStart() - if yyl2949 == 0 { + } else if yyct2954 == codecSelferValueTypeArray1234 { + yyl2954 := r.ReadArrayStart() + if yyl2954 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2949, d) + x.codecDecodeSelfFromArray(yyl2954, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37850,12 +37891,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2950Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2950Slc - var yyhl2950 bool = l >= 0 - for yyj2950 := 0; ; yyj2950++ { - if yyhl2950 { - if yyj2950 >= l { + var yys2955Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2955Slc + var yyhl2955 bool = l >= 0 + for yyj2955 := 0; ; yyj2955++ { + if yyhl2955 { + if yyj2955 >= l { break } } else { @@ -37864,32 +37905,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2950Slc = r.DecodeBytes(yys2950Slc, true, true) - yys2950 := string(yys2950Slc) + yys2955Slc = r.DecodeBytes(yys2955Slc, true, true) + yys2955 := string(yys2955Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2950 { + switch yys2955 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2951 := &x.PodSignature - yyv2951.CodecDecodeSelf(d) + yyv2956 := &x.PodSignature + yyv2956.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2952 := &x.EvictionTime - yym2953 := z.DecBinary() - _ = yym2953 + yyv2957 := &x.EvictionTime + yym2958 := z.DecBinary() + _ = yym2958 if false { - } else if z.HasExtensions() && z.DecExt(yyv2952) { - } else if yym2953 { - z.DecBinaryUnmarshal(yyv2952) - } else if !yym2953 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2952) + } else if z.HasExtensions() && z.DecExt(yyv2957) { + } else if yym2958 { + z.DecBinaryUnmarshal(yyv2957) + } else if !yym2958 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2957) } else { - z.DecFallback(yyv2952, false) + z.DecFallback(yyv2957, false) } } case "reason": @@ -37905,9 +37946,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2950) - } // end switch yys2950 - } // end for yyj2950 + z.DecStructFieldNotFound(-1, yys2955) + } // end switch yys2955 + } // end for yyj2955 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37915,16 +37956,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2956 int - var yyb2956 bool - var yyhl2956 bool = l >= 0 - yyj2956++ - if yyhl2956 { - yyb2956 = yyj2956 > l + var yyj2961 int + var yyb2961 bool + var yyhl2961 bool = l >= 0 + yyj2961++ + if yyhl2961 { + yyb2961 = yyj2961 > l } else { - yyb2956 = r.CheckBreak() + yyb2961 = r.CheckBreak() } - if yyb2956 { + if yyb2961 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37932,16 +37973,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2957 := &x.PodSignature - yyv2957.CodecDecodeSelf(d) + yyv2962 := &x.PodSignature + yyv2962.CodecDecodeSelf(d) } - yyj2956++ - if yyhl2956 { - yyb2956 = yyj2956 > l + yyj2961++ + if yyhl2961 { + yyb2961 = yyj2961 > l } else { - yyb2956 = r.CheckBreak() + yyb2961 = r.CheckBreak() } - if yyb2956 { + if yyb2961 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37949,26 +37990,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2958 := &x.EvictionTime - yym2959 := z.DecBinary() - _ = yym2959 + yyv2963 := &x.EvictionTime + yym2964 := z.DecBinary() + _ = yym2964 if false { - } else if z.HasExtensions() && z.DecExt(yyv2958) { - } else if yym2959 { - z.DecBinaryUnmarshal(yyv2958) - } else if !yym2959 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2958) + } else if z.HasExtensions() && z.DecExt(yyv2963) { + } else if yym2964 { + z.DecBinaryUnmarshal(yyv2963) + } else if !yym2964 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2963) } else { - z.DecFallback(yyv2958, false) + z.DecFallback(yyv2963, false) } } - yyj2956++ - if yyhl2956 { - yyb2956 = yyj2956 > l + yyj2961++ + if yyhl2961 { + yyb2961 = yyj2961 > l } else { - yyb2956 = r.CheckBreak() + yyb2961 = r.CheckBreak() } - if yyb2956 { + if yyb2961 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37978,13 +38019,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj2956++ - if yyhl2956 { - yyb2956 = yyj2956 > l + yyj2961++ + if yyhl2961 { + yyb2961 = yyj2961 > l } else { - yyb2956 = r.CheckBreak() + yyb2961 = r.CheckBreak() } - if yyb2956 { + if yyb2961 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37995,17 +38036,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj2956++ - if yyhl2956 { - yyb2956 = yyj2956 > l + yyj2961++ + if yyhl2961 { + yyb2961 = yyj2961 > l } else { - yyb2956 = r.CheckBreak() + yyb2961 = r.CheckBreak() } - if yyb2956 { + if yyb2961 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2956-1, "") + z.DecStructFieldNotFound(yyj2961-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38017,33 +38058,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2962 := z.EncBinary() - _ = yym2962 + yym2967 := z.EncBinary() + _ = yym2967 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2963 := !z.EncBinary() - yy2arr2963 := z.EncBasicHandle().StructToArray - var yyq2963 [1]bool - _, _, _ = yysep2963, yyq2963, yy2arr2963 - const yyr2963 bool = false - yyq2963[0] = x.PodController != nil - var yynn2963 int - if yyr2963 || yy2arr2963 { + yysep2968 := !z.EncBinary() + yy2arr2968 := z.EncBasicHandle().StructToArray + var yyq2968 [1]bool + _, _, _ = yysep2968, yyq2968, yy2arr2968 + const yyr2968 bool = false + yyq2968[0] = x.PodController != nil + var yynn2968 int + if yyr2968 || yy2arr2968 { r.EncodeArrayStart(1) } else { - yynn2963 = 0 - for _, b := range yyq2963 { + yynn2968 = 0 + for _, b := range yyq2968 { if b { - yynn2963++ + yynn2968++ } } - r.EncodeMapStart(yynn2963) - yynn2963 = 0 + r.EncodeMapStart(yynn2968) + yynn2968 = 0 } - if yyr2963 || yy2arr2963 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2963[0] { + if yyq2968[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -38053,7 +38094,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2963[0] { + if yyq2968[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38064,7 +38105,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2963 || yy2arr2963 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38077,25 +38118,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2965 := z.DecBinary() - _ = yym2965 + yym2970 := z.DecBinary() + _ = yym2970 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2966 := r.ContainerType() - if yyct2966 == codecSelferValueTypeMap1234 { - yyl2966 := r.ReadMapStart() - if yyl2966 == 0 { + yyct2971 := r.ContainerType() + if yyct2971 == codecSelferValueTypeMap1234 { + yyl2971 := r.ReadMapStart() + if yyl2971 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2966, d) + x.codecDecodeSelfFromMap(yyl2971, d) } - } else if yyct2966 == codecSelferValueTypeArray1234 { - yyl2966 := r.ReadArrayStart() - if yyl2966 == 0 { + } else if yyct2971 == codecSelferValueTypeArray1234 { + yyl2971 := r.ReadArrayStart() + if yyl2971 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2966, d) + x.codecDecodeSelfFromArray(yyl2971, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38107,12 +38148,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2967Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2967Slc - var yyhl2967 bool = l >= 0 - for yyj2967 := 0; ; yyj2967++ { - if yyhl2967 { - if yyj2967 >= l { + var yys2972Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2972Slc + var yyhl2972 bool = l >= 0 + for yyj2972 := 0; ; yyj2972++ { + if yyhl2972 { + if yyj2972 >= l { break } } else { @@ -38121,10 +38162,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2967Slc = r.DecodeBytes(yys2967Slc, true, true) - yys2967 := string(yys2967Slc) + yys2972Slc = r.DecodeBytes(yys2972Slc, true, true) + yys2972 := string(yys2972Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2967 { + switch yys2972 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -38137,9 +38178,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2967) - } // end switch yys2967 - } // end for yyj2967 + z.DecStructFieldNotFound(-1, yys2972) + } // end switch yys2972 + } // end for yyj2972 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38147,16 +38188,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2969 int - var yyb2969 bool - var yyhl2969 bool = l >= 0 - yyj2969++ - if yyhl2969 { - yyb2969 = yyj2969 > l + var yyj2974 int + var yyb2974 bool + var yyhl2974 bool = l >= 0 + yyj2974++ + if yyhl2974 { + yyb2974 = yyj2974 > l } else { - yyb2969 = r.CheckBreak() + yyb2974 = r.CheckBreak() } - if yyb2969 { + if yyb2974 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38172,17 +38213,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj2969++ - if yyhl2969 { - yyb2969 = yyj2969 > l + yyj2974++ + if yyhl2974 { + yyb2974 = yyj2974 > l } else { - yyb2969 = r.CheckBreak() + yyb2974 = r.CheckBreak() } - if yyb2969 { + if yyb2974 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2969-1, "") + z.DecStructFieldNotFound(yyj2974-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38194,37 +38235,37 @@ func (x *ContainerImage) 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 [2]bool - _, _, _ = yysep2972, yyq2972, yy2arr2972 - const yyr2972 bool = false - yyq2972[1] = x.SizeBytes != 0 - var yynn2972 int - if yyr2972 || yy2arr2972 { + yysep2977 := !z.EncBinary() + yy2arr2977 := z.EncBasicHandle().StructToArray + var yyq2977 [2]bool + _, _, _ = yysep2977, yyq2977, yy2arr2977 + const yyr2977 bool = false + yyq2977[1] = x.SizeBytes != 0 + var yynn2977 int + if yyr2977 || yy2arr2977 { r.EncodeArrayStart(2) } 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 x.Names == nil { r.EncodeNil() } else { - yym2974 := z.EncBinary() - _ = yym2974 + yym2979 := z.EncBinary() + _ = yym2979 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -38237,19 +38278,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym2975 := z.EncBinary() - _ = yym2975 + yym2980 := z.EncBinary() + _ = yym2980 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - 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.EncodeInt(int64(x.SizeBytes)) @@ -38258,19 +38299,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2972[1] { + if yyq2977[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2978 := z.EncBinary() - _ = yym2978 + yym2983 := z.EncBinary() + _ = yym2983 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr2972 || yy2arr2972 { + if yyr2977 || yy2arr2977 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38283,25 +38324,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2979 := z.DecBinary() - _ = yym2979 + yym2984 := z.DecBinary() + _ = yym2984 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2980 := r.ContainerType() - if yyct2980 == codecSelferValueTypeMap1234 { - yyl2980 := r.ReadMapStart() - if yyl2980 == 0 { + yyct2985 := r.ContainerType() + if yyct2985 == codecSelferValueTypeMap1234 { + yyl2985 := r.ReadMapStart() + if yyl2985 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2980, d) + x.codecDecodeSelfFromMap(yyl2985, d) } - } else if yyct2980 == codecSelferValueTypeArray1234 { - yyl2980 := r.ReadArrayStart() - if yyl2980 == 0 { + } else if yyct2985 == codecSelferValueTypeArray1234 { + yyl2985 := r.ReadArrayStart() + if yyl2985 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2980, d) + x.codecDecodeSelfFromArray(yyl2985, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38313,12 +38354,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2981Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2981Slc - var yyhl2981 bool = l >= 0 - for yyj2981 := 0; ; yyj2981++ { - if yyhl2981 { - if yyj2981 >= l { + var yys2986Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2986Slc + var yyhl2986 bool = l >= 0 + for yyj2986 := 0; ; yyj2986++ { + if yyhl2986 { + if yyj2986 >= l { break } } else { @@ -38327,20 +38368,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2981Slc = r.DecodeBytes(yys2981Slc, true, true) - yys2981 := string(yys2981Slc) + yys2986Slc = r.DecodeBytes(yys2986Slc, true, true) + yys2986 := string(yys2986Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2981 { + switch yys2986 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2982 := &x.Names - yym2983 := z.DecBinary() - _ = yym2983 + yyv2987 := &x.Names + yym2988 := z.DecBinary() + _ = yym2988 if false { } else { - z.F.DecSliceStringX(yyv2982, false, d) + z.F.DecSliceStringX(yyv2987, false, d) } } case "sizeBytes": @@ -38350,9 +38391,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2981) - } // end switch yys2981 - } // end for yyj2981 + z.DecStructFieldNotFound(-1, yys2986) + } // end switch yys2986 + } // end for yyj2986 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38360,16 +38401,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2985 int - var yyb2985 bool - var yyhl2985 bool = l >= 0 - yyj2985++ - if yyhl2985 { - yyb2985 = yyj2985 > l + var yyj2990 int + var yyb2990 bool + var yyhl2990 bool = l >= 0 + yyj2990++ + if yyhl2990 { + yyb2990 = yyj2990 > l } else { - yyb2985 = r.CheckBreak() + yyb2990 = r.CheckBreak() } - if yyb2985 { + if yyb2990 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38377,21 +38418,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2986 := &x.Names - yym2987 := z.DecBinary() - _ = yym2987 + yyv2991 := &x.Names + yym2992 := z.DecBinary() + _ = yym2992 if false { } else { - z.F.DecSliceStringX(yyv2986, false, d) + z.F.DecSliceStringX(yyv2991, false, d) } } - yyj2985++ - if yyhl2985 { - yyb2985 = yyj2985 > l + yyj2990++ + if yyhl2990 { + yyb2990 = yyj2990 > l } else { - yyb2985 = r.CheckBreak() + yyb2990 = r.CheckBreak() } - if yyb2985 { + if yyb2990 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38402,17 +38443,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj2985++ - if yyhl2985 { - yyb2985 = yyj2985 > l + yyj2990++ + if yyhl2990 { + yyb2990 = yyj2990 > l } else { - yyb2985 = r.CheckBreak() + yyb2990 = r.CheckBreak() } - if yyb2985 { + if yyb2990 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2985-1, "") + z.DecStructFieldNotFound(yyj2990-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38421,8 +38462,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2989 := z.EncBinary() - _ = yym2989 + yym2994 := z.EncBinary() + _ = yym2994 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38434,8 +38475,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2990 := z.DecBinary() - _ = yym2990 + yym2995 := z.DecBinary() + _ = yym2995 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38447,8 +38488,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2991 := z.EncBinary() - _ = yym2991 + yym2996 := z.EncBinary() + _ = yym2996 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38460,8 +38501,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2992 := z.DecBinary() - _ = yym2992 + yym2997 := z.DecBinary() + _ = yym2997 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38476,34 +38517,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2993 := z.EncBinary() - _ = yym2993 + yym2998 := z.EncBinary() + _ = yym2998 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2994 := !z.EncBinary() - yy2arr2994 := z.EncBasicHandle().StructToArray - var yyq2994 [6]bool - _, _, _ = yysep2994, yyq2994, yy2arr2994 - const yyr2994 bool = false - yyq2994[2] = true - yyq2994[3] = true - yyq2994[4] = x.Reason != "" - yyq2994[5] = x.Message != "" - var yynn2994 int - if yyr2994 || yy2arr2994 { + yysep2999 := !z.EncBinary() + yy2arr2999 := z.EncBasicHandle().StructToArray + var yyq2999 [6]bool + _, _, _ = yysep2999, yyq2999, yy2arr2999 + const yyr2999 bool = false + yyq2999[2] = true + yyq2999[3] = true + yyq2999[4] = x.Reason != "" + yyq2999[5] = x.Message != "" + var yynn2999 int + if yyr2999 || yy2arr2999 { r.EncodeArrayStart(6) } else { - yynn2994 = 2 - for _, b := range yyq2994 { + yynn2999 = 2 + for _, b := range yyq2999 { if b { - yynn2994++ + yynn2999++ } } - r.EncodeMapStart(yynn2994) - yynn2994 = 0 + r.EncodeMapStart(yynn2999) + yynn2999 = 0 } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38512,7 +38553,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -38521,85 +38562,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2994[2] { - yy2998 := &x.LastHeartbeatTime - yym2999 := z.EncBinary() - _ = yym2999 + if yyq2999[2] { + yy3003 := &x.LastHeartbeatTime + yym3004 := z.EncBinary() + _ = yym3004 if false { - } else if z.HasExtensions() && z.EncExt(yy2998) { - } else if yym2999 { - z.EncBinaryMarshal(yy2998) - } else if !yym2999 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2998) + } else if z.HasExtensions() && z.EncExt(yy3003) { + } else if yym3004 { + z.EncBinaryMarshal(yy3003) + } else if !yym3004 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3003) } else { - z.EncFallback(yy2998) + z.EncFallback(yy3003) } } else { r.EncodeNil() } } else { - if yyq2994[2] { + if yyq2999[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3000 := &x.LastHeartbeatTime - yym3001 := z.EncBinary() - _ = yym3001 + yy3005 := &x.LastHeartbeatTime + yym3006 := z.EncBinary() + _ = yym3006 if false { - } else if z.HasExtensions() && z.EncExt(yy3000) { - } else if yym3001 { - z.EncBinaryMarshal(yy3000) - } else if !yym3001 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3000) + } else if z.HasExtensions() && z.EncExt(yy3005) { + } else if yym3006 { + z.EncBinaryMarshal(yy3005) + } else if !yym3006 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3005) } else { - z.EncFallback(yy3000) + z.EncFallback(yy3005) } } } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2994[3] { - yy3003 := &x.LastTransitionTime - yym3004 := z.EncBinary() - _ = yym3004 + if yyq2999[3] { + yy3008 := &x.LastTransitionTime + yym3009 := z.EncBinary() + _ = yym3009 if false { - } else if z.HasExtensions() && z.EncExt(yy3003) { - } else if yym3004 { - z.EncBinaryMarshal(yy3003) - } else if !yym3004 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3003) + } else if z.HasExtensions() && z.EncExt(yy3008) { + } else if yym3009 { + z.EncBinaryMarshal(yy3008) + } else if !yym3009 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3008) } else { - z.EncFallback(yy3003) + z.EncFallback(yy3008) } } else { r.EncodeNil() } } else { - if yyq2994[3] { + if yyq2999[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3005 := &x.LastTransitionTime - yym3006 := z.EncBinary() - _ = yym3006 + yy3010 := &x.LastTransitionTime + yym3011 := z.EncBinary() + _ = yym3011 if false { - } else if z.HasExtensions() && z.EncExt(yy3005) { - } else if yym3006 { - z.EncBinaryMarshal(yy3005) - } else if !yym3006 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3005) + } else if z.HasExtensions() && z.EncExt(yy3010) { + } else if yym3011 { + z.EncBinaryMarshal(yy3010) + } else if !yym3011 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3010) } else { - z.EncFallback(yy3005) + z.EncFallback(yy3010) } } } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2994[4] { - yym3008 := z.EncBinary() - _ = yym3008 + if yyq2999[4] { + yym3013 := z.EncBinary() + _ = yym3013 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38608,23 +38649,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2994[4] { + if yyq2999[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3009 := z.EncBinary() - _ = yym3009 + yym3014 := z.EncBinary() + _ = yym3014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2994[5] { - yym3011 := z.EncBinary() - _ = yym3011 + if yyq2999[5] { + yym3016 := z.EncBinary() + _ = yym3016 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -38633,19 +38674,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2994[5] { + if yyq2999[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3012 := z.EncBinary() - _ = yym3012 + yym3017 := z.EncBinary() + _ = yym3017 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38658,25 +38699,25 @@ func (x *NodeCondition) 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 { - yyct3014 := r.ContainerType() - if yyct3014 == codecSelferValueTypeMap1234 { - yyl3014 := r.ReadMapStart() - if yyl3014 == 0 { + yyct3019 := r.ContainerType() + if yyct3019 == codecSelferValueTypeMap1234 { + yyl3019 := r.ReadMapStart() + if yyl3019 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3014, d) + x.codecDecodeSelfFromMap(yyl3019, d) } - } else if yyct3014 == codecSelferValueTypeArray1234 { - yyl3014 := r.ReadArrayStart() - if yyl3014 == 0 { + } else if yyct3019 == codecSelferValueTypeArray1234 { + yyl3019 := r.ReadArrayStart() + if yyl3019 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3014, d) + x.codecDecodeSelfFromArray(yyl3019, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38688,12 +38729,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3015Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3015Slc - var yyhl3015 bool = l >= 0 - for yyj3015 := 0; ; yyj3015++ { - if yyhl3015 { - if yyj3015 >= l { + var yys3020Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3020Slc + var yyhl3020 bool = l >= 0 + for yyj3020 := 0; ; yyj3020++ { + if yyhl3020 { + if yyj3020 >= l { break } } else { @@ -38702,10 +38743,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3015Slc = r.DecodeBytes(yys3015Slc, true, true) - yys3015 := string(yys3015Slc) + yys3020Slc = r.DecodeBytes(yys3020Slc, true, true) + yys3020 := string(yys3020Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3015 { + switch yys3020 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -38722,34 +38763,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3018 := &x.LastHeartbeatTime - yym3019 := z.DecBinary() - _ = yym3019 + yyv3023 := &x.LastHeartbeatTime + yym3024 := z.DecBinary() + _ = yym3024 if false { - } else if z.HasExtensions() && z.DecExt(yyv3018) { - } else if yym3019 { - z.DecBinaryUnmarshal(yyv3018) - } else if !yym3019 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3018) + } else if z.HasExtensions() && z.DecExt(yyv3023) { + } else if yym3024 { + z.DecBinaryUnmarshal(yyv3023) + } else if !yym3024 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3023) } else { - z.DecFallback(yyv3018, false) + z.DecFallback(yyv3023, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3020 := &x.LastTransitionTime - yym3021 := z.DecBinary() - _ = yym3021 + yyv3025 := &x.LastTransitionTime + yym3026 := z.DecBinary() + _ = yym3026 if false { - } else if z.HasExtensions() && z.DecExt(yyv3020) { - } else if yym3021 { - z.DecBinaryUnmarshal(yyv3020) - } else if !yym3021 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3020) + } else if z.HasExtensions() && z.DecExt(yyv3025) { + } else if yym3026 { + z.DecBinaryUnmarshal(yyv3025) + } else if !yym3026 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3025) } else { - z.DecFallback(yyv3020, false) + z.DecFallback(yyv3025, false) } } case "reason": @@ -38765,9 +38806,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3015) - } // end switch yys3015 - } // end for yyj3015 + z.DecStructFieldNotFound(-1, yys3020) + } // end switch yys3020 + } // end for yyj3020 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38775,16 +38816,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3024 int - var yyb3024 bool - var yyhl3024 bool = l >= 0 - yyj3024++ - if yyhl3024 { - yyb3024 = yyj3024 > l + var yyj3029 int + var yyb3029 bool + var yyhl3029 bool = l >= 0 + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l } else { - yyb3024 = r.CheckBreak() + yyb3029 = r.CheckBreak() } - if yyb3024 { + if yyb3029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38794,13 +38835,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3024++ - if yyhl3024 { - yyb3024 = yyj3024 > l + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l } else { - yyb3024 = r.CheckBreak() + yyb3029 = r.CheckBreak() } - if yyb3024 { + if yyb3029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38810,13 +38851,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3024++ - if yyhl3024 { - yyb3024 = yyj3024 > l + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l } else { - yyb3024 = r.CheckBreak() + yyb3029 = r.CheckBreak() } - if yyb3024 { + if yyb3029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38824,26 +38865,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3027 := &x.LastHeartbeatTime - yym3028 := z.DecBinary() - _ = yym3028 + yyv3032 := &x.LastHeartbeatTime + yym3033 := z.DecBinary() + _ = yym3033 if false { - } else if z.HasExtensions() && z.DecExt(yyv3027) { - } else if yym3028 { - z.DecBinaryUnmarshal(yyv3027) - } else if !yym3028 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3027) + } else if z.HasExtensions() && z.DecExt(yyv3032) { + } else if yym3033 { + z.DecBinaryUnmarshal(yyv3032) + } else if !yym3033 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3032) } else { - z.DecFallback(yyv3027, false) + z.DecFallback(yyv3032, false) } } - yyj3024++ - if yyhl3024 { - yyb3024 = yyj3024 > l + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l } else { - yyb3024 = r.CheckBreak() + yyb3029 = r.CheckBreak() } - if yyb3024 { + if yyb3029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38851,26 +38892,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3029 := &x.LastTransitionTime - yym3030 := z.DecBinary() - _ = yym3030 + yyv3034 := &x.LastTransitionTime + yym3035 := z.DecBinary() + _ = yym3035 if false { - } else if z.HasExtensions() && z.DecExt(yyv3029) { - } else if yym3030 { - z.DecBinaryUnmarshal(yyv3029) - } else if !yym3030 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3029) + } else if z.HasExtensions() && z.DecExt(yyv3034) { + } else if yym3035 { + z.DecBinaryUnmarshal(yyv3034) + } else if !yym3035 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3034) } else { - z.DecFallback(yyv3029, false) + z.DecFallback(yyv3034, false) } } - yyj3024++ - if yyhl3024 { - yyb3024 = yyj3024 > l + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l } else { - yyb3024 = r.CheckBreak() + yyb3029 = r.CheckBreak() } - if yyb3024 { + if yyb3029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38880,13 +38921,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3024++ - if yyhl3024 { - yyb3024 = yyj3024 > l + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l } else { - yyb3024 = r.CheckBreak() + yyb3029 = r.CheckBreak() } - if yyb3024 { + if yyb3029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38897,17 +38938,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3024++ - if yyhl3024 { - yyb3024 = yyj3024 > l + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l } else { - yyb3024 = r.CheckBreak() + yyb3029 = r.CheckBreak() } - if yyb3024 { + if yyb3029 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3024-1, "") + z.DecStructFieldNotFound(yyj3029-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38916,8 +38957,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3033 := z.EncBinary() - _ = yym3033 + yym3038 := z.EncBinary() + _ = yym3038 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38929,8 +38970,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3034 := z.DecBinary() - _ = yym3034 + yym3039 := z.DecBinary() + _ = yym3039 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38945,30 +38986,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3035 := z.EncBinary() - _ = yym3035 + yym3040 := z.EncBinary() + _ = yym3040 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3036 := !z.EncBinary() - yy2arr3036 := z.EncBasicHandle().StructToArray - var yyq3036 [2]bool - _, _, _ = yysep3036, yyq3036, yy2arr3036 - const yyr3036 bool = false - var yynn3036 int - if yyr3036 || yy2arr3036 { + yysep3041 := !z.EncBinary() + yy2arr3041 := z.EncBasicHandle().StructToArray + var yyq3041 [2]bool + _, _, _ = yysep3041, yyq3041, yy2arr3041 + const yyr3041 bool = false + var yynn3041 int + if yyr3041 || yy2arr3041 { r.EncodeArrayStart(2) } else { - yynn3036 = 2 - for _, b := range yyq3036 { + yynn3041 = 2 + for _, b := range yyq3041 { if b { - yynn3036++ + yynn3041++ } } - r.EncodeMapStart(yynn3036) - yynn3036 = 0 + r.EncodeMapStart(yynn3041) + yynn3041 = 0 } - if yyr3036 || yy2arr3036 { + if yyr3041 || yy2arr3041 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38977,10 +39018,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3036 || yy2arr3036 { + if yyr3041 || yy2arr3041 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3039 := z.EncBinary() - _ = yym3039 + yym3044 := z.EncBinary() + _ = yym3044 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -38989,14 +39030,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3040 := z.EncBinary() - _ = yym3040 + yym3045 := z.EncBinary() + _ = yym3045 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3036 || yy2arr3036 { + if yyr3041 || yy2arr3041 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39009,25 +39050,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3041 := z.DecBinary() - _ = yym3041 + yym3046 := z.DecBinary() + _ = yym3046 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3042 := r.ContainerType() - if yyct3042 == codecSelferValueTypeMap1234 { - yyl3042 := r.ReadMapStart() - if yyl3042 == 0 { + yyct3047 := r.ContainerType() + if yyct3047 == codecSelferValueTypeMap1234 { + yyl3047 := r.ReadMapStart() + if yyl3047 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3042, d) + x.codecDecodeSelfFromMap(yyl3047, d) } - } else if yyct3042 == codecSelferValueTypeArray1234 { - yyl3042 := r.ReadArrayStart() - if yyl3042 == 0 { + } else if yyct3047 == codecSelferValueTypeArray1234 { + yyl3047 := r.ReadArrayStart() + if yyl3047 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3042, d) + x.codecDecodeSelfFromArray(yyl3047, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39039,12 +39080,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3043Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3043Slc - var yyhl3043 bool = l >= 0 - for yyj3043 := 0; ; yyj3043++ { - if yyhl3043 { - if yyj3043 >= l { + var yys3048Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3048Slc + var yyhl3048 bool = l >= 0 + for yyj3048 := 0; ; yyj3048++ { + if yyhl3048 { + if yyj3048 >= l { break } } else { @@ -39053,10 +39094,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3043Slc = r.DecodeBytes(yys3043Slc, true, true) - yys3043 := string(yys3043Slc) + yys3048Slc = r.DecodeBytes(yys3048Slc, true, true) + yys3048 := string(yys3048Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3043 { + switch yys3048 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39070,9 +39111,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3043) - } // end switch yys3043 - } // end for yyj3043 + z.DecStructFieldNotFound(-1, yys3048) + } // end switch yys3048 + } // end for yyj3048 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39080,16 +39121,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3046 int - var yyb3046 bool - var yyhl3046 bool = l >= 0 - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + var yyj3051 int + var yyb3051 bool + var yyhl3051 bool = l >= 0 + yyj3051++ + if yyhl3051 { + yyb3051 = yyj3051 > l } else { - yyb3046 = r.CheckBreak() + yyb3051 = r.CheckBreak() } - if yyb3046 { + if yyb3051 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39099,13 +39140,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3051++ + if yyhl3051 { + yyb3051 = yyj3051 > l } else { - yyb3046 = r.CheckBreak() + yyb3051 = r.CheckBreak() } - if yyb3046 { + if yyb3051 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39116,17 +39157,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3051++ + if yyhl3051 { + yyb3051 = yyj3051 > l } else { - yyb3046 = r.CheckBreak() + yyb3051 = r.CheckBreak() } - if yyb3046 { + if yyb3051 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3046-1, "") + z.DecStructFieldNotFound(yyj3051-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39138,33 +39179,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3049 := z.EncBinary() - _ = yym3049 + yym3054 := z.EncBinary() + _ = yym3054 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3050 := !z.EncBinary() - yy2arr3050 := z.EncBasicHandle().StructToArray - var yyq3050 [1]bool - _, _, _ = yysep3050, yyq3050, yy2arr3050 - const yyr3050 bool = false - yyq3050[0] = len(x.Capacity) != 0 - var yynn3050 int - if yyr3050 || yy2arr3050 { + yysep3055 := !z.EncBinary() + yy2arr3055 := z.EncBasicHandle().StructToArray + var yyq3055 [1]bool + _, _, _ = yysep3055, yyq3055, yy2arr3055 + const yyr3055 bool = false + yyq3055[0] = len(x.Capacity) != 0 + var yynn3055 int + if yyr3055 || yy2arr3055 { r.EncodeArrayStart(1) } else { - yynn3050 = 0 - for _, b := range yyq3050 { + yynn3055 = 0 + for _, b := range yyq3055 { if b { - yynn3050++ + yynn3055++ } } - r.EncodeMapStart(yynn3050) - yynn3050 = 0 + r.EncodeMapStart(yynn3055) + yynn3055 = 0 } - if yyr3050 || yy2arr3050 { + if yyr3055 || yy2arr3055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3050[0] { + if yyq3055[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -39174,7 +39215,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3050[0] { + if yyq3055[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39185,7 +39226,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3050 || yy2arr3050 { + if yyr3055 || yy2arr3055 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39198,25 +39239,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3052 := z.DecBinary() - _ = yym3052 + yym3057 := z.DecBinary() + _ = yym3057 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3053 := r.ContainerType() - if yyct3053 == codecSelferValueTypeMap1234 { - yyl3053 := r.ReadMapStart() - if yyl3053 == 0 { + yyct3058 := r.ContainerType() + if yyct3058 == codecSelferValueTypeMap1234 { + yyl3058 := r.ReadMapStart() + if yyl3058 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3053, d) + x.codecDecodeSelfFromMap(yyl3058, d) } - } else if yyct3053 == codecSelferValueTypeArray1234 { - yyl3053 := r.ReadArrayStart() - if yyl3053 == 0 { + } else if yyct3058 == codecSelferValueTypeArray1234 { + yyl3058 := r.ReadArrayStart() + if yyl3058 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3053, d) + x.codecDecodeSelfFromArray(yyl3058, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39228,12 +39269,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3054Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3054Slc - var yyhl3054 bool = l >= 0 - for yyj3054 := 0; ; yyj3054++ { - if yyhl3054 { - if yyj3054 >= l { + var yys3059Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3059Slc + var yyhl3059 bool = l >= 0 + for yyj3059 := 0; ; yyj3059++ { + if yyhl3059 { + if yyj3059 >= l { break } } else { @@ -39242,21 +39283,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3054Slc = r.DecodeBytes(yys3054Slc, true, true) - yys3054 := string(yys3054Slc) + yys3059Slc = r.DecodeBytes(yys3059Slc, true, true) + yys3059 := string(yys3059Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3054 { + switch yys3059 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3055 := &x.Capacity - yyv3055.CodecDecodeSelf(d) + yyv3060 := &x.Capacity + yyv3060.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3054) - } // end switch yys3054 - } // end for yyj3054 + z.DecStructFieldNotFound(-1, yys3059) + } // end switch yys3059 + } // end for yyj3059 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39264,16 +39305,16 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3056 int - var yyb3056 bool - var yyhl3056 bool = l >= 0 - yyj3056++ - if yyhl3056 { - yyb3056 = yyj3056 > l + var yyj3061 int + var yyb3061 bool + var yyhl3061 bool = l >= 0 + yyj3061++ + if yyhl3061 { + yyb3061 = yyj3061 > l } else { - yyb3056 = r.CheckBreak() + yyb3061 = r.CheckBreak() } - if yyb3056 { + if yyb3061 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39281,21 +39322,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3057 := &x.Capacity - yyv3057.CodecDecodeSelf(d) + yyv3062 := &x.Capacity + yyv3062.CodecDecodeSelf(d) } for { - yyj3056++ - if yyhl3056 { - yyb3056 = yyj3056 > l + yyj3061++ + if yyhl3061 { + yyb3061 = yyj3061 > l } else { - yyb3056 = r.CheckBreak() + yyb3061 = r.CheckBreak() } - if yyb3056 { + if yyb3061 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3056-1, "") + z.DecStructFieldNotFound(yyj3061-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39304,8 +39345,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3058 := z.EncBinary() - _ = yym3058 + yym3063 := z.EncBinary() + _ = yym3063 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39317,8 +39358,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3059 := z.DecBinary() - _ = yym3059 + yym3064 := z.DecBinary() + _ = yym3064 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39333,8 +39374,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3060 := z.EncBinary() - _ = yym3060 + yym3065 := z.EncBinary() + _ = yym3065 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39347,8 +39388,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3061 := z.DecBinary() - _ = yym3061 + yym3066 := z.DecBinary() + _ = yym3066 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39363,39 +39404,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3062 := z.EncBinary() - _ = yym3062 + yym3067 := z.EncBinary() + _ = yym3067 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3063 := !z.EncBinary() - yy2arr3063 := z.EncBasicHandle().StructToArray - var yyq3063 [5]bool - _, _, _ = yysep3063, yyq3063, yy2arr3063 - const yyr3063 bool = false - yyq3063[0] = x.Kind != "" - yyq3063[1] = x.APIVersion != "" - yyq3063[2] = true - yyq3063[3] = true - yyq3063[4] = true - var yynn3063 int - if yyr3063 || yy2arr3063 { + yysep3068 := !z.EncBinary() + yy2arr3068 := z.EncBasicHandle().StructToArray + var yyq3068 [5]bool + _, _, _ = yysep3068, yyq3068, yy2arr3068 + const yyr3068 bool = false + yyq3068[0] = x.Kind != "" + yyq3068[1] = x.APIVersion != "" + yyq3068[2] = true + yyq3068[3] = true + yyq3068[4] = true + var yynn3068 int + if yyr3068 || yy2arr3068 { r.EncodeArrayStart(5) } else { - yynn3063 = 0 - for _, b := range yyq3063 { + yynn3068 = 0 + for _, b := range yyq3068 { if b { - yynn3063++ + yynn3068++ } } - r.EncodeMapStart(yynn3063) - yynn3063 = 0 + r.EncodeMapStart(yynn3068) + yynn3068 = 0 } - if yyr3063 || yy2arr3063 { + if yyr3068 || yy2arr3068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3063[0] { - yym3065 := z.EncBinary() - _ = yym3065 + if yyq3068[0] { + yym3070 := z.EncBinary() + _ = yym3070 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39404,23 +39445,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3063[0] { + if yyq3068[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3066 := z.EncBinary() - _ = yym3066 + yym3071 := z.EncBinary() + _ = yym3071 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3063 || yy2arr3063 { + if yyr3068 || yy2arr3068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3063[1] { - yym3068 := z.EncBinary() - _ = yym3068 + if yyq3068[1] { + yym3073 := z.EncBinary() + _ = yym3073 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39429,70 +39470,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3063[1] { + if yyq3068[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3069 := z.EncBinary() - _ = yym3069 + yym3074 := z.EncBinary() + _ = yym3074 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3063 || yy2arr3063 { + if yyr3068 || yy2arr3068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3063[2] { - yy3071 := &x.ObjectMeta - yy3071.CodecEncodeSelf(e) + if yyq3068[2] { + yy3076 := &x.ObjectMeta + yy3076.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3063[2] { + if yyq3068[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3072 := &x.ObjectMeta - yy3072.CodecEncodeSelf(e) + yy3077 := &x.ObjectMeta + yy3077.CodecEncodeSelf(e) } } - if yyr3063 || yy2arr3063 { + if yyr3068 || yy2arr3068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3063[3] { - yy3074 := &x.Spec - yy3074.CodecEncodeSelf(e) + if yyq3068[3] { + yy3079 := &x.Spec + yy3079.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3063[3] { + if yyq3068[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3075 := &x.Spec - yy3075.CodecEncodeSelf(e) + yy3080 := &x.Spec + yy3080.CodecEncodeSelf(e) } } - if yyr3063 || yy2arr3063 { + if yyr3068 || yy2arr3068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3063[4] { - yy3077 := &x.Status - yy3077.CodecEncodeSelf(e) + if yyq3068[4] { + yy3082 := &x.Status + yy3082.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3063[4] { + if yyq3068[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3078 := &x.Status - yy3078.CodecEncodeSelf(e) + yy3083 := &x.Status + yy3083.CodecEncodeSelf(e) } } - if yyr3063 || yy2arr3063 { + if yyr3068 || yy2arr3068 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39505,25 +39546,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3079 := z.DecBinary() - _ = yym3079 + yym3084 := z.DecBinary() + _ = yym3084 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3080 := r.ContainerType() - if yyct3080 == codecSelferValueTypeMap1234 { - yyl3080 := r.ReadMapStart() - if yyl3080 == 0 { + yyct3085 := r.ContainerType() + if yyct3085 == codecSelferValueTypeMap1234 { + yyl3085 := r.ReadMapStart() + if yyl3085 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3080, d) + x.codecDecodeSelfFromMap(yyl3085, d) } - } else if yyct3080 == codecSelferValueTypeArray1234 { - yyl3080 := r.ReadArrayStart() - if yyl3080 == 0 { + } else if yyct3085 == codecSelferValueTypeArray1234 { + yyl3085 := r.ReadArrayStart() + if yyl3085 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3080, d) + x.codecDecodeSelfFromArray(yyl3085, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39535,12 +39576,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3081Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3081Slc - var yyhl3081 bool = l >= 0 - for yyj3081 := 0; ; yyj3081++ { - if yyhl3081 { - if yyj3081 >= l { + var yys3086Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3086Slc + var yyhl3086 bool = l >= 0 + for yyj3086 := 0; ; yyj3086++ { + if yyhl3086 { + if yyj3086 >= l { break } } else { @@ -39549,10 +39590,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3081Slc = r.DecodeBytes(yys3081Slc, true, true) - yys3081 := string(yys3081Slc) + yys3086Slc = r.DecodeBytes(yys3086Slc, true, true) + yys3086 := string(yys3086Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3081 { + switch yys3086 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39569,27 +39610,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3084 := &x.ObjectMeta - yyv3084.CodecDecodeSelf(d) + yyv3089 := &x.ObjectMeta + yyv3089.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3085 := &x.Spec - yyv3085.CodecDecodeSelf(d) + yyv3090 := &x.Spec + yyv3090.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3086 := &x.Status - yyv3086.CodecDecodeSelf(d) + yyv3091 := &x.Status + yyv3091.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3081) - } // end switch yys3081 - } // end for yyj3081 + z.DecStructFieldNotFound(-1, yys3086) + } // end switch yys3086 + } // end for yyj3086 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39597,16 +39638,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3087 int - var yyb3087 bool - var yyhl3087 bool = l >= 0 - yyj3087++ - if yyhl3087 { - yyb3087 = yyj3087 > l + var yyj3092 int + var yyb3092 bool + var yyhl3092 bool = l >= 0 + yyj3092++ + if yyhl3092 { + yyb3092 = yyj3092 > l } else { - yyb3087 = r.CheckBreak() + yyb3092 = r.CheckBreak() } - if yyb3087 { + if yyb3092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39616,13 +39657,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3087++ - if yyhl3087 { - yyb3087 = yyj3087 > l + yyj3092++ + if yyhl3092 { + yyb3092 = yyj3092 > l } else { - yyb3087 = r.CheckBreak() + yyb3092 = r.CheckBreak() } - if yyb3087 { + if yyb3092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39632,13 +39673,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3087++ - if yyhl3087 { - yyb3087 = yyj3087 > l + yyj3092++ + if yyhl3092 { + yyb3092 = yyj3092 > l } else { - yyb3087 = r.CheckBreak() + yyb3092 = r.CheckBreak() } - if yyb3087 { + if yyb3092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39646,16 +39687,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3090 := &x.ObjectMeta - yyv3090.CodecDecodeSelf(d) + yyv3095 := &x.ObjectMeta + yyv3095.CodecDecodeSelf(d) } - yyj3087++ - if yyhl3087 { - yyb3087 = yyj3087 > l + yyj3092++ + if yyhl3092 { + yyb3092 = yyj3092 > l } else { - yyb3087 = r.CheckBreak() + yyb3092 = r.CheckBreak() } - if yyb3087 { + if yyb3092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39663,16 +39704,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3091 := &x.Spec - yyv3091.CodecDecodeSelf(d) + yyv3096 := &x.Spec + yyv3096.CodecDecodeSelf(d) } - yyj3087++ - if yyhl3087 { - yyb3087 = yyj3087 > l + yyj3092++ + if yyhl3092 { + yyb3092 = yyj3092 > l } else { - yyb3087 = r.CheckBreak() + yyb3092 = r.CheckBreak() } - if yyb3087 { + if yyb3092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39680,21 +39721,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3092 := &x.Status - yyv3092.CodecDecodeSelf(d) + yyv3097 := &x.Status + yyv3097.CodecDecodeSelf(d) } for { - yyj3087++ - if yyhl3087 { - yyb3087 = yyj3087 > l + yyj3092++ + if yyhl3092 { + yyb3092 = yyj3092 > l } else { - yyb3087 = r.CheckBreak() + yyb3092 = r.CheckBreak() } - if yyb3087 { + if yyb3092 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3087-1, "") + z.DecStructFieldNotFound(yyj3092-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39706,37 +39747,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3093 := z.EncBinary() - _ = yym3093 + yym3098 := z.EncBinary() + _ = yym3098 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3094 := !z.EncBinary() - yy2arr3094 := z.EncBasicHandle().StructToArray - var yyq3094 [4]bool - _, _, _ = yysep3094, yyq3094, yy2arr3094 - const yyr3094 bool = false - yyq3094[0] = x.Kind != "" - yyq3094[1] = x.APIVersion != "" - yyq3094[2] = true - var yynn3094 int - if yyr3094 || yy2arr3094 { + yysep3099 := !z.EncBinary() + yy2arr3099 := z.EncBasicHandle().StructToArray + var yyq3099 [4]bool + _, _, _ = yysep3099, yyq3099, yy2arr3099 + const yyr3099 bool = false + yyq3099[0] = x.Kind != "" + yyq3099[1] = x.APIVersion != "" + yyq3099[2] = true + var yynn3099 int + if yyr3099 || yy2arr3099 { r.EncodeArrayStart(4) } else { - yynn3094 = 1 - for _, b := range yyq3094 { + yynn3099 = 1 + for _, b := range yyq3099 { if b { - yynn3094++ + yynn3099++ } } - r.EncodeMapStart(yynn3094) - yynn3094 = 0 + r.EncodeMapStart(yynn3099) + yynn3099 = 0 } - if yyr3094 || yy2arr3094 { + if yyr3099 || yy2arr3099 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3094[0] { - yym3096 := z.EncBinary() - _ = yym3096 + if yyq3099[0] { + yym3101 := z.EncBinary() + _ = yym3101 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39745,23 +39786,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3094[0] { + if yyq3099[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3097 := z.EncBinary() - _ = yym3097 + yym3102 := z.EncBinary() + _ = yym3102 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3094 || yy2arr3094 { + if yyr3099 || yy2arr3099 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3094[1] { - yym3099 := z.EncBinary() - _ = yym3099 + if yyq3099[1] { + yym3104 := z.EncBinary() + _ = yym3104 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39770,54 +39811,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3094[1] { + if yyq3099[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3100 := z.EncBinary() - _ = yym3100 + yym3105 := z.EncBinary() + _ = yym3105 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3094 || yy2arr3094 { + if yyr3099 || yy2arr3099 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3094[2] { - yy3102 := &x.ListMeta - yym3103 := z.EncBinary() - _ = yym3103 + if yyq3099[2] { + yy3107 := &x.ListMeta + yym3108 := z.EncBinary() + _ = yym3108 if false { - } else if z.HasExtensions() && z.EncExt(yy3102) { + } else if z.HasExtensions() && z.EncExt(yy3107) { } else { - z.EncFallback(yy3102) + z.EncFallback(yy3107) } } else { r.EncodeNil() } } else { - if yyq3094[2] { + if yyq3099[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3104 := &x.ListMeta - yym3105 := z.EncBinary() - _ = yym3105 + yy3109 := &x.ListMeta + yym3110 := z.EncBinary() + _ = yym3110 if false { - } else if z.HasExtensions() && z.EncExt(yy3104) { + } else if z.HasExtensions() && z.EncExt(yy3109) { } else { - z.EncFallback(yy3104) + z.EncFallback(yy3109) } } } - if yyr3094 || yy2arr3094 { + if yyr3099 || yy2arr3099 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3107 := z.EncBinary() - _ = yym3107 + yym3112 := z.EncBinary() + _ = yym3112 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -39830,15 +39871,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3108 := z.EncBinary() - _ = yym3108 + yym3113 := z.EncBinary() + _ = yym3113 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3094 || yy2arr3094 { + if yyr3099 || yy2arr3099 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39851,25 +39892,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3109 := z.DecBinary() - _ = yym3109 + yym3114 := z.DecBinary() + _ = yym3114 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3110 := r.ContainerType() - if yyct3110 == codecSelferValueTypeMap1234 { - yyl3110 := r.ReadMapStart() - if yyl3110 == 0 { + yyct3115 := r.ContainerType() + if yyct3115 == codecSelferValueTypeMap1234 { + yyl3115 := r.ReadMapStart() + if yyl3115 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3110, d) + x.codecDecodeSelfFromMap(yyl3115, d) } - } else if yyct3110 == codecSelferValueTypeArray1234 { - yyl3110 := r.ReadArrayStart() - if yyl3110 == 0 { + } else if yyct3115 == codecSelferValueTypeArray1234 { + yyl3115 := r.ReadArrayStart() + if yyl3115 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3110, d) + x.codecDecodeSelfFromArray(yyl3115, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39881,12 +39922,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3111Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3111Slc - var yyhl3111 bool = l >= 0 - for yyj3111 := 0; ; yyj3111++ { - if yyhl3111 { - if yyj3111 >= l { + var yys3116Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3116Slc + var yyhl3116 bool = l >= 0 + for yyj3116 := 0; ; yyj3116++ { + if yyhl3116 { + if yyj3116 >= l { break } } else { @@ -39895,10 +39936,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3111Slc = r.DecodeBytes(yys3111Slc, true, true) - yys3111 := string(yys3111Slc) + yys3116Slc = r.DecodeBytes(yys3116Slc, true, true) + yys3116 := string(yys3116Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3111 { + switch yys3116 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39915,31 +39956,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3114 := &x.ListMeta - yym3115 := z.DecBinary() - _ = yym3115 + yyv3119 := &x.ListMeta + yym3120 := z.DecBinary() + _ = yym3120 if false { - } else if z.HasExtensions() && z.DecExt(yyv3114) { + } else if z.HasExtensions() && z.DecExt(yyv3119) { } else { - z.DecFallback(yyv3114, false) + z.DecFallback(yyv3119, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3116 := &x.Items - yym3117 := z.DecBinary() - _ = yym3117 + yyv3121 := &x.Items + yym3122 := z.DecBinary() + _ = yym3122 if false { } else { - h.decSliceNode((*[]Node)(yyv3116), d) + h.decSliceNode((*[]Node)(yyv3121), d) } } default: - z.DecStructFieldNotFound(-1, yys3111) - } // end switch yys3111 - } // end for yyj3111 + z.DecStructFieldNotFound(-1, yys3116) + } // end switch yys3116 + } // end for yyj3116 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39947,16 +39988,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3118 int - var yyb3118 bool - var yyhl3118 bool = l >= 0 - yyj3118++ - if yyhl3118 { - yyb3118 = yyj3118 > l + var yyj3123 int + var yyb3123 bool + var yyhl3123 bool = l >= 0 + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3118 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3118 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39966,13 +40007,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3118++ - if yyhl3118 { - yyb3118 = yyj3118 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3118 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3118 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39982,13 +40023,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3118++ - if yyhl3118 { - yyb3118 = yyj3118 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3118 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3118 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39996,22 +40037,22 @@ func (x *NodeList) codecDecodeSelfFromArray(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) } } - yyj3118++ - if yyhl3118 { - yyb3118 = yyj3118 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3118 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3118 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40019,26 +40060,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { 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.decSliceNode((*[]Node)(yyv3123), d) + h.decSliceNode((*[]Node)(yyv3128), d) } } for { - yyj3118++ - if yyhl3118 { - yyb3118 = yyj3118 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3118 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3118 { + if yyb3123 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3118-1, "") + z.DecStructFieldNotFound(yyj3123-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40050,36 +40091,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3125 := z.EncBinary() - _ = yym3125 + yym3130 := z.EncBinary() + _ = yym3130 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3126 := !z.EncBinary() - yy2arr3126 := z.EncBasicHandle().StructToArray - var yyq3126 [1]bool - _, _, _ = yysep3126, yyq3126, yy2arr3126 - const yyr3126 bool = false - var yynn3126 int - if yyr3126 || yy2arr3126 { + yysep3131 := !z.EncBinary() + yy2arr3131 := z.EncBasicHandle().StructToArray + var yyq3131 [1]bool + _, _, _ = yysep3131, yyq3131, yy2arr3131 + const yyr3131 bool = false + var yynn3131 int + if yyr3131 || yy2arr3131 { r.EncodeArrayStart(1) } else { - yynn3126 = 1 - for _, b := range yyq3126 { + yynn3131 = 1 + for _, b := range yyq3131 { if b { - yynn3126++ + yynn3131++ } } - r.EncodeMapStart(yynn3126) - yynn3126 = 0 + r.EncodeMapStart(yynn3131) + yynn3131 = 0 } - if yyr3126 || yy2arr3126 { + if yyr3131 || yy2arr3131 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3128 := z.EncBinary() - _ = yym3128 + yym3133 := z.EncBinary() + _ = yym3133 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -40092,15 +40133,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym3129 := z.EncBinary() - _ = yym3129 + yym3134 := z.EncBinary() + _ = yym3134 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr3126 || yy2arr3126 { + if yyr3131 || yy2arr3131 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40113,25 +40154,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3130 := z.DecBinary() - _ = yym3130 + yym3135 := z.DecBinary() + _ = yym3135 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3131 := r.ContainerType() - if yyct3131 == codecSelferValueTypeMap1234 { - yyl3131 := r.ReadMapStart() - if yyl3131 == 0 { + yyct3136 := r.ContainerType() + if yyct3136 == codecSelferValueTypeMap1234 { + yyl3136 := r.ReadMapStart() + if yyl3136 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3131, d) + x.codecDecodeSelfFromMap(yyl3136, d) } - } else if yyct3131 == codecSelferValueTypeArray1234 { - yyl3131 := r.ReadArrayStart() - if yyl3131 == 0 { + } else if yyct3136 == codecSelferValueTypeArray1234 { + yyl3136 := r.ReadArrayStart() + if yyl3136 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3131, d) + x.codecDecodeSelfFromArray(yyl3136, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40143,12 +40184,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3132Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3132Slc - var yyhl3132 bool = l >= 0 - for yyj3132 := 0; ; yyj3132++ { - if yyhl3132 { - if yyj3132 >= l { + var yys3137Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3137Slc + var yyhl3137 bool = l >= 0 + for yyj3137 := 0; ; yyj3137++ { + if yyhl3137 { + if yyj3137 >= l { break } } else { @@ -40157,26 +40198,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3132Slc = r.DecodeBytes(yys3132Slc, true, true) - yys3132 := string(yys3132Slc) + yys3137Slc = r.DecodeBytes(yys3137Slc, true, true) + yys3137 := string(yys3137Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3132 { + switch yys3137 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3133 := &x.Finalizers - yym3134 := z.DecBinary() - _ = yym3134 + yyv3138 := &x.Finalizers + yym3139 := z.DecBinary() + _ = yym3139 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3133), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3138), d) } } default: - z.DecStructFieldNotFound(-1, yys3132) - } // end switch yys3132 - } // end for yyj3132 + z.DecStructFieldNotFound(-1, yys3137) + } // end switch yys3137 + } // end for yyj3137 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40184,16 +40225,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3135 int - var yyb3135 bool - var yyhl3135 bool = l >= 0 - yyj3135++ - if yyhl3135 { - yyb3135 = yyj3135 > l + var yyj3140 int + var yyb3140 bool + var yyhl3140 bool = l >= 0 + yyj3140++ + if yyhl3140 { + yyb3140 = yyj3140 > l } else { - yyb3135 = r.CheckBreak() + yyb3140 = r.CheckBreak() } - if yyb3135 { + if yyb3140 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40201,26 +40242,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3136 := &x.Finalizers - yym3137 := z.DecBinary() - _ = yym3137 + yyv3141 := &x.Finalizers + yym3142 := z.DecBinary() + _ = yym3142 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3136), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3141), d) } } for { - yyj3135++ - if yyhl3135 { - yyb3135 = yyj3135 > l + yyj3140++ + if yyhl3140 { + yyb3140 = yyj3140 > l } else { - yyb3135 = r.CheckBreak() + yyb3140 = r.CheckBreak() } - if yyb3135 { + if yyb3140 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3135-1, "") + z.DecStructFieldNotFound(yyj3140-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40229,8 +40270,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3138 := z.EncBinary() - _ = yym3138 + yym3143 := z.EncBinary() + _ = yym3143 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40242,8 +40283,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3139 := z.DecBinary() - _ = yym3139 + yym3144 := z.DecBinary() + _ = yym3144 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40258,46 +40299,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3140 := z.EncBinary() - _ = yym3140 + yym3145 := z.EncBinary() + _ = yym3145 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3141 := !z.EncBinary() - yy2arr3141 := z.EncBasicHandle().StructToArray - var yyq3141 [1]bool - _, _, _ = yysep3141, yyq3141, yy2arr3141 - const yyr3141 bool = false - yyq3141[0] = x.Phase != "" - var yynn3141 int - if yyr3141 || yy2arr3141 { + yysep3146 := !z.EncBinary() + yy2arr3146 := z.EncBasicHandle().StructToArray + var yyq3146 [1]bool + _, _, _ = yysep3146, yyq3146, yy2arr3146 + const yyr3146 bool = false + yyq3146[0] = x.Phase != "" + var yynn3146 int + if yyr3146 || yy2arr3146 { r.EncodeArrayStart(1) } else { - yynn3141 = 0 - for _, b := range yyq3141 { + yynn3146 = 0 + for _, b := range yyq3146 { if b { - yynn3141++ + yynn3146++ } } - r.EncodeMapStart(yynn3141) - yynn3141 = 0 + r.EncodeMapStart(yynn3146) + yynn3146 = 0 } - if yyr3141 || yy2arr3141 { + if yyr3146 || yy2arr3146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[0] { + if yyq3146[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3141[0] { + if yyq3146[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3141 || yy2arr3141 { + if yyr3146 || yy2arr3146 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40310,25 +40351,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3143 := z.DecBinary() - _ = yym3143 + yym3148 := z.DecBinary() + _ = yym3148 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3144 := r.ContainerType() - if yyct3144 == codecSelferValueTypeMap1234 { - yyl3144 := r.ReadMapStart() - if yyl3144 == 0 { + yyct3149 := r.ContainerType() + if yyct3149 == codecSelferValueTypeMap1234 { + yyl3149 := r.ReadMapStart() + if yyl3149 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3144, d) + x.codecDecodeSelfFromMap(yyl3149, d) } - } else if yyct3144 == codecSelferValueTypeArray1234 { - yyl3144 := r.ReadArrayStart() - if yyl3144 == 0 { + } else if yyct3149 == codecSelferValueTypeArray1234 { + yyl3149 := r.ReadArrayStart() + if yyl3149 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3144, d) + x.codecDecodeSelfFromArray(yyl3149, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40340,12 +40381,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3145Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3145Slc - var yyhl3145 bool = l >= 0 - for yyj3145 := 0; ; yyj3145++ { - if yyhl3145 { - if yyj3145 >= l { + var yys3150Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3150Slc + var yyhl3150 bool = l >= 0 + for yyj3150 := 0; ; yyj3150++ { + if yyhl3150 { + if yyj3150 >= l { break } } else { @@ -40354,10 +40395,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3145Slc = r.DecodeBytes(yys3145Slc, true, true) - yys3145 := string(yys3145Slc) + yys3150Slc = r.DecodeBytes(yys3150Slc, true, true) + yys3150 := string(yys3150Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3145 { + switch yys3150 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -40365,9 +40406,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3145) - } // end switch yys3145 - } // end for yyj3145 + z.DecStructFieldNotFound(-1, yys3150) + } // end switch yys3150 + } // end for yyj3150 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40375,16 +40416,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3147 int - var yyb3147 bool - var yyhl3147 bool = l >= 0 - yyj3147++ - if yyhl3147 { - yyb3147 = yyj3147 > l + var yyj3152 int + var yyb3152 bool + var yyhl3152 bool = l >= 0 + yyj3152++ + if yyhl3152 { + yyb3152 = yyj3152 > l } else { - yyb3147 = r.CheckBreak() + yyb3152 = r.CheckBreak() } - if yyb3147 { + if yyb3152 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40395,17 +40436,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3147++ - if yyhl3147 { - yyb3147 = yyj3147 > l + yyj3152++ + if yyhl3152 { + yyb3152 = yyj3152 > l } else { - yyb3147 = r.CheckBreak() + yyb3152 = r.CheckBreak() } - if yyb3147 { + if yyb3152 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3147-1, "") + z.DecStructFieldNotFound(yyj3152-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40414,8 +40455,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3149 := z.EncBinary() - _ = yym3149 + yym3154 := z.EncBinary() + _ = yym3154 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40427,8 +40468,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3150 := z.DecBinary() - _ = yym3150 + yym3155 := z.DecBinary() + _ = yym3155 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40443,39 +40484,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3151 := z.EncBinary() - _ = yym3151 + yym3156 := z.EncBinary() + _ = yym3156 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3152 := !z.EncBinary() - yy2arr3152 := z.EncBasicHandle().StructToArray - var yyq3152 [5]bool - _, _, _ = yysep3152, yyq3152, yy2arr3152 - const yyr3152 bool = false - yyq3152[0] = x.Kind != "" - yyq3152[1] = x.APIVersion != "" - yyq3152[2] = true - yyq3152[3] = true - yyq3152[4] = true - var yynn3152 int - if yyr3152 || yy2arr3152 { + yysep3157 := !z.EncBinary() + yy2arr3157 := z.EncBasicHandle().StructToArray + var yyq3157 [5]bool + _, _, _ = yysep3157, yyq3157, yy2arr3157 + const yyr3157 bool = false + yyq3157[0] = x.Kind != "" + yyq3157[1] = x.APIVersion != "" + yyq3157[2] = true + yyq3157[3] = true + yyq3157[4] = true + var yynn3157 int + if yyr3157 || yy2arr3157 { r.EncodeArrayStart(5) } else { - yynn3152 = 0 - for _, b := range yyq3152 { + yynn3157 = 0 + for _, b := range yyq3157 { if b { - yynn3152++ + yynn3157++ } } - r.EncodeMapStart(yynn3152) - yynn3152 = 0 + r.EncodeMapStart(yynn3157) + yynn3157 = 0 } - if yyr3152 || yy2arr3152 { + if yyr3157 || yy2arr3157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3152[0] { - yym3154 := z.EncBinary() - _ = yym3154 + if yyq3157[0] { + yym3159 := z.EncBinary() + _ = yym3159 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40484,23 +40525,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3152[0] { + if yyq3157[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3155 := z.EncBinary() - _ = yym3155 + yym3160 := z.EncBinary() + _ = yym3160 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3152 || yy2arr3152 { + if yyr3157 || yy2arr3157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3152[1] { - yym3157 := z.EncBinary() - _ = yym3157 + if yyq3157[1] { + yym3162 := z.EncBinary() + _ = yym3162 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40509,70 +40550,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3152[1] { + if yyq3157[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3158 := z.EncBinary() - _ = yym3158 + yym3163 := z.EncBinary() + _ = yym3163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3152 || yy2arr3152 { + if yyr3157 || yy2arr3157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3152[2] { - yy3160 := &x.ObjectMeta - yy3160.CodecEncodeSelf(e) + if yyq3157[2] { + yy3165 := &x.ObjectMeta + yy3165.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3152[2] { + if yyq3157[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3161 := &x.ObjectMeta - yy3161.CodecEncodeSelf(e) + yy3166 := &x.ObjectMeta + yy3166.CodecEncodeSelf(e) } } - if yyr3152 || yy2arr3152 { + if yyr3157 || yy2arr3157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3152[3] { - yy3163 := &x.Spec - yy3163.CodecEncodeSelf(e) + if yyq3157[3] { + yy3168 := &x.Spec + yy3168.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3152[3] { + if yyq3157[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3164 := &x.Spec - yy3164.CodecEncodeSelf(e) + yy3169 := &x.Spec + yy3169.CodecEncodeSelf(e) } } - if yyr3152 || yy2arr3152 { + if yyr3157 || yy2arr3157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3152[4] { - yy3166 := &x.Status - yy3166.CodecEncodeSelf(e) + if yyq3157[4] { + yy3171 := &x.Status + yy3171.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3152[4] { + if yyq3157[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3167 := &x.Status - yy3167.CodecEncodeSelf(e) + yy3172 := &x.Status + yy3172.CodecEncodeSelf(e) } } - if yyr3152 || yy2arr3152 { + if yyr3157 || yy2arr3157 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40585,25 +40626,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3168 := z.DecBinary() - _ = yym3168 + yym3173 := z.DecBinary() + _ = yym3173 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3169 := r.ContainerType() - if yyct3169 == codecSelferValueTypeMap1234 { - yyl3169 := r.ReadMapStart() - if yyl3169 == 0 { + yyct3174 := r.ContainerType() + if yyct3174 == codecSelferValueTypeMap1234 { + yyl3174 := r.ReadMapStart() + if yyl3174 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3169, d) + x.codecDecodeSelfFromMap(yyl3174, d) } - } else if yyct3169 == codecSelferValueTypeArray1234 { - yyl3169 := r.ReadArrayStart() - if yyl3169 == 0 { + } else if yyct3174 == codecSelferValueTypeArray1234 { + yyl3174 := r.ReadArrayStart() + if yyl3174 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3169, d) + x.codecDecodeSelfFromArray(yyl3174, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40615,12 +40656,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3170Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3170Slc - var yyhl3170 bool = l >= 0 - for yyj3170 := 0; ; yyj3170++ { - if yyhl3170 { - if yyj3170 >= l { + var yys3175Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3175Slc + var yyhl3175 bool = l >= 0 + for yyj3175 := 0; ; yyj3175++ { + if yyhl3175 { + if yyj3175 >= l { break } } else { @@ -40629,10 +40670,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3170Slc = r.DecodeBytes(yys3170Slc, true, true) - yys3170 := string(yys3170Slc) + yys3175Slc = r.DecodeBytes(yys3175Slc, true, true) + yys3175 := string(yys3175Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3170 { + switch yys3175 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40649,27 +40690,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3173 := &x.ObjectMeta - yyv3173.CodecDecodeSelf(d) + yyv3178 := &x.ObjectMeta + yyv3178.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3174 := &x.Spec - yyv3174.CodecDecodeSelf(d) + yyv3179 := &x.Spec + yyv3179.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3175 := &x.Status - yyv3175.CodecDecodeSelf(d) + yyv3180 := &x.Status + yyv3180.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3170) - } // end switch yys3170 - } // end for yyj3170 + z.DecStructFieldNotFound(-1, yys3175) + } // end switch yys3175 + } // end for yyj3175 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40677,16 +40718,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3176 int - var yyb3176 bool - var yyhl3176 bool = l >= 0 - yyj3176++ - if yyhl3176 { - yyb3176 = yyj3176 > l + var yyj3181 int + var yyb3181 bool + var yyhl3181 bool = l >= 0 + yyj3181++ + if yyhl3181 { + yyb3181 = yyj3181 > l } else { - yyb3176 = r.CheckBreak() + yyb3181 = r.CheckBreak() } - if yyb3176 { + if yyb3181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40696,13 +40737,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3176++ - if yyhl3176 { - yyb3176 = yyj3176 > l + yyj3181++ + if yyhl3181 { + yyb3181 = yyj3181 > l } else { - yyb3176 = r.CheckBreak() + yyb3181 = r.CheckBreak() } - if yyb3176 { + if yyb3181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40712,13 +40753,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3176++ - if yyhl3176 { - yyb3176 = yyj3176 > l + yyj3181++ + if yyhl3181 { + yyb3181 = yyj3181 > l } else { - yyb3176 = r.CheckBreak() + yyb3181 = r.CheckBreak() } - if yyb3176 { + if yyb3181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40726,16 +40767,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3179 := &x.ObjectMeta - yyv3179.CodecDecodeSelf(d) + yyv3184 := &x.ObjectMeta + yyv3184.CodecDecodeSelf(d) } - yyj3176++ - if yyhl3176 { - yyb3176 = yyj3176 > l + yyj3181++ + if yyhl3181 { + yyb3181 = yyj3181 > l } else { - yyb3176 = r.CheckBreak() + yyb3181 = r.CheckBreak() } - if yyb3176 { + if yyb3181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40743,16 +40784,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3180 := &x.Spec - yyv3180.CodecDecodeSelf(d) + yyv3185 := &x.Spec + yyv3185.CodecDecodeSelf(d) } - yyj3176++ - if yyhl3176 { - yyb3176 = yyj3176 > l + yyj3181++ + if yyhl3181 { + yyb3181 = yyj3181 > l } else { - yyb3176 = r.CheckBreak() + yyb3181 = r.CheckBreak() } - if yyb3176 { + if yyb3181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40760,21 +40801,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3181 := &x.Status - yyv3181.CodecDecodeSelf(d) + yyv3186 := &x.Status + yyv3186.CodecDecodeSelf(d) } for { - yyj3176++ - if yyhl3176 { - yyb3176 = yyj3176 > l + yyj3181++ + if yyhl3181 { + yyb3181 = yyj3181 > l } else { - yyb3176 = r.CheckBreak() + yyb3181 = r.CheckBreak() } - if yyb3176 { + if yyb3181 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3176-1, "") + z.DecStructFieldNotFound(yyj3181-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40786,37 +40827,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3182 := z.EncBinary() - _ = yym3182 + yym3187 := z.EncBinary() + _ = yym3187 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3183 := !z.EncBinary() - yy2arr3183 := z.EncBasicHandle().StructToArray - var yyq3183 [4]bool - _, _, _ = yysep3183, yyq3183, yy2arr3183 - const yyr3183 bool = false - yyq3183[0] = x.Kind != "" - yyq3183[1] = x.APIVersion != "" - yyq3183[2] = true - var yynn3183 int - if yyr3183 || yy2arr3183 { + yysep3188 := !z.EncBinary() + yy2arr3188 := z.EncBasicHandle().StructToArray + var yyq3188 [4]bool + _, _, _ = yysep3188, yyq3188, yy2arr3188 + const yyr3188 bool = false + yyq3188[0] = x.Kind != "" + yyq3188[1] = x.APIVersion != "" + yyq3188[2] = true + var yynn3188 int + if yyr3188 || yy2arr3188 { r.EncodeArrayStart(4) } else { - yynn3183 = 1 - for _, b := range yyq3183 { + yynn3188 = 1 + for _, b := range yyq3188 { if b { - yynn3183++ + yynn3188++ } } - r.EncodeMapStart(yynn3183) - yynn3183 = 0 + r.EncodeMapStart(yynn3188) + yynn3188 = 0 } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3183[0] { - yym3185 := z.EncBinary() - _ = yym3185 + if yyq3188[0] { + yym3190 := z.EncBinary() + _ = yym3190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40825,23 +40866,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3183[0] { + if yyq3188[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3186 := z.EncBinary() - _ = yym3186 + yym3191 := z.EncBinary() + _ = yym3191 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3183[1] { - yym3188 := z.EncBinary() - _ = yym3188 + if yyq3188[1] { + yym3193 := z.EncBinary() + _ = yym3193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40850,54 +40891,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3183[1] { + if yyq3188[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3189 := z.EncBinary() - _ = yym3189 + yym3194 := z.EncBinary() + _ = yym3194 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3183[2] { - yy3191 := &x.ListMeta - yym3192 := z.EncBinary() - _ = yym3192 + if yyq3188[2] { + yy3196 := &x.ListMeta + yym3197 := z.EncBinary() + _ = yym3197 if false { - } else if z.HasExtensions() && z.EncExt(yy3191) { + } else if z.HasExtensions() && z.EncExt(yy3196) { } else { - z.EncFallback(yy3191) + z.EncFallback(yy3196) } } else { r.EncodeNil() } } else { - if yyq3183[2] { + if yyq3188[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3193 := &x.ListMeta - yym3194 := z.EncBinary() - _ = yym3194 + 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) } } } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3196 := z.EncBinary() - _ = yym3196 + yym3201 := z.EncBinary() + _ = yym3201 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -40910,15 +40951,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3197 := z.EncBinary() - _ = yym3197 + yym3202 := z.EncBinary() + _ = yym3202 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40931,25 +40972,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3198 := z.DecBinary() - _ = yym3198 + yym3203 := z.DecBinary() + _ = yym3203 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3199 := r.ContainerType() - if yyct3199 == codecSelferValueTypeMap1234 { - yyl3199 := r.ReadMapStart() - if yyl3199 == 0 { + yyct3204 := r.ContainerType() + if yyct3204 == codecSelferValueTypeMap1234 { + yyl3204 := r.ReadMapStart() + if yyl3204 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3199, d) + x.codecDecodeSelfFromMap(yyl3204, d) } - } else if yyct3199 == codecSelferValueTypeArray1234 { - yyl3199 := r.ReadArrayStart() - if yyl3199 == 0 { + } else if yyct3204 == codecSelferValueTypeArray1234 { + yyl3204 := r.ReadArrayStart() + if yyl3204 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3199, d) + x.codecDecodeSelfFromArray(yyl3204, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40961,12 +41002,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3200Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3200Slc - var yyhl3200 bool = l >= 0 - for yyj3200 := 0; ; yyj3200++ { - if yyhl3200 { - if yyj3200 >= l { + var yys3205Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3205Slc + var yyhl3205 bool = l >= 0 + for yyj3205 := 0; ; yyj3205++ { + if yyhl3205 { + if yyj3205 >= l { break } } else { @@ -40975,10 +41016,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3200Slc = r.DecodeBytes(yys3200Slc, true, true) - yys3200 := string(yys3200Slc) + yys3205Slc = r.DecodeBytes(yys3205Slc, true, true) + yys3205 := string(yys3205Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3200 { + switch yys3205 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40995,31 +41036,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3203 := &x.ListMeta - yym3204 := z.DecBinary() - _ = yym3204 + yyv3208 := &x.ListMeta + yym3209 := z.DecBinary() + _ = yym3209 if false { - } else if z.HasExtensions() && z.DecExt(yyv3203) { + } else if z.HasExtensions() && z.DecExt(yyv3208) { } else { - z.DecFallback(yyv3203, false) + z.DecFallback(yyv3208, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3205 := &x.Items - yym3206 := z.DecBinary() - _ = yym3206 + yyv3210 := &x.Items + yym3211 := z.DecBinary() + _ = yym3211 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3205), d) + h.decSliceNamespace((*[]Namespace)(yyv3210), d) } } default: - z.DecStructFieldNotFound(-1, yys3200) - } // end switch yys3200 - } // end for yyj3200 + z.DecStructFieldNotFound(-1, yys3205) + } // end switch yys3205 + } // end for yyj3205 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41027,16 +41068,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3207 int - var yyb3207 bool - var yyhl3207 bool = l >= 0 - yyj3207++ - if yyhl3207 { - yyb3207 = yyj3207 > l + var yyj3212 int + var yyb3212 bool + var yyhl3212 bool = l >= 0 + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3207 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3207 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41046,13 +41087,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3207++ - if yyhl3207 { - yyb3207 = yyj3207 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3207 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3207 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41062,13 +41103,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3207++ - if yyhl3207 { - yyb3207 = yyj3207 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3207 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3207 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41076,22 +41117,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3210 := &x.ListMeta - yym3211 := z.DecBinary() - _ = yym3211 + yyv3215 := &x.ListMeta + yym3216 := z.DecBinary() + _ = yym3216 if false { - } else if z.HasExtensions() && z.DecExt(yyv3210) { + } else if z.HasExtensions() && z.DecExt(yyv3215) { } else { - z.DecFallback(yyv3210, false) + z.DecFallback(yyv3215, false) } } - yyj3207++ - if yyhl3207 { - yyb3207 = yyj3207 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3207 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3207 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41099,26 +41140,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3212 := &x.Items - yym3213 := z.DecBinary() - _ = yym3213 + yyv3217 := &x.Items + yym3218 := z.DecBinary() + _ = yym3218 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3212), d) + h.decSliceNamespace((*[]Namespace)(yyv3217), d) } } for { - yyj3207++ - if yyhl3207 { - yyb3207 = yyj3207 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3207 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3207 { + if yyb3212 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3207-1, "") + z.DecStructFieldNotFound(yyj3212-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41130,37 +41171,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3214 := z.EncBinary() - _ = yym3214 + yym3219 := z.EncBinary() + _ = yym3219 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3215 := !z.EncBinary() - yy2arr3215 := z.EncBasicHandle().StructToArray - var yyq3215 [4]bool - _, _, _ = yysep3215, yyq3215, yy2arr3215 - const yyr3215 bool = false - yyq3215[0] = x.Kind != "" - yyq3215[1] = x.APIVersion != "" - yyq3215[2] = true - var yynn3215 int - if yyr3215 || yy2arr3215 { + yysep3220 := !z.EncBinary() + yy2arr3220 := z.EncBasicHandle().StructToArray + var yyq3220 [4]bool + _, _, _ = yysep3220, yyq3220, yy2arr3220 + const yyr3220 bool = false + yyq3220[0] = x.Kind != "" + yyq3220[1] = x.APIVersion != "" + yyq3220[2] = true + var yynn3220 int + if yyr3220 || yy2arr3220 { r.EncodeArrayStart(4) } else { - yynn3215 = 1 - for _, b := range yyq3215 { + yynn3220 = 1 + for _, b := range yyq3220 { if b { - yynn3215++ + yynn3220++ } } - r.EncodeMapStart(yynn3215) - yynn3215 = 0 + r.EncodeMapStart(yynn3220) + yynn3220 = 0 } - if yyr3215 || yy2arr3215 { + if yyr3220 || yy2arr3220 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3215[0] { - yym3217 := z.EncBinary() - _ = yym3217 + if yyq3220[0] { + yym3222 := z.EncBinary() + _ = yym3222 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41169,23 +41210,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3215[0] { + if yyq3220[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3218 := z.EncBinary() - _ = yym3218 + yym3223 := z.EncBinary() + _ = yym3223 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3215 || yy2arr3215 { + if yyr3220 || yy2arr3220 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3215[1] { - yym3220 := z.EncBinary() - _ = yym3220 + if yyq3220[1] { + yym3225 := z.EncBinary() + _ = yym3225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41194,47 +41235,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3215[1] { + if yyq3220[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3221 := z.EncBinary() - _ = yym3221 + yym3226 := z.EncBinary() + _ = yym3226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3215 || yy2arr3215 { + if yyr3220 || yy2arr3220 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3215[2] { - yy3223 := &x.ObjectMeta - yy3223.CodecEncodeSelf(e) + if yyq3220[2] { + yy3228 := &x.ObjectMeta + yy3228.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3215[2] { + if yyq3220[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3224 := &x.ObjectMeta - yy3224.CodecEncodeSelf(e) + yy3229 := &x.ObjectMeta + yy3229.CodecEncodeSelf(e) } } - if yyr3215 || yy2arr3215 { + if yyr3220 || yy2arr3220 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3226 := &x.Target - yy3226.CodecEncodeSelf(e) + yy3231 := &x.Target + yy3231.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3227 := &x.Target - yy3227.CodecEncodeSelf(e) + yy3232 := &x.Target + yy3232.CodecEncodeSelf(e) } - if yyr3215 || yy2arr3215 { + if yyr3220 || yy2arr3220 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41247,25 +41288,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3228 := z.DecBinary() - _ = yym3228 + yym3233 := z.DecBinary() + _ = yym3233 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3229 := r.ContainerType() - if yyct3229 == codecSelferValueTypeMap1234 { - yyl3229 := r.ReadMapStart() - if yyl3229 == 0 { + yyct3234 := r.ContainerType() + if yyct3234 == codecSelferValueTypeMap1234 { + yyl3234 := r.ReadMapStart() + if yyl3234 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3229, d) + x.codecDecodeSelfFromMap(yyl3234, d) } - } else if yyct3229 == codecSelferValueTypeArray1234 { - yyl3229 := r.ReadArrayStart() - if yyl3229 == 0 { + } else if yyct3234 == codecSelferValueTypeArray1234 { + yyl3234 := r.ReadArrayStart() + if yyl3234 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3229, d) + x.codecDecodeSelfFromArray(yyl3234, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41277,12 +41318,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3230Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3230Slc - var yyhl3230 bool = l >= 0 - for yyj3230 := 0; ; yyj3230++ { - if yyhl3230 { - if yyj3230 >= l { + var yys3235Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3235Slc + var yyhl3235 bool = l >= 0 + for yyj3235 := 0; ; yyj3235++ { + if yyhl3235 { + if yyj3235 >= l { break } } else { @@ -41291,10 +41332,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3230Slc = r.DecodeBytes(yys3230Slc, true, true) - yys3230 := string(yys3230Slc) + yys3235Slc = r.DecodeBytes(yys3235Slc, true, true) + yys3235 := string(yys3235Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3230 { + switch yys3235 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41311,20 +41352,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3233 := &x.ObjectMeta - yyv3233.CodecDecodeSelf(d) + yyv3238 := &x.ObjectMeta + yyv3238.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3234 := &x.Target - yyv3234.CodecDecodeSelf(d) + yyv3239 := &x.Target + yyv3239.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3230) - } // end switch yys3230 - } // end for yyj3230 + z.DecStructFieldNotFound(-1, yys3235) + } // end switch yys3235 + } // end for yyj3235 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41332,16 +41373,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3235 int - var yyb3235 bool - var yyhl3235 bool = l >= 0 - yyj3235++ - if yyhl3235 { - yyb3235 = yyj3235 > l + var yyj3240 int + var yyb3240 bool + var yyhl3240 bool = l >= 0 + yyj3240++ + if yyhl3240 { + yyb3240 = yyj3240 > l } else { - yyb3235 = r.CheckBreak() + yyb3240 = r.CheckBreak() } - if yyb3235 { + if yyb3240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41351,13 +41392,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3235++ - if yyhl3235 { - yyb3235 = yyj3235 > l + yyj3240++ + if yyhl3240 { + yyb3240 = yyj3240 > l } else { - yyb3235 = r.CheckBreak() + yyb3240 = r.CheckBreak() } - if yyb3235 { + if yyb3240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41367,13 +41408,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3235++ - if yyhl3235 { - yyb3235 = yyj3235 > l + yyj3240++ + if yyhl3240 { + yyb3240 = yyj3240 > l } else { - yyb3235 = r.CheckBreak() + yyb3240 = r.CheckBreak() } - if yyb3235 { + if yyb3240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41381,16 +41422,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3238 := &x.ObjectMeta - yyv3238.CodecDecodeSelf(d) + yyv3243 := &x.ObjectMeta + yyv3243.CodecDecodeSelf(d) } - yyj3235++ - if yyhl3235 { - yyb3235 = yyj3235 > l + yyj3240++ + if yyhl3240 { + yyb3240 = yyj3240 > l } else { - yyb3235 = r.CheckBreak() + yyb3240 = r.CheckBreak() } - if yyb3235 { + if yyb3240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41398,21 +41439,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3239 := &x.Target - yyv3239.CodecDecodeSelf(d) + yyv3244 := &x.Target + yyv3244.CodecDecodeSelf(d) } for { - yyj3235++ - if yyhl3235 { - yyb3235 = yyj3235 > l + yyj3240++ + if yyhl3240 { + yyb3240 = yyj3240 > l } else { - yyb3235 = r.CheckBreak() + yyb3240 = r.CheckBreak() } - if yyb3235 { + if yyb3240 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3235-1, "") + z.DecStructFieldNotFound(yyj3240-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41424,68 +41465,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3240 := z.EncBinary() - _ = yym3240 + yym3245 := z.EncBinary() + _ = yym3245 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3241 := !z.EncBinary() - yy2arr3241 := z.EncBasicHandle().StructToArray - var yyq3241 [1]bool - _, _, _ = yysep3241, yyq3241, yy2arr3241 - const yyr3241 bool = false - yyq3241[0] = x.UID != nil - var yynn3241 int - if yyr3241 || yy2arr3241 { + yysep3246 := !z.EncBinary() + yy2arr3246 := z.EncBasicHandle().StructToArray + var yyq3246 [1]bool + _, _, _ = yysep3246, yyq3246, yy2arr3246 + const yyr3246 bool = false + yyq3246[0] = x.UID != nil + var yynn3246 int + if yyr3246 || yy2arr3246 { r.EncodeArrayStart(1) } else { - yynn3241 = 0 - for _, b := range yyq3241 { + yynn3246 = 0 + for _, b := range yyq3246 { if b { - yynn3241++ + yynn3246++ } } - r.EncodeMapStart(yynn3241) - yynn3241 = 0 + r.EncodeMapStart(yynn3246) + yynn3246 = 0 } - if yyr3241 || yy2arr3241 { + if yyr3246 || yy2arr3246 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3241[0] { + if yyq3246[0] { if x.UID == nil { r.EncodeNil() } else { - yy3243 := *x.UID - yym3244 := z.EncBinary() - _ = yym3244 + yy3248 := *x.UID + yym3249 := z.EncBinary() + _ = yym3249 if false { - } else if z.HasExtensions() && z.EncExt(yy3243) { + } else if z.HasExtensions() && z.EncExt(yy3248) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3243)) + r.EncodeString(codecSelferC_UTF81234, string(yy3248)) } } } else { r.EncodeNil() } } else { - if yyq3241[0] { + if yyq3246[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3245 := *x.UID - yym3246 := z.EncBinary() - _ = yym3246 + yy3250 := *x.UID + yym3251 := z.EncBinary() + _ = yym3251 if false { - } else if z.HasExtensions() && z.EncExt(yy3245) { + } else if z.HasExtensions() && z.EncExt(yy3250) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3245)) + r.EncodeString(codecSelferC_UTF81234, string(yy3250)) } } } } - if yyr3241 || yy2arr3241 { + if yyr3246 || yy2arr3246 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41498,25 +41539,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3247 := z.DecBinary() - _ = yym3247 + yym3252 := z.DecBinary() + _ = yym3252 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3248 := r.ContainerType() - if yyct3248 == codecSelferValueTypeMap1234 { - yyl3248 := r.ReadMapStart() - if yyl3248 == 0 { + yyct3253 := r.ContainerType() + if yyct3253 == codecSelferValueTypeMap1234 { + yyl3253 := r.ReadMapStart() + if yyl3253 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3248, d) + x.codecDecodeSelfFromMap(yyl3253, d) } - } else if yyct3248 == codecSelferValueTypeArray1234 { - yyl3248 := r.ReadArrayStart() - if yyl3248 == 0 { + } else if yyct3253 == codecSelferValueTypeArray1234 { + yyl3253 := r.ReadArrayStart() + if yyl3253 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3248, d) + x.codecDecodeSelfFromArray(yyl3253, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41528,12 +41569,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3249Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3249Slc - var yyhl3249 bool = l >= 0 - for yyj3249 := 0; ; yyj3249++ { - if yyhl3249 { - if yyj3249 >= l { + var yys3254Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3254Slc + var yyhl3254 bool = l >= 0 + for yyj3254 := 0; ; yyj3254++ { + if yyhl3254 { + if yyj3254 >= l { break } } else { @@ -41542,10 +41583,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3249Slc = r.DecodeBytes(yys3249Slc, true, true) - yys3249 := string(yys3249Slc) + yys3254Slc = r.DecodeBytes(yys3254Slc, true, true) + yys3254 := string(yys3254Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3249 { + switch yys3254 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -41555,8 +41596,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3251 := z.DecBinary() - _ = yym3251 + yym3256 := z.DecBinary() + _ = yym3256 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41564,9 +41605,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3249) - } // end switch yys3249 - } // end for yyj3249 + z.DecStructFieldNotFound(-1, yys3254) + } // end switch yys3254 + } // end for yyj3254 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41574,16 +41615,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3252 int - var yyb3252 bool - var yyhl3252 bool = l >= 0 - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + var yyj3257 int + var yyb3257 bool + var yyhl3257 bool = l >= 0 + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3252 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3252 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41596,8 +41637,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3254 := z.DecBinary() - _ = yym3254 + yym3259 := z.DecBinary() + _ = yym3259 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41605,17 +41646,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3252 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3252 { + if yyb3257 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3252-1, "") + z.DecStructFieldNotFound(yyj3257-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41627,39 +41668,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3255 := z.EncBinary() - _ = yym3255 + yym3260 := z.EncBinary() + _ = yym3260 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3256 := !z.EncBinary() - yy2arr3256 := z.EncBasicHandle().StructToArray - var yyq3256 [5]bool - _, _, _ = yysep3256, yyq3256, yy2arr3256 - const yyr3256 bool = false - yyq3256[0] = x.Kind != "" - yyq3256[1] = x.APIVersion != "" - yyq3256[2] = x.GracePeriodSeconds != nil - yyq3256[3] = x.Preconditions != nil - yyq3256[4] = x.OrphanDependents != nil - var yynn3256 int - if yyr3256 || yy2arr3256 { + yysep3261 := !z.EncBinary() + yy2arr3261 := z.EncBasicHandle().StructToArray + var yyq3261 [5]bool + _, _, _ = yysep3261, yyq3261, yy2arr3261 + const yyr3261 bool = false + yyq3261[0] = x.Kind != "" + yyq3261[1] = x.APIVersion != "" + yyq3261[2] = x.GracePeriodSeconds != nil + yyq3261[3] = x.Preconditions != nil + yyq3261[4] = x.OrphanDependents != nil + var yynn3261 int + if yyr3261 || yy2arr3261 { r.EncodeArrayStart(5) } else { - yynn3256 = 0 - for _, b := range yyq3256 { + yynn3261 = 0 + for _, b := range yyq3261 { if b { - yynn3256++ + yynn3261++ } } - r.EncodeMapStart(yynn3256) - yynn3256 = 0 + r.EncodeMapStart(yynn3261) + yynn3261 = 0 } - if yyr3256 || yy2arr3256 { + if yyr3261 || yy2arr3261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[0] { - yym3258 := z.EncBinary() - _ = yym3258 + if yyq3261[0] { + yym3263 := z.EncBinary() + _ = yym3263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41668,23 +41709,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3256[0] { + if yyq3261[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3259 := z.EncBinary() - _ = yym3259 + yym3264 := z.EncBinary() + _ = yym3264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3256 || yy2arr3256 { + if yyr3261 || yy2arr3261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[1] { - yym3261 := z.EncBinary() - _ = yym3261 + if yyq3261[1] { + yym3266 := z.EncBinary() + _ = yym3266 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41693,56 +41734,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3256[1] { + if yyq3261[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3262 := z.EncBinary() - _ = yym3262 + yym3267 := z.EncBinary() + _ = yym3267 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3256 || yy2arr3256 { + if yyr3261 || yy2arr3261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[2] { + if yyq3261[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3264 := *x.GracePeriodSeconds - yym3265 := z.EncBinary() - _ = yym3265 + yy3269 := *x.GracePeriodSeconds + yym3270 := z.EncBinary() + _ = yym3270 if false { } else { - r.EncodeInt(int64(yy3264)) + r.EncodeInt(int64(yy3269)) } } } else { r.EncodeNil() } } else { - if yyq3256[2] { + if yyq3261[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3266 := *x.GracePeriodSeconds - yym3267 := z.EncBinary() - _ = yym3267 + yy3271 := *x.GracePeriodSeconds + yym3272 := z.EncBinary() + _ = yym3272 if false { } else { - r.EncodeInt(int64(yy3266)) + r.EncodeInt(int64(yy3271)) } } } } - if yyr3256 || yy2arr3256 { + if yyr3261 || yy2arr3261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[3] { + if yyq3261[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -41752,7 +41793,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3256[3] { + if yyq3261[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41763,42 +41804,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3256 || yy2arr3256 { + if yyr3261 || yy2arr3261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[4] { + if yyq3261[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3270 := *x.OrphanDependents - yym3271 := z.EncBinary() - _ = yym3271 + yy3275 := *x.OrphanDependents + yym3276 := z.EncBinary() + _ = yym3276 if false { } else { - r.EncodeBool(bool(yy3270)) + r.EncodeBool(bool(yy3275)) } } } else { r.EncodeNil() } } else { - if yyq3256[4] { + if yyq3261[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3272 := *x.OrphanDependents - yym3273 := z.EncBinary() - _ = yym3273 + yy3277 := *x.OrphanDependents + yym3278 := z.EncBinary() + _ = yym3278 if false { } else { - r.EncodeBool(bool(yy3272)) + r.EncodeBool(bool(yy3277)) } } } } - if yyr3256 || yy2arr3256 { + if yyr3261 || yy2arr3261 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41811,25 +41852,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3274 := z.DecBinary() - _ = yym3274 + yym3279 := z.DecBinary() + _ = yym3279 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3275 := r.ContainerType() - if yyct3275 == codecSelferValueTypeMap1234 { - yyl3275 := r.ReadMapStart() - if yyl3275 == 0 { + yyct3280 := r.ContainerType() + if yyct3280 == codecSelferValueTypeMap1234 { + yyl3280 := r.ReadMapStart() + if yyl3280 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3275, d) + x.codecDecodeSelfFromMap(yyl3280, d) } - } else if yyct3275 == codecSelferValueTypeArray1234 { - yyl3275 := r.ReadArrayStart() - if yyl3275 == 0 { + } else if yyct3280 == codecSelferValueTypeArray1234 { + yyl3280 := r.ReadArrayStart() + if yyl3280 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3275, d) + x.codecDecodeSelfFromArray(yyl3280, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41841,12 +41882,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3276Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3276Slc - var yyhl3276 bool = l >= 0 - for yyj3276 := 0; ; yyj3276++ { - if yyhl3276 { - if yyj3276 >= l { + var yys3281Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3281Slc + var yyhl3281 bool = l >= 0 + for yyj3281 := 0; ; yyj3281++ { + if yyhl3281 { + if yyj3281 >= l { break } } else { @@ -41855,10 +41896,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3276Slc = r.DecodeBytes(yys3276Slc, true, true) - yys3276 := string(yys3276Slc) + yys3281Slc = r.DecodeBytes(yys3281Slc, true, true) + yys3281 := string(yys3281Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3276 { + switch yys3281 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41880,8 +41921,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3280 := z.DecBinary() - _ = yym3280 + yym3285 := z.DecBinary() + _ = yym3285 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -41907,17 +41948,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3283 := z.DecBinary() - _ = yym3283 + yym3288 := z.DecBinary() + _ = yym3288 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3276) - } // end switch yys3276 - } // end for yyj3276 + z.DecStructFieldNotFound(-1, yys3281) + } // end switch yys3281 + } // end for yyj3281 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41925,16 +41966,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3284 int - var yyb3284 bool - var yyhl3284 bool = l >= 0 - yyj3284++ - if yyhl3284 { - yyb3284 = yyj3284 > l + var yyj3289 int + var yyb3289 bool + var yyhl3289 bool = l >= 0 + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3284 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3284 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41944,13 +41985,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3284++ - if yyhl3284 { - yyb3284 = yyj3284 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3284 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3284 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41960,13 +42001,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3284++ - if yyhl3284 { - yyb3284 = yyj3284 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3284 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3284 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41979,20 +42020,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3288 := z.DecBinary() - _ = yym3288 + yym3293 := z.DecBinary() + _ = yym3293 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3284++ - if yyhl3284 { - yyb3284 = yyj3284 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3284 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3284 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42007,13 +42048,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3284++ - if yyhl3284 { - yyb3284 = yyj3284 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3284 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3284 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42026,25 +42067,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3291 := z.DecBinary() - _ = yym3291 + yym3296 := z.DecBinary() + _ = yym3296 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3284++ - if yyhl3284 { - yyb3284 = yyj3284 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3284 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3284 { + if yyb3289 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3284-1, "") + z.DecStructFieldNotFound(yyj3289-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42056,36 +42097,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3292 := z.EncBinary() - _ = yym3292 + yym3297 := z.EncBinary() + _ = yym3297 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3293 := !z.EncBinary() - yy2arr3293 := z.EncBasicHandle().StructToArray - var yyq3293 [4]bool - _, _, _ = yysep3293, yyq3293, yy2arr3293 - const yyr3293 bool = false - yyq3293[0] = x.Kind != "" - yyq3293[1] = x.APIVersion != "" - var yynn3293 int - if yyr3293 || yy2arr3293 { + yysep3298 := !z.EncBinary() + yy2arr3298 := z.EncBasicHandle().StructToArray + var yyq3298 [4]bool + _, _, _ = yysep3298, yyq3298, yy2arr3298 + const yyr3298 bool = false + yyq3298[0] = x.Kind != "" + yyq3298[1] = x.APIVersion != "" + var yynn3298 int + if yyr3298 || yy2arr3298 { r.EncodeArrayStart(4) } else { - yynn3293 = 2 - for _, b := range yyq3293 { + yynn3298 = 2 + for _, b := range yyq3298 { if b { - yynn3293++ + yynn3298++ } } - r.EncodeMapStart(yynn3293) - yynn3293 = 0 + r.EncodeMapStart(yynn3298) + yynn3298 = 0 } - if yyr3293 || yy2arr3293 { + if yyr3298 || yy2arr3298 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3293[0] { - yym3295 := z.EncBinary() - _ = yym3295 + if yyq3298[0] { + yym3300 := z.EncBinary() + _ = yym3300 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42094,23 +42135,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3293[0] { + if yyq3298[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3296 := z.EncBinary() - _ = yym3296 + yym3301 := z.EncBinary() + _ = yym3301 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3293 || yy2arr3293 { + if yyr3298 || yy2arr3298 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3293[1] { - yym3298 := z.EncBinary() - _ = yym3298 + if yyq3298[1] { + yym3303 := z.EncBinary() + _ = yym3303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42119,22 +42160,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3293[1] { + if yyq3298[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3299 := z.EncBinary() - _ = yym3299 + yym3304 := z.EncBinary() + _ = yym3304 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3293 || yy2arr3293 { + if yyr3298 || yy2arr3298 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3301 := z.EncBinary() - _ = yym3301 + yym3306 := z.EncBinary() + _ = yym3306 if false { } else { r.EncodeBool(bool(x.Export)) @@ -42143,17 +42184,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3302 := z.EncBinary() - _ = yym3302 + yym3307 := z.EncBinary() + _ = yym3307 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3293 || yy2arr3293 { + if yyr3298 || yy2arr3298 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3304 := z.EncBinary() - _ = yym3304 + yym3309 := z.EncBinary() + _ = yym3309 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -42162,14 +42203,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3305 := z.EncBinary() - _ = yym3305 + yym3310 := z.EncBinary() + _ = yym3310 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3293 || yy2arr3293 { + if yyr3298 || yy2arr3298 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42182,25 +42223,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3306 := z.DecBinary() - _ = yym3306 + yym3311 := z.DecBinary() + _ = yym3311 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3307 := r.ContainerType() - if yyct3307 == codecSelferValueTypeMap1234 { - yyl3307 := r.ReadMapStart() - if yyl3307 == 0 { + yyct3312 := r.ContainerType() + if yyct3312 == codecSelferValueTypeMap1234 { + yyl3312 := r.ReadMapStart() + if yyl3312 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3307, d) + x.codecDecodeSelfFromMap(yyl3312, d) } - } else if yyct3307 == codecSelferValueTypeArray1234 { - yyl3307 := r.ReadArrayStart() - if yyl3307 == 0 { + } else if yyct3312 == codecSelferValueTypeArray1234 { + yyl3312 := r.ReadArrayStart() + if yyl3312 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3307, d) + x.codecDecodeSelfFromArray(yyl3312, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42212,12 +42253,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3308Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3308Slc - var yyhl3308 bool = l >= 0 - for yyj3308 := 0; ; yyj3308++ { - if yyhl3308 { - if yyj3308 >= l { + var yys3313Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3313Slc + var yyhl3313 bool = l >= 0 + for yyj3313 := 0; ; yyj3313++ { + if yyhl3313 { + if yyj3313 >= l { break } } else { @@ -42226,10 +42267,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3308Slc = r.DecodeBytes(yys3308Slc, true, true) - yys3308 := string(yys3308Slc) + yys3313Slc = r.DecodeBytes(yys3313Slc, true, true) + yys3313 := string(yys3313Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3308 { + switch yys3313 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42255,9 +42296,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3308) - } // end switch yys3308 - } // end for yyj3308 + z.DecStructFieldNotFound(-1, yys3313) + } // end switch yys3313 + } // end for yyj3313 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42265,16 +42306,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3313 int - var yyb3313 bool - var yyhl3313 bool = l >= 0 - yyj3313++ - if yyhl3313 { - yyb3313 = yyj3313 > l + var yyj3318 int + var yyb3318 bool + var yyhl3318 bool = l >= 0 + yyj3318++ + if yyhl3318 { + yyb3318 = yyj3318 > l } else { - yyb3313 = r.CheckBreak() + yyb3318 = r.CheckBreak() } - if yyb3313 { + if yyb3318 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42284,13 +42325,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3313++ - if yyhl3313 { - yyb3313 = yyj3313 > l + yyj3318++ + if yyhl3318 { + yyb3318 = yyj3318 > l } else { - yyb3313 = r.CheckBreak() + yyb3318 = r.CheckBreak() } - if yyb3313 { + if yyb3318 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42300,13 +42341,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3313++ - if yyhl3313 { - yyb3313 = yyj3313 > l + yyj3318++ + if yyhl3318 { + yyb3318 = yyj3318 > l } else { - yyb3313 = r.CheckBreak() + yyb3318 = r.CheckBreak() } - if yyb3313 { + if yyb3318 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42316,13 +42357,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3313++ - if yyhl3313 { - yyb3313 = yyj3313 > l + yyj3318++ + if yyhl3318 { + yyb3318 = yyj3318 > l } else { - yyb3313 = r.CheckBreak() + yyb3318 = r.CheckBreak() } - if yyb3313 { + if yyb3318 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42333,17 +42374,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3313++ - if yyhl3313 { - yyb3313 = yyj3313 > l + yyj3318++ + if yyhl3318 { + yyb3318 = yyj3318 > l } else { - yyb3313 = r.CheckBreak() + yyb3318 = r.CheckBreak() } - if yyb3313 { + if yyb3318 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3313-1, "") + z.DecStructFieldNotFound(yyj3318-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42355,36 +42396,36 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3318 := z.EncBinary() - _ = yym3318 + yym3323 := z.EncBinary() + _ = yym3323 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3319 := !z.EncBinary() - yy2arr3319 := z.EncBasicHandle().StructToArray - var yyq3319 [7]bool - _, _, _ = yysep3319, yyq3319, yy2arr3319 - const yyr3319 bool = false - yyq3319[0] = x.Kind != "" - yyq3319[1] = x.APIVersion != "" - var yynn3319 int - if yyr3319 || yy2arr3319 { + yysep3324 := !z.EncBinary() + yy2arr3324 := z.EncBasicHandle().StructToArray + var yyq3324 [7]bool + _, _, _ = yysep3324, yyq3324, yy2arr3324 + const yyr3324 bool = false + yyq3324[0] = x.Kind != "" + yyq3324[1] = x.APIVersion != "" + var yynn3324 int + if yyr3324 || yy2arr3324 { r.EncodeArrayStart(7) } else { - yynn3319 = 5 - for _, b := range yyq3319 { + yynn3324 = 5 + for _, b := range yyq3324 { if b { - yynn3319++ + yynn3324++ } } - r.EncodeMapStart(yynn3319) - yynn3319 = 0 + r.EncodeMapStart(yynn3324) + yynn3324 = 0 } - if yyr3319 || yy2arr3319 { + if yyr3324 || yy2arr3324 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3319[0] { - yym3321 := z.EncBinary() - _ = yym3321 + if yyq3324[0] { + yym3326 := z.EncBinary() + _ = yym3326 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42393,23 +42434,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3319[0] { + if yyq3324[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3322 := z.EncBinary() - _ = yym3322 + yym3327 := z.EncBinary() + _ = yym3327 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3319 || yy2arr3319 { + if yyr3324 || yy2arr3324 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3319[1] { - yym3324 := z.EncBinary() - _ = yym3324 + if yyq3324[1] { + yym3329 := z.EncBinary() + _ = yym3329 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42418,25 +42459,25 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3319[1] { + if yyq3324[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3325 := z.EncBinary() - _ = yym3325 + yym3330 := z.EncBinary() + _ = yym3330 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3319 || yy2arr3319 { + if yyr3324 || yy2arr3324 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym3327 := z.EncBinary() - _ = yym3327 + yym3332 := z.EncBinary() + _ = yym3332 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -42450,8 +42491,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym3328 := z.EncBinary() - _ = yym3328 + yym3333 := z.EncBinary() + _ = yym3333 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -42459,13 +42500,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3319 || yy2arr3319 { + if yyr3324 || yy2arr3324 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym3330 := z.EncBinary() - _ = yym3330 + yym3335 := z.EncBinary() + _ = yym3335 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -42479,8 +42520,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym3331 := z.EncBinary() - _ = yym3331 + yym3336 := z.EncBinary() + _ = yym3336 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -42488,10 +42529,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3319 || yy2arr3319 { + if yyr3324 || yy2arr3324 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3333 := z.EncBinary() - _ = yym3333 + yym3338 := z.EncBinary() + _ = yym3338 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -42500,17 +42541,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3334 := z.EncBinary() - _ = yym3334 + yym3339 := z.EncBinary() + _ = yym3339 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr3319 || yy2arr3319 { + if yyr3324 || yy2arr3324 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3336 := z.EncBinary() - _ = yym3336 + yym3341 := z.EncBinary() + _ = yym3341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -42519,24 +42560,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3337 := z.EncBinary() - _ = yym3337 + yym3342 := z.EncBinary() + _ = yym3342 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr3319 || yy2arr3319 { + if yyr3324 || yy2arr3324 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3339 := *x.TimeoutSeconds - yym3340 := z.EncBinary() - _ = yym3340 + yy3344 := *x.TimeoutSeconds + yym3345 := z.EncBinary() + _ = yym3345 if false { } else { - r.EncodeInt(int64(yy3339)) + r.EncodeInt(int64(yy3344)) } } } else { @@ -42546,16 +42587,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3341 := *x.TimeoutSeconds - yym3342 := z.EncBinary() - _ = yym3342 + yy3346 := *x.TimeoutSeconds + yym3347 := z.EncBinary() + _ = yym3347 if false { } else { - r.EncodeInt(int64(yy3341)) + r.EncodeInt(int64(yy3346)) } } } - if yyr3319 || yy2arr3319 { + if yyr3324 || yy2arr3324 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42568,25 +42609,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3343 := z.DecBinary() - _ = yym3343 + yym3348 := z.DecBinary() + _ = yym3348 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3344 := r.ContainerType() - if yyct3344 == codecSelferValueTypeMap1234 { - yyl3344 := r.ReadMapStart() - if yyl3344 == 0 { + yyct3349 := r.ContainerType() + if yyct3349 == codecSelferValueTypeMap1234 { + yyl3349 := r.ReadMapStart() + if yyl3349 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3344, d) + x.codecDecodeSelfFromMap(yyl3349, d) } - } else if yyct3344 == codecSelferValueTypeArray1234 { - yyl3344 := r.ReadArrayStart() - if yyl3344 == 0 { + } else if yyct3349 == codecSelferValueTypeArray1234 { + yyl3349 := r.ReadArrayStart() + if yyl3349 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3344, d) + x.codecDecodeSelfFromArray(yyl3349, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42598,12 +42639,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3345Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3345Slc - var yyhl3345 bool = l >= 0 - for yyj3345 := 0; ; yyj3345++ { - if yyhl3345 { - if yyj3345 >= l { + var yys3350Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3350Slc + var yyhl3350 bool = l >= 0 + for yyj3350 := 0; ; yyj3350++ { + if yyhl3350 { + if yyj3350 >= l { break } } else { @@ -42612,10 +42653,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3345Slc = r.DecodeBytes(yys3345Slc, true, true) - yys3345 := string(yys3345Slc) + yys3350Slc = r.DecodeBytes(yys3350Slc, true, true) + yys3350 := string(yys3350Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3345 { + switch yys3350 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42632,26 +42673,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3348 := &x.LabelSelector - yym3349 := z.DecBinary() - _ = yym3349 + yyv3353 := &x.LabelSelector + yym3354 := z.DecBinary() + _ = yym3354 if false { - } else if z.HasExtensions() && z.DecExt(yyv3348) { + } else if z.HasExtensions() && z.DecExt(yyv3353) { } else { - z.DecFallback(yyv3348, true) + z.DecFallback(yyv3353, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3350 := &x.FieldSelector - yym3351 := z.DecBinary() - _ = yym3351 + yyv3355 := &x.FieldSelector + yym3356 := z.DecBinary() + _ = yym3356 if false { - } else if z.HasExtensions() && z.DecExt(yyv3350) { + } else if z.HasExtensions() && z.DecExt(yyv3355) { } else { - z.DecFallback(yyv3350, true) + z.DecFallback(yyv3355, true) } } case "Watch": @@ -42675,17 +42716,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3355 := z.DecBinary() - _ = yym3355 + yym3360 := z.DecBinary() + _ = yym3360 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3345) - } // end switch yys3345 - } // end for yyj3345 + z.DecStructFieldNotFound(-1, yys3350) + } // end switch yys3350 + } // end for yyj3350 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42693,16 +42734,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3356 int - var yyb3356 bool - var yyhl3356 bool = l >= 0 - yyj3356++ - if yyhl3356 { - yyb3356 = yyj3356 > l + var yyj3361 int + var yyb3361 bool + var yyhl3361 bool = l >= 0 + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3356 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3356 { + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42712,13 +42753,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3356++ - if yyhl3356 { - yyb3356 = yyj3356 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3356 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3356 { + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42728,13 +42769,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3356++ - if yyhl3356 { - yyb3356 = yyj3356 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3356 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3356 { + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42742,22 +42783,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3359 := &x.LabelSelector - yym3360 := z.DecBinary() - _ = yym3360 + yyv3364 := &x.LabelSelector + yym3365 := z.DecBinary() + _ = yym3365 if false { - } else if z.HasExtensions() && z.DecExt(yyv3359) { + } else if z.HasExtensions() && z.DecExt(yyv3364) { } else { - z.DecFallback(yyv3359, true) + z.DecFallback(yyv3364, true) } } - yyj3356++ - if yyhl3356 { - yyb3356 = yyj3356 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3356 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3356 { + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42765,22 +42806,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3361 := &x.FieldSelector - yym3362 := z.DecBinary() - _ = yym3362 + yyv3366 := &x.FieldSelector + yym3367 := z.DecBinary() + _ = yym3367 if false { - } else if z.HasExtensions() && z.DecExt(yyv3361) { + } else if z.HasExtensions() && z.DecExt(yyv3366) { } else { - z.DecFallback(yyv3361, true) + z.DecFallback(yyv3366, true) } } - yyj3356++ - if yyhl3356 { - yyb3356 = yyj3356 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3356 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3356 { + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42790,13 +42831,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3356++ - if yyhl3356 { - yyb3356 = yyj3356 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3356 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3356 { + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42806,13 +42847,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3356++ - if yyhl3356 { - yyb3356 = yyj3356 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3356 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3356 { + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42825,25 +42866,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3366 := z.DecBinary() - _ = yym3366 + yym3371 := z.DecBinary() + _ = yym3371 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3356++ - if yyhl3356 { - yyb3356 = yyj3356 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3356 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3356 { + if yyb3361 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3356-1, "") + z.DecStructFieldNotFound(yyj3361-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42855,36 +42896,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3367 := z.EncBinary() - _ = yym3367 + yym3372 := z.EncBinary() + _ = yym3372 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3368 := !z.EncBinary() - yy2arr3368 := z.EncBasicHandle().StructToArray - var yyq3368 [10]bool - _, _, _ = yysep3368, yyq3368, yy2arr3368 - const yyr3368 bool = false - yyq3368[0] = x.Kind != "" - yyq3368[1] = x.APIVersion != "" - var yynn3368 int - if yyr3368 || yy2arr3368 { + yysep3373 := !z.EncBinary() + yy2arr3373 := z.EncBasicHandle().StructToArray + var yyq3373 [10]bool + _, _, _ = yysep3373, yyq3373, yy2arr3373 + const yyr3373 bool = false + yyq3373[0] = x.Kind != "" + yyq3373[1] = x.APIVersion != "" + var yynn3373 int + if yyr3373 || yy2arr3373 { r.EncodeArrayStart(10) } else { - yynn3368 = 8 - for _, b := range yyq3368 { + yynn3373 = 8 + for _, b := range yyq3373 { if b { - yynn3368++ + yynn3373++ } } - r.EncodeMapStart(yynn3368) - yynn3368 = 0 + r.EncodeMapStart(yynn3373) + yynn3373 = 0 } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[0] { - yym3370 := z.EncBinary() - _ = yym3370 + if yyq3373[0] { + yym3375 := z.EncBinary() + _ = yym3375 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42893,23 +42934,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3368[0] { + if yyq3373[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3371 := z.EncBinary() - _ = yym3371 + yym3376 := z.EncBinary() + _ = yym3376 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[1] { - yym3373 := z.EncBinary() - _ = yym3373 + if yyq3373[1] { + yym3378 := z.EncBinary() + _ = yym3378 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42918,22 +42959,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3368[1] { + if yyq3373[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3374 := z.EncBinary() - _ = yym3374 + yym3379 := z.EncBinary() + _ = yym3379 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3376 := z.EncBinary() - _ = yym3376 + yym3381 := z.EncBinary() + _ = yym3381 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -42942,17 +42983,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3377 := z.EncBinary() - _ = yym3377 + yym3382 := z.EncBinary() + _ = yym3382 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3379 := z.EncBinary() - _ = yym3379 + yym3384 := z.EncBinary() + _ = yym3384 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -42961,17 +43002,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3380 := z.EncBinary() - _ = yym3380 + yym3385 := z.EncBinary() + _ = yym3385 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3382 := z.EncBinary() - _ = yym3382 + yym3387 := z.EncBinary() + _ = yym3387 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -42980,24 +43021,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3383 := z.EncBinary() - _ = yym3383 + yym3388 := z.EncBinary() + _ = yym3388 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3385 := *x.SinceSeconds - yym3386 := z.EncBinary() - _ = yym3386 + yy3390 := *x.SinceSeconds + yym3391 := z.EncBinary() + _ = yym3391 if false { } else { - r.EncodeInt(int64(yy3385)) + r.EncodeInt(int64(yy3390)) } } } else { @@ -43007,27 +43048,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3387 := *x.SinceSeconds - yym3388 := z.EncBinary() - _ = yym3388 + yy3392 := *x.SinceSeconds + yym3393 := z.EncBinary() + _ = yym3393 if false { } else { - r.EncodeInt(int64(yy3387)) + r.EncodeInt(int64(yy3392)) } } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3390 := z.EncBinary() - _ = yym3390 + yym3395 := z.EncBinary() + _ = yym3395 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3390 { + } else if yym3395 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3390 && z.IsJSONHandle() { + } else if !yym3395 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -43040,23 +43081,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym3391 := z.EncBinary() - _ = yym3391 + yym3396 := z.EncBinary() + _ = yym3396 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3391 { + } else if yym3396 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3391 && z.IsJSONHandle() { + } else if !yym3396 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3393 := z.EncBinary() - _ = yym3393 + yym3398 := z.EncBinary() + _ = yym3398 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -43065,24 +43106,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3394 := z.EncBinary() - _ = yym3394 + yym3399 := z.EncBinary() + _ = yym3399 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3396 := *x.TailLines - yym3397 := z.EncBinary() - _ = yym3397 + yy3401 := *x.TailLines + yym3402 := z.EncBinary() + _ = yym3402 if false { } else { - r.EncodeInt(int64(yy3396)) + r.EncodeInt(int64(yy3401)) } } } else { @@ -43092,26 +43133,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy3398 := *x.TailLines - yym3399 := z.EncBinary() - _ = yym3399 + yy3403 := *x.TailLines + yym3404 := z.EncBinary() + _ = yym3404 if false { } else { - r.EncodeInt(int64(yy3398)) + r.EncodeInt(int64(yy3403)) } } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3401 := *x.LimitBytes - yym3402 := z.EncBinary() - _ = yym3402 + yy3406 := *x.LimitBytes + yym3407 := z.EncBinary() + _ = yym3407 if false { } else { - r.EncodeInt(int64(yy3401)) + r.EncodeInt(int64(yy3406)) } } } else { @@ -43121,16 +43162,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3403 := *x.LimitBytes - yym3404 := z.EncBinary() - _ = yym3404 + yy3408 := *x.LimitBytes + yym3409 := z.EncBinary() + _ = yym3409 if false { } else { - r.EncodeInt(int64(yy3403)) + r.EncodeInt(int64(yy3408)) } } } - if yyr3368 || yy2arr3368 { + if yyr3373 || yy2arr3373 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43143,25 +43184,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3405 := z.DecBinary() - _ = yym3405 + yym3410 := z.DecBinary() + _ = yym3410 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3406 := r.ContainerType() - if yyct3406 == codecSelferValueTypeMap1234 { - yyl3406 := r.ReadMapStart() - if yyl3406 == 0 { + yyct3411 := r.ContainerType() + if yyct3411 == codecSelferValueTypeMap1234 { + yyl3411 := r.ReadMapStart() + if yyl3411 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3406, d) + x.codecDecodeSelfFromMap(yyl3411, d) } - } else if yyct3406 == codecSelferValueTypeArray1234 { - yyl3406 := r.ReadArrayStart() - if yyl3406 == 0 { + } else if yyct3411 == codecSelferValueTypeArray1234 { + yyl3411 := r.ReadArrayStart() + if yyl3411 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3406, d) + x.codecDecodeSelfFromArray(yyl3411, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43173,12 +43214,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3407Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3407Slc - var yyhl3407 bool = l >= 0 - for yyj3407 := 0; ; yyj3407++ { - if yyhl3407 { - if yyj3407 >= l { + var yys3412Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3412Slc + var yyhl3412 bool = l >= 0 + for yyj3412 := 0; ; yyj3412++ { + if yyhl3412 { + if yyj3412 >= l { break } } else { @@ -43187,10 +43228,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3407Slc = r.DecodeBytes(yys3407Slc, true, true) - yys3407 := string(yys3407Slc) + yys3412Slc = r.DecodeBytes(yys3412Slc, true, true) + yys3412 := string(yys3412Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3407 { + switch yys3412 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43230,8 +43271,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3414 := z.DecBinary() - _ = yym3414 + yym3419 := z.DecBinary() + _ = yym3419 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -43246,13 +43287,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3416 := z.DecBinary() - _ = yym3416 - if false { + yym3421 := z.DecBinary() + _ = yym3421 + if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3416 { + } else if yym3421 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3416 && z.IsJSONHandle() { + } else if !yym3421 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -43273,8 +43314,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3419 := z.DecBinary() - _ = yym3419 + yym3424 := z.DecBinary() + _ = yym3424 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -43289,17 +43330,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3421 := z.DecBinary() - _ = yym3421 + yym3426 := z.DecBinary() + _ = yym3426 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3407) - } // end switch yys3407 - } // end for yyj3407 + z.DecStructFieldNotFound(-1, yys3412) + } // end switch yys3412 + } // end for yyj3412 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43307,16 +43348,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3422 int - var yyb3422 bool - var yyhl3422 bool = l >= 0 - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + var yyj3427 int + var yyb3427 bool + var yyhl3427 bool = l >= 0 + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43326,13 +43367,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43342,13 +43383,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43358,13 +43399,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43374,13 +43415,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43390,13 +43431,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43409,20 +43450,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3429 := z.DecBinary() - _ = yym3429 + yym3434 := z.DecBinary() + _ = yym3434 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43435,25 +43476,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3431 := z.DecBinary() - _ = yym3431 + yym3436 := z.DecBinary() + _ = yym3436 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3431 { + } else if yym3436 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3431 && z.IsJSONHandle() { + } else if !yym3436 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43463,13 +43504,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43482,20 +43523,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3434 := z.DecBinary() - _ = yym3434 + yym3439 := z.DecBinary() + _ = yym3439 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43508,25 +43549,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3436 := z.DecBinary() - _ = yym3436 + yym3441 := z.DecBinary() + _ = yym3441 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3427++ + if yyhl3427 { + yyb3427 = yyj3427 > l } else { - yyb3422 = r.CheckBreak() + yyb3427 = r.CheckBreak() } - if yyb3422 { + if yyb3427 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3422-1, "") + z.DecStructFieldNotFound(yyj3427-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43538,41 +43579,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3437 := z.EncBinary() - _ = yym3437 + yym3442 := z.EncBinary() + _ = yym3442 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3438 := !z.EncBinary() - yy2arr3438 := z.EncBasicHandle().StructToArray - var yyq3438 [7]bool - _, _, _ = yysep3438, yyq3438, yy2arr3438 - const yyr3438 bool = false - yyq3438[0] = x.Kind != "" - yyq3438[1] = x.APIVersion != "" - yyq3438[2] = x.Stdin != false - yyq3438[3] = x.Stdout != false - yyq3438[4] = x.Stderr != false - yyq3438[5] = x.TTY != false - yyq3438[6] = x.Container != "" - var yynn3438 int - if yyr3438 || yy2arr3438 { + yysep3443 := !z.EncBinary() + yy2arr3443 := z.EncBasicHandle().StructToArray + var yyq3443 [7]bool + _, _, _ = yysep3443, yyq3443, yy2arr3443 + const yyr3443 bool = false + yyq3443[0] = x.Kind != "" + yyq3443[1] = x.APIVersion != "" + yyq3443[2] = x.Stdin != false + yyq3443[3] = x.Stdout != false + yyq3443[4] = x.Stderr != false + yyq3443[5] = x.TTY != false + yyq3443[6] = x.Container != "" + var yynn3443 int + if yyr3443 || yy2arr3443 { r.EncodeArrayStart(7) } else { - yynn3438 = 0 - for _, b := range yyq3438 { + yynn3443 = 0 + for _, b := range yyq3443 { if b { - yynn3438++ + yynn3443++ } } - r.EncodeMapStart(yynn3438) - yynn3438 = 0 + r.EncodeMapStart(yynn3443) + yynn3443 = 0 } - if yyr3438 || yy2arr3438 { + if yyr3443 || yy2arr3443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[0] { - yym3440 := z.EncBinary() - _ = yym3440 + if yyq3443[0] { + yym3445 := z.EncBinary() + _ = yym3445 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43581,23 +43622,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3438[0] { + if yyq3443[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3441 := z.EncBinary() - _ = yym3441 + yym3446 := z.EncBinary() + _ = yym3446 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3438 || yy2arr3438 { + if yyr3443 || yy2arr3443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[1] { - yym3443 := z.EncBinary() - _ = yym3443 + if yyq3443[1] { + yym3448 := z.EncBinary() + _ = yym3448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43606,23 +43647,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3438[1] { + if yyq3443[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3444 := z.EncBinary() - _ = yym3444 + yym3449 := z.EncBinary() + _ = yym3449 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3438 || yy2arr3438 { + if yyr3443 || yy2arr3443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[2] { - yym3446 := z.EncBinary() - _ = yym3446 + if yyq3443[2] { + yym3451 := z.EncBinary() + _ = yym3451 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -43631,23 +43672,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3438[2] { + if yyq3443[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3447 := z.EncBinary() - _ = yym3447 + yym3452 := z.EncBinary() + _ = yym3452 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3438 || yy2arr3438 { + if yyr3443 || yy2arr3443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[3] { - yym3449 := z.EncBinary() - _ = yym3449 + if yyq3443[3] { + yym3454 := z.EncBinary() + _ = yym3454 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -43656,23 +43697,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3438[3] { + if yyq3443[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3450 := z.EncBinary() - _ = yym3450 + yym3455 := z.EncBinary() + _ = yym3455 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3438 || yy2arr3438 { + if yyr3443 || yy2arr3443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[4] { - yym3452 := z.EncBinary() - _ = yym3452 + if yyq3443[4] { + yym3457 := z.EncBinary() + _ = yym3457 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -43681,23 +43722,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3438[4] { + if yyq3443[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3453 := z.EncBinary() - _ = yym3453 + yym3458 := z.EncBinary() + _ = yym3458 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3438 || yy2arr3438 { + if yyr3443 || yy2arr3443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[5] { - yym3455 := z.EncBinary() - _ = yym3455 + if yyq3443[5] { + yym3460 := z.EncBinary() + _ = yym3460 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -43706,23 +43747,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3438[5] { + if yyq3443[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3456 := z.EncBinary() - _ = yym3456 + yym3461 := z.EncBinary() + _ = yym3461 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3438 || yy2arr3438 { + if yyr3443 || yy2arr3443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[6] { - yym3458 := z.EncBinary() - _ = yym3458 + if yyq3443[6] { + yym3463 := z.EncBinary() + _ = yym3463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43731,19 +43772,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3438[6] { + if yyq3443[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3459 := z.EncBinary() - _ = yym3459 + yym3464 := z.EncBinary() + _ = yym3464 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3438 || yy2arr3438 { + if yyr3443 || yy2arr3443 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43756,25 +43797,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3460 := z.DecBinary() - _ = yym3460 + yym3465 := z.DecBinary() + _ = yym3465 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3461 := r.ContainerType() - if yyct3461 == codecSelferValueTypeMap1234 { - yyl3461 := r.ReadMapStart() - if yyl3461 == 0 { + yyct3466 := r.ContainerType() + if yyct3466 == codecSelferValueTypeMap1234 { + yyl3466 := r.ReadMapStart() + if yyl3466 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3461, d) + x.codecDecodeSelfFromMap(yyl3466, d) } - } else if yyct3461 == codecSelferValueTypeArray1234 { - yyl3461 := r.ReadArrayStart() - if yyl3461 == 0 { + } else if yyct3466 == codecSelferValueTypeArray1234 { + yyl3466 := r.ReadArrayStart() + if yyl3466 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3461, d) + x.codecDecodeSelfFromArray(yyl3466, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43786,12 +43827,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3462Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3462Slc - var yyhl3462 bool = l >= 0 - for yyj3462 := 0; ; yyj3462++ { - if yyhl3462 { - if yyj3462 >= l { + var yys3467Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3467Slc + var yyhl3467 bool = l >= 0 + for yyj3467 := 0; ; yyj3467++ { + if yyhl3467 { + if yyj3467 >= l { break } } else { @@ -43800,10 +43841,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3462Slc = r.DecodeBytes(yys3462Slc, true, true) - yys3462 := string(yys3462Slc) + yys3467Slc = r.DecodeBytes(yys3467Slc, true, true) + yys3467 := string(yys3467Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3462 { + switch yys3467 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43847,9 +43888,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3462) - } // end switch yys3462 - } // end for yyj3462 + z.DecStructFieldNotFound(-1, yys3467) + } // end switch yys3467 + } // end for yyj3467 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43857,16 +43898,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3470 int - var yyb3470 bool - var yyhl3470 bool = l >= 0 - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + var yyj3475 int + var yyb3475 bool + var yyhl3475 bool = l >= 0 + yyj3475++ + if yyhl3475 { + yyb3475 = yyj3475 > l } else { - yyb3470 = r.CheckBreak() + yyb3475 = r.CheckBreak() } - if yyb3470 { + if yyb3475 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43876,13 +43917,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3475++ + if yyhl3475 { + yyb3475 = yyj3475 > l } else { - yyb3470 = r.CheckBreak() + yyb3475 = r.CheckBreak() } - if yyb3470 { + if yyb3475 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43892,13 +43933,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3475++ + if yyhl3475 { + yyb3475 = yyj3475 > l } else { - yyb3470 = r.CheckBreak() + yyb3475 = r.CheckBreak() } - if yyb3470 { + if yyb3475 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43908,13 +43949,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3475++ + if yyhl3475 { + yyb3475 = yyj3475 > l } else { - yyb3470 = r.CheckBreak() + yyb3475 = r.CheckBreak() } - if yyb3470 { + if yyb3475 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43924,13 +43965,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3475++ + if yyhl3475 { + yyb3475 = yyj3475 > l } else { - yyb3470 = r.CheckBreak() + yyb3475 = r.CheckBreak() } - if yyb3470 { + if yyb3475 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43940,13 +43981,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3475++ + if yyhl3475 { + yyb3475 = yyj3475 > l } else { - yyb3470 = r.CheckBreak() + yyb3475 = r.CheckBreak() } - if yyb3470 { + if yyb3475 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43956,13 +43997,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3475++ + if yyhl3475 { + yyb3475 = yyj3475 > l } else { - yyb3470 = r.CheckBreak() + yyb3475 = r.CheckBreak() } - if yyb3470 { + if yyb3475 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43973,17 +44014,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3475++ + if yyhl3475 { + yyb3475 = yyj3475 > l } else { - yyb3470 = r.CheckBreak() + yyb3475 = r.CheckBreak() } - if yyb3470 { + if yyb3475 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3470-1, "") + z.DecStructFieldNotFound(yyj3475-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43995,36 +44036,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3478 := z.EncBinary() - _ = yym3478 + yym3483 := z.EncBinary() + _ = yym3483 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3479 := !z.EncBinary() - yy2arr3479 := z.EncBasicHandle().StructToArray - var yyq3479 [8]bool - _, _, _ = yysep3479, yyq3479, yy2arr3479 - const yyr3479 bool = false - yyq3479[0] = x.Kind != "" - yyq3479[1] = x.APIVersion != "" - var yynn3479 int - if yyr3479 || yy2arr3479 { + yysep3484 := !z.EncBinary() + yy2arr3484 := z.EncBasicHandle().StructToArray + var yyq3484 [8]bool + _, _, _ = yysep3484, yyq3484, yy2arr3484 + const yyr3484 bool = false + yyq3484[0] = x.Kind != "" + yyq3484[1] = x.APIVersion != "" + var yynn3484 int + if yyr3484 || yy2arr3484 { r.EncodeArrayStart(8) } else { - yynn3479 = 6 - for _, b := range yyq3479 { + yynn3484 = 6 + for _, b := range yyq3484 { if b { - yynn3479++ + yynn3484++ } } - r.EncodeMapStart(yynn3479) - yynn3479 = 0 + r.EncodeMapStart(yynn3484) + yynn3484 = 0 } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[0] { - yym3481 := z.EncBinary() - _ = yym3481 + if yyq3484[0] { + yym3486 := z.EncBinary() + _ = yym3486 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44033,23 +44074,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3479[0] { + if yyq3484[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3482 := z.EncBinary() - _ = yym3482 + yym3487 := z.EncBinary() + _ = yym3487 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[1] { - yym3484 := z.EncBinary() - _ = yym3484 + if yyq3484[1] { + yym3489 := z.EncBinary() + _ = yym3489 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44058,22 +44099,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3479[1] { + if yyq3484[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3485 := z.EncBinary() - _ = yym3485 + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3487 := z.EncBinary() - _ = yym3487 + yym3492 := z.EncBinary() + _ = yym3492 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44082,17 +44123,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3488 := z.EncBinary() - _ = yym3488 + yym3493 := z.EncBinary() + _ = yym3493 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3490 := z.EncBinary() - _ = yym3490 + yym3495 := z.EncBinary() + _ = yym3495 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44101,17 +44142,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3491 := z.EncBinary() - _ = yym3491 + yym3496 := z.EncBinary() + _ = yym3496 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3493 := z.EncBinary() - _ = yym3493 + yym3498 := z.EncBinary() + _ = yym3498 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44120,17 +44161,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3494 := z.EncBinary() - _ = yym3494 + yym3499 := z.EncBinary() + _ = yym3499 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3496 := z.EncBinary() - _ = yym3496 + yym3501 := z.EncBinary() + _ = yym3501 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44139,17 +44180,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3497 := z.EncBinary() - _ = yym3497 + yym3502 := z.EncBinary() + _ = yym3502 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3499 := z.EncBinary() - _ = yym3499 + yym3504 := z.EncBinary() + _ = yym3504 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44158,20 +44199,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3500 := z.EncBinary() - _ = yym3500 + yym3505 := z.EncBinary() + _ = yym3505 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3502 := z.EncBinary() - _ = yym3502 + yym3507 := z.EncBinary() + _ = yym3507 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -44184,15 +44225,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3503 := z.EncBinary() - _ = yym3503 + yym3508 := z.EncBinary() + _ = yym3508 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3479 || yy2arr3479 { + if yyr3484 || yy2arr3484 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44205,25 +44246,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3504 := z.DecBinary() - _ = yym3504 + yym3509 := z.DecBinary() + _ = yym3509 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3505 := r.ContainerType() - if yyct3505 == codecSelferValueTypeMap1234 { - yyl3505 := r.ReadMapStart() - if yyl3505 == 0 { + yyct3510 := r.ContainerType() + if yyct3510 == codecSelferValueTypeMap1234 { + yyl3510 := r.ReadMapStart() + if yyl3510 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3505, d) + x.codecDecodeSelfFromMap(yyl3510, d) } - } else if yyct3505 == codecSelferValueTypeArray1234 { - yyl3505 := r.ReadArrayStart() - if yyl3505 == 0 { + } else if yyct3510 == codecSelferValueTypeArray1234 { + yyl3510 := r.ReadArrayStart() + if yyl3510 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3505, d) + x.codecDecodeSelfFromArray(yyl3510, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44235,12 +44276,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3506Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3506Slc - var yyhl3506 bool = l >= 0 - for yyj3506 := 0; ; yyj3506++ { - if yyhl3506 { - if yyj3506 >= l { + var yys3511Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3511Slc + var yyhl3511 bool = l >= 0 + for yyj3511 := 0; ; yyj3511++ { + if yyhl3511 { + if yyj3511 >= l { break } } else { @@ -44249,10 +44290,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3506Slc = r.DecodeBytes(yys3506Slc, true, true) - yys3506 := string(yys3506Slc) + yys3511Slc = r.DecodeBytes(yys3511Slc, true, true) + yys3511 := string(yys3511Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3506 { + switch yys3511 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44299,18 +44340,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3514 := &x.Command - yym3515 := z.DecBinary() - _ = yym3515 + yyv3519 := &x.Command + yym3520 := z.DecBinary() + _ = yym3520 if false { } else { - z.F.DecSliceStringX(yyv3514, false, d) + z.F.DecSliceStringX(yyv3519, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3506) - } // end switch yys3506 - } // end for yyj3506 + z.DecStructFieldNotFound(-1, yys3511) + } // end switch yys3511 + } // end for yyj3511 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44318,16 +44359,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3516 int - var yyb3516 bool - var yyhl3516 bool = l >= 0 - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + var yyj3521 int + var yyb3521 bool + var yyhl3521 bool = l >= 0 + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44337,13 +44378,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44353,13 +44394,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44369,13 +44410,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44385,13 +44426,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44401,13 +44442,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44417,13 +44458,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44433,13 +44474,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44447,26 +44488,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3524 := &x.Command - yym3525 := z.DecBinary() - _ = yym3525 + yyv3529 := &x.Command + yym3530 := z.DecBinary() + _ = yym3530 if false { } else { - z.F.DecSliceStringX(yyv3524, false, d) + z.F.DecSliceStringX(yyv3529, false, d) } } for { - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3516-1, "") + z.DecStructFieldNotFound(yyj3521-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44478,36 +44519,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3526 := z.EncBinary() - _ = yym3526 + yym3531 := z.EncBinary() + _ = yym3531 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3527 := !z.EncBinary() - yy2arr3527 := z.EncBasicHandle().StructToArray - var yyq3527 [3]bool - _, _, _ = yysep3527, yyq3527, yy2arr3527 - const yyr3527 bool = false - yyq3527[0] = x.Kind != "" - yyq3527[1] = x.APIVersion != "" - var yynn3527 int - if yyr3527 || yy2arr3527 { + yysep3532 := !z.EncBinary() + yy2arr3532 := z.EncBasicHandle().StructToArray + var yyq3532 [3]bool + _, _, _ = yysep3532, yyq3532, yy2arr3532 + const yyr3532 bool = false + yyq3532[0] = x.Kind != "" + yyq3532[1] = x.APIVersion != "" + var yynn3532 int + if yyr3532 || yy2arr3532 { r.EncodeArrayStart(3) } else { - yynn3527 = 1 - for _, b := range yyq3527 { + yynn3532 = 1 + for _, b := range yyq3532 { if b { - yynn3527++ + yynn3532++ } } - r.EncodeMapStart(yynn3527) - yynn3527 = 0 + r.EncodeMapStart(yynn3532) + yynn3532 = 0 } - if yyr3527 || yy2arr3527 { + if yyr3532 || yy2arr3532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3527[0] { - yym3529 := z.EncBinary() - _ = yym3529 + if yyq3532[0] { + yym3534 := z.EncBinary() + _ = yym3534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44516,23 +44557,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3527[0] { + if yyq3532[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3530 := z.EncBinary() - _ = yym3530 + yym3535 := z.EncBinary() + _ = yym3535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3527 || yy2arr3527 { + if yyr3532 || yy2arr3532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3527[1] { - yym3532 := z.EncBinary() - _ = yym3532 + if yyq3532[1] { + yym3537 := z.EncBinary() + _ = yym3537 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44541,22 +44582,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3527[1] { + if yyq3532[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3533 := z.EncBinary() - _ = yym3533 + yym3538 := z.EncBinary() + _ = yym3538 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3527 || yy2arr3527 { + if yyr3532 || yy2arr3532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3535 := z.EncBinary() - _ = yym3535 + yym3540 := z.EncBinary() + _ = yym3540 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44565,14 +44606,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3536 := z.EncBinary() - _ = yym3536 + yym3541 := z.EncBinary() + _ = yym3541 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3527 || yy2arr3527 { + if yyr3532 || yy2arr3532 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44585,25 +44626,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3537 := z.DecBinary() - _ = yym3537 + yym3542 := z.DecBinary() + _ = yym3542 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3538 := r.ContainerType() - if yyct3538 == codecSelferValueTypeMap1234 { - yyl3538 := r.ReadMapStart() - if yyl3538 == 0 { + yyct3543 := r.ContainerType() + if yyct3543 == codecSelferValueTypeMap1234 { + yyl3543 := r.ReadMapStart() + if yyl3543 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3538, d) + x.codecDecodeSelfFromMap(yyl3543, d) } - } else if yyct3538 == codecSelferValueTypeArray1234 { - yyl3538 := r.ReadArrayStart() - if yyl3538 == 0 { + } else if yyct3543 == codecSelferValueTypeArray1234 { + yyl3543 := r.ReadArrayStart() + if yyl3543 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3538, d) + x.codecDecodeSelfFromArray(yyl3543, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44615,12 +44656,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3539Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3539Slc - var yyhl3539 bool = l >= 0 - for yyj3539 := 0; ; yyj3539++ { - if yyhl3539 { - if yyj3539 >= l { + var yys3544Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3544Slc + var yyhl3544 bool = l >= 0 + for yyj3544 := 0; ; yyj3544++ { + if yyhl3544 { + if yyj3544 >= l { break } } else { @@ -44629,10 +44670,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3539Slc = r.DecodeBytes(yys3539Slc, true, true) - yys3539 := string(yys3539Slc) + yys3544Slc = r.DecodeBytes(yys3544Slc, true, true) + yys3544 := string(yys3544Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3539 { + switch yys3544 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44652,9 +44693,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3539) - } // end switch yys3539 - } // end for yyj3539 + z.DecStructFieldNotFound(-1, yys3544) + } // end switch yys3544 + } // end for yyj3544 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44662,16 +44703,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3543 int - var yyb3543 bool - var yyhl3543 bool = l >= 0 - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + var yyj3548 int + var yyb3548 bool + var yyhl3548 bool = l >= 0 + yyj3548++ + if yyhl3548 { + yyb3548 = yyj3548 > l } else { - yyb3543 = r.CheckBreak() + yyb3548 = r.CheckBreak() } - if yyb3543 { + if yyb3548 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44681,13 +44722,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3548++ + if yyhl3548 { + yyb3548 = yyj3548 > l } else { - yyb3543 = r.CheckBreak() + yyb3548 = r.CheckBreak() } - if yyb3543 { + if yyb3548 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44697,13 +44738,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3548++ + if yyhl3548 { + yyb3548 = yyj3548 > l } else { - yyb3543 = r.CheckBreak() + yyb3548 = r.CheckBreak() } - if yyb3543 { + if yyb3548 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44714,17 +44755,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3548++ + if yyhl3548 { + yyb3548 = yyj3548 > l } else { - yyb3543 = r.CheckBreak() + yyb3548 = r.CheckBreak() } - if yyb3543 { + if yyb3548 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3543-1, "") + z.DecStructFieldNotFound(yyj3548-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44736,36 +44777,36 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3547 := z.EncBinary() - _ = yym3547 + yym3552 := z.EncBinary() + _ = yym3552 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3548 := !z.EncBinary() - yy2arr3548 := z.EncBasicHandle().StructToArray - var yyq3548 [3]bool - _, _, _ = yysep3548, yyq3548, yy2arr3548 - const yyr3548 bool = false - yyq3548[0] = x.Kind != "" - yyq3548[1] = x.APIVersion != "" - var yynn3548 int - if yyr3548 || yy2arr3548 { + yysep3553 := !z.EncBinary() + yy2arr3553 := z.EncBasicHandle().StructToArray + var yyq3553 [3]bool + _, _, _ = yysep3553, yyq3553, yy2arr3553 + const yyr3553 bool = false + yyq3553[0] = x.Kind != "" + yyq3553[1] = x.APIVersion != "" + var yynn3553 int + if yyr3553 || yy2arr3553 { r.EncodeArrayStart(3) } else { - yynn3548 = 1 - for _, b := range yyq3548 { + yynn3553 = 1 + for _, b := range yyq3553 { if b { - yynn3548++ + yynn3553++ } } - r.EncodeMapStart(yynn3548) - yynn3548 = 0 + r.EncodeMapStart(yynn3553) + yynn3553 = 0 } - if yyr3548 || yy2arr3548 { + if yyr3553 || yy2arr3553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[0] { - yym3550 := z.EncBinary() - _ = yym3550 + if yyq3553[0] { + yym3555 := z.EncBinary() + _ = yym3555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44774,23 +44815,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[0] { + if yyq3553[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3551 := z.EncBinary() - _ = yym3551 + yym3556 := z.EncBinary() + _ = yym3556 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3548 || yy2arr3548 { + if yyr3553 || yy2arr3553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[1] { - yym3553 := z.EncBinary() - _ = yym3553 + if yyq3553[1] { + yym3558 := z.EncBinary() + _ = yym3558 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44799,22 +44840,22 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[1] { + if yyq3553[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3554 := z.EncBinary() - _ = yym3554 + yym3559 := z.EncBinary() + _ = yym3559 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3548 || yy2arr3548 { + if yyr3553 || yy2arr3553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3556 := z.EncBinary() - _ = yym3556 + yym3561 := z.EncBinary() + _ = yym3561 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44823,14 +44864,14 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3557 := z.EncBinary() - _ = yym3557 + yym3562 := z.EncBinary() + _ = yym3562 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3548 || yy2arr3548 { + if yyr3553 || yy2arr3553 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44843,25 +44884,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3558 := z.DecBinary() - _ = yym3558 + yym3563 := z.DecBinary() + _ = yym3563 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3559 := r.ContainerType() - if yyct3559 == codecSelferValueTypeMap1234 { - yyl3559 := r.ReadMapStart() - if yyl3559 == 0 { + yyct3564 := r.ContainerType() + if yyct3564 == codecSelferValueTypeMap1234 { + yyl3564 := r.ReadMapStart() + if yyl3564 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3559, d) + x.codecDecodeSelfFromMap(yyl3564, d) } - } else if yyct3559 == codecSelferValueTypeArray1234 { - yyl3559 := r.ReadArrayStart() - if yyl3559 == 0 { + } else if yyct3564 == codecSelferValueTypeArray1234 { + yyl3564 := r.ReadArrayStart() + if yyl3564 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3559, d) + x.codecDecodeSelfFromArray(yyl3564, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44873,12 +44914,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3560Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3560Slc - var yyhl3560 bool = l >= 0 - for yyj3560 := 0; ; yyj3560++ { - if yyhl3560 { - if yyj3560 >= l { + var yys3565Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3565Slc + var yyhl3565 bool = l >= 0 + for yyj3565 := 0; ; yyj3565++ { + if yyhl3565 { + if yyj3565 >= l { break } } else { @@ -44887,10 +44928,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3560Slc = r.DecodeBytes(yys3560Slc, true, true) - yys3560 := string(yys3560Slc) + yys3565Slc = r.DecodeBytes(yys3565Slc, true, true) + yys3565 := string(yys3565Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3560 { + switch yys3565 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44910,9 +44951,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3560) - } // end switch yys3560 - } // end for yyj3560 + z.DecStructFieldNotFound(-1, yys3565) + } // end switch yys3565 + } // end for yyj3565 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44920,16 +44961,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3564 int - var yyb3564 bool - var yyhl3564 bool = l >= 0 - yyj3564++ - if yyhl3564 { - yyb3564 = yyj3564 > l + var yyj3569 int + var yyb3569 bool + var yyhl3569 bool = l >= 0 + yyj3569++ + if yyhl3569 { + yyb3569 = yyj3569 > l } else { - yyb3564 = r.CheckBreak() + yyb3569 = r.CheckBreak() } - if yyb3564 { + if yyb3569 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44939,13 +44980,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3564++ - if yyhl3564 { - yyb3564 = yyj3564 > l + yyj3569++ + if yyhl3569 { + yyb3569 = yyj3569 > l } else { - yyb3564 = r.CheckBreak() + yyb3569 = r.CheckBreak() } - if yyb3564 { + if yyb3569 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44955,13 +44996,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3564++ - if yyhl3564 { - yyb3564 = yyj3564 > l + yyj3569++ + if yyhl3569 { + yyb3569 = yyj3569 > l } else { - yyb3564 = r.CheckBreak() + yyb3569 = r.CheckBreak() } - if yyb3564 { + if yyb3569 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44972,17 +45013,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3564++ - if yyhl3564 { - yyb3564 = yyj3564 > l + yyj3569++ + if yyhl3569 { + yyb3569 = yyj3569 > l } else { - yyb3564 = r.CheckBreak() + yyb3569 = r.CheckBreak() } - if yyb3564 { + if yyb3569 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3564-1, "") + z.DecStructFieldNotFound(yyj3569-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44994,36 +45035,36 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3568 := z.EncBinary() - _ = yym3568 + yym3573 := z.EncBinary() + _ = yym3573 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3569 := !z.EncBinary() - yy2arr3569 := z.EncBasicHandle().StructToArray - var yyq3569 [3]bool - _, _, _ = yysep3569, yyq3569, yy2arr3569 - const yyr3569 bool = false - yyq3569[0] = x.Kind != "" - yyq3569[1] = x.APIVersion != "" - var yynn3569 int - if yyr3569 || yy2arr3569 { + yysep3574 := !z.EncBinary() + yy2arr3574 := z.EncBasicHandle().StructToArray + var yyq3574 [3]bool + _, _, _ = yysep3574, yyq3574, yy2arr3574 + const yyr3574 bool = false + yyq3574[0] = x.Kind != "" + yyq3574[1] = x.APIVersion != "" + var yynn3574 int + if yyr3574 || yy2arr3574 { r.EncodeArrayStart(3) } else { - yynn3569 = 1 - for _, b := range yyq3569 { + yynn3574 = 1 + for _, b := range yyq3574 { if b { - yynn3569++ + yynn3574++ } } - r.EncodeMapStart(yynn3569) - yynn3569 = 0 + r.EncodeMapStart(yynn3574) + yynn3574 = 0 } - if yyr3569 || yy2arr3569 { + if yyr3574 || yy2arr3574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3569[0] { - yym3571 := z.EncBinary() - _ = yym3571 + if yyq3574[0] { + yym3576 := z.EncBinary() + _ = yym3576 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45032,23 +45073,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3569[0] { + if yyq3574[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3572 := z.EncBinary() - _ = yym3572 + yym3577 := z.EncBinary() + _ = yym3577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3569 || yy2arr3569 { + if yyr3574 || yy2arr3574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3569[1] { - yym3574 := z.EncBinary() - _ = yym3574 + if yyq3574[1] { + yym3579 := z.EncBinary() + _ = yym3579 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45057,22 +45098,22 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3569[1] { + if yyq3574[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3575 := z.EncBinary() - _ = yym3575 + yym3580 := z.EncBinary() + _ = yym3580 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3569 || yy2arr3569 { + if yyr3574 || yy2arr3574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3577 := z.EncBinary() - _ = yym3577 + yym3582 := z.EncBinary() + _ = yym3582 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45081,14 +45122,14 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3578 := z.EncBinary() - _ = yym3578 + yym3583 := z.EncBinary() + _ = yym3583 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3569 || yy2arr3569 { + if yyr3574 || yy2arr3574 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45101,25 +45142,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3579 := z.DecBinary() - _ = yym3579 + yym3584 := z.DecBinary() + _ = yym3584 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3580 := r.ContainerType() - if yyct3580 == codecSelferValueTypeMap1234 { - yyl3580 := r.ReadMapStart() - if yyl3580 == 0 { + yyct3585 := r.ContainerType() + if yyct3585 == codecSelferValueTypeMap1234 { + yyl3585 := r.ReadMapStart() + if yyl3585 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3580, d) + x.codecDecodeSelfFromMap(yyl3585, d) } - } else if yyct3580 == codecSelferValueTypeArray1234 { - yyl3580 := r.ReadArrayStart() - if yyl3580 == 0 { + } else if yyct3585 == codecSelferValueTypeArray1234 { + yyl3585 := r.ReadArrayStart() + if yyl3585 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3580, d) + x.codecDecodeSelfFromArray(yyl3585, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45131,12 +45172,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3581Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3581Slc - var yyhl3581 bool = l >= 0 - for yyj3581 := 0; ; yyj3581++ { - if yyhl3581 { - if yyj3581 >= l { + var yys3586Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3586Slc + var yyhl3586 bool = l >= 0 + for yyj3586 := 0; ; yyj3586++ { + if yyhl3586 { + if yyj3586 >= l { break } } else { @@ -45145,10 +45186,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3581Slc = r.DecodeBytes(yys3581Slc, true, true) - yys3581 := string(yys3581Slc) + yys3586Slc = r.DecodeBytes(yys3586Slc, true, true) + yys3586 := string(yys3586Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3581 { + switch yys3586 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45168,9 +45209,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3581) - } // end switch yys3581 - } // end for yyj3581 + z.DecStructFieldNotFound(-1, yys3586) + } // end switch yys3586 + } // end for yyj3586 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45178,16 +45219,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3585 int - var yyb3585 bool - var yyhl3585 bool = l >= 0 - yyj3585++ - if yyhl3585 { - yyb3585 = yyj3585 > l + var yyj3590 int + var yyb3590 bool + var yyhl3590 bool = l >= 0 + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3585 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3585 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45197,13 +45238,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3585++ - if yyhl3585 { - yyb3585 = yyj3585 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3585 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3585 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45213,13 +45254,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3585++ - if yyhl3585 { - yyb3585 = yyj3585 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3585 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3585 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45230,17 +45271,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3585++ - if yyhl3585 { - yyb3585 = yyj3585 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3585 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3585 { + if yyb3590 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3585-1, "") + z.DecStructFieldNotFound(yyj3590-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45252,34 +45293,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3589 := z.EncBinary() - _ = yym3589 + yym3594 := z.EncBinary() + _ = yym3594 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3590 := !z.EncBinary() - yy2arr3590 := z.EncBasicHandle().StructToArray - var yyq3590 [5]bool - _, _, _ = yysep3590, yyq3590, yy2arr3590 - const yyr3590 bool = false - yyq3590[4] = x.Controller != nil - var yynn3590 int - if yyr3590 || yy2arr3590 { + yysep3595 := !z.EncBinary() + yy2arr3595 := z.EncBasicHandle().StructToArray + var yyq3595 [5]bool + _, _, _ = yysep3595, yyq3595, yy2arr3595 + const yyr3595 bool = false + yyq3595[4] = x.Controller != nil + var yynn3595 int + if yyr3595 || yy2arr3595 { r.EncodeArrayStart(5) } else { - yynn3590 = 4 - for _, b := range yyq3590 { + yynn3595 = 4 + for _, b := range yyq3595 { if b { - yynn3590++ + yynn3595++ } } - r.EncodeMapStart(yynn3590) - yynn3590 = 0 + r.EncodeMapStart(yynn3595) + yynn3595 = 0 } - if yyr3590 || yy2arr3590 { + if yyr3595 || yy2arr3595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3592 := z.EncBinary() - _ = yym3592 + yym3597 := z.EncBinary() + _ = yym3597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45288,17 +45329,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3593 := z.EncBinary() - _ = yym3593 + yym3598 := z.EncBinary() + _ = yym3598 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3590 || yy2arr3590 { + if yyr3595 || yy2arr3595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3595 := z.EncBinary() - _ = yym3595 + yym3600 := z.EncBinary() + _ = yym3600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45307,17 +45348,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3596 := z.EncBinary() - _ = yym3596 + yym3601 := z.EncBinary() + _ = yym3601 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3590 || yy2arr3590 { + if yyr3595 || yy2arr3595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3598 := z.EncBinary() - _ = yym3598 + yym3603 := z.EncBinary() + _ = yym3603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45326,17 +45367,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3599 := z.EncBinary() - _ = yym3599 + yym3604 := z.EncBinary() + _ = yym3604 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3590 || yy2arr3590 { + if yyr3595 || yy2arr3595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3601 := z.EncBinary() - _ = yym3601 + yym3606 := z.EncBinary() + _ = yym3606 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45346,50 +45387,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3602 := z.EncBinary() - _ = yym3602 + yym3607 := z.EncBinary() + _ = yym3607 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3590 || yy2arr3590 { + if yyr3595 || yy2arr3595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3590[4] { + if yyq3595[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3604 := *x.Controller - yym3605 := z.EncBinary() - _ = yym3605 + yy3609 := *x.Controller + yym3610 := z.EncBinary() + _ = yym3610 if false { } else { - r.EncodeBool(bool(yy3604)) + r.EncodeBool(bool(yy3609)) } } } else { r.EncodeNil() } } else { - if yyq3590[4] { + if yyq3595[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3606 := *x.Controller - yym3607 := z.EncBinary() - _ = yym3607 + yy3611 := *x.Controller + yym3612 := z.EncBinary() + _ = yym3612 if false { } else { - r.EncodeBool(bool(yy3606)) + r.EncodeBool(bool(yy3611)) } } } } - if yyr3590 || yy2arr3590 { + if yyr3595 || yy2arr3595 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45402,25 +45443,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3608 := z.DecBinary() - _ = yym3608 + yym3613 := z.DecBinary() + _ = yym3613 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3609 := r.ContainerType() - if yyct3609 == codecSelferValueTypeMap1234 { - yyl3609 := r.ReadMapStart() - if yyl3609 == 0 { + yyct3614 := r.ContainerType() + if yyct3614 == codecSelferValueTypeMap1234 { + yyl3614 := r.ReadMapStart() + if yyl3614 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3609, d) + x.codecDecodeSelfFromMap(yyl3614, d) } - } else if yyct3609 == codecSelferValueTypeArray1234 { - yyl3609 := r.ReadArrayStart() - if yyl3609 == 0 { + } else if yyct3614 == codecSelferValueTypeArray1234 { + yyl3614 := r.ReadArrayStart() + if yyl3614 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3609, d) + x.codecDecodeSelfFromArray(yyl3614, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45432,12 +45473,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3610Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3610Slc - var yyhl3610 bool = l >= 0 - for yyj3610 := 0; ; yyj3610++ { - if yyhl3610 { - if yyj3610 >= l { + var yys3615Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3615Slc + var yyhl3615 bool = l >= 0 + for yyj3615 := 0; ; yyj3615++ { + if yyhl3615 { + if yyj3615 >= l { break } } else { @@ -45446,10 +45487,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3610Slc = r.DecodeBytes(yys3610Slc, true, true) - yys3610 := string(yys3610Slc) + yys3615Slc = r.DecodeBytes(yys3615Slc, true, true) + yys3615 := string(yys3615Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3610 { + switch yys3615 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -45483,17 +45524,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3616 := z.DecBinary() - _ = yym3616 + yym3621 := z.DecBinary() + _ = yym3621 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3610) - } // end switch yys3610 - } // end for yyj3610 + z.DecStructFieldNotFound(-1, yys3615) + } // end switch yys3615 + } // end for yyj3615 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45501,16 +45542,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3617 int - var yyb3617 bool - var yyhl3617 bool = l >= 0 - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + var yyj3622 int + var yyb3622 bool + var yyhl3622 bool = l >= 0 + yyj3622++ + if yyhl3622 { + yyb3622 = yyj3622 > l } else { - yyb3617 = r.CheckBreak() + yyb3622 = r.CheckBreak() } - if yyb3617 { + if yyb3622 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45520,13 +45561,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3622++ + if yyhl3622 { + yyb3622 = yyj3622 > l } else { - yyb3617 = r.CheckBreak() + yyb3622 = r.CheckBreak() } - if yyb3617 { + if yyb3622 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45536,13 +45577,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3622++ + if yyhl3622 { + yyb3622 = yyj3622 > l } else { - yyb3617 = r.CheckBreak() + yyb3622 = r.CheckBreak() } - if yyb3617 { + if yyb3622 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45552,13 +45593,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3622++ + if yyhl3622 { + yyb3622 = yyj3622 > l } else { - yyb3617 = r.CheckBreak() + yyb3622 = r.CheckBreak() } - if yyb3617 { + if yyb3622 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45568,13 +45609,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3622++ + if yyhl3622 { + yyb3622 = yyj3622 > l } else { - yyb3617 = r.CheckBreak() + yyb3622 = r.CheckBreak() } - if yyb3617 { + if yyb3622 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45587,25 +45628,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3623 := z.DecBinary() - _ = yym3623 + yym3628 := z.DecBinary() + _ = yym3628 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3622++ + if yyhl3622 { + yyb3622 = yyj3622 > l } else { - yyb3617 = r.CheckBreak() + yyb3622 = r.CheckBreak() } - if yyb3617 { + if yyb3622 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3617-1, "") + z.DecStructFieldNotFound(yyj3622-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45617,41 +45658,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3624 := z.EncBinary() - _ = yym3624 + yym3629 := z.EncBinary() + _ = yym3629 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3625 := !z.EncBinary() - yy2arr3625 := z.EncBasicHandle().StructToArray - var yyq3625 [7]bool - _, _, _ = yysep3625, yyq3625, yy2arr3625 - const yyr3625 bool = false - yyq3625[0] = x.Kind != "" - yyq3625[1] = x.Namespace != "" - yyq3625[2] = x.Name != "" - yyq3625[3] = x.UID != "" - yyq3625[4] = x.APIVersion != "" - yyq3625[5] = x.ResourceVersion != "" - yyq3625[6] = x.FieldPath != "" - var yynn3625 int - if yyr3625 || yy2arr3625 { + yysep3630 := !z.EncBinary() + yy2arr3630 := z.EncBasicHandle().StructToArray + var yyq3630 [7]bool + _, _, _ = yysep3630, yyq3630, yy2arr3630 + const yyr3630 bool = false + yyq3630[0] = x.Kind != "" + yyq3630[1] = x.Namespace != "" + yyq3630[2] = x.Name != "" + yyq3630[3] = x.UID != "" + yyq3630[4] = x.APIVersion != "" + yyq3630[5] = x.ResourceVersion != "" + yyq3630[6] = x.FieldPath != "" + var yynn3630 int + if yyr3630 || yy2arr3630 { r.EncodeArrayStart(7) } else { - yynn3625 = 0 - for _, b := range yyq3625 { + yynn3630 = 0 + for _, b := range yyq3630 { if b { - yynn3625++ + yynn3630++ } } - r.EncodeMapStart(yynn3625) - yynn3625 = 0 + r.EncodeMapStart(yynn3630) + yynn3630 = 0 } - if yyr3625 || yy2arr3625 { + if yyr3630 || yy2arr3630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[0] { - yym3627 := z.EncBinary() - _ = yym3627 + if yyq3630[0] { + yym3632 := z.EncBinary() + _ = yym3632 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45660,23 +45701,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[0] { + if yyq3630[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3628 := z.EncBinary() - _ = yym3628 + yym3633 := z.EncBinary() + _ = yym3633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3625 || yy2arr3625 { + if yyr3630 || yy2arr3630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[1] { - yym3630 := z.EncBinary() - _ = yym3630 + if yyq3630[1] { + yym3635 := z.EncBinary() + _ = yym3635 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -45685,23 +45726,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[1] { + if yyq3630[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3631 := z.EncBinary() - _ = yym3631 + yym3636 := z.EncBinary() + _ = yym3636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3625 || yy2arr3625 { + if yyr3630 || yy2arr3630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[2] { - yym3633 := z.EncBinary() - _ = yym3633 + if yyq3630[2] { + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45710,23 +45751,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[2] { + if yyq3630[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3634 := z.EncBinary() - _ = yym3634 + yym3639 := z.EncBinary() + _ = yym3639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3625 || yy2arr3625 { + if yyr3630 || yy2arr3630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[3] { - yym3636 := z.EncBinary() - _ = yym3636 + if yyq3630[3] { + yym3641 := z.EncBinary() + _ = yym3641 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45736,12 +45777,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[3] { + if yyq3630[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3637 := z.EncBinary() - _ = yym3637 + yym3642 := z.EncBinary() + _ = yym3642 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45749,11 +45790,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3625 || yy2arr3625 { + if yyr3630 || yy2arr3630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[4] { - yym3639 := z.EncBinary() - _ = yym3639 + if yyq3630[4] { + yym3644 := z.EncBinary() + _ = yym3644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45762,23 +45803,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[4] { + if yyq3630[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3640 := z.EncBinary() - _ = yym3640 + yym3645 := z.EncBinary() + _ = yym3645 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3625 || yy2arr3625 { + if yyr3630 || yy2arr3630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[5] { - yym3642 := z.EncBinary() - _ = yym3642 + if yyq3630[5] { + yym3647 := z.EncBinary() + _ = yym3647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -45787,23 +45828,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[5] { + if yyq3630[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3643 := z.EncBinary() - _ = yym3643 + yym3648 := z.EncBinary() + _ = yym3648 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3625 || yy2arr3625 { + if yyr3630 || yy2arr3630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[6] { - yym3645 := z.EncBinary() - _ = yym3645 + if yyq3630[6] { + yym3650 := z.EncBinary() + _ = yym3650 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -45812,19 +45853,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[6] { + if yyq3630[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3646 := z.EncBinary() - _ = yym3646 + yym3651 := z.EncBinary() + _ = yym3651 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3625 || yy2arr3625 { + if yyr3630 || yy2arr3630 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45837,25 +45878,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3647 := z.DecBinary() - _ = yym3647 + yym3652 := z.DecBinary() + _ = yym3652 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3648 := r.ContainerType() - if yyct3648 == codecSelferValueTypeMap1234 { - yyl3648 := r.ReadMapStart() - if yyl3648 == 0 { + yyct3653 := r.ContainerType() + if yyct3653 == codecSelferValueTypeMap1234 { + yyl3653 := r.ReadMapStart() + if yyl3653 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3648, d) + x.codecDecodeSelfFromMap(yyl3653, d) } - } else if yyct3648 == codecSelferValueTypeArray1234 { - yyl3648 := r.ReadArrayStart() - if yyl3648 == 0 { + } else if yyct3653 == codecSelferValueTypeArray1234 { + yyl3653 := r.ReadArrayStart() + if yyl3653 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3648, d) + x.codecDecodeSelfFromArray(yyl3653, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45867,12 +45908,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3649Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3649Slc - var yyhl3649 bool = l >= 0 - for yyj3649 := 0; ; yyj3649++ { - if yyhl3649 { - if yyj3649 >= l { + var yys3654Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3654Slc + var yyhl3654 bool = l >= 0 + for yyj3654 := 0; ; yyj3654++ { + if yyhl3654 { + if yyj3654 >= l { break } } else { @@ -45881,10 +45922,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3649Slc = r.DecodeBytes(yys3649Slc, true, true) - yys3649 := string(yys3649Slc) + yys3654Slc = r.DecodeBytes(yys3654Slc, true, true) + yys3654 := string(yys3654Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3649 { + switch yys3654 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45928,9 +45969,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3649) - } // end switch yys3649 - } // end for yyj3649 + z.DecStructFieldNotFound(-1, yys3654) + } // end switch yys3654 + } // end for yyj3654 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45938,16 +45979,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3657 int - var yyb3657 bool - var yyhl3657 bool = l >= 0 - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + var yyj3662 int + var yyb3662 bool + var yyhl3662 bool = l >= 0 + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45957,13 +45998,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45973,13 +46014,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45989,13 +46030,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46005,13 +46046,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46021,13 +46062,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46037,13 +46078,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46054,17 +46095,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3657-1, "") + z.DecStructFieldNotFound(yyj3662-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46076,33 +46117,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3665 := z.EncBinary() - _ = yym3665 + yym3670 := z.EncBinary() + _ = yym3670 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3666 := !z.EncBinary() - yy2arr3666 := z.EncBasicHandle().StructToArray - var yyq3666 [1]bool - _, _, _ = yysep3666, yyq3666, yy2arr3666 - const yyr3666 bool = false - var yynn3666 int - if yyr3666 || yy2arr3666 { + yysep3671 := !z.EncBinary() + yy2arr3671 := z.EncBasicHandle().StructToArray + var yyq3671 [1]bool + _, _, _ = yysep3671, yyq3671, yy2arr3671 + const yyr3671 bool = false + var yynn3671 int + if yyr3671 || yy2arr3671 { r.EncodeArrayStart(1) } else { - yynn3666 = 1 - for _, b := range yyq3666 { + yynn3671 = 1 + for _, b := range yyq3671 { if b { - yynn3666++ + yynn3671++ } } - r.EncodeMapStart(yynn3666) - yynn3666 = 0 + r.EncodeMapStart(yynn3671) + yynn3671 = 0 } - if yyr3666 || yy2arr3666 { + if yyr3671 || yy2arr3671 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3668 := z.EncBinary() - _ = yym3668 + yym3673 := z.EncBinary() + _ = yym3673 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46111,14 +46152,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3669 := z.EncBinary() - _ = yym3669 + yym3674 := z.EncBinary() + _ = yym3674 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3666 || yy2arr3666 { + if yyr3671 || yy2arr3671 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46131,25 +46172,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3670 := z.DecBinary() - _ = yym3670 + yym3675 := z.DecBinary() + _ = yym3675 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3671 := r.ContainerType() - if yyct3671 == codecSelferValueTypeMap1234 { - yyl3671 := r.ReadMapStart() - if yyl3671 == 0 { + yyct3676 := r.ContainerType() + if yyct3676 == codecSelferValueTypeMap1234 { + yyl3676 := r.ReadMapStart() + if yyl3676 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3671, d) + x.codecDecodeSelfFromMap(yyl3676, d) } - } else if yyct3671 == codecSelferValueTypeArray1234 { - yyl3671 := r.ReadArrayStart() - if yyl3671 == 0 { + } else if yyct3676 == codecSelferValueTypeArray1234 { + yyl3676 := r.ReadArrayStart() + if yyl3676 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3671, d) + x.codecDecodeSelfFromArray(yyl3676, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46161,12 +46202,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3672Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3672Slc - var yyhl3672 bool = l >= 0 - for yyj3672 := 0; ; yyj3672++ { - if yyhl3672 { - if yyj3672 >= l { + var yys3677Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3677Slc + var yyhl3677 bool = l >= 0 + for yyj3677 := 0; ; yyj3677++ { + if yyhl3677 { + if yyj3677 >= l { break } } else { @@ -46175,10 +46216,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3672Slc = r.DecodeBytes(yys3672Slc, true, true) - yys3672 := string(yys3672Slc) + yys3677Slc = r.DecodeBytes(yys3677Slc, true, true) + yys3677 := string(yys3677Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3672 { + switch yys3677 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -46186,9 +46227,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3672) - } // end switch yys3672 - } // end for yyj3672 + z.DecStructFieldNotFound(-1, yys3677) + } // end switch yys3677 + } // end for yyj3677 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46196,16 +46237,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3674 int - var yyb3674 bool - var yyhl3674 bool = l >= 0 - yyj3674++ - if yyhl3674 { - yyb3674 = yyj3674 > l + var yyj3679 int + var yyb3679 bool + var yyhl3679 bool = l >= 0 + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3674 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3674 { + if yyb3679 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46216,17 +46257,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3674++ - if yyhl3674 { - yyb3674 = yyj3674 > l + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3674 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3674 { + if yyb3679 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3674-1, "") + z.DecStructFieldNotFound(yyj3679-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46238,37 +46279,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3676 := z.EncBinary() - _ = yym3676 + yym3681 := z.EncBinary() + _ = yym3681 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3677 := !z.EncBinary() - yy2arr3677 := z.EncBasicHandle().StructToArray - var yyq3677 [3]bool - _, _, _ = yysep3677, yyq3677, yy2arr3677 - const yyr3677 bool = false - yyq3677[0] = x.Kind != "" - yyq3677[1] = x.APIVersion != "" - yyq3677[2] = true - var yynn3677 int - if yyr3677 || yy2arr3677 { + yysep3682 := !z.EncBinary() + yy2arr3682 := z.EncBasicHandle().StructToArray + var yyq3682 [3]bool + _, _, _ = yysep3682, yyq3682, yy2arr3682 + const yyr3682 bool = false + yyq3682[0] = x.Kind != "" + yyq3682[1] = x.APIVersion != "" + yyq3682[2] = true + var yynn3682 int + if yyr3682 || yy2arr3682 { r.EncodeArrayStart(3) } else { - yynn3677 = 0 - for _, b := range yyq3677 { + yynn3682 = 0 + for _, b := range yyq3682 { if b { - yynn3677++ + yynn3682++ } } - r.EncodeMapStart(yynn3677) - yynn3677 = 0 + r.EncodeMapStart(yynn3682) + yynn3682 = 0 } - if yyr3677 || yy2arr3677 { + if yyr3682 || yy2arr3682 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3677[0] { - yym3679 := z.EncBinary() - _ = yym3679 + if yyq3682[0] { + yym3684 := z.EncBinary() + _ = yym3684 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46277,23 +46318,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3677[0] { + if yyq3682[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3677 || yy2arr3677 { + if yyr3682 || yy2arr3682 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3677[1] { - yym3682 := z.EncBinary() - _ = yym3682 + if yyq3682[1] { + yym3687 := z.EncBinary() + _ = yym3687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46302,36 +46343,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3677[1] { + if yyq3682[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3683 := z.EncBinary() - _ = yym3683 + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3677 || yy2arr3677 { + if yyr3682 || yy2arr3682 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3677[2] { - yy3685 := &x.Reference - yy3685.CodecEncodeSelf(e) + if yyq3682[2] { + yy3690 := &x.Reference + yy3690.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3677[2] { + if yyq3682[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3686 := &x.Reference - yy3686.CodecEncodeSelf(e) + yy3691 := &x.Reference + yy3691.CodecEncodeSelf(e) } } - if yyr3677 || yy2arr3677 { + if yyr3682 || yy2arr3682 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46344,25 +46385,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3687 := z.DecBinary() - _ = yym3687 + yym3692 := z.DecBinary() + _ = yym3692 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3688 := r.ContainerType() - if yyct3688 == codecSelferValueTypeMap1234 { - yyl3688 := r.ReadMapStart() - if yyl3688 == 0 { + yyct3693 := r.ContainerType() + if yyct3693 == codecSelferValueTypeMap1234 { + yyl3693 := r.ReadMapStart() + if yyl3693 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3688, d) + x.codecDecodeSelfFromMap(yyl3693, d) } - } else if yyct3688 == codecSelferValueTypeArray1234 { - yyl3688 := r.ReadArrayStart() - if yyl3688 == 0 { + } else if yyct3693 == codecSelferValueTypeArray1234 { + yyl3693 := r.ReadArrayStart() + if yyl3693 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3688, d) + x.codecDecodeSelfFromArray(yyl3693, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46374,12 +46415,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3689Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3689Slc - var yyhl3689 bool = l >= 0 - for yyj3689 := 0; ; yyj3689++ { - if yyhl3689 { - if yyj3689 >= l { + var yys3694Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3694Slc + var yyhl3694 bool = l >= 0 + for yyj3694 := 0; ; yyj3694++ { + if yyhl3694 { + if yyj3694 >= l { break } } else { @@ -46388,10 +46429,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3689Slc = r.DecodeBytes(yys3689Slc, true, true) - yys3689 := string(yys3689Slc) + yys3694Slc = r.DecodeBytes(yys3694Slc, true, true) + yys3694 := string(yys3694Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3689 { + switch yys3694 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46408,13 +46449,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3692 := &x.Reference - yyv3692.CodecDecodeSelf(d) + yyv3697 := &x.Reference + yyv3697.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3689) - } // end switch yys3689 - } // end for yyj3689 + z.DecStructFieldNotFound(-1, yys3694) + } // end switch yys3694 + } // end for yyj3694 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46422,16 +46463,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3693 int - var yyb3693 bool - var yyhl3693 bool = l >= 0 - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + var yyj3698 int + var yyb3698 bool + var yyhl3698 bool = l >= 0 + yyj3698++ + if yyhl3698 { + yyb3698 = yyj3698 > l } else { - yyb3693 = r.CheckBreak() + yyb3698 = r.CheckBreak() } - if yyb3693 { + if yyb3698 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46441,13 +46482,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3698++ + if yyhl3698 { + yyb3698 = yyj3698 > l } else { - yyb3693 = r.CheckBreak() + yyb3698 = r.CheckBreak() } - if yyb3693 { + if yyb3698 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46457,13 +46498,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3698++ + if yyhl3698 { + yyb3698 = yyj3698 > l } else { - yyb3693 = r.CheckBreak() + yyb3698 = r.CheckBreak() } - if yyb3693 { + if yyb3698 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46471,21 +46512,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3696 := &x.Reference - yyv3696.CodecDecodeSelf(d) + yyv3701 := &x.Reference + yyv3701.CodecDecodeSelf(d) } for { - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3698++ + if yyhl3698 { + yyb3698 = yyj3698 > l } else { - yyb3693 = r.CheckBreak() + yyb3698 = r.CheckBreak() } - if yyb3693 { + if yyb3698 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3693-1, "") + z.DecStructFieldNotFound(yyj3698-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46497,36 +46538,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3697 := z.EncBinary() - _ = yym3697 + yym3702 := z.EncBinary() + _ = yym3702 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3698 := !z.EncBinary() - yy2arr3698 := z.EncBasicHandle().StructToArray - var yyq3698 [2]bool - _, _, _ = yysep3698, yyq3698, yy2arr3698 - const yyr3698 bool = false - yyq3698[0] = x.Component != "" - yyq3698[1] = x.Host != "" - var yynn3698 int - if yyr3698 || yy2arr3698 { + yysep3703 := !z.EncBinary() + yy2arr3703 := z.EncBasicHandle().StructToArray + var yyq3703 [2]bool + _, _, _ = yysep3703, yyq3703, yy2arr3703 + const yyr3703 bool = false + yyq3703[0] = x.Component != "" + yyq3703[1] = x.Host != "" + var yynn3703 int + if yyr3703 || yy2arr3703 { r.EncodeArrayStart(2) } else { - yynn3698 = 0 - for _, b := range yyq3698 { + yynn3703 = 0 + for _, b := range yyq3703 { if b { - yynn3698++ + yynn3703++ } } - r.EncodeMapStart(yynn3698) - yynn3698 = 0 + r.EncodeMapStart(yynn3703) + yynn3703 = 0 } - if yyr3698 || yy2arr3698 { + if yyr3703 || yy2arr3703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3698[0] { - yym3700 := z.EncBinary() - _ = yym3700 + if yyq3703[0] { + yym3705 := z.EncBinary() + _ = yym3705 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -46535,23 +46576,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3698[0] { + if yyq3703[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3701 := z.EncBinary() - _ = yym3701 + yym3706 := z.EncBinary() + _ = yym3706 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3698 || yy2arr3698 { + if yyr3703 || yy2arr3703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3698[1] { - yym3703 := z.EncBinary() - _ = yym3703 + if yyq3703[1] { + yym3708 := z.EncBinary() + _ = yym3708 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -46560,19 +46601,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3698[1] { + if yyq3703[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3704 := z.EncBinary() - _ = yym3704 + yym3709 := z.EncBinary() + _ = yym3709 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3698 || yy2arr3698 { + if yyr3703 || yy2arr3703 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46585,25 +46626,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3705 := z.DecBinary() - _ = yym3705 + yym3710 := z.DecBinary() + _ = yym3710 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3706 := r.ContainerType() - if yyct3706 == codecSelferValueTypeMap1234 { - yyl3706 := r.ReadMapStart() - if yyl3706 == 0 { + yyct3711 := r.ContainerType() + if yyct3711 == codecSelferValueTypeMap1234 { + yyl3711 := r.ReadMapStart() + if yyl3711 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3706, d) + x.codecDecodeSelfFromMap(yyl3711, d) } - } else if yyct3706 == codecSelferValueTypeArray1234 { - yyl3706 := r.ReadArrayStart() - if yyl3706 == 0 { + } else if yyct3711 == codecSelferValueTypeArray1234 { + yyl3711 := r.ReadArrayStart() + if yyl3711 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3706, d) + x.codecDecodeSelfFromArray(yyl3711, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46615,12 +46656,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3707Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3707Slc - var yyhl3707 bool = l >= 0 - for yyj3707 := 0; ; yyj3707++ { - if yyhl3707 { - if yyj3707 >= l { + var yys3712Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3712Slc + var yyhl3712 bool = l >= 0 + for yyj3712 := 0; ; yyj3712++ { + if yyhl3712 { + if yyj3712 >= l { break } } else { @@ -46629,10 +46670,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3707Slc = r.DecodeBytes(yys3707Slc, true, true) - yys3707 := string(yys3707Slc) + yys3712Slc = r.DecodeBytes(yys3712Slc, true, true) + yys3712 := string(yys3712Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3707 { + switch yys3712 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -46646,9 +46687,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3707) - } // end switch yys3707 - } // end for yyj3707 + z.DecStructFieldNotFound(-1, yys3712) + } // end switch yys3712 + } // end for yyj3712 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46656,16 +46697,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3710 int - var yyb3710 bool - var yyhl3710 bool = l >= 0 - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + var yyj3715 int + var yyb3715 bool + var yyhl3715 bool = l >= 0 + yyj3715++ + if yyhl3715 { + yyb3715 = yyj3715 > l } else { - yyb3710 = r.CheckBreak() + yyb3715 = r.CheckBreak() } - if yyb3710 { + if yyb3715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46675,13 +46716,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3715++ + if yyhl3715 { + yyb3715 = yyj3715 > l } else { - yyb3710 = r.CheckBreak() + yyb3715 = r.CheckBreak() } - if yyb3710 { + if yyb3715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46692,17 +46733,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3715++ + if yyhl3715 { + yyb3715 = yyj3715 > l } else { - yyb3710 = r.CheckBreak() + yyb3715 = r.CheckBreak() } - if yyb3710 { + if yyb3715 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3710-1, "") + z.DecStructFieldNotFound(yyj3715-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46714,45 +46755,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3713 := z.EncBinary() - _ = yym3713 + yym3718 := z.EncBinary() + _ = yym3718 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3714 := !z.EncBinary() - yy2arr3714 := z.EncBasicHandle().StructToArray - var yyq3714 [11]bool - _, _, _ = yysep3714, yyq3714, yy2arr3714 - const yyr3714 bool = false - yyq3714[0] = x.Kind != "" - yyq3714[1] = x.APIVersion != "" - yyq3714[2] = true - yyq3714[3] = true - yyq3714[4] = x.Reason != "" - yyq3714[5] = x.Message != "" - yyq3714[6] = true - yyq3714[7] = true - yyq3714[8] = true - yyq3714[9] = x.Count != 0 - yyq3714[10] = x.Type != "" - var yynn3714 int - if yyr3714 || yy2arr3714 { + yysep3719 := !z.EncBinary() + yy2arr3719 := z.EncBasicHandle().StructToArray + var yyq3719 [11]bool + _, _, _ = yysep3719, yyq3719, yy2arr3719 + const yyr3719 bool = false + yyq3719[0] = x.Kind != "" + yyq3719[1] = x.APIVersion != "" + yyq3719[2] = true + yyq3719[3] = true + yyq3719[4] = x.Reason != "" + yyq3719[5] = x.Message != "" + yyq3719[6] = true + yyq3719[7] = true + yyq3719[8] = true + yyq3719[9] = x.Count != 0 + yyq3719[10] = x.Type != "" + var yynn3719 int + if yyr3719 || yy2arr3719 { r.EncodeArrayStart(11) } else { - yynn3714 = 0 - for _, b := range yyq3714 { + yynn3719 = 0 + for _, b := range yyq3719 { if b { - yynn3714++ + yynn3719++ } } - r.EncodeMapStart(yynn3714) - yynn3714 = 0 + r.EncodeMapStart(yynn3719) + yynn3719 = 0 } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[0] { - yym3716 := z.EncBinary() - _ = yym3716 + if yyq3719[0] { + yym3721 := z.EncBinary() + _ = yym3721 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46761,23 +46802,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[0] { + if yyq3719[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3717 := z.EncBinary() - _ = yym3717 + yym3722 := z.EncBinary() + _ = yym3722 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[1] { - yym3719 := z.EncBinary() - _ = yym3719 + if yyq3719[1] { + yym3724 := z.EncBinary() + _ = yym3724 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46786,57 +46827,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[1] { + if yyq3719[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3720 := z.EncBinary() - _ = yym3720 + yym3725 := z.EncBinary() + _ = yym3725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[2] { - yy3722 := &x.ObjectMeta - yy3722.CodecEncodeSelf(e) + if yyq3719[2] { + yy3727 := &x.ObjectMeta + yy3727.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3714[2] { + if yyq3719[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3723 := &x.ObjectMeta - yy3723.CodecEncodeSelf(e) + yy3728 := &x.ObjectMeta + yy3728.CodecEncodeSelf(e) } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[3] { - yy3725 := &x.InvolvedObject - yy3725.CodecEncodeSelf(e) + if yyq3719[3] { + yy3730 := &x.InvolvedObject + yy3730.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3714[3] { + if yyq3719[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3726 := &x.InvolvedObject - yy3726.CodecEncodeSelf(e) + yy3731 := &x.InvolvedObject + yy3731.CodecEncodeSelf(e) } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[4] { - yym3728 := z.EncBinary() - _ = yym3728 + if yyq3719[4] { + yym3733 := z.EncBinary() + _ = yym3733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -46845,23 +46886,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[4] { + if yyq3719[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3729 := z.EncBinary() - _ = yym3729 + yym3734 := z.EncBinary() + _ = yym3734 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[5] { - yym3731 := z.EncBinary() - _ = yym3731 + if yyq3719[5] { + yym3736 := z.EncBinary() + _ = yym3736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -46870,114 +46911,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[5] { + if yyq3719[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3732 := z.EncBinary() - _ = yym3732 + yym3737 := z.EncBinary() + _ = yym3737 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[6] { - yy3734 := &x.Source - yy3734.CodecEncodeSelf(e) + if yyq3719[6] { + yy3739 := &x.Source + yy3739.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3714[6] { + if yyq3719[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3735 := &x.Source - yy3735.CodecEncodeSelf(e) + yy3740 := &x.Source + yy3740.CodecEncodeSelf(e) } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[7] { - yy3737 := &x.FirstTimestamp - yym3738 := z.EncBinary() - _ = yym3738 + if yyq3719[7] { + yy3742 := &x.FirstTimestamp + yym3743 := z.EncBinary() + _ = yym3743 if false { - } else if z.HasExtensions() && z.EncExt(yy3737) { - } else if yym3738 { - z.EncBinaryMarshal(yy3737) - } else if !yym3738 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3737) + } else if z.HasExtensions() && z.EncExt(yy3742) { + } else if yym3743 { + z.EncBinaryMarshal(yy3742) + } else if !yym3743 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3742) } else { - z.EncFallback(yy3737) + z.EncFallback(yy3742) } } else { r.EncodeNil() } } else { - if yyq3714[7] { + if yyq3719[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3739 := &x.FirstTimestamp - yym3740 := z.EncBinary() - _ = yym3740 + yy3744 := &x.FirstTimestamp + yym3745 := z.EncBinary() + _ = yym3745 if false { - } else if z.HasExtensions() && z.EncExt(yy3739) { - } else if yym3740 { - z.EncBinaryMarshal(yy3739) - } else if !yym3740 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3739) + } else if z.HasExtensions() && z.EncExt(yy3744) { + } else if yym3745 { + z.EncBinaryMarshal(yy3744) + } else if !yym3745 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3744) } else { - z.EncFallback(yy3739) + z.EncFallback(yy3744) } } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[8] { - yy3742 := &x.LastTimestamp - yym3743 := z.EncBinary() - _ = yym3743 + if yyq3719[8] { + yy3747 := &x.LastTimestamp + yym3748 := z.EncBinary() + _ = yym3748 if false { - } else if z.HasExtensions() && z.EncExt(yy3742) { - } else if yym3743 { - z.EncBinaryMarshal(yy3742) - } else if !yym3743 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3742) + } else if z.HasExtensions() && z.EncExt(yy3747) { + } else if yym3748 { + z.EncBinaryMarshal(yy3747) + } else if !yym3748 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3747) } else { - z.EncFallback(yy3742) + z.EncFallback(yy3747) } } else { r.EncodeNil() } } else { - if yyq3714[8] { + if yyq3719[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3744 := &x.LastTimestamp - yym3745 := z.EncBinary() - _ = yym3745 + yy3749 := &x.LastTimestamp + yym3750 := z.EncBinary() + _ = yym3750 if false { - } else if z.HasExtensions() && z.EncExt(yy3744) { - } else if yym3745 { - z.EncBinaryMarshal(yy3744) - } else if !yym3745 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3744) + } else if z.HasExtensions() && z.EncExt(yy3749) { + } else if yym3750 { + z.EncBinaryMarshal(yy3749) + } else if !yym3750 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3749) } else { - z.EncFallback(yy3744) + z.EncFallback(yy3749) } } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[9] { - yym3747 := z.EncBinary() - _ = yym3747 + if yyq3719[9] { + yym3752 := z.EncBinary() + _ = yym3752 if false { } else { r.EncodeInt(int64(x.Count)) @@ -46986,23 +47027,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3714[9] { + if yyq3719[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3748 := z.EncBinary() - _ = yym3748 + yym3753 := z.EncBinary() + _ = yym3753 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[10] { - yym3750 := z.EncBinary() - _ = yym3750 + if yyq3719[10] { + yym3755 := z.EncBinary() + _ = yym3755 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -47011,19 +47052,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[10] { + if yyq3719[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3751 := z.EncBinary() - _ = yym3751 + yym3756 := z.EncBinary() + _ = yym3756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3714 || yy2arr3714 { + if yyr3719 || yy2arr3719 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47036,25 +47077,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3752 := z.DecBinary() - _ = yym3752 + yym3757 := z.DecBinary() + _ = yym3757 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3753 := r.ContainerType() - if yyct3753 == codecSelferValueTypeMap1234 { - yyl3753 := r.ReadMapStart() - if yyl3753 == 0 { + yyct3758 := r.ContainerType() + if yyct3758 == codecSelferValueTypeMap1234 { + yyl3758 := r.ReadMapStart() + if yyl3758 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3753, d) + x.codecDecodeSelfFromMap(yyl3758, d) } - } else if yyct3753 == codecSelferValueTypeArray1234 { - yyl3753 := r.ReadArrayStart() - if yyl3753 == 0 { + } else if yyct3758 == codecSelferValueTypeArray1234 { + yyl3758 := r.ReadArrayStart() + if yyl3758 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3753, d) + x.codecDecodeSelfFromArray(yyl3758, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47066,12 +47107,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3754Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3754Slc - var yyhl3754 bool = l >= 0 - for yyj3754 := 0; ; yyj3754++ { - if yyhl3754 { - if yyj3754 >= l { + var yys3759Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3759Slc + var yyhl3759 bool = l >= 0 + for yyj3759 := 0; ; yyj3759++ { + if yyhl3759 { + if yyj3759 >= l { break } } else { @@ -47080,10 +47121,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3754Slc = r.DecodeBytes(yys3754Slc, true, true) - yys3754 := string(yys3754Slc) + yys3759Slc = r.DecodeBytes(yys3759Slc, true, true) + yys3759 := string(yys3759Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3754 { + switch yys3759 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47100,15 +47141,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3757 := &x.ObjectMeta - yyv3757.CodecDecodeSelf(d) + yyv3762 := &x.ObjectMeta + yyv3762.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3758 := &x.InvolvedObject - yyv3758.CodecDecodeSelf(d) + yyv3763 := &x.InvolvedObject + yyv3763.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -47126,41 +47167,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3761 := &x.Source - yyv3761.CodecDecodeSelf(d) + yyv3766 := &x.Source + yyv3766.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3762 := &x.FirstTimestamp - yym3763 := z.DecBinary() - _ = yym3763 + yyv3767 := &x.FirstTimestamp + yym3768 := z.DecBinary() + _ = yym3768 if false { - } else if z.HasExtensions() && z.DecExt(yyv3762) { - } else if yym3763 { - z.DecBinaryUnmarshal(yyv3762) - } else if !yym3763 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3762) + } else if z.HasExtensions() && z.DecExt(yyv3767) { + } else if yym3768 { + z.DecBinaryUnmarshal(yyv3767) + } else if !yym3768 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3767) } else { - z.DecFallback(yyv3762, false) + z.DecFallback(yyv3767, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3764 := &x.LastTimestamp - yym3765 := z.DecBinary() - _ = yym3765 + yyv3769 := &x.LastTimestamp + yym3770 := z.DecBinary() + _ = yym3770 if false { - } else if z.HasExtensions() && z.DecExt(yyv3764) { - } else if yym3765 { - z.DecBinaryUnmarshal(yyv3764) - } else if !yym3765 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3764) + } else if z.HasExtensions() && z.DecExt(yyv3769) { + } else if yym3770 { + z.DecBinaryUnmarshal(yyv3769) + } else if !yym3770 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3769) } else { - z.DecFallback(yyv3764, false) + z.DecFallback(yyv3769, false) } } case "count": @@ -47176,9 +47217,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3754) - } // end switch yys3754 - } // end for yyj3754 + z.DecStructFieldNotFound(-1, yys3759) + } // end switch yys3759 + } // end for yyj3759 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47186,16 +47227,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3768 int - var yyb3768 bool - var yyhl3768 bool = l >= 0 - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + var yyj3773 int + var yyb3773 bool + var yyhl3773 bool = l >= 0 + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47205,13 +47246,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47221,13 +47262,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47235,16 +47276,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3771 := &x.ObjectMeta - yyv3771.CodecDecodeSelf(d) + yyv3776 := &x.ObjectMeta + yyv3776.CodecDecodeSelf(d) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47252,16 +47293,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3772 := &x.InvolvedObject - yyv3772.CodecDecodeSelf(d) + yyv3777 := &x.InvolvedObject + yyv3777.CodecDecodeSelf(d) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47271,13 +47312,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47287,13 +47328,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47301,16 +47342,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3775 := &x.Source - yyv3775.CodecDecodeSelf(d) + yyv3780 := &x.Source + yyv3780.CodecDecodeSelf(d) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47318,26 +47359,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3776 := &x.FirstTimestamp - yym3777 := z.DecBinary() - _ = yym3777 + yyv3781 := &x.FirstTimestamp + yym3782 := z.DecBinary() + _ = yym3782 if false { - } else if z.HasExtensions() && z.DecExt(yyv3776) { - } else if yym3777 { - z.DecBinaryUnmarshal(yyv3776) - } else if !yym3777 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3776) + } else if z.HasExtensions() && z.DecExt(yyv3781) { + } else if yym3782 { + z.DecBinaryUnmarshal(yyv3781) + } else if !yym3782 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3781) } else { - z.DecFallback(yyv3776, false) + z.DecFallback(yyv3781, false) } } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47345,26 +47386,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3778 := &x.LastTimestamp - yym3779 := z.DecBinary() - _ = yym3779 + yyv3783 := &x.LastTimestamp + yym3784 := z.DecBinary() + _ = yym3784 if false { - } else if z.HasExtensions() && z.DecExt(yyv3778) { - } else if yym3779 { - z.DecBinaryUnmarshal(yyv3778) - } else if !yym3779 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3778) + } else if z.HasExtensions() && z.DecExt(yyv3783) { + } else if yym3784 { + z.DecBinaryUnmarshal(yyv3783) + } else if !yym3784 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3783) } else { - z.DecFallback(yyv3778, false) + z.DecFallback(yyv3783, false) } } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47374,13 +47415,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47391,17 +47432,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3768 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3768 { + if yyb3773 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3768-1, "") + z.DecStructFieldNotFound(yyj3773-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47413,37 +47454,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3782 := z.EncBinary() - _ = yym3782 + yym3787 := z.EncBinary() + _ = yym3787 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3783 := !z.EncBinary() - yy2arr3783 := z.EncBasicHandle().StructToArray - var yyq3783 [4]bool - _, _, _ = yysep3783, yyq3783, yy2arr3783 - const yyr3783 bool = false - yyq3783[0] = x.Kind != "" - yyq3783[1] = x.APIVersion != "" - yyq3783[2] = true - var yynn3783 int - if yyr3783 || yy2arr3783 { + yysep3788 := !z.EncBinary() + yy2arr3788 := z.EncBasicHandle().StructToArray + var yyq3788 [4]bool + _, _, _ = yysep3788, yyq3788, yy2arr3788 + const yyr3788 bool = false + yyq3788[0] = x.Kind != "" + yyq3788[1] = x.APIVersion != "" + yyq3788[2] = true + var yynn3788 int + if yyr3788 || yy2arr3788 { r.EncodeArrayStart(4) } else { - yynn3783 = 1 - for _, b := range yyq3783 { + yynn3788 = 1 + for _, b := range yyq3788 { if b { - yynn3783++ + yynn3788++ } } - r.EncodeMapStart(yynn3783) - yynn3783 = 0 + r.EncodeMapStart(yynn3788) + yynn3788 = 0 } - if yyr3783 || yy2arr3783 { + if yyr3788 || yy2arr3788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3783[0] { - yym3785 := z.EncBinary() - _ = yym3785 + if yyq3788[0] { + yym3790 := z.EncBinary() + _ = yym3790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47452,23 +47493,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3783[0] { + if yyq3788[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3786 := z.EncBinary() - _ = yym3786 + yym3791 := z.EncBinary() + _ = yym3791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3783 || yy2arr3783 { + if yyr3788 || yy2arr3788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3783[1] { - yym3788 := z.EncBinary() - _ = yym3788 + if yyq3788[1] { + yym3793 := z.EncBinary() + _ = yym3793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47477,54 +47518,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3783[1] { + if yyq3788[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3789 := z.EncBinary() - _ = yym3789 + yym3794 := z.EncBinary() + _ = yym3794 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3783 || yy2arr3783 { + if yyr3788 || yy2arr3788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3783[2] { - yy3791 := &x.ListMeta - yym3792 := z.EncBinary() - _ = yym3792 + if yyq3788[2] { + yy3796 := &x.ListMeta + yym3797 := z.EncBinary() + _ = yym3797 if false { - } else if z.HasExtensions() && z.EncExt(yy3791) { + } else if z.HasExtensions() && z.EncExt(yy3796) { } else { - z.EncFallback(yy3791) + z.EncFallback(yy3796) } } else { r.EncodeNil() } } else { - if yyq3783[2] { + if yyq3788[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3793 := &x.ListMeta - yym3794 := z.EncBinary() - _ = yym3794 + yy3798 := &x.ListMeta + yym3799 := z.EncBinary() + _ = yym3799 if false { - } else if z.HasExtensions() && z.EncExt(yy3793) { + } else if z.HasExtensions() && z.EncExt(yy3798) { } else { - z.EncFallback(yy3793) + z.EncFallback(yy3798) } } } - if yyr3783 || yy2arr3783 { + if yyr3788 || yy2arr3788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3796 := z.EncBinary() - _ = yym3796 + yym3801 := z.EncBinary() + _ = yym3801 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -47537,15 +47578,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3797 := z.EncBinary() - _ = yym3797 + yym3802 := z.EncBinary() + _ = yym3802 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3783 || yy2arr3783 { + if yyr3788 || yy2arr3788 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47558,25 +47599,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3798 := z.DecBinary() - _ = yym3798 + yym3803 := z.DecBinary() + _ = yym3803 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3799 := r.ContainerType() - if yyct3799 == codecSelferValueTypeMap1234 { - yyl3799 := r.ReadMapStart() - if yyl3799 == 0 { + yyct3804 := r.ContainerType() + if yyct3804 == codecSelferValueTypeMap1234 { + yyl3804 := r.ReadMapStart() + if yyl3804 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3799, d) + x.codecDecodeSelfFromMap(yyl3804, d) } - } else if yyct3799 == codecSelferValueTypeArray1234 { - yyl3799 := r.ReadArrayStart() - if yyl3799 == 0 { + } else if yyct3804 == codecSelferValueTypeArray1234 { + yyl3804 := r.ReadArrayStart() + if yyl3804 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3799, d) + x.codecDecodeSelfFromArray(yyl3804, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47588,12 +47629,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3800Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3800Slc - var yyhl3800 bool = l >= 0 - for yyj3800 := 0; ; yyj3800++ { - if yyhl3800 { - if yyj3800 >= l { + var yys3805Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3805Slc + var yyhl3805 bool = l >= 0 + for yyj3805 := 0; ; yyj3805++ { + if yyhl3805 { + if yyj3805 >= l { break } } else { @@ -47602,10 +47643,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3800Slc = r.DecodeBytes(yys3800Slc, true, true) - yys3800 := string(yys3800Slc) + yys3805Slc = r.DecodeBytes(yys3805Slc, true, true) + yys3805 := string(yys3805Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3800 { + switch yys3805 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47622,31 +47663,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3803 := &x.ListMeta - yym3804 := z.DecBinary() - _ = yym3804 + yyv3808 := &x.ListMeta + yym3809 := z.DecBinary() + _ = yym3809 if false { - } else if z.HasExtensions() && z.DecExt(yyv3803) { + } else if z.HasExtensions() && z.DecExt(yyv3808) { } else { - z.DecFallback(yyv3803, false) + z.DecFallback(yyv3808, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3805 := &x.Items - yym3806 := z.DecBinary() - _ = yym3806 + yyv3810 := &x.Items + yym3811 := z.DecBinary() + _ = yym3811 if false { } else { - h.decSliceEvent((*[]Event)(yyv3805), d) + h.decSliceEvent((*[]Event)(yyv3810), d) } } default: - z.DecStructFieldNotFound(-1, yys3800) - } // end switch yys3800 - } // end for yyj3800 + z.DecStructFieldNotFound(-1, yys3805) + } // end switch yys3805 + } // end for yyj3805 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47654,16 +47695,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3807 int - var yyb3807 bool - var yyhl3807 bool = l >= 0 - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + var yyj3812 int + var yyb3812 bool + var yyhl3812 bool = l >= 0 + yyj3812++ + if yyhl3812 { + yyb3812 = yyj3812 > l } else { - yyb3807 = r.CheckBreak() + yyb3812 = r.CheckBreak() } - if yyb3807 { + if yyb3812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47673,13 +47714,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + yyj3812++ + if yyhl3812 { + yyb3812 = yyj3812 > l } else { - yyb3807 = r.CheckBreak() + yyb3812 = r.CheckBreak() } - if yyb3807 { + if yyb3812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47689,13 +47730,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + yyj3812++ + if yyhl3812 { + yyb3812 = yyj3812 > l } else { - yyb3807 = r.CheckBreak() + yyb3812 = r.CheckBreak() } - if yyb3807 { + if yyb3812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47703,22 +47744,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3810 := &x.ListMeta - yym3811 := z.DecBinary() - _ = yym3811 + yyv3815 := &x.ListMeta + yym3816 := z.DecBinary() + _ = yym3816 if false { - } else if z.HasExtensions() && z.DecExt(yyv3810) { + } else if z.HasExtensions() && z.DecExt(yyv3815) { } else { - z.DecFallback(yyv3810, false) + z.DecFallback(yyv3815, false) } } - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + yyj3812++ + if yyhl3812 { + yyb3812 = yyj3812 > l } else { - yyb3807 = r.CheckBreak() + yyb3812 = r.CheckBreak() } - if yyb3807 { + if yyb3812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47726,26 +47767,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3812 := &x.Items - yym3813 := z.DecBinary() - _ = yym3813 + yyv3817 := &x.Items + yym3818 := z.DecBinary() + _ = yym3818 if false { } else { - h.decSliceEvent((*[]Event)(yyv3812), d) + h.decSliceEvent((*[]Event)(yyv3817), d) } } for { - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + yyj3812++ + if yyhl3812 { + yyb3812 = yyj3812 > l } else { - yyb3807 = r.CheckBreak() + yyb3812 = r.CheckBreak() } - if yyb3807 { + if yyb3812 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3807-1, "") + z.DecStructFieldNotFound(yyj3812-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47757,37 +47798,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3814 := z.EncBinary() - _ = yym3814 + yym3819 := z.EncBinary() + _ = yym3819 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3815 := !z.EncBinary() - yy2arr3815 := z.EncBasicHandle().StructToArray - var yyq3815 [4]bool - _, _, _ = yysep3815, yyq3815, yy2arr3815 - const yyr3815 bool = false - yyq3815[0] = x.Kind != "" - yyq3815[1] = x.APIVersion != "" - yyq3815[2] = true - var yynn3815 int - if yyr3815 || yy2arr3815 { + yysep3820 := !z.EncBinary() + yy2arr3820 := z.EncBasicHandle().StructToArray + var yyq3820 [4]bool + _, _, _ = yysep3820, yyq3820, yy2arr3820 + const yyr3820 bool = false + yyq3820[0] = x.Kind != "" + yyq3820[1] = x.APIVersion != "" + yyq3820[2] = true + var yynn3820 int + if yyr3820 || yy2arr3820 { r.EncodeArrayStart(4) } else { - yynn3815 = 1 - for _, b := range yyq3815 { + yynn3820 = 1 + for _, b := range yyq3820 { if b { - yynn3815++ + yynn3820++ } } - r.EncodeMapStart(yynn3815) - yynn3815 = 0 + r.EncodeMapStart(yynn3820) + yynn3820 = 0 } - if yyr3815 || yy2arr3815 { + if yyr3820 || yy2arr3820 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3815[0] { - yym3817 := z.EncBinary() - _ = yym3817 + if yyq3820[0] { + yym3822 := z.EncBinary() + _ = yym3822 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47796,23 +47837,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3815[0] { + if yyq3820[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3818 := z.EncBinary() - _ = yym3818 + yym3823 := z.EncBinary() + _ = yym3823 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3815 || yy2arr3815 { + if yyr3820 || yy2arr3820 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3815[1] { - yym3820 := z.EncBinary() - _ = yym3820 + if yyq3820[1] { + yym3825 := z.EncBinary() + _ = yym3825 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47821,54 +47862,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3815[1] { + if yyq3820[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3821 := z.EncBinary() - _ = yym3821 + yym3826 := z.EncBinary() + _ = yym3826 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3815 || yy2arr3815 { + if yyr3820 || yy2arr3820 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3815[2] { - yy3823 := &x.ListMeta - yym3824 := z.EncBinary() - _ = yym3824 + if yyq3820[2] { + yy3828 := &x.ListMeta + yym3829 := z.EncBinary() + _ = yym3829 if false { - } else if z.HasExtensions() && z.EncExt(yy3823) { + } else if z.HasExtensions() && z.EncExt(yy3828) { } else { - z.EncFallback(yy3823) + z.EncFallback(yy3828) } } else { r.EncodeNil() } } else { - if yyq3815[2] { + if yyq3820[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3825 := &x.ListMeta - yym3826 := z.EncBinary() - _ = yym3826 + yy3830 := &x.ListMeta + yym3831 := z.EncBinary() + _ = yym3831 if false { - } else if z.HasExtensions() && z.EncExt(yy3825) { + } else if z.HasExtensions() && z.EncExt(yy3830) { } else { - z.EncFallback(yy3825) + z.EncFallback(yy3830) } } } - if yyr3815 || yy2arr3815 { + if yyr3820 || yy2arr3820 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3828 := z.EncBinary() - _ = yym3828 + yym3833 := z.EncBinary() + _ = yym3833 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) @@ -47881,15 +47922,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3829 := z.EncBinary() - _ = yym3829 + yym3834 := z.EncBinary() + _ = yym3834 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) } } } - if yyr3815 || yy2arr3815 { + if yyr3820 || yy2arr3820 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47902,25 +47943,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3830 := z.DecBinary() - _ = yym3830 + yym3835 := z.DecBinary() + _ = yym3835 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3831 := r.ContainerType() - if yyct3831 == codecSelferValueTypeMap1234 { - yyl3831 := r.ReadMapStart() - if yyl3831 == 0 { + yyct3836 := r.ContainerType() + if yyct3836 == codecSelferValueTypeMap1234 { + yyl3836 := r.ReadMapStart() + if yyl3836 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3831, d) + x.codecDecodeSelfFromMap(yyl3836, d) } - } else if yyct3831 == codecSelferValueTypeArray1234 { - yyl3831 := r.ReadArrayStart() - if yyl3831 == 0 { + } else if yyct3836 == codecSelferValueTypeArray1234 { + yyl3836 := r.ReadArrayStart() + if yyl3836 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3831, d) + x.codecDecodeSelfFromArray(yyl3836, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47932,12 +47973,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3832Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3832Slc - var yyhl3832 bool = l >= 0 - for yyj3832 := 0; ; yyj3832++ { - if yyhl3832 { - if yyj3832 >= l { + var yys3837Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3837Slc + var yyhl3837 bool = l >= 0 + for yyj3837 := 0; ; yyj3837++ { + if yyhl3837 { + if yyj3837 >= l { break } } else { @@ -47946,10 +47987,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3832Slc = r.DecodeBytes(yys3832Slc, true, true) - yys3832 := string(yys3832Slc) + yys3837Slc = r.DecodeBytes(yys3837Slc, true, true) + yys3837 := string(yys3837Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3832 { + switch yys3837 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47966,31 +48007,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3835 := &x.ListMeta - yym3836 := z.DecBinary() - _ = yym3836 + yyv3840 := &x.ListMeta + yym3841 := z.DecBinary() + _ = yym3841 if false { - } else if z.HasExtensions() && z.DecExt(yyv3835) { + } else if z.HasExtensions() && z.DecExt(yyv3840) { } else { - z.DecFallback(yyv3835, false) + z.DecFallback(yyv3840, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3837 := &x.Items - yym3838 := z.DecBinary() - _ = yym3838 + yyv3842 := &x.Items + yym3843 := z.DecBinary() + _ = yym3843 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3837), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3842), d) } } default: - z.DecStructFieldNotFound(-1, yys3832) - } // end switch yys3832 - } // end for yyj3832 + z.DecStructFieldNotFound(-1, yys3837) + } // end switch yys3837 + } // end for yyj3837 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47998,16 +48039,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3839 int - var yyb3839 bool - var yyhl3839 bool = l >= 0 - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + var yyj3844 int + var yyb3844 bool + var yyhl3844 bool = l >= 0 + yyj3844++ + if yyhl3844 { + yyb3844 = yyj3844 > l } else { - yyb3839 = r.CheckBreak() + yyb3844 = r.CheckBreak() } - if yyb3839 { + if yyb3844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48017,13 +48058,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + yyj3844++ + if yyhl3844 { + yyb3844 = yyj3844 > l } else { - yyb3839 = r.CheckBreak() + yyb3844 = r.CheckBreak() } - if yyb3839 { + if yyb3844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48033,13 +48074,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + yyj3844++ + if yyhl3844 { + yyb3844 = yyj3844 > l } else { - yyb3839 = r.CheckBreak() + yyb3844 = r.CheckBreak() } - if yyb3839 { + if yyb3844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48047,22 +48088,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3842 := &x.ListMeta - yym3843 := z.DecBinary() - _ = yym3843 + yyv3847 := &x.ListMeta + yym3848 := z.DecBinary() + _ = yym3848 if false { - } else if z.HasExtensions() && z.DecExt(yyv3842) { + } else if z.HasExtensions() && z.DecExt(yyv3847) { } else { - z.DecFallback(yyv3842, false) + z.DecFallback(yyv3847, false) } } - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + yyj3844++ + if yyhl3844 { + yyb3844 = yyj3844 > l } else { - yyb3839 = r.CheckBreak() + yyb3844 = r.CheckBreak() } - if yyb3839 { + if yyb3844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48070,26 +48111,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3844 := &x.Items - yym3845 := z.DecBinary() - _ = yym3845 + yyv3849 := &x.Items + yym3850 := z.DecBinary() + _ = yym3850 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3844), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3849), d) } } for { - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + yyj3844++ + if yyhl3844 { + yyb3844 = yyj3844 > l } else { - yyb3839 = r.CheckBreak() + yyb3844 = r.CheckBreak() } - if yyb3839 { + if yyb3844 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3839-1, "") + z.DecStructFieldNotFound(yyj3844-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48098,8 +48139,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3846 := z.EncBinary() - _ = yym3846 + yym3851 := z.EncBinary() + _ = yym3851 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -48111,8 +48152,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3847 := z.DecBinary() - _ = yym3847 + yym3852 := z.DecBinary() + _ = yym3852 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -48127,53 +48168,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3848 := z.EncBinary() - _ = yym3848 + yym3853 := z.EncBinary() + _ = yym3853 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3849 := !z.EncBinary() - yy2arr3849 := z.EncBasicHandle().StructToArray - var yyq3849 [6]bool - _, _, _ = yysep3849, yyq3849, yy2arr3849 - const yyr3849 bool = false - yyq3849[0] = x.Type != "" - yyq3849[1] = len(x.Max) != 0 - yyq3849[2] = len(x.Min) != 0 - yyq3849[3] = len(x.Default) != 0 - yyq3849[4] = len(x.DefaultRequest) != 0 - yyq3849[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3849 int - if yyr3849 || yy2arr3849 { + yysep3854 := !z.EncBinary() + yy2arr3854 := z.EncBasicHandle().StructToArray + var yyq3854 [6]bool + _, _, _ = yysep3854, yyq3854, yy2arr3854 + const yyr3854 bool = false + yyq3854[0] = x.Type != "" + yyq3854[1] = len(x.Max) != 0 + yyq3854[2] = len(x.Min) != 0 + yyq3854[3] = len(x.Default) != 0 + yyq3854[4] = len(x.DefaultRequest) != 0 + yyq3854[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3854 int + if yyr3854 || yy2arr3854 { r.EncodeArrayStart(6) } else { - yynn3849 = 0 - for _, b := range yyq3849 { + yynn3854 = 0 + for _, b := range yyq3854 { if b { - yynn3849++ + yynn3854++ } } - r.EncodeMapStart(yynn3849) - yynn3849 = 0 + r.EncodeMapStart(yynn3854) + yynn3854 = 0 } - if yyr3849 || yy2arr3849 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[0] { + if yyq3854[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3849[0] { + if yyq3854[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3849 || yy2arr3849 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[1] { + if yyq3854[1] { if x.Max == nil { r.EncodeNil() } else { @@ -48183,7 +48224,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[1] { + if yyq3854[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48194,9 +48235,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[2] { + if yyq3854[2] { if x.Min == nil { r.EncodeNil() } else { @@ -48206,7 +48247,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[2] { + if yyq3854[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48217,9 +48258,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[3] { + if yyq3854[3] { if x.Default == nil { r.EncodeNil() } else { @@ -48229,7 +48270,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[3] { + if yyq3854[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48240,9 +48281,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[4] { + if yyq3854[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -48252,7 +48293,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[4] { + if yyq3854[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48263,9 +48304,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[5] { + if yyq3854[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -48275,7 +48316,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[5] { + if yyq3854[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48286,7 +48327,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48299,25 +48340,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3856 := z.DecBinary() - _ = yym3856 + yym3861 := z.DecBinary() + _ = yym3861 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3857 := r.ContainerType() - if yyct3857 == codecSelferValueTypeMap1234 { - yyl3857 := r.ReadMapStart() - if yyl3857 == 0 { + yyct3862 := r.ContainerType() + if yyct3862 == codecSelferValueTypeMap1234 { + yyl3862 := r.ReadMapStart() + if yyl3862 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3857, d) + x.codecDecodeSelfFromMap(yyl3862, d) } - } else if yyct3857 == codecSelferValueTypeArray1234 { - yyl3857 := r.ReadArrayStart() - if yyl3857 == 0 { + } else if yyct3862 == codecSelferValueTypeArray1234 { + yyl3862 := r.ReadArrayStart() + if yyl3862 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3857, d) + x.codecDecodeSelfFromArray(yyl3862, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48329,12 +48370,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3858Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3858Slc - var yyhl3858 bool = l >= 0 - for yyj3858 := 0; ; yyj3858++ { - if yyhl3858 { - if yyj3858 >= l { + var yys3863Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3863Slc + var yyhl3863 bool = l >= 0 + for yyj3863 := 0; ; yyj3863++ { + if yyhl3863 { + if yyj3863 >= l { break } } else { @@ -48343,10 +48384,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3858Slc = r.DecodeBytes(yys3858Slc, true, true) - yys3858 := string(yys3858Slc) + yys3863Slc = r.DecodeBytes(yys3863Slc, true, true) + yys3863 := string(yys3863Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3858 { + switch yys3863 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -48357,41 +48398,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3860 := &x.Max - yyv3860.CodecDecodeSelf(d) + yyv3865 := &x.Max + yyv3865.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3861 := &x.Min - yyv3861.CodecDecodeSelf(d) + yyv3866 := &x.Min + yyv3866.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3862 := &x.Default - yyv3862.CodecDecodeSelf(d) + yyv3867 := &x.Default + yyv3867.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3863 := &x.DefaultRequest - yyv3863.CodecDecodeSelf(d) + yyv3868 := &x.DefaultRequest + yyv3868.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3864 := &x.MaxLimitRequestRatio - yyv3864.CodecDecodeSelf(d) + yyv3869 := &x.MaxLimitRequestRatio + yyv3869.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3858) - } // end switch yys3858 - } // end for yyj3858 + z.DecStructFieldNotFound(-1, yys3863) + } // end switch yys3863 + } // end for yyj3863 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48399,16 +48440,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3865 int - var yyb3865 bool - var yyhl3865 bool = l >= 0 - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + var yyj3870 int + var yyb3870 bool + var yyhl3870 bool = l >= 0 + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l } else { - yyb3865 = r.CheckBreak() + yyb3870 = r.CheckBreak() } - if yyb3865 { + if yyb3870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48418,13 +48459,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l } else { - yyb3865 = r.CheckBreak() + yyb3870 = r.CheckBreak() } - if yyb3865 { + if yyb3870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48432,16 +48473,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3867 := &x.Max - yyv3867.CodecDecodeSelf(d) + yyv3872 := &x.Max + yyv3872.CodecDecodeSelf(d) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l } else { - yyb3865 = r.CheckBreak() + yyb3870 = r.CheckBreak() } - if yyb3865 { + if yyb3870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48449,16 +48490,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3868 := &x.Min - yyv3868.CodecDecodeSelf(d) + yyv3873 := &x.Min + yyv3873.CodecDecodeSelf(d) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l } else { - yyb3865 = r.CheckBreak() + yyb3870 = r.CheckBreak() } - if yyb3865 { + if yyb3870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48466,16 +48507,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3869 := &x.Default - yyv3869.CodecDecodeSelf(d) + yyv3874 := &x.Default + yyv3874.CodecDecodeSelf(d) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l } else { - yyb3865 = r.CheckBreak() + yyb3870 = r.CheckBreak() } - if yyb3865 { + if yyb3870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48483,16 +48524,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3870 := &x.DefaultRequest - yyv3870.CodecDecodeSelf(d) + yyv3875 := &x.DefaultRequest + yyv3875.CodecDecodeSelf(d) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l } else { - yyb3865 = r.CheckBreak() + yyb3870 = r.CheckBreak() } - if yyb3865 { + if yyb3870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48500,21 +48541,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3871 := &x.MaxLimitRequestRatio - yyv3871.CodecDecodeSelf(d) + yyv3876 := &x.MaxLimitRequestRatio + yyv3876.CodecDecodeSelf(d) } for { - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l } else { - yyb3865 = r.CheckBreak() + yyb3870 = r.CheckBreak() } - if yyb3865 { + if yyb3870 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3865-1, "") + z.DecStructFieldNotFound(yyj3870-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48526,36 +48567,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3872 := z.EncBinary() - _ = yym3872 + yym3877 := z.EncBinary() + _ = yym3877 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3873 := !z.EncBinary() - yy2arr3873 := z.EncBasicHandle().StructToArray - var yyq3873 [1]bool - _, _, _ = yysep3873, yyq3873, yy2arr3873 - const yyr3873 bool = false - var yynn3873 int - if yyr3873 || yy2arr3873 { + yysep3878 := !z.EncBinary() + yy2arr3878 := z.EncBasicHandle().StructToArray + var yyq3878 [1]bool + _, _, _ = yysep3878, yyq3878, yy2arr3878 + const yyr3878 bool = false + var yynn3878 int + if yyr3878 || yy2arr3878 { r.EncodeArrayStart(1) } else { - yynn3873 = 1 - for _, b := range yyq3873 { + yynn3878 = 1 + for _, b := range yyq3878 { if b { - yynn3873++ + yynn3878++ } } - r.EncodeMapStart(yynn3873) - yynn3873 = 0 + r.EncodeMapStart(yynn3878) + yynn3878 = 0 } - if yyr3873 || yy2arr3873 { + if yyr3878 || yy2arr3878 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3875 := z.EncBinary() - _ = yym3875 + yym3880 := z.EncBinary() + _ = yym3880 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -48568,15 +48609,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3876 := z.EncBinary() - _ = yym3876 + yym3881 := z.EncBinary() + _ = yym3881 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3873 || yy2arr3873 { + if yyr3878 || yy2arr3878 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48589,25 +48630,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3877 := z.DecBinary() - _ = yym3877 + yym3882 := z.DecBinary() + _ = yym3882 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3878 := r.ContainerType() - if yyct3878 == codecSelferValueTypeMap1234 { - yyl3878 := r.ReadMapStart() - if yyl3878 == 0 { + yyct3883 := r.ContainerType() + if yyct3883 == codecSelferValueTypeMap1234 { + yyl3883 := r.ReadMapStart() + if yyl3883 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3878, d) + x.codecDecodeSelfFromMap(yyl3883, d) } - } else if yyct3878 == codecSelferValueTypeArray1234 { - yyl3878 := r.ReadArrayStart() - if yyl3878 == 0 { + } else if yyct3883 == codecSelferValueTypeArray1234 { + yyl3883 := r.ReadArrayStart() + if yyl3883 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3878, d) + x.codecDecodeSelfFromArray(yyl3883, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48619,12 +48660,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3879Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3879Slc - var yyhl3879 bool = l >= 0 - for yyj3879 := 0; ; yyj3879++ { - if yyhl3879 { - if yyj3879 >= l { + var yys3884Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3884Slc + var yyhl3884 bool = l >= 0 + for yyj3884 := 0; ; yyj3884++ { + if yyhl3884 { + if yyj3884 >= l { break } } else { @@ -48633,26 +48674,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3879Slc = r.DecodeBytes(yys3879Slc, true, true) - yys3879 := string(yys3879Slc) + yys3884Slc = r.DecodeBytes(yys3884Slc, true, true) + yys3884 := string(yys3884Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3879 { + switch yys3884 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3880 := &x.Limits - yym3881 := z.DecBinary() - _ = yym3881 + yyv3885 := &x.Limits + yym3886 := z.DecBinary() + _ = yym3886 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3880), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3885), d) } } default: - z.DecStructFieldNotFound(-1, yys3879) - } // end switch yys3879 - } // end for yyj3879 + z.DecStructFieldNotFound(-1, yys3884) + } // end switch yys3884 + } // end for yyj3884 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48660,16 +48701,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3882 int - var yyb3882 bool - var yyhl3882 bool = l >= 0 - yyj3882++ - if yyhl3882 { - yyb3882 = yyj3882 > l + var yyj3887 int + var yyb3887 bool + var yyhl3887 bool = l >= 0 + yyj3887++ + if yyhl3887 { + yyb3887 = yyj3887 > l } else { - yyb3882 = r.CheckBreak() + yyb3887 = r.CheckBreak() } - if yyb3882 { + if yyb3887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48677,26 +48718,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3883 := &x.Limits - yym3884 := z.DecBinary() - _ = yym3884 + yyv3888 := &x.Limits + yym3889 := z.DecBinary() + _ = yym3889 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3883), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3888), d) } } for { - yyj3882++ - if yyhl3882 { - yyb3882 = yyj3882 > l + yyj3887++ + if yyhl3887 { + yyb3887 = yyj3887 > l } else { - yyb3882 = r.CheckBreak() + yyb3887 = r.CheckBreak() } - if yyb3882 { + if yyb3887 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3882-1, "") + z.DecStructFieldNotFound(yyj3887-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48708,38 +48749,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3885 := z.EncBinary() - _ = yym3885 + yym3890 := z.EncBinary() + _ = yym3890 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3886 := !z.EncBinary() - yy2arr3886 := z.EncBasicHandle().StructToArray - var yyq3886 [4]bool - _, _, _ = yysep3886, yyq3886, yy2arr3886 - const yyr3886 bool = false - yyq3886[0] = x.Kind != "" - yyq3886[1] = x.APIVersion != "" - yyq3886[2] = true - yyq3886[3] = true - var yynn3886 int - if yyr3886 || yy2arr3886 { + yysep3891 := !z.EncBinary() + yy2arr3891 := z.EncBasicHandle().StructToArray + var yyq3891 [4]bool + _, _, _ = yysep3891, yyq3891, yy2arr3891 + const yyr3891 bool = false + yyq3891[0] = x.Kind != "" + yyq3891[1] = x.APIVersion != "" + yyq3891[2] = true + yyq3891[3] = true + var yynn3891 int + if yyr3891 || yy2arr3891 { r.EncodeArrayStart(4) } else { - yynn3886 = 0 - for _, b := range yyq3886 { + yynn3891 = 0 + for _, b := range yyq3891 { if b { - yynn3886++ + yynn3891++ } } - r.EncodeMapStart(yynn3886) - yynn3886 = 0 + r.EncodeMapStart(yynn3891) + yynn3891 = 0 } - if yyr3886 || yy2arr3886 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[0] { - yym3888 := z.EncBinary() - _ = yym3888 + if yyq3891[0] { + yym3893 := z.EncBinary() + _ = yym3893 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48748,23 +48789,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3886[0] { + if yyq3891[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3889 := z.EncBinary() - _ = yym3889 + yym3894 := z.EncBinary() + _ = yym3894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3886 || yy2arr3886 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[1] { - yym3891 := z.EncBinary() - _ = yym3891 + if yyq3891[1] { + yym3896 := z.EncBinary() + _ = yym3896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48773,53 +48814,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3886[1] { + if yyq3891[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3892 := z.EncBinary() - _ = yym3892 + yym3897 := z.EncBinary() + _ = yym3897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3886 || yy2arr3886 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[2] { - yy3894 := &x.ObjectMeta - yy3894.CodecEncodeSelf(e) + if yyq3891[2] { + yy3899 := &x.ObjectMeta + yy3899.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3886[2] { + if yyq3891[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3895 := &x.ObjectMeta - yy3895.CodecEncodeSelf(e) + yy3900 := &x.ObjectMeta + yy3900.CodecEncodeSelf(e) } } - if yyr3886 || yy2arr3886 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[3] { - yy3897 := &x.Spec - yy3897.CodecEncodeSelf(e) + if yyq3891[3] { + yy3902 := &x.Spec + yy3902.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3886[3] { + if yyq3891[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3898 := &x.Spec - yy3898.CodecEncodeSelf(e) + yy3903 := &x.Spec + yy3903.CodecEncodeSelf(e) } } - if yyr3886 || yy2arr3886 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48832,25 +48873,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3899 := z.DecBinary() - _ = yym3899 + yym3904 := z.DecBinary() + _ = yym3904 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3900 := r.ContainerType() - if yyct3900 == codecSelferValueTypeMap1234 { - yyl3900 := r.ReadMapStart() - if yyl3900 == 0 { + yyct3905 := r.ContainerType() + if yyct3905 == codecSelferValueTypeMap1234 { + yyl3905 := r.ReadMapStart() + if yyl3905 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3900, d) + x.codecDecodeSelfFromMap(yyl3905, d) } - } else if yyct3900 == codecSelferValueTypeArray1234 { - yyl3900 := r.ReadArrayStart() - if yyl3900 == 0 { + } else if yyct3905 == codecSelferValueTypeArray1234 { + yyl3905 := r.ReadArrayStart() + if yyl3905 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3900, d) + x.codecDecodeSelfFromArray(yyl3905, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48862,12 +48903,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3901Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3901Slc - var yyhl3901 bool = l >= 0 - for yyj3901 := 0; ; yyj3901++ { - if yyhl3901 { - if yyj3901 >= l { + var yys3906Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3906Slc + var yyhl3906 bool = l >= 0 + for yyj3906 := 0; ; yyj3906++ { + if yyhl3906 { + if yyj3906 >= l { break } } else { @@ -48876,10 +48917,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3901Slc = r.DecodeBytes(yys3901Slc, true, true) - yys3901 := string(yys3901Slc) + yys3906Slc = r.DecodeBytes(yys3906Slc, true, true) + yys3906 := string(yys3906Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3901 { + switch yys3906 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48896,20 +48937,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3904 := &x.ObjectMeta - yyv3904.CodecDecodeSelf(d) + yyv3909 := &x.ObjectMeta + yyv3909.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3905 := &x.Spec - yyv3905.CodecDecodeSelf(d) + yyv3910 := &x.Spec + yyv3910.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3901) - } // end switch yys3901 - } // end for yyj3901 + z.DecStructFieldNotFound(-1, yys3906) + } // end switch yys3906 + } // end for yyj3906 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48917,16 +48958,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3906 int - var yyb3906 bool - var yyhl3906 bool = l >= 0 - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + var yyj3911 int + var yyb3911 bool + var yyhl3911 bool = l >= 0 + yyj3911++ + if yyhl3911 { + yyb3911 = yyj3911 > l } else { - yyb3906 = r.CheckBreak() + yyb3911 = r.CheckBreak() } - if yyb3906 { + if yyb3911 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48936,13 +48977,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + yyj3911++ + if yyhl3911 { + yyb3911 = yyj3911 > l } else { - yyb3906 = r.CheckBreak() + yyb3911 = r.CheckBreak() } - if yyb3906 { + if yyb3911 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48952,13 +48993,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + yyj3911++ + if yyhl3911 { + yyb3911 = yyj3911 > l } else { - yyb3906 = r.CheckBreak() + yyb3911 = r.CheckBreak() } - if yyb3906 { + if yyb3911 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48966,16 +49007,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3909 := &x.ObjectMeta - yyv3909.CodecDecodeSelf(d) + yyv3914 := &x.ObjectMeta + yyv3914.CodecDecodeSelf(d) } - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + yyj3911++ + if yyhl3911 { + yyb3911 = yyj3911 > l } else { - yyb3906 = r.CheckBreak() + yyb3911 = r.CheckBreak() } - if yyb3906 { + if yyb3911 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48983,21 +49024,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3910 := &x.Spec - yyv3910.CodecDecodeSelf(d) + yyv3915 := &x.Spec + yyv3915.CodecDecodeSelf(d) } for { - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + yyj3911++ + if yyhl3911 { + yyb3911 = yyj3911 > l } else { - yyb3906 = r.CheckBreak() + yyb3911 = r.CheckBreak() } - if yyb3906 { + if yyb3911 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3906-1, "") + z.DecStructFieldNotFound(yyj3911-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49009,37 +49050,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3911 := z.EncBinary() - _ = yym3911 + yym3916 := z.EncBinary() + _ = yym3916 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3912 := !z.EncBinary() - yy2arr3912 := z.EncBasicHandle().StructToArray - var yyq3912 [4]bool - _, _, _ = yysep3912, yyq3912, yy2arr3912 - const yyr3912 bool = false - yyq3912[0] = x.Kind != "" - yyq3912[1] = x.APIVersion != "" - yyq3912[2] = true - var yynn3912 int - if yyr3912 || yy2arr3912 { + yysep3917 := !z.EncBinary() + yy2arr3917 := z.EncBasicHandle().StructToArray + var yyq3917 [4]bool + _, _, _ = yysep3917, yyq3917, yy2arr3917 + const yyr3917 bool = false + yyq3917[0] = x.Kind != "" + yyq3917[1] = x.APIVersion != "" + yyq3917[2] = true + var yynn3917 int + if yyr3917 || yy2arr3917 { r.EncodeArrayStart(4) } else { - yynn3912 = 1 - for _, b := range yyq3912 { + yynn3917 = 1 + for _, b := range yyq3917 { if b { - yynn3912++ + yynn3917++ } } - r.EncodeMapStart(yynn3912) - yynn3912 = 0 + r.EncodeMapStart(yynn3917) + yynn3917 = 0 } - if yyr3912 || yy2arr3912 { + if yyr3917 || yy2arr3917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3912[0] { - yym3914 := z.EncBinary() - _ = yym3914 + if yyq3917[0] { + yym3919 := z.EncBinary() + _ = yym3919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49048,23 +49089,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3912[0] { + if yyq3917[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3915 := z.EncBinary() - _ = yym3915 + yym3920 := z.EncBinary() + _ = yym3920 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3912 || yy2arr3912 { + if yyr3917 || yy2arr3917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3912[1] { - yym3917 := z.EncBinary() - _ = yym3917 + if yyq3917[1] { + yym3922 := z.EncBinary() + _ = yym3922 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49073,54 +49114,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3912[1] { + if yyq3917[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3918 := z.EncBinary() - _ = yym3918 + yym3923 := z.EncBinary() + _ = yym3923 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3912 || yy2arr3912 { + if yyr3917 || yy2arr3917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3912[2] { - yy3920 := &x.ListMeta - yym3921 := z.EncBinary() - _ = yym3921 + if yyq3917[2] { + yy3925 := &x.ListMeta + yym3926 := z.EncBinary() + _ = yym3926 if false { - } else if z.HasExtensions() && z.EncExt(yy3920) { + } else if z.HasExtensions() && z.EncExt(yy3925) { } else { - z.EncFallback(yy3920) + z.EncFallback(yy3925) } } else { r.EncodeNil() } } else { - if yyq3912[2] { + if yyq3917[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3922 := &x.ListMeta - yym3923 := z.EncBinary() - _ = yym3923 + yy3927 := &x.ListMeta + yym3928 := z.EncBinary() + _ = yym3928 if false { - } else if z.HasExtensions() && z.EncExt(yy3922) { + } else if z.HasExtensions() && z.EncExt(yy3927) { } else { - z.EncFallback(yy3922) + z.EncFallback(yy3927) } } } - if yyr3912 || yy2arr3912 { + if yyr3917 || yy2arr3917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3925 := z.EncBinary() - _ = yym3925 + yym3930 := z.EncBinary() + _ = yym3930 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -49133,15 +49174,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3926 := z.EncBinary() - _ = yym3926 + yym3931 := z.EncBinary() + _ = yym3931 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3912 || yy2arr3912 { + if yyr3917 || yy2arr3917 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49154,25 +49195,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3927 := z.DecBinary() - _ = yym3927 + yym3932 := z.DecBinary() + _ = yym3932 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3928 := r.ContainerType() - if yyct3928 == codecSelferValueTypeMap1234 { - yyl3928 := r.ReadMapStart() - if yyl3928 == 0 { + yyct3933 := r.ContainerType() + if yyct3933 == codecSelferValueTypeMap1234 { + yyl3933 := r.ReadMapStart() + if yyl3933 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3928, d) + x.codecDecodeSelfFromMap(yyl3933, d) } - } else if yyct3928 == codecSelferValueTypeArray1234 { - yyl3928 := r.ReadArrayStart() - if yyl3928 == 0 { + } else if yyct3933 == codecSelferValueTypeArray1234 { + yyl3933 := r.ReadArrayStart() + if yyl3933 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3928, d) + x.codecDecodeSelfFromArray(yyl3933, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49184,12 +49225,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3929Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3929Slc - var yyhl3929 bool = l >= 0 - for yyj3929 := 0; ; yyj3929++ { - if yyhl3929 { - if yyj3929 >= l { + var yys3934Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3934Slc + var yyhl3934 bool = l >= 0 + for yyj3934 := 0; ; yyj3934++ { + if yyhl3934 { + if yyj3934 >= l { break } } else { @@ -49198,10 +49239,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3929Slc = r.DecodeBytes(yys3929Slc, true, true) - yys3929 := string(yys3929Slc) + yys3934Slc = r.DecodeBytes(yys3934Slc, true, true) + yys3934 := string(yys3934Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3929 { + switch yys3934 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49218,31 +49259,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3932 := &x.ListMeta - yym3933 := z.DecBinary() - _ = yym3933 + yyv3937 := &x.ListMeta + yym3938 := z.DecBinary() + _ = yym3938 if false { - } else if z.HasExtensions() && z.DecExt(yyv3932) { + } else if z.HasExtensions() && z.DecExt(yyv3937) { } else { - z.DecFallback(yyv3932, false) + z.DecFallback(yyv3937, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3934 := &x.Items - yym3935 := z.DecBinary() - _ = yym3935 + yyv3939 := &x.Items + yym3940 := z.DecBinary() + _ = yym3940 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3934), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3939), d) } } default: - z.DecStructFieldNotFound(-1, yys3929) - } // end switch yys3929 - } // end for yyj3929 + z.DecStructFieldNotFound(-1, yys3934) + } // end switch yys3934 + } // end for yyj3934 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49250,16 +49291,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3936 int - var yyb3936 bool - var yyhl3936 bool = l >= 0 - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + var yyj3941 int + var yyb3941 bool + var yyhl3941 bool = l >= 0 + yyj3941++ + if yyhl3941 { + yyb3941 = yyj3941 > l } else { - yyb3936 = r.CheckBreak() + yyb3941 = r.CheckBreak() } - if yyb3936 { + if yyb3941 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49269,13 +49310,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + yyj3941++ + if yyhl3941 { + yyb3941 = yyj3941 > l } else { - yyb3936 = r.CheckBreak() + yyb3941 = r.CheckBreak() } - if yyb3936 { + if yyb3941 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49285,13 +49326,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + yyj3941++ + if yyhl3941 { + yyb3941 = yyj3941 > l } else { - yyb3936 = r.CheckBreak() + yyb3941 = r.CheckBreak() } - if yyb3936 { + if yyb3941 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49299,22 +49340,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3939 := &x.ListMeta - yym3940 := z.DecBinary() - _ = yym3940 + yyv3944 := &x.ListMeta + yym3945 := z.DecBinary() + _ = yym3945 if false { - } else if z.HasExtensions() && z.DecExt(yyv3939) { + } else if z.HasExtensions() && z.DecExt(yyv3944) { } else { - z.DecFallback(yyv3939, false) + z.DecFallback(yyv3944, false) } } - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + yyj3941++ + if yyhl3941 { + yyb3941 = yyj3941 > l } else { - yyb3936 = r.CheckBreak() + yyb3941 = r.CheckBreak() } - if yyb3936 { + if yyb3941 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49322,26 +49363,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3941 := &x.Items - yym3942 := z.DecBinary() - _ = yym3942 + yyv3946 := &x.Items + yym3947 := z.DecBinary() + _ = yym3947 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3941), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3946), d) } } for { - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + yyj3941++ + if yyhl3941 { + yyb3941 = yyj3941 > l } else { - yyb3936 = r.CheckBreak() + yyb3941 = r.CheckBreak() } - if yyb3936 { + if yyb3941 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3936-1, "") + z.DecStructFieldNotFound(yyj3941-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49350,8 +49391,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3943 := z.EncBinary() - _ = yym3943 + yym3948 := z.EncBinary() + _ = yym3948 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49363,8 +49404,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3944 := z.DecBinary() - _ = yym3944 + yym3949 := z.DecBinary() + _ = yym3949 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49379,34 +49420,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3945 := z.EncBinary() - _ = yym3945 + yym3950 := z.EncBinary() + _ = yym3950 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3946 := !z.EncBinary() - yy2arr3946 := z.EncBasicHandle().StructToArray - var yyq3946 [2]bool - _, _, _ = yysep3946, yyq3946, yy2arr3946 - const yyr3946 bool = false - yyq3946[0] = len(x.Hard) != 0 - yyq3946[1] = len(x.Scopes) != 0 - var yynn3946 int - if yyr3946 || yy2arr3946 { + yysep3951 := !z.EncBinary() + yy2arr3951 := z.EncBasicHandle().StructToArray + var yyq3951 [2]bool + _, _, _ = yysep3951, yyq3951, yy2arr3951 + const yyr3951 bool = false + yyq3951[0] = len(x.Hard) != 0 + yyq3951[1] = len(x.Scopes) != 0 + var yynn3951 int + if yyr3951 || yy2arr3951 { r.EncodeArrayStart(2) } else { - yynn3946 = 0 - for _, b := range yyq3946 { + yynn3951 = 0 + for _, b := range yyq3951 { if b { - yynn3946++ + yynn3951++ } } - r.EncodeMapStart(yynn3946) - yynn3946 = 0 + r.EncodeMapStart(yynn3951) + yynn3951 = 0 } - if yyr3946 || yy2arr3946 { + if yyr3951 || yy2arr3951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3946[0] { + if yyq3951[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49416,7 +49457,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3946[0] { + if yyq3951[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49427,14 +49468,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3946 || yy2arr3946 { + if yyr3951 || yy2arr3951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3946[1] { + if yyq3951[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym3949 := z.EncBinary() - _ = yym3949 + yym3954 := z.EncBinary() + _ = yym3954 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49444,15 +49485,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3946[1] { + if yyq3951[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym3950 := z.EncBinary() - _ = yym3950 + yym3955 := z.EncBinary() + _ = yym3955 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49460,7 +49501,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3946 || yy2arr3946 { + if yyr3951 || yy2arr3951 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49473,25 +49514,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3951 := z.DecBinary() - _ = yym3951 + yym3956 := z.DecBinary() + _ = yym3956 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3952 := r.ContainerType() - if yyct3952 == codecSelferValueTypeMap1234 { - yyl3952 := r.ReadMapStart() - if yyl3952 == 0 { + yyct3957 := r.ContainerType() + if yyct3957 == codecSelferValueTypeMap1234 { + yyl3957 := r.ReadMapStart() + if yyl3957 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3952, d) + x.codecDecodeSelfFromMap(yyl3957, d) } - } else if yyct3952 == codecSelferValueTypeArray1234 { - yyl3952 := r.ReadArrayStart() - if yyl3952 == 0 { + } else if yyct3957 == codecSelferValueTypeArray1234 { + yyl3957 := r.ReadArrayStart() + if yyl3957 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3952, d) + x.codecDecodeSelfFromArray(yyl3957, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49503,12 +49544,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3953Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3953Slc - var yyhl3953 bool = l >= 0 - for yyj3953 := 0; ; yyj3953++ { - if yyhl3953 { - if yyj3953 >= l { + var yys3958Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3958Slc + var yyhl3958 bool = l >= 0 + for yyj3958 := 0; ; yyj3958++ { + if yyhl3958 { + if yyj3958 >= l { break } } else { @@ -49517,33 +49558,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3953Slc = r.DecodeBytes(yys3953Slc, true, true) - yys3953 := string(yys3953Slc) + yys3958Slc = r.DecodeBytes(yys3958Slc, true, true) + yys3958 := string(yys3958Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3953 { + switch yys3958 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3954 := &x.Hard - yyv3954.CodecDecodeSelf(d) + yyv3959 := &x.Hard + yyv3959.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3955 := &x.Scopes - yym3956 := z.DecBinary() - _ = yym3956 + yyv3960 := &x.Scopes + yym3961 := z.DecBinary() + _ = yym3961 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3955), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3960), d) } } default: - z.DecStructFieldNotFound(-1, yys3953) - } // end switch yys3953 - } // end for yyj3953 + z.DecStructFieldNotFound(-1, yys3958) + } // end switch yys3958 + } // end for yyj3958 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49551,16 +49592,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3957 int - var yyb3957 bool - var yyhl3957 bool = l >= 0 - yyj3957++ - if yyhl3957 { - yyb3957 = yyj3957 > l + var yyj3962 int + var yyb3962 bool + var yyhl3962 bool = l >= 0 + yyj3962++ + if yyhl3962 { + yyb3962 = yyj3962 > l } else { - yyb3957 = r.CheckBreak() + yyb3962 = r.CheckBreak() } - if yyb3957 { + if yyb3962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49568,16 +49609,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3958 := &x.Hard - yyv3958.CodecDecodeSelf(d) + yyv3963 := &x.Hard + yyv3963.CodecDecodeSelf(d) } - yyj3957++ - if yyhl3957 { - yyb3957 = yyj3957 > l + yyj3962++ + if yyhl3962 { + yyb3962 = yyj3962 > l } else { - yyb3957 = r.CheckBreak() + yyb3962 = r.CheckBreak() } - if yyb3957 { + if yyb3962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49585,26 +49626,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3959 := &x.Scopes - yym3960 := z.DecBinary() - _ = yym3960 + yyv3964 := &x.Scopes + yym3965 := z.DecBinary() + _ = yym3965 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3959), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3964), d) } } for { - yyj3957++ - if yyhl3957 { - yyb3957 = yyj3957 > l + yyj3962++ + if yyhl3962 { + yyb3962 = yyj3962 > l } else { - yyb3957 = r.CheckBreak() + yyb3962 = r.CheckBreak() } - if yyb3957 { + if yyb3962 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3957-1, "") + z.DecStructFieldNotFound(yyj3962-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49616,34 +49657,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3961 := z.EncBinary() - _ = yym3961 + yym3966 := z.EncBinary() + _ = yym3966 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3962 := !z.EncBinary() - yy2arr3962 := z.EncBasicHandle().StructToArray - var yyq3962 [2]bool - _, _, _ = yysep3962, yyq3962, yy2arr3962 - const yyr3962 bool = false - yyq3962[0] = len(x.Hard) != 0 - yyq3962[1] = len(x.Used) != 0 - var yynn3962 int - if yyr3962 || yy2arr3962 { + yysep3967 := !z.EncBinary() + yy2arr3967 := z.EncBasicHandle().StructToArray + var yyq3967 [2]bool + _, _, _ = yysep3967, yyq3967, yy2arr3967 + const yyr3967 bool = false + yyq3967[0] = len(x.Hard) != 0 + yyq3967[1] = len(x.Used) != 0 + var yynn3967 int + if yyr3967 || yy2arr3967 { r.EncodeArrayStart(2) } else { - yynn3962 = 0 - for _, b := range yyq3962 { + yynn3967 = 0 + for _, b := range yyq3967 { if b { - yynn3962++ + yynn3967++ } } - r.EncodeMapStart(yynn3962) - yynn3962 = 0 + r.EncodeMapStart(yynn3967) + yynn3967 = 0 } - if yyr3962 || yy2arr3962 { + if yyr3967 || yy2arr3967 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3962[0] { + if yyq3967[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49653,7 +49694,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3962[0] { + if yyq3967[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49664,9 +49705,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3962 || yy2arr3962 { + if yyr3967 || yy2arr3967 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3962[1] { + if yyq3967[1] { if x.Used == nil { r.EncodeNil() } else { @@ -49676,7 +49717,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3962[1] { + if yyq3967[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49687,7 +49728,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3962 || yy2arr3962 { + if yyr3967 || yy2arr3967 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49700,25 +49741,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3965 := z.DecBinary() - _ = yym3965 + yym3970 := z.DecBinary() + _ = yym3970 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3966 := r.ContainerType() - if yyct3966 == codecSelferValueTypeMap1234 { - yyl3966 := r.ReadMapStart() - if yyl3966 == 0 { + yyct3971 := r.ContainerType() + if yyct3971 == codecSelferValueTypeMap1234 { + yyl3971 := r.ReadMapStart() + if yyl3971 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3966, d) + x.codecDecodeSelfFromMap(yyl3971, d) } - } else if yyct3966 == codecSelferValueTypeArray1234 { - yyl3966 := r.ReadArrayStart() - if yyl3966 == 0 { + } else if yyct3971 == codecSelferValueTypeArray1234 { + yyl3971 := r.ReadArrayStart() + if yyl3971 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3966, d) + x.codecDecodeSelfFromArray(yyl3971, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49730,12 +49771,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3967Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3967Slc - var yyhl3967 bool = l >= 0 - for yyj3967 := 0; ; yyj3967++ { - if yyhl3967 { - if yyj3967 >= l { + var yys3972Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3972Slc + var yyhl3972 bool = l >= 0 + for yyj3972 := 0; ; yyj3972++ { + if yyhl3972 { + if yyj3972 >= l { break } } else { @@ -49744,28 +49785,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3967Slc = r.DecodeBytes(yys3967Slc, true, true) - yys3967 := string(yys3967Slc) + yys3972Slc = r.DecodeBytes(yys3972Slc, true, true) + yys3972 := string(yys3972Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3967 { + switch yys3972 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3968 := &x.Hard - yyv3968.CodecDecodeSelf(d) + yyv3973 := &x.Hard + yyv3973.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3969 := &x.Used - yyv3969.CodecDecodeSelf(d) + yyv3974 := &x.Used + yyv3974.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3967) - } // end switch yys3967 - } // end for yyj3967 + z.DecStructFieldNotFound(-1, yys3972) + } // end switch yys3972 + } // end for yyj3972 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49773,16 +49814,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3970 int - var yyb3970 bool - var yyhl3970 bool = l >= 0 - yyj3970++ - if yyhl3970 { - yyb3970 = yyj3970 > l + var yyj3975 int + var yyb3975 bool + var yyhl3975 bool = l >= 0 + yyj3975++ + if yyhl3975 { + yyb3975 = yyj3975 > l } else { - yyb3970 = r.CheckBreak() + yyb3975 = r.CheckBreak() } - if yyb3970 { + if yyb3975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49790,16 +49831,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3971 := &x.Hard - yyv3971.CodecDecodeSelf(d) + yyv3976 := &x.Hard + yyv3976.CodecDecodeSelf(d) } - yyj3970++ - if yyhl3970 { - yyb3970 = yyj3970 > l + yyj3975++ + if yyhl3975 { + yyb3975 = yyj3975 > l } else { - yyb3970 = r.CheckBreak() + yyb3975 = r.CheckBreak() } - if yyb3970 { + if yyb3975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49807,21 +49848,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3972 := &x.Used - yyv3972.CodecDecodeSelf(d) + yyv3977 := &x.Used + yyv3977.CodecDecodeSelf(d) } for { - yyj3970++ - if yyhl3970 { - yyb3970 = yyj3970 > l + yyj3975++ + if yyhl3975 { + yyb3975 = yyj3975 > l } else { - yyb3970 = r.CheckBreak() + yyb3975 = r.CheckBreak() } - if yyb3970 { + if yyb3975 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3970-1, "") + z.DecStructFieldNotFound(yyj3975-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49833,39 +49874,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3973 := z.EncBinary() - _ = yym3973 + yym3978 := z.EncBinary() + _ = yym3978 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3974 := !z.EncBinary() - yy2arr3974 := z.EncBasicHandle().StructToArray - var yyq3974 [5]bool - _, _, _ = yysep3974, yyq3974, yy2arr3974 - const yyr3974 bool = false - yyq3974[0] = x.Kind != "" - yyq3974[1] = x.APIVersion != "" - yyq3974[2] = true - yyq3974[3] = true - yyq3974[4] = true - var yynn3974 int - if yyr3974 || yy2arr3974 { + yysep3979 := !z.EncBinary() + yy2arr3979 := z.EncBasicHandle().StructToArray + var yyq3979 [5]bool + _, _, _ = yysep3979, yyq3979, yy2arr3979 + const yyr3979 bool = false + yyq3979[0] = x.Kind != "" + yyq3979[1] = x.APIVersion != "" + yyq3979[2] = true + yyq3979[3] = true + yyq3979[4] = true + var yynn3979 int + if yyr3979 || yy2arr3979 { r.EncodeArrayStart(5) } else { - yynn3974 = 0 - for _, b := range yyq3974 { + yynn3979 = 0 + for _, b := range yyq3979 { if b { - yynn3974++ + yynn3979++ } } - r.EncodeMapStart(yynn3974) - yynn3974 = 0 + r.EncodeMapStart(yynn3979) + yynn3979 = 0 } - if yyr3974 || yy2arr3974 { + if yyr3979 || yy2arr3979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[0] { - yym3976 := z.EncBinary() - _ = yym3976 + if yyq3979[0] { + yym3981 := z.EncBinary() + _ = yym3981 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49874,23 +49915,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3974[0] { + if yyq3979[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3977 := z.EncBinary() - _ = yym3977 + yym3982 := z.EncBinary() + _ = yym3982 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3974 || yy2arr3974 { + if yyr3979 || yy2arr3979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[1] { - yym3979 := z.EncBinary() - _ = yym3979 + if yyq3979[1] { + yym3984 := z.EncBinary() + _ = yym3984 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49899,70 +49940,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3974[1] { + if yyq3979[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3980 := z.EncBinary() - _ = yym3980 + yym3985 := z.EncBinary() + _ = yym3985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3974 || yy2arr3974 { + if yyr3979 || yy2arr3979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[2] { - yy3982 := &x.ObjectMeta - yy3982.CodecEncodeSelf(e) + if yyq3979[2] { + yy3987 := &x.ObjectMeta + yy3987.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3974[2] { + if yyq3979[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3983 := &x.ObjectMeta - yy3983.CodecEncodeSelf(e) + yy3988 := &x.ObjectMeta + yy3988.CodecEncodeSelf(e) } } - if yyr3974 || yy2arr3974 { + if yyr3979 || yy2arr3979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[3] { - yy3985 := &x.Spec - yy3985.CodecEncodeSelf(e) + if yyq3979[3] { + yy3990 := &x.Spec + yy3990.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3974[3] { + if yyq3979[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3986 := &x.Spec - yy3986.CodecEncodeSelf(e) + yy3991 := &x.Spec + yy3991.CodecEncodeSelf(e) } } - if yyr3974 || yy2arr3974 { + if yyr3979 || yy2arr3979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[4] { - yy3988 := &x.Status - yy3988.CodecEncodeSelf(e) + if yyq3979[4] { + yy3993 := &x.Status + yy3993.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3974[4] { + if yyq3979[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3989 := &x.Status - yy3989.CodecEncodeSelf(e) + yy3994 := &x.Status + yy3994.CodecEncodeSelf(e) } } - if yyr3974 || yy2arr3974 { + if yyr3979 || yy2arr3979 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49975,25 +50016,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3990 := z.DecBinary() - _ = yym3990 + yym3995 := z.DecBinary() + _ = yym3995 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3991 := r.ContainerType() - if yyct3991 == codecSelferValueTypeMap1234 { - yyl3991 := r.ReadMapStart() - if yyl3991 == 0 { + yyct3996 := r.ContainerType() + if yyct3996 == codecSelferValueTypeMap1234 { + yyl3996 := r.ReadMapStart() + if yyl3996 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3991, d) + x.codecDecodeSelfFromMap(yyl3996, d) } - } else if yyct3991 == codecSelferValueTypeArray1234 { - yyl3991 := r.ReadArrayStart() - if yyl3991 == 0 { + } else if yyct3996 == codecSelferValueTypeArray1234 { + yyl3996 := r.ReadArrayStart() + if yyl3996 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3991, d) + x.codecDecodeSelfFromArray(yyl3996, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50005,12 +50046,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3992Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3992Slc - var yyhl3992 bool = l >= 0 - for yyj3992 := 0; ; yyj3992++ { - if yyhl3992 { - if yyj3992 >= l { + var yys3997Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3997Slc + var yyhl3997 bool = l >= 0 + for yyj3997 := 0; ; yyj3997++ { + if yyhl3997 { + if yyj3997 >= l { break } } else { @@ -50019,10 +50060,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3992Slc = r.DecodeBytes(yys3992Slc, true, true) - yys3992 := string(yys3992Slc) + yys3997Slc = r.DecodeBytes(yys3997Slc, true, true) + yys3997 := string(yys3997Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3992 { + switch yys3997 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50039,27 +50080,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3995 := &x.ObjectMeta - yyv3995.CodecDecodeSelf(d) + yyv4000 := &x.ObjectMeta + yyv4000.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3996 := &x.Spec - yyv3996.CodecDecodeSelf(d) + yyv4001 := &x.Spec + yyv4001.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3997 := &x.Status - yyv3997.CodecDecodeSelf(d) + yyv4002 := &x.Status + yyv4002.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3992) - } // end switch yys3992 - } // end for yyj3992 + z.DecStructFieldNotFound(-1, yys3997) + } // end switch yys3997 + } // end for yyj3997 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50067,16 +50108,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3998 int - var yyb3998 bool - var yyhl3998 bool = l >= 0 - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + var yyj4003 int + var yyb4003 bool + var yyhl4003 bool = l >= 0 + yyj4003++ + if yyhl4003 { + yyb4003 = yyj4003 > l } else { - yyb3998 = r.CheckBreak() + yyb4003 = r.CheckBreak() } - if yyb3998 { + if yyb4003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50086,13 +50127,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4003++ + if yyhl4003 { + yyb4003 = yyj4003 > l } else { - yyb3998 = r.CheckBreak() + yyb4003 = r.CheckBreak() } - if yyb3998 { + if yyb4003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50102,13 +50143,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4003++ + if yyhl4003 { + yyb4003 = yyj4003 > l } else { - yyb3998 = r.CheckBreak() + yyb4003 = r.CheckBreak() } - if yyb3998 { + if yyb4003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50116,16 +50157,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4001 := &x.ObjectMeta - yyv4001.CodecDecodeSelf(d) + yyv4006 := &x.ObjectMeta + yyv4006.CodecDecodeSelf(d) } - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4003++ + if yyhl4003 { + yyb4003 = yyj4003 > l } else { - yyb3998 = r.CheckBreak() + yyb4003 = r.CheckBreak() } - if yyb3998 { + if yyb4003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50133,16 +50174,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4002 := &x.Spec - yyv4002.CodecDecodeSelf(d) + yyv4007 := &x.Spec + yyv4007.CodecDecodeSelf(d) } - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4003++ + if yyhl4003 { + yyb4003 = yyj4003 > l } else { - yyb3998 = r.CheckBreak() + yyb4003 = r.CheckBreak() } - if yyb3998 { + if yyb4003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50150,21 +50191,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4003 := &x.Status - yyv4003.CodecDecodeSelf(d) + yyv4008 := &x.Status + yyv4008.CodecDecodeSelf(d) } for { - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4003++ + if yyhl4003 { + yyb4003 = yyj4003 > l } else { - yyb3998 = r.CheckBreak() + yyb4003 = r.CheckBreak() } - if yyb3998 { + if yyb4003 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3998-1, "") + z.DecStructFieldNotFound(yyj4003-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50176,37 +50217,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4004 := z.EncBinary() - _ = yym4004 + yym4009 := z.EncBinary() + _ = yym4009 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4005 := !z.EncBinary() - yy2arr4005 := z.EncBasicHandle().StructToArray - var yyq4005 [4]bool - _, _, _ = yysep4005, yyq4005, yy2arr4005 - const yyr4005 bool = false - yyq4005[0] = x.Kind != "" - yyq4005[1] = x.APIVersion != "" - yyq4005[2] = true - var yynn4005 int - if yyr4005 || yy2arr4005 { + yysep4010 := !z.EncBinary() + yy2arr4010 := z.EncBasicHandle().StructToArray + var yyq4010 [4]bool + _, _, _ = yysep4010, yyq4010, yy2arr4010 + const yyr4010 bool = false + yyq4010[0] = x.Kind != "" + yyq4010[1] = x.APIVersion != "" + yyq4010[2] = true + var yynn4010 int + if yyr4010 || yy2arr4010 { r.EncodeArrayStart(4) } else { - yynn4005 = 1 - for _, b := range yyq4005 { + yynn4010 = 1 + for _, b := range yyq4010 { if b { - yynn4005++ + yynn4010++ } } - r.EncodeMapStart(yynn4005) - yynn4005 = 0 + r.EncodeMapStart(yynn4010) + yynn4010 = 0 } - if yyr4005 || yy2arr4005 { + if yyr4010 || yy2arr4010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4005[0] { - yym4007 := z.EncBinary() - _ = yym4007 + if yyq4010[0] { + yym4012 := z.EncBinary() + _ = yym4012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50215,23 +50256,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4005[0] { + if yyq4010[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4008 := z.EncBinary() - _ = yym4008 + yym4013 := z.EncBinary() + _ = yym4013 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4005 || yy2arr4005 { + if yyr4010 || yy2arr4010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4005[1] { - yym4010 := z.EncBinary() - _ = yym4010 + if yyq4010[1] { + yym4015 := z.EncBinary() + _ = yym4015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50240,54 +50281,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4005[1] { + if yyq4010[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4011 := z.EncBinary() - _ = yym4011 + yym4016 := z.EncBinary() + _ = yym4016 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4005 || yy2arr4005 { + if yyr4010 || yy2arr4010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4005[2] { - yy4013 := &x.ListMeta - yym4014 := z.EncBinary() - _ = yym4014 + if yyq4010[2] { + yy4018 := &x.ListMeta + yym4019 := z.EncBinary() + _ = yym4019 if false { - } else if z.HasExtensions() && z.EncExt(yy4013) { + } else if z.HasExtensions() && z.EncExt(yy4018) { } else { - z.EncFallback(yy4013) + z.EncFallback(yy4018) } } else { r.EncodeNil() } } else { - if yyq4005[2] { + if yyq4010[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4015 := &x.ListMeta - yym4016 := z.EncBinary() - _ = yym4016 + yy4020 := &x.ListMeta + yym4021 := z.EncBinary() + _ = yym4021 if false { - } else if z.HasExtensions() && z.EncExt(yy4015) { + } else if z.HasExtensions() && z.EncExt(yy4020) { } else { - z.EncFallback(yy4015) + z.EncFallback(yy4020) } } } - if yyr4005 || yy2arr4005 { + if yyr4010 || yy2arr4010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4018 := z.EncBinary() - _ = yym4018 + yym4023 := z.EncBinary() + _ = yym4023 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -50300,15 +50341,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4019 := z.EncBinary() - _ = yym4019 + yym4024 := z.EncBinary() + _ = yym4024 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4005 || yy2arr4005 { + if yyr4010 || yy2arr4010 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50321,25 +50362,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4020 := z.DecBinary() - _ = yym4020 + yym4025 := z.DecBinary() + _ = yym4025 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4021 := r.ContainerType() - if yyct4021 == codecSelferValueTypeMap1234 { - yyl4021 := r.ReadMapStart() - if yyl4021 == 0 { + yyct4026 := r.ContainerType() + if yyct4026 == codecSelferValueTypeMap1234 { + yyl4026 := r.ReadMapStart() + if yyl4026 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4021, d) + x.codecDecodeSelfFromMap(yyl4026, d) } - } else if yyct4021 == codecSelferValueTypeArray1234 { - yyl4021 := r.ReadArrayStart() - if yyl4021 == 0 { + } else if yyct4026 == codecSelferValueTypeArray1234 { + yyl4026 := r.ReadArrayStart() + if yyl4026 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4021, d) + x.codecDecodeSelfFromArray(yyl4026, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50351,12 +50392,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4022Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4022Slc - var yyhl4022 bool = l >= 0 - for yyj4022 := 0; ; yyj4022++ { - if yyhl4022 { - if yyj4022 >= l { + var yys4027Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4027Slc + var yyhl4027 bool = l >= 0 + for yyj4027 := 0; ; yyj4027++ { + if yyhl4027 { + if yyj4027 >= l { break } } else { @@ -50365,10 +50406,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4022Slc = r.DecodeBytes(yys4022Slc, true, true) - yys4022 := string(yys4022Slc) + yys4027Slc = r.DecodeBytes(yys4027Slc, true, true) + yys4027 := string(yys4027Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4022 { + switch yys4027 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50385,31 +50426,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4025 := &x.ListMeta - yym4026 := z.DecBinary() - _ = yym4026 + yyv4030 := &x.ListMeta + yym4031 := z.DecBinary() + _ = yym4031 if false { - } else if z.HasExtensions() && z.DecExt(yyv4025) { + } else if z.HasExtensions() && z.DecExt(yyv4030) { } else { - z.DecFallback(yyv4025, false) + z.DecFallback(yyv4030, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4027 := &x.Items - yym4028 := z.DecBinary() - _ = yym4028 + yyv4032 := &x.Items + yym4033 := z.DecBinary() + _ = yym4033 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4027), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4032), d) } } default: - z.DecStructFieldNotFound(-1, yys4022) - } // end switch yys4022 - } // end for yyj4022 + z.DecStructFieldNotFound(-1, yys4027) + } // end switch yys4027 + } // end for yyj4027 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50417,16 +50458,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4029 int - var yyb4029 bool - var yyhl4029 bool = l >= 0 - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + var yyj4034 int + var yyb4034 bool + var yyhl4034 bool = l >= 0 + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50436,13 +50477,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50452,13 +50493,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50466,22 +50507,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4032 := &x.ListMeta - yym4033 := z.DecBinary() - _ = yym4033 + yyv4037 := &x.ListMeta + yym4038 := z.DecBinary() + _ = yym4038 if false { - } else if z.HasExtensions() && z.DecExt(yyv4032) { + } else if z.HasExtensions() && z.DecExt(yyv4037) { } else { - z.DecFallback(yyv4032, false) + z.DecFallback(yyv4037, false) } } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50489,26 +50530,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4034 := &x.Items - yym4035 := z.DecBinary() - _ = yym4035 + yyv4039 := &x.Items + yym4040 := z.DecBinary() + _ = yym4040 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4034), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4039), d) } } for { - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4029-1, "") + z.DecStructFieldNotFound(yyj4034-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50520,39 +50561,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4036 := z.EncBinary() - _ = yym4036 + yym4041 := z.EncBinary() + _ = yym4041 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4037 := !z.EncBinary() - yy2arr4037 := z.EncBasicHandle().StructToArray - var yyq4037 [5]bool - _, _, _ = yysep4037, yyq4037, yy2arr4037 - const yyr4037 bool = false - yyq4037[0] = x.Kind != "" - yyq4037[1] = x.APIVersion != "" - yyq4037[2] = true - yyq4037[3] = len(x.Data) != 0 - yyq4037[4] = x.Type != "" - var yynn4037 int - if yyr4037 || yy2arr4037 { + yysep4042 := !z.EncBinary() + yy2arr4042 := z.EncBasicHandle().StructToArray + var yyq4042 [5]bool + _, _, _ = yysep4042, yyq4042, yy2arr4042 + const yyr4042 bool = false + yyq4042[0] = x.Kind != "" + yyq4042[1] = x.APIVersion != "" + yyq4042[2] = true + yyq4042[3] = len(x.Data) != 0 + yyq4042[4] = x.Type != "" + var yynn4042 int + if yyr4042 || yy2arr4042 { r.EncodeArrayStart(5) } else { - yynn4037 = 0 - for _, b := range yyq4037 { + yynn4042 = 0 + for _, b := range yyq4042 { if b { - yynn4037++ + yynn4042++ } } - r.EncodeMapStart(yynn4037) - yynn4037 = 0 + r.EncodeMapStart(yynn4042) + yynn4042 = 0 } - if yyr4037 || yy2arr4037 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[0] { - yym4039 := z.EncBinary() - _ = yym4039 + if yyq4042[0] { + yym4044 := z.EncBinary() + _ = yym4044 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50561,23 +50602,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4037[0] { + if yyq4042[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4040 := z.EncBinary() - _ = yym4040 + yym4045 := z.EncBinary() + _ = yym4045 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4037 || yy2arr4037 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[1] { - yym4042 := z.EncBinary() - _ = yym4042 + if yyq4042[1] { + yym4047 := z.EncBinary() + _ = yym4047 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50586,43 +50627,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4037[1] { + if yyq4042[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4043 := z.EncBinary() - _ = yym4043 + yym4048 := z.EncBinary() + _ = yym4048 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4037 || yy2arr4037 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[2] { - yy4045 := &x.ObjectMeta - yy4045.CodecEncodeSelf(e) + if yyq4042[2] { + yy4050 := &x.ObjectMeta + yy4050.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4037[2] { + if yyq4042[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4046 := &x.ObjectMeta - yy4046.CodecEncodeSelf(e) + yy4051 := &x.ObjectMeta + yy4051.CodecEncodeSelf(e) } } - if yyr4037 || yy2arr4037 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[3] { + if yyq4042[3] { if x.Data == nil { r.EncodeNil() } else { - yym4048 := z.EncBinary() - _ = yym4048 + yym4053 := z.EncBinary() + _ = yym4053 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50632,15 +50673,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4037[3] { + if yyq4042[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4049 := z.EncBinary() - _ = yym4049 + yym4054 := z.EncBinary() + _ = yym4054 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50648,22 +50689,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4037 || yy2arr4037 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[4] { + if yyq4042[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4037[4] { + if yyq4042[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4037 || yy2arr4037 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50676,25 +50717,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4051 := z.DecBinary() - _ = yym4051 + yym4056 := z.DecBinary() + _ = yym4056 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4052 := r.ContainerType() - if yyct4052 == codecSelferValueTypeMap1234 { - yyl4052 := r.ReadMapStart() - if yyl4052 == 0 { + yyct4057 := r.ContainerType() + if yyct4057 == codecSelferValueTypeMap1234 { + yyl4057 := r.ReadMapStart() + if yyl4057 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4052, d) + x.codecDecodeSelfFromMap(yyl4057, d) } - } else if yyct4052 == codecSelferValueTypeArray1234 { - yyl4052 := r.ReadArrayStart() - if yyl4052 == 0 { + } else if yyct4057 == codecSelferValueTypeArray1234 { + yyl4057 := r.ReadArrayStart() + if yyl4057 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4052, d) + x.codecDecodeSelfFromArray(yyl4057, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50706,12 +50747,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4053Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4053Slc - var yyhl4053 bool = l >= 0 - for yyj4053 := 0; ; yyj4053++ { - if yyhl4053 { - if yyj4053 >= l { + var yys4058Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4058Slc + var yyhl4058 bool = l >= 0 + for yyj4058 := 0; ; yyj4058++ { + if yyhl4058 { + if yyj4058 >= l { break } } else { @@ -50720,10 +50761,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4053Slc = r.DecodeBytes(yys4053Slc, true, true) - yys4053 := string(yys4053Slc) + yys4058Slc = r.DecodeBytes(yys4058Slc, true, true) + yys4058 := string(yys4058Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4053 { + switch yys4058 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50740,19 +50781,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4056 := &x.ObjectMeta - yyv4056.CodecDecodeSelf(d) + yyv4061 := &x.ObjectMeta + yyv4061.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4057 := &x.Data - yym4058 := z.DecBinary() - _ = yym4058 + yyv4062 := &x.Data + yym4063 := z.DecBinary() + _ = yym4063 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4057), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4062), d) } } case "type": @@ -50762,9 +50803,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4053) - } // end switch yys4053 - } // end for yyj4053 + z.DecStructFieldNotFound(-1, yys4058) + } // end switch yys4058 + } // end for yyj4058 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50772,16 +50813,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4060 int - var yyb4060 bool - var yyhl4060 bool = l >= 0 - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + var yyj4065 int + var yyb4065 bool + var yyhl4065 bool = l >= 0 + yyj4065++ + if yyhl4065 { + yyb4065 = yyj4065 > l } else { - yyb4060 = r.CheckBreak() + yyb4065 = r.CheckBreak() } - if yyb4060 { + if yyb4065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50791,13 +50832,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + yyj4065++ + if yyhl4065 { + yyb4065 = yyj4065 > l } else { - yyb4060 = r.CheckBreak() + yyb4065 = r.CheckBreak() } - if yyb4060 { + if yyb4065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50807,13 +50848,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + yyj4065++ + if yyhl4065 { + yyb4065 = yyj4065 > l } else { - yyb4060 = r.CheckBreak() + yyb4065 = r.CheckBreak() } - if yyb4060 { + if yyb4065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50821,16 +50862,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4063 := &x.ObjectMeta - yyv4063.CodecDecodeSelf(d) + yyv4068 := &x.ObjectMeta + yyv4068.CodecDecodeSelf(d) } - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + yyj4065++ + if yyhl4065 { + yyb4065 = yyj4065 > l } else { - yyb4060 = r.CheckBreak() + yyb4065 = r.CheckBreak() } - if yyb4060 { + if yyb4065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50838,21 +50879,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4064 := &x.Data - yym4065 := z.DecBinary() - _ = yym4065 + yyv4069 := &x.Data + yym4070 := z.DecBinary() + _ = yym4070 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4064), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4069), d) } } - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + yyj4065++ + if yyhl4065 { + yyb4065 = yyj4065 > l } else { - yyb4060 = r.CheckBreak() + yyb4065 = r.CheckBreak() } - if yyb4060 { + if yyb4065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50863,17 +50904,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + yyj4065++ + if yyhl4065 { + yyb4065 = yyj4065 > l } else { - yyb4060 = r.CheckBreak() + yyb4065 = r.CheckBreak() } - if yyb4060 { + if yyb4065 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4060-1, "") + z.DecStructFieldNotFound(yyj4065-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50882,8 +50923,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4067 := z.EncBinary() - _ = yym4067 + yym4072 := z.EncBinary() + _ = yym4072 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50895,8 +50936,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4068 := z.DecBinary() - _ = yym4068 + yym4073 := z.DecBinary() + _ = yym4073 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50911,37 +50952,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4069 := z.EncBinary() - _ = yym4069 + yym4074 := z.EncBinary() + _ = yym4074 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4070 := !z.EncBinary() - yy2arr4070 := z.EncBasicHandle().StructToArray - var yyq4070 [4]bool - _, _, _ = yysep4070, yyq4070, yy2arr4070 - const yyr4070 bool = false - yyq4070[0] = x.Kind != "" - yyq4070[1] = x.APIVersion != "" - yyq4070[2] = true - var yynn4070 int - if yyr4070 || yy2arr4070 { + yysep4075 := !z.EncBinary() + yy2arr4075 := z.EncBasicHandle().StructToArray + var yyq4075 [4]bool + _, _, _ = yysep4075, yyq4075, yy2arr4075 + const yyr4075 bool = false + yyq4075[0] = x.Kind != "" + yyq4075[1] = x.APIVersion != "" + yyq4075[2] = true + var yynn4075 int + if yyr4075 || yy2arr4075 { r.EncodeArrayStart(4) } else { - yynn4070 = 1 - for _, b := range yyq4070 { + yynn4075 = 1 + for _, b := range yyq4075 { if b { - yynn4070++ + yynn4075++ } } - r.EncodeMapStart(yynn4070) - yynn4070 = 0 + r.EncodeMapStart(yynn4075) + yynn4075 = 0 } - if yyr4070 || yy2arr4070 { + if yyr4075 || yy2arr4075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4070[0] { - yym4072 := z.EncBinary() - _ = yym4072 + if yyq4075[0] { + yym4077 := z.EncBinary() + _ = yym4077 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50950,23 +50991,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4070[0] { + if yyq4075[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4073 := z.EncBinary() - _ = yym4073 + yym4078 := z.EncBinary() + _ = yym4078 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4070 || yy2arr4070 { + if yyr4075 || yy2arr4075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4070[1] { - yym4075 := z.EncBinary() - _ = yym4075 + if yyq4075[1] { + yym4080 := z.EncBinary() + _ = yym4080 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50975,54 +51016,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4070[1] { + if yyq4075[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4076 := z.EncBinary() - _ = yym4076 + yym4081 := z.EncBinary() + _ = yym4081 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4070 || yy2arr4070 { + if yyr4075 || yy2arr4075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4070[2] { - yy4078 := &x.ListMeta - yym4079 := z.EncBinary() - _ = yym4079 + if yyq4075[2] { + yy4083 := &x.ListMeta + yym4084 := z.EncBinary() + _ = yym4084 if false { - } else if z.HasExtensions() && z.EncExt(yy4078) { + } else if z.HasExtensions() && z.EncExt(yy4083) { } else { - z.EncFallback(yy4078) + z.EncFallback(yy4083) } } else { r.EncodeNil() } } else { - if yyq4070[2] { + if yyq4075[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4080 := &x.ListMeta - yym4081 := z.EncBinary() - _ = yym4081 + yy4085 := &x.ListMeta + yym4086 := z.EncBinary() + _ = yym4086 if false { - } else if z.HasExtensions() && z.EncExt(yy4080) { + } else if z.HasExtensions() && z.EncExt(yy4085) { } else { - z.EncFallback(yy4080) + z.EncFallback(yy4085) } } } - if yyr4070 || yy2arr4070 { + if yyr4075 || yy2arr4075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4083 := z.EncBinary() - _ = yym4083 + yym4088 := z.EncBinary() + _ = yym4088 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -51035,15 +51076,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4084 := z.EncBinary() - _ = yym4084 + yym4089 := z.EncBinary() + _ = yym4089 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4070 || yy2arr4070 { + if yyr4075 || yy2arr4075 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51056,25 +51097,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4085 := z.DecBinary() - _ = yym4085 + yym4090 := z.DecBinary() + _ = yym4090 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4086 := r.ContainerType() - if yyct4086 == codecSelferValueTypeMap1234 { - yyl4086 := r.ReadMapStart() - if yyl4086 == 0 { + yyct4091 := r.ContainerType() + if yyct4091 == codecSelferValueTypeMap1234 { + yyl4091 := r.ReadMapStart() + if yyl4091 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4086, d) + x.codecDecodeSelfFromMap(yyl4091, d) } - } else if yyct4086 == codecSelferValueTypeArray1234 { - yyl4086 := r.ReadArrayStart() - if yyl4086 == 0 { + } else if yyct4091 == codecSelferValueTypeArray1234 { + yyl4091 := r.ReadArrayStart() + if yyl4091 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4086, d) + x.codecDecodeSelfFromArray(yyl4091, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51086,12 +51127,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4087Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4087Slc - var yyhl4087 bool = l >= 0 - for yyj4087 := 0; ; yyj4087++ { - if yyhl4087 { - if yyj4087 >= l { + var yys4092Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4092Slc + var yyhl4092 bool = l >= 0 + for yyj4092 := 0; ; yyj4092++ { + if yyhl4092 { + if yyj4092 >= l { break } } else { @@ -51100,10 +51141,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4087Slc = r.DecodeBytes(yys4087Slc, true, true) - yys4087 := string(yys4087Slc) + yys4092Slc = r.DecodeBytes(yys4092Slc, true, true) + yys4092 := string(yys4092Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4087 { + switch yys4092 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51120,31 +51161,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4090 := &x.ListMeta - yym4091 := z.DecBinary() - _ = yym4091 + yyv4095 := &x.ListMeta + yym4096 := z.DecBinary() + _ = yym4096 if false { - } else if z.HasExtensions() && z.DecExt(yyv4090) { + } else if z.HasExtensions() && z.DecExt(yyv4095) { } else { - z.DecFallback(yyv4090, false) + z.DecFallback(yyv4095, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4092 := &x.Items - yym4093 := z.DecBinary() - _ = yym4093 + yyv4097 := &x.Items + yym4098 := z.DecBinary() + _ = yym4098 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4092), d) + h.decSliceSecret((*[]Secret)(yyv4097), d) } } default: - z.DecStructFieldNotFound(-1, yys4087) - } // end switch yys4087 - } // end for yyj4087 + z.DecStructFieldNotFound(-1, yys4092) + } // end switch yys4092 + } // end for yyj4092 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51152,16 +51193,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4094 int - var yyb4094 bool - var yyhl4094 bool = l >= 0 - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + var yyj4099 int + var yyb4099 bool + var yyhl4099 bool = l >= 0 + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51171,13 +51212,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51187,13 +51228,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51201,22 +51242,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4097 := &x.ListMeta - yym4098 := z.DecBinary() - _ = yym4098 + yyv4102 := &x.ListMeta + yym4103 := z.DecBinary() + _ = yym4103 if false { - } else if z.HasExtensions() && z.DecExt(yyv4097) { + } else if z.HasExtensions() && z.DecExt(yyv4102) { } else { - z.DecFallback(yyv4097, false) + z.DecFallback(yyv4102, false) } } - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51224,26 +51265,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4099 := &x.Items - yym4100 := z.DecBinary() - _ = yym4100 + yyv4104 := &x.Items + yym4105 := z.DecBinary() + _ = yym4105 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4099), d) + h.decSliceSecret((*[]Secret)(yyv4104), d) } } for { - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4094-1, "") + z.DecStructFieldNotFound(yyj4099-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51255,38 +51296,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4101 := z.EncBinary() - _ = yym4101 + yym4106 := z.EncBinary() + _ = yym4106 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4102 := !z.EncBinary() - yy2arr4102 := z.EncBasicHandle().StructToArray - var yyq4102 [4]bool - _, _, _ = yysep4102, yyq4102, yy2arr4102 - const yyr4102 bool = false - yyq4102[0] = x.Kind != "" - yyq4102[1] = x.APIVersion != "" - yyq4102[2] = true - yyq4102[3] = len(x.Data) != 0 - var yynn4102 int - if yyr4102 || yy2arr4102 { + yysep4107 := !z.EncBinary() + yy2arr4107 := z.EncBasicHandle().StructToArray + var yyq4107 [4]bool + _, _, _ = yysep4107, yyq4107, yy2arr4107 + const yyr4107 bool = false + yyq4107[0] = x.Kind != "" + yyq4107[1] = x.APIVersion != "" + yyq4107[2] = true + yyq4107[3] = len(x.Data) != 0 + var yynn4107 int + if yyr4107 || yy2arr4107 { r.EncodeArrayStart(4) } else { - yynn4102 = 0 - for _, b := range yyq4102 { + yynn4107 = 0 + for _, b := range yyq4107 { if b { - yynn4102++ + yynn4107++ } } - r.EncodeMapStart(yynn4102) - yynn4102 = 0 + r.EncodeMapStart(yynn4107) + yynn4107 = 0 } - if yyr4102 || yy2arr4102 { + if yyr4107 || yy2arr4107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4102[0] { - yym4104 := z.EncBinary() - _ = yym4104 + if yyq4107[0] { + yym4109 := z.EncBinary() + _ = yym4109 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51295,23 +51336,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4102[0] { + if yyq4107[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4105 := z.EncBinary() - _ = yym4105 + yym4110 := z.EncBinary() + _ = yym4110 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4102 || yy2arr4102 { + if yyr4107 || yy2arr4107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4102[1] { - yym4107 := z.EncBinary() - _ = yym4107 + if yyq4107[1] { + yym4112 := z.EncBinary() + _ = yym4112 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51320,43 +51361,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4102[1] { + if yyq4107[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4108 := z.EncBinary() - _ = yym4108 + yym4113 := z.EncBinary() + _ = yym4113 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4102 || yy2arr4102 { + if yyr4107 || yy2arr4107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4102[2] { - yy4110 := &x.ObjectMeta - yy4110.CodecEncodeSelf(e) + if yyq4107[2] { + yy4115 := &x.ObjectMeta + yy4115.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4102[2] { + if yyq4107[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4111 := &x.ObjectMeta - yy4111.CodecEncodeSelf(e) + yy4116 := &x.ObjectMeta + yy4116.CodecEncodeSelf(e) } } - if yyr4102 || yy2arr4102 { + if yyr4107 || yy2arr4107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4102[3] { + if yyq4107[3] { if x.Data == nil { r.EncodeNil() } else { - yym4113 := z.EncBinary() - _ = yym4113 + yym4118 := z.EncBinary() + _ = yym4118 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51366,15 +51407,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4102[3] { + if yyq4107[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4114 := z.EncBinary() - _ = yym4114 + yym4119 := z.EncBinary() + _ = yym4119 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51382,7 +51423,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4102 || yy2arr4102 { + if yyr4107 || yy2arr4107 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51395,25 +51436,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4115 := z.DecBinary() - _ = yym4115 + yym4120 := z.DecBinary() + _ = yym4120 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4116 := r.ContainerType() - if yyct4116 == codecSelferValueTypeMap1234 { - yyl4116 := r.ReadMapStart() - if yyl4116 == 0 { + yyct4121 := r.ContainerType() + if yyct4121 == codecSelferValueTypeMap1234 { + yyl4121 := r.ReadMapStart() + if yyl4121 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4116, d) + x.codecDecodeSelfFromMap(yyl4121, d) } - } else if yyct4116 == codecSelferValueTypeArray1234 { - yyl4116 := r.ReadArrayStart() - if yyl4116 == 0 { + } else if yyct4121 == codecSelferValueTypeArray1234 { + yyl4121 := r.ReadArrayStart() + if yyl4121 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4116, d) + x.codecDecodeSelfFromArray(yyl4121, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51425,12 +51466,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4117Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4117Slc - var yyhl4117 bool = l >= 0 - for yyj4117 := 0; ; yyj4117++ { - if yyhl4117 { - if yyj4117 >= l { + var yys4122Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4122Slc + var yyhl4122 bool = l >= 0 + for yyj4122 := 0; ; yyj4122++ { + if yyhl4122 { + if yyj4122 >= l { break } } else { @@ -51439,10 +51480,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4117Slc = r.DecodeBytes(yys4117Slc, true, true) - yys4117 := string(yys4117Slc) + yys4122Slc = r.DecodeBytes(yys4122Slc, true, true) + yys4122 := string(yys4122Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4117 { + switch yys4122 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51459,25 +51500,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4120 := &x.ObjectMeta - yyv4120.CodecDecodeSelf(d) + yyv4125 := &x.ObjectMeta + yyv4125.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4121 := &x.Data - yym4122 := z.DecBinary() - _ = yym4122 + yyv4126 := &x.Data + yym4127 := z.DecBinary() + _ = yym4127 if false { } else { - z.F.DecMapStringStringX(yyv4121, false, d) + z.F.DecMapStringStringX(yyv4126, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4117) - } // end switch yys4117 - } // end for yyj4117 + z.DecStructFieldNotFound(-1, yys4122) + } // end switch yys4122 + } // end for yyj4122 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51485,16 +51526,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4123 int - var yyb4123 bool - var yyhl4123 bool = l >= 0 - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + var yyj4128 int + var yyb4128 bool + var yyhl4128 bool = l >= 0 + yyj4128++ + if yyhl4128 { + yyb4128 = yyj4128 > l } else { - yyb4123 = r.CheckBreak() + yyb4128 = r.CheckBreak() } - if yyb4123 { + if yyb4128 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51504,13 +51545,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4128++ + if yyhl4128 { + yyb4128 = yyj4128 > l } else { - yyb4123 = r.CheckBreak() + yyb4128 = r.CheckBreak() } - if yyb4123 { + if yyb4128 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51520,13 +51561,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4128++ + if yyhl4128 { + yyb4128 = yyj4128 > l } else { - yyb4123 = r.CheckBreak() + yyb4128 = r.CheckBreak() } - if yyb4123 { + if yyb4128 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51534,16 +51575,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4126 := &x.ObjectMeta - yyv4126.CodecDecodeSelf(d) + yyv4131 := &x.ObjectMeta + yyv4131.CodecDecodeSelf(d) } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4128++ + if yyhl4128 { + yyb4128 = yyj4128 > l } else { - yyb4123 = r.CheckBreak() + yyb4128 = r.CheckBreak() } - if yyb4123 { + if yyb4128 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51551,26 +51592,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4127 := &x.Data - yym4128 := z.DecBinary() - _ = yym4128 + yyv4132 := &x.Data + yym4133 := z.DecBinary() + _ = yym4133 if false { } else { - z.F.DecMapStringStringX(yyv4127, false, d) + z.F.DecMapStringStringX(yyv4132, false, d) } } for { - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4128++ + if yyhl4128 { + yyb4128 = yyj4128 > l } else { - yyb4123 = r.CheckBreak() + yyb4128 = r.CheckBreak() } - if yyb4123 { + if yyb4128 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4123-1, "") + z.DecStructFieldNotFound(yyj4128-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51582,37 +51623,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4129 := z.EncBinary() - _ = yym4129 + yym4134 := z.EncBinary() + _ = yym4134 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4130 := !z.EncBinary() - yy2arr4130 := z.EncBasicHandle().StructToArray - var yyq4130 [4]bool - _, _, _ = yysep4130, yyq4130, yy2arr4130 - const yyr4130 bool = false - yyq4130[0] = x.Kind != "" - yyq4130[1] = x.APIVersion != "" - yyq4130[2] = true - var yynn4130 int - if yyr4130 || yy2arr4130 { + yysep4135 := !z.EncBinary() + yy2arr4135 := z.EncBasicHandle().StructToArray + var yyq4135 [4]bool + _, _, _ = yysep4135, yyq4135, yy2arr4135 + const yyr4135 bool = false + yyq4135[0] = x.Kind != "" + yyq4135[1] = x.APIVersion != "" + yyq4135[2] = true + var yynn4135 int + if yyr4135 || yy2arr4135 { r.EncodeArrayStart(4) } else { - yynn4130 = 1 - for _, b := range yyq4130 { + yynn4135 = 1 + for _, b := range yyq4135 { if b { - yynn4130++ + yynn4135++ } } - r.EncodeMapStart(yynn4130) - yynn4130 = 0 + r.EncodeMapStart(yynn4135) + yynn4135 = 0 } - if yyr4130 || yy2arr4130 { + if yyr4135 || yy2arr4135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4130[0] { - yym4132 := z.EncBinary() - _ = yym4132 + if yyq4135[0] { + yym4137 := z.EncBinary() + _ = yym4137 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51621,23 +51662,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4130[0] { + if yyq4135[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4133 := z.EncBinary() - _ = yym4133 + yym4138 := z.EncBinary() + _ = yym4138 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4130 || yy2arr4130 { + if yyr4135 || yy2arr4135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4130[1] { - yym4135 := z.EncBinary() - _ = yym4135 + if yyq4135[1] { + yym4140 := z.EncBinary() + _ = yym4140 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51646,54 +51687,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4130[1] { + if yyq4135[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4136 := z.EncBinary() - _ = yym4136 + yym4141 := z.EncBinary() + _ = yym4141 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4130 || yy2arr4130 { + if yyr4135 || yy2arr4135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4130[2] { - yy4138 := &x.ListMeta - yym4139 := z.EncBinary() - _ = yym4139 + if yyq4135[2] { + yy4143 := &x.ListMeta + yym4144 := z.EncBinary() + _ = yym4144 if false { - } else if z.HasExtensions() && z.EncExt(yy4138) { + } else if z.HasExtensions() && z.EncExt(yy4143) { } else { - z.EncFallback(yy4138) + z.EncFallback(yy4143) } } else { r.EncodeNil() } } else { - if yyq4130[2] { + if yyq4135[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4140 := &x.ListMeta - yym4141 := z.EncBinary() - _ = yym4141 + yy4145 := &x.ListMeta + yym4146 := z.EncBinary() + _ = yym4146 if false { - } else if z.HasExtensions() && z.EncExt(yy4140) { + } else if z.HasExtensions() && z.EncExt(yy4145) { } else { - z.EncFallback(yy4140) + z.EncFallback(yy4145) } } } - if yyr4130 || yy2arr4130 { + if yyr4135 || yy2arr4135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4143 := z.EncBinary() - _ = yym4143 + yym4148 := z.EncBinary() + _ = yym4148 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -51706,15 +51747,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4144 := z.EncBinary() - _ = yym4144 + yym4149 := z.EncBinary() + _ = yym4149 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4130 || yy2arr4130 { + if yyr4135 || yy2arr4135 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51727,25 +51768,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4145 := z.DecBinary() - _ = yym4145 + yym4150 := z.DecBinary() + _ = yym4150 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4146 := r.ContainerType() - if yyct4146 == codecSelferValueTypeMap1234 { - yyl4146 := r.ReadMapStart() - if yyl4146 == 0 { + yyct4151 := r.ContainerType() + if yyct4151 == codecSelferValueTypeMap1234 { + yyl4151 := r.ReadMapStart() + if yyl4151 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4146, d) + x.codecDecodeSelfFromMap(yyl4151, d) } - } else if yyct4146 == codecSelferValueTypeArray1234 { - yyl4146 := r.ReadArrayStart() - if yyl4146 == 0 { + } else if yyct4151 == codecSelferValueTypeArray1234 { + yyl4151 := r.ReadArrayStart() + if yyl4151 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4146, d) + x.codecDecodeSelfFromArray(yyl4151, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51757,12 +51798,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4147Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4147Slc - var yyhl4147 bool = l >= 0 - for yyj4147 := 0; ; yyj4147++ { - if yyhl4147 { - if yyj4147 >= l { + var yys4152Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4152Slc + var yyhl4152 bool = l >= 0 + for yyj4152 := 0; ; yyj4152++ { + if yyhl4152 { + if yyj4152 >= l { break } } else { @@ -51771,10 +51812,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4147Slc = r.DecodeBytes(yys4147Slc, true, true) - yys4147 := string(yys4147Slc) + yys4152Slc = r.DecodeBytes(yys4152Slc, true, true) + yys4152 := string(yys4152Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4147 { + switch yys4152 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51791,31 +51832,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4150 := &x.ListMeta - yym4151 := z.DecBinary() - _ = yym4151 + yyv4155 := &x.ListMeta + yym4156 := z.DecBinary() + _ = yym4156 if false { - } else if z.HasExtensions() && z.DecExt(yyv4150) { + } else if z.HasExtensions() && z.DecExt(yyv4155) { } else { - z.DecFallback(yyv4150, false) + z.DecFallback(yyv4155, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4152 := &x.Items - yym4153 := z.DecBinary() - _ = yym4153 + yyv4157 := &x.Items + yym4158 := z.DecBinary() + _ = yym4158 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4152), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4157), d) } } default: - z.DecStructFieldNotFound(-1, yys4147) - } // end switch yys4147 - } // end for yyj4147 + z.DecStructFieldNotFound(-1, yys4152) + } // end switch yys4152 + } // end for yyj4152 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51823,16 +51864,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4154 int - var yyb4154 bool - var yyhl4154 bool = l >= 0 - yyj4154++ - if yyhl4154 { - yyb4154 = yyj4154 > l + var yyj4159 int + var yyb4159 bool + var yyhl4159 bool = l >= 0 + yyj4159++ + if yyhl4159 { + yyb4159 = yyj4159 > l } else { - yyb4154 = r.CheckBreak() + yyb4159 = r.CheckBreak() } - if yyb4154 { + if yyb4159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51842,13 +51883,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4154++ - if yyhl4154 { - yyb4154 = yyj4154 > l + yyj4159++ + if yyhl4159 { + yyb4159 = yyj4159 > l } else { - yyb4154 = r.CheckBreak() + yyb4159 = r.CheckBreak() } - if yyb4154 { + if yyb4159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51858,13 +51899,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4154++ - if yyhl4154 { - yyb4154 = yyj4154 > l + yyj4159++ + if yyhl4159 { + yyb4159 = yyj4159 > l } else { - yyb4154 = r.CheckBreak() + yyb4159 = r.CheckBreak() } - if yyb4154 { + if yyb4159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51872,22 +51913,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4157 := &x.ListMeta - yym4158 := z.DecBinary() - _ = yym4158 + yyv4162 := &x.ListMeta + yym4163 := z.DecBinary() + _ = yym4163 if false { - } else if z.HasExtensions() && z.DecExt(yyv4157) { + } else if z.HasExtensions() && z.DecExt(yyv4162) { } else { - z.DecFallback(yyv4157, false) + z.DecFallback(yyv4162, false) } } - yyj4154++ - if yyhl4154 { - yyb4154 = yyj4154 > l + yyj4159++ + if yyhl4159 { + yyb4159 = yyj4159 > l } else { - yyb4154 = r.CheckBreak() + yyb4159 = r.CheckBreak() } - if yyb4154 { + if yyb4159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51895,26 +51936,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4159 := &x.Items - yym4160 := z.DecBinary() - _ = yym4160 + yyv4164 := &x.Items + yym4165 := z.DecBinary() + _ = yym4165 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4159), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4164), d) } } for { - yyj4154++ - if yyhl4154 { - yyb4154 = yyj4154 > l + yyj4159++ + if yyhl4159 { + yyb4159 = yyj4159 > l } else { - yyb4154 = r.CheckBreak() + yyb4159 = r.CheckBreak() } - if yyb4154 { + if yyb4159 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4154-1, "") + z.DecStructFieldNotFound(yyj4159-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51923,8 +51964,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4161 := z.EncBinary() - _ = yym4161 + yym4166 := z.EncBinary() + _ = yym4166 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51936,8 +51977,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4162 := z.DecBinary() - _ = yym4162 + yym4167 := z.DecBinary() + _ = yym4167 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51949,8 +51990,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4163 := z.EncBinary() - _ = yym4163 + yym4168 := z.EncBinary() + _ = yym4168 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51962,8 +52003,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4164 := z.DecBinary() - _ = yym4164 + yym4169 := z.DecBinary() + _ = yym4169 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51978,32 +52019,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4165 := z.EncBinary() - _ = yym4165 + yym4170 := z.EncBinary() + _ = yym4170 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4166 := !z.EncBinary() - yy2arr4166 := z.EncBasicHandle().StructToArray - var yyq4166 [4]bool - _, _, _ = yysep4166, yyq4166, yy2arr4166 - const yyr4166 bool = false - yyq4166[2] = x.Message != "" - yyq4166[3] = x.Error != "" - var yynn4166 int - if yyr4166 || yy2arr4166 { + yysep4171 := !z.EncBinary() + yy2arr4171 := z.EncBasicHandle().StructToArray + var yyq4171 [4]bool + _, _, _ = yysep4171, yyq4171, yy2arr4171 + const yyr4171 bool = false + yyq4171[2] = x.Message != "" + yyq4171[3] = x.Error != "" + var yynn4171 int + if yyr4171 || yy2arr4171 { r.EncodeArrayStart(4) } else { - yynn4166 = 2 - for _, b := range yyq4166 { + yynn4171 = 2 + for _, b := range yyq4171 { if b { - yynn4166++ + yynn4171++ } } - r.EncodeMapStart(yynn4166) - yynn4166 = 0 + r.EncodeMapStart(yynn4171) + yynn4171 = 0 } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -52012,7 +52053,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -52021,11 +52062,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4166[2] { - yym4170 := z.EncBinary() - _ = yym4170 + if yyq4171[2] { + yym4175 := z.EncBinary() + _ = yym4175 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -52034,23 +52075,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4166[2] { + if yyq4171[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4171 := z.EncBinary() - _ = yym4171 + yym4176 := z.EncBinary() + _ = yym4176 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4166[3] { - yym4173 := z.EncBinary() - _ = yym4173 + if yyq4171[3] { + yym4178 := z.EncBinary() + _ = yym4178 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -52059,19 +52100,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4166[3] { + if yyq4171[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4174 := z.EncBinary() - _ = yym4174 + yym4179 := z.EncBinary() + _ = yym4179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52084,25 +52125,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4175 := z.DecBinary() - _ = yym4175 + yym4180 := z.DecBinary() + _ = yym4180 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4176 := r.ContainerType() - if yyct4176 == codecSelferValueTypeMap1234 { - yyl4176 := r.ReadMapStart() - if yyl4176 == 0 { + yyct4181 := r.ContainerType() + if yyct4181 == codecSelferValueTypeMap1234 { + yyl4181 := r.ReadMapStart() + if yyl4181 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4176, d) + x.codecDecodeSelfFromMap(yyl4181, d) } - } else if yyct4176 == codecSelferValueTypeArray1234 { - yyl4176 := r.ReadArrayStart() - if yyl4176 == 0 { + } else if yyct4181 == codecSelferValueTypeArray1234 { + yyl4181 := r.ReadArrayStart() + if yyl4181 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4176, d) + x.codecDecodeSelfFromArray(yyl4181, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52114,12 +52155,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4177Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4177Slc - var yyhl4177 bool = l >= 0 - for yyj4177 := 0; ; yyj4177++ { - if yyhl4177 { - if yyj4177 >= l { + var yys4182Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4182Slc + var yyhl4182 bool = l >= 0 + for yyj4182 := 0; ; yyj4182++ { + if yyhl4182 { + if yyj4182 >= l { break } } else { @@ -52128,10 +52169,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4177Slc = r.DecodeBytes(yys4177Slc, true, true) - yys4177 := string(yys4177Slc) + yys4182Slc = r.DecodeBytes(yys4182Slc, true, true) + yys4182 := string(yys4182Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4177 { + switch yys4182 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -52157,9 +52198,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4177) - } // end switch yys4177 - } // end for yyj4177 + z.DecStructFieldNotFound(-1, yys4182) + } // end switch yys4182 + } // end for yyj4182 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52167,16 +52208,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4182 int - var yyb4182 bool - var yyhl4182 bool = l >= 0 - yyj4182++ - if yyhl4182 { - yyb4182 = yyj4182 > l + var yyj4187 int + var yyb4187 bool + var yyhl4187 bool = l >= 0 + yyj4187++ + if yyhl4187 { + yyb4187 = yyj4187 > l } else { - yyb4182 = r.CheckBreak() + yyb4187 = r.CheckBreak() } - if yyb4182 { + if yyb4187 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52186,13 +52227,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4182++ - if yyhl4182 { - yyb4182 = yyj4182 > l + yyj4187++ + if yyhl4187 { + yyb4187 = yyj4187 > l } else { - yyb4182 = r.CheckBreak() + yyb4187 = r.CheckBreak() } - if yyb4182 { + if yyb4187 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52202,13 +52243,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4182++ - if yyhl4182 { - yyb4182 = yyj4182 > l + yyj4187++ + if yyhl4187 { + yyb4187 = yyj4187 > l } else { - yyb4182 = r.CheckBreak() + yyb4187 = r.CheckBreak() } - if yyb4182 { + if yyb4187 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52218,13 +52259,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4182++ - if yyhl4182 { - yyb4182 = yyj4182 > l + yyj4187++ + if yyhl4187 { + yyb4187 = yyj4187 > l } else { - yyb4182 = r.CheckBreak() + yyb4187 = r.CheckBreak() } - if yyb4182 { + if yyb4187 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52235,17 +52276,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4182++ - if yyhl4182 { - yyb4182 = yyj4182 > l + yyj4187++ + if yyhl4187 { + yyb4187 = yyj4187 > l } else { - yyb4182 = r.CheckBreak() + yyb4187 = r.CheckBreak() } - if yyb4182 { + if yyb4187 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4182-1, "") + z.DecStructFieldNotFound(yyj4187-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52257,38 +52298,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4187 := z.EncBinary() - _ = yym4187 + yym4192 := z.EncBinary() + _ = yym4192 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4188 := !z.EncBinary() - yy2arr4188 := z.EncBasicHandle().StructToArray - var yyq4188 [4]bool - _, _, _ = yysep4188, yyq4188, yy2arr4188 - const yyr4188 bool = false - yyq4188[0] = x.Kind != "" - yyq4188[1] = x.APIVersion != "" - yyq4188[2] = true - yyq4188[3] = len(x.Conditions) != 0 - var yynn4188 int - if yyr4188 || yy2arr4188 { + yysep4193 := !z.EncBinary() + yy2arr4193 := z.EncBasicHandle().StructToArray + var yyq4193 [4]bool + _, _, _ = yysep4193, yyq4193, yy2arr4193 + const yyr4193 bool = false + yyq4193[0] = x.Kind != "" + yyq4193[1] = x.APIVersion != "" + yyq4193[2] = true + yyq4193[3] = len(x.Conditions) != 0 + var yynn4193 int + if yyr4193 || yy2arr4193 { r.EncodeArrayStart(4) } else { - yynn4188 = 0 - for _, b := range yyq4188 { + yynn4193 = 0 + for _, b := range yyq4193 { if b { - yynn4188++ + yynn4193++ } } - r.EncodeMapStart(yynn4188) - yynn4188 = 0 + r.EncodeMapStart(yynn4193) + yynn4193 = 0 } - if yyr4188 || yy2arr4188 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4188[0] { - yym4190 := z.EncBinary() - _ = yym4190 + if yyq4193[0] { + yym4195 := z.EncBinary() + _ = yym4195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52297,23 +52338,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4188[0] { + if yyq4193[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4191 := z.EncBinary() - _ = yym4191 + yym4196 := z.EncBinary() + _ = yym4196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4188 || yy2arr4188 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4188[1] { - yym4193 := z.EncBinary() - _ = yym4193 + if yyq4193[1] { + yym4198 := z.EncBinary() + _ = yym4198 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52322,43 +52363,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4188[1] { + if yyq4193[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4194 := z.EncBinary() - _ = yym4194 + yym4199 := z.EncBinary() + _ = yym4199 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4188 || yy2arr4188 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4188[2] { - yy4196 := &x.ObjectMeta - yy4196.CodecEncodeSelf(e) + if yyq4193[2] { + yy4201 := &x.ObjectMeta + yy4201.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4188[2] { + if yyq4193[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4197 := &x.ObjectMeta - yy4197.CodecEncodeSelf(e) + yy4202 := &x.ObjectMeta + yy4202.CodecEncodeSelf(e) } } - if yyr4188 || yy2arr4188 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4188[3] { + if yyq4193[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4199 := z.EncBinary() - _ = yym4199 + yym4204 := z.EncBinary() + _ = yym4204 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52368,15 +52409,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4188[3] { + if yyq4193[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4200 := z.EncBinary() - _ = yym4200 + yym4205 := z.EncBinary() + _ = yym4205 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52384,7 +52425,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4188 || yy2arr4188 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52397,25 +52438,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4201 := z.DecBinary() - _ = yym4201 + yym4206 := z.DecBinary() + _ = yym4206 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4202 := r.ContainerType() - if yyct4202 == codecSelferValueTypeMap1234 { - yyl4202 := r.ReadMapStart() - if yyl4202 == 0 { + yyct4207 := r.ContainerType() + if yyct4207 == codecSelferValueTypeMap1234 { + yyl4207 := r.ReadMapStart() + if yyl4207 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4202, d) + x.codecDecodeSelfFromMap(yyl4207, d) } - } else if yyct4202 == codecSelferValueTypeArray1234 { - yyl4202 := r.ReadArrayStart() - if yyl4202 == 0 { + } else if yyct4207 == codecSelferValueTypeArray1234 { + yyl4207 := r.ReadArrayStart() + if yyl4207 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4202, d) + x.codecDecodeSelfFromArray(yyl4207, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52427,12 +52468,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4203Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4203Slc - var yyhl4203 bool = l >= 0 - for yyj4203 := 0; ; yyj4203++ { - if yyhl4203 { - if yyj4203 >= l { + var yys4208Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4208Slc + var yyhl4208 bool = l >= 0 + for yyj4208 := 0; ; yyj4208++ { + if yyhl4208 { + if yyj4208 >= l { break } } else { @@ -52441,10 +52482,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4203Slc = r.DecodeBytes(yys4203Slc, true, true) - yys4203 := string(yys4203Slc) + yys4208Slc = r.DecodeBytes(yys4208Slc, true, true) + yys4208 := string(yys4208Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4203 { + switch yys4208 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52461,25 +52502,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4206 := &x.ObjectMeta - yyv4206.CodecDecodeSelf(d) + yyv4211 := &x.ObjectMeta + yyv4211.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4207 := &x.Conditions - yym4208 := z.DecBinary() - _ = yym4208 + yyv4212 := &x.Conditions + yym4213 := z.DecBinary() + _ = yym4213 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4207), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4212), d) } } default: - z.DecStructFieldNotFound(-1, yys4203) - } // end switch yys4203 - } // end for yyj4203 + z.DecStructFieldNotFound(-1, yys4208) + } // end switch yys4208 + } // end for yyj4208 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52487,16 +52528,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4209 int - var yyb4209 bool - var yyhl4209 bool = l >= 0 - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + var yyj4214 int + var yyb4214 bool + var yyhl4214 bool = l >= 0 + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52506,13 +52547,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52522,13 +52563,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52536,16 +52577,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4212 := &x.ObjectMeta - yyv4212.CodecDecodeSelf(d) + yyv4217 := &x.ObjectMeta + yyv4217.CodecDecodeSelf(d) } - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52553,26 +52594,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4213 := &x.Conditions - yym4214 := z.DecBinary() - _ = yym4214 + yyv4218 := &x.Conditions + yym4219 := z.DecBinary() + _ = yym4219 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4213), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4218), d) } } for { - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4209-1, "") + z.DecStructFieldNotFound(yyj4214-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52584,37 +52625,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4215 := z.EncBinary() - _ = yym4215 + yym4220 := z.EncBinary() + _ = yym4220 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4216 := !z.EncBinary() - yy2arr4216 := z.EncBasicHandle().StructToArray - var yyq4216 [4]bool - _, _, _ = yysep4216, yyq4216, yy2arr4216 - const yyr4216 bool = false - yyq4216[0] = x.Kind != "" - yyq4216[1] = x.APIVersion != "" - yyq4216[2] = true - var yynn4216 int - if yyr4216 || yy2arr4216 { + yysep4221 := !z.EncBinary() + yy2arr4221 := z.EncBasicHandle().StructToArray + var yyq4221 [4]bool + _, _, _ = yysep4221, yyq4221, yy2arr4221 + const yyr4221 bool = false + yyq4221[0] = x.Kind != "" + yyq4221[1] = x.APIVersion != "" + yyq4221[2] = true + var yynn4221 int + if yyr4221 || yy2arr4221 { r.EncodeArrayStart(4) } else { - yynn4216 = 1 - for _, b := range yyq4216 { + yynn4221 = 1 + for _, b := range yyq4221 { if b { - yynn4216++ + yynn4221++ } } - r.EncodeMapStart(yynn4216) - yynn4216 = 0 + r.EncodeMapStart(yynn4221) + yynn4221 = 0 } - if yyr4216 || yy2arr4216 { + if yyr4221 || yy2arr4221 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4216[0] { - yym4218 := z.EncBinary() - _ = yym4218 + if yyq4221[0] { + yym4223 := z.EncBinary() + _ = yym4223 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52623,23 +52664,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4216[0] { + if yyq4221[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4219 := z.EncBinary() - _ = yym4219 + yym4224 := z.EncBinary() + _ = yym4224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4216 || yy2arr4216 { + if yyr4221 || yy2arr4221 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4216[1] { - yym4221 := z.EncBinary() - _ = yym4221 + if yyq4221[1] { + yym4226 := z.EncBinary() + _ = yym4226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52648,54 +52689,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4216[1] { + if yyq4221[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4222 := z.EncBinary() - _ = yym4222 + yym4227 := z.EncBinary() + _ = yym4227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4216 || yy2arr4216 { + if yyr4221 || yy2arr4221 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4216[2] { - yy4224 := &x.ListMeta - yym4225 := z.EncBinary() - _ = yym4225 + if yyq4221[2] { + yy4229 := &x.ListMeta + yym4230 := z.EncBinary() + _ = yym4230 if false { - } else if z.HasExtensions() && z.EncExt(yy4224) { + } else if z.HasExtensions() && z.EncExt(yy4229) { } else { - z.EncFallback(yy4224) + z.EncFallback(yy4229) } } else { r.EncodeNil() } } else { - if yyq4216[2] { + if yyq4221[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4226 := &x.ListMeta - yym4227 := z.EncBinary() - _ = yym4227 + yy4231 := &x.ListMeta + yym4232 := z.EncBinary() + _ = yym4232 if false { - } else if z.HasExtensions() && z.EncExt(yy4226) { + } else if z.HasExtensions() && z.EncExt(yy4231) { } else { - z.EncFallback(yy4226) + z.EncFallback(yy4231) } } } - if yyr4216 || yy2arr4216 { + if yyr4221 || yy2arr4221 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4229 := z.EncBinary() - _ = yym4229 + yym4234 := z.EncBinary() + _ = yym4234 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -52708,15 +52749,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4230 := z.EncBinary() - _ = yym4230 + yym4235 := z.EncBinary() + _ = yym4235 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4216 || yy2arr4216 { + if yyr4221 || yy2arr4221 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52729,25 +52770,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4231 := z.DecBinary() - _ = yym4231 + yym4236 := z.DecBinary() + _ = yym4236 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4232 := r.ContainerType() - if yyct4232 == codecSelferValueTypeMap1234 { - yyl4232 := r.ReadMapStart() - if yyl4232 == 0 { + yyct4237 := r.ContainerType() + if yyct4237 == codecSelferValueTypeMap1234 { + yyl4237 := r.ReadMapStart() + if yyl4237 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4232, d) + x.codecDecodeSelfFromMap(yyl4237, d) } - } else if yyct4232 == codecSelferValueTypeArray1234 { - yyl4232 := r.ReadArrayStart() - if yyl4232 == 0 { + } else if yyct4237 == codecSelferValueTypeArray1234 { + yyl4237 := r.ReadArrayStart() + if yyl4237 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4232, d) + x.codecDecodeSelfFromArray(yyl4237, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52759,12 +52800,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4233Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4233Slc - var yyhl4233 bool = l >= 0 - for yyj4233 := 0; ; yyj4233++ { - if yyhl4233 { - if yyj4233 >= l { + var yys4238Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4238Slc + var yyhl4238 bool = l >= 0 + for yyj4238 := 0; ; yyj4238++ { + if yyhl4238 { + if yyj4238 >= l { break } } else { @@ -52773,10 +52814,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4233Slc = r.DecodeBytes(yys4233Slc, true, true) - yys4233 := string(yys4233Slc) + yys4238Slc = r.DecodeBytes(yys4238Slc, true, true) + yys4238 := string(yys4238Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4233 { + switch yys4238 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52793,31 +52834,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4236 := &x.ListMeta - yym4237 := z.DecBinary() - _ = yym4237 + yyv4241 := &x.ListMeta + yym4242 := z.DecBinary() + _ = yym4242 if false { - } else if z.HasExtensions() && z.DecExt(yyv4236) { + } else if z.HasExtensions() && z.DecExt(yyv4241) { } else { - z.DecFallback(yyv4236, false) + z.DecFallback(yyv4241, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4238 := &x.Items - yym4239 := z.DecBinary() - _ = yym4239 + yyv4243 := &x.Items + yym4244 := z.DecBinary() + _ = yym4244 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4238), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4243), d) } } default: - z.DecStructFieldNotFound(-1, yys4233) - } // end switch yys4233 - } // end for yyj4233 + z.DecStructFieldNotFound(-1, yys4238) + } // end switch yys4238 + } // end for yyj4238 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52825,16 +52866,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4240 int - var yyb4240 bool - var yyhl4240 bool = l >= 0 - yyj4240++ - if yyhl4240 { - yyb4240 = yyj4240 > l + var yyj4245 int + var yyb4245 bool + var yyhl4245 bool = l >= 0 + yyj4245++ + if yyhl4245 { + yyb4245 = yyj4245 > l } else { - yyb4240 = r.CheckBreak() + yyb4245 = r.CheckBreak() } - if yyb4240 { + if yyb4245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52844,13 +52885,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4240++ - if yyhl4240 { - yyb4240 = yyj4240 > l + yyj4245++ + if yyhl4245 { + yyb4245 = yyj4245 > l } else { - yyb4240 = r.CheckBreak() + yyb4245 = r.CheckBreak() } - if yyb4240 { + if yyb4245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52860,13 +52901,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4240++ - if yyhl4240 { - yyb4240 = yyj4240 > l + yyj4245++ + if yyhl4245 { + yyb4245 = yyj4245 > l } else { - yyb4240 = r.CheckBreak() + yyb4245 = r.CheckBreak() } - if yyb4240 { + if yyb4245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52874,22 +52915,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4243 := &x.ListMeta - yym4244 := z.DecBinary() - _ = yym4244 + yyv4248 := &x.ListMeta + yym4249 := z.DecBinary() + _ = yym4249 if false { - } else if z.HasExtensions() && z.DecExt(yyv4243) { + } else if z.HasExtensions() && z.DecExt(yyv4248) { } else { - z.DecFallback(yyv4243, false) + z.DecFallback(yyv4248, false) } } - yyj4240++ - if yyhl4240 { - yyb4240 = yyj4240 > l + yyj4245++ + if yyhl4245 { + yyb4245 = yyj4245 > l } else { - yyb4240 = r.CheckBreak() + yyb4245 = r.CheckBreak() } - if yyb4240 { + if yyb4245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52897,26 +52938,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4245 := &x.Items - yym4246 := z.DecBinary() - _ = yym4246 + yyv4250 := &x.Items + yym4251 := z.DecBinary() + _ = yym4251 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4245), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4250), d) } } for { - yyj4240++ - if yyhl4240 { - yyb4240 = yyj4240 > l + yyj4245++ + if yyhl4245 { + yyb4245 = yyj4245 > l } else { - yyb4240 = r.CheckBreak() + yyb4245 = r.CheckBreak() } - if yyb4240 { + if yyb4245 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4240-1, "") + z.DecStructFieldNotFound(yyj4245-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52928,38 +52969,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4247 := z.EncBinary() - _ = yym4247 + yym4252 := z.EncBinary() + _ = yym4252 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4248 := !z.EncBinary() - yy2arr4248 := z.EncBasicHandle().StructToArray - var yyq4248 [6]bool - _, _, _ = yysep4248, yyq4248, yy2arr4248 - const yyr4248 bool = false - yyq4248[0] = x.Capabilities != nil - yyq4248[1] = x.Privileged != nil - yyq4248[2] = x.SELinuxOptions != nil - yyq4248[3] = x.RunAsUser != nil - yyq4248[4] = x.RunAsNonRoot != nil - yyq4248[5] = x.ReadOnlyRootFilesystem != nil - var yynn4248 int - if yyr4248 || yy2arr4248 { + yysep4253 := !z.EncBinary() + yy2arr4253 := z.EncBasicHandle().StructToArray + var yyq4253 [6]bool + _, _, _ = yysep4253, yyq4253, yy2arr4253 + const yyr4253 bool = false + yyq4253[0] = x.Capabilities != nil + yyq4253[1] = x.Privileged != nil + yyq4253[2] = x.SELinuxOptions != nil + yyq4253[3] = x.RunAsUser != nil + yyq4253[4] = x.RunAsNonRoot != nil + yyq4253[5] = x.ReadOnlyRootFilesystem != nil + var yynn4253 int + if yyr4253 || yy2arr4253 { r.EncodeArrayStart(6) } else { - yynn4248 = 0 - for _, b := range yyq4248 { + yynn4253 = 0 + for _, b := range yyq4253 { if b { - yynn4248++ + yynn4253++ } } - r.EncodeMapStart(yynn4248) - yynn4248 = 0 + r.EncodeMapStart(yynn4253) + yynn4253 = 0 } - if yyr4248 || yy2arr4248 { + if yyr4253 || yy2arr4253 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4248[0] { + if yyq4253[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -52969,7 +53010,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4248[0] { + if yyq4253[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52980,44 +53021,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4248 || yy2arr4248 { + if yyr4253 || yy2arr4253 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4248[1] { + if yyq4253[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4251 := *x.Privileged - yym4252 := z.EncBinary() - _ = yym4252 + yy4256 := *x.Privileged + yym4257 := z.EncBinary() + _ = yym4257 if false { } else { - r.EncodeBool(bool(yy4251)) + r.EncodeBool(bool(yy4256)) } } } else { r.EncodeNil() } } else { - if yyq4248[1] { + if yyq4253[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4253 := *x.Privileged - yym4254 := z.EncBinary() - _ = yym4254 + yy4258 := *x.Privileged + yym4259 := z.EncBinary() + _ = yym4259 if false { } else { - r.EncodeBool(bool(yy4253)) + r.EncodeBool(bool(yy4258)) } } } } - if yyr4248 || yy2arr4248 { + if yyr4253 || yy2arr4253 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4248[2] { + if yyq4253[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -53027,7 +53068,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4248[2] { + if yyq4253[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53038,112 +53079,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4248 || yy2arr4248 { + if yyr4253 || yy2arr4253 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4248[3] { + if yyq4253[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4257 := *x.RunAsUser - yym4258 := z.EncBinary() - _ = yym4258 + yy4262 := *x.RunAsUser + yym4263 := z.EncBinary() + _ = yym4263 if false { } else { - r.EncodeInt(int64(yy4257)) + r.EncodeInt(int64(yy4262)) } } } else { r.EncodeNil() } } else { - if yyq4248[3] { + if yyq4253[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4259 := *x.RunAsUser - yym4260 := z.EncBinary() - _ = yym4260 + yy4264 := *x.RunAsUser + yym4265 := z.EncBinary() + _ = yym4265 if false { } else { - r.EncodeInt(int64(yy4259)) + r.EncodeInt(int64(yy4264)) } } } } - if yyr4248 || yy2arr4248 { + if yyr4253 || yy2arr4253 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4248[4] { + if yyq4253[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4262 := *x.RunAsNonRoot - yym4263 := z.EncBinary() - _ = yym4263 + yy4267 := *x.RunAsNonRoot + yym4268 := z.EncBinary() + _ = yym4268 if false { } else { - r.EncodeBool(bool(yy4262)) + r.EncodeBool(bool(yy4267)) } } } else { r.EncodeNil() } } else { - if yyq4248[4] { + if yyq4253[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4264 := *x.RunAsNonRoot - yym4265 := z.EncBinary() - _ = yym4265 + yy4269 := *x.RunAsNonRoot + yym4270 := z.EncBinary() + _ = yym4270 if false { } else { - r.EncodeBool(bool(yy4264)) + r.EncodeBool(bool(yy4269)) } } } } - if yyr4248 || yy2arr4248 { + if yyr4253 || yy2arr4253 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4248[5] { + if yyq4253[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4267 := *x.ReadOnlyRootFilesystem - yym4268 := z.EncBinary() - _ = yym4268 + yy4272 := *x.ReadOnlyRootFilesystem + yym4273 := z.EncBinary() + _ = yym4273 if false { } else { - r.EncodeBool(bool(yy4267)) + r.EncodeBool(bool(yy4272)) } } } else { r.EncodeNil() } } else { - if yyq4248[5] { + if yyq4253[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4269 := *x.ReadOnlyRootFilesystem - yym4270 := z.EncBinary() - _ = yym4270 + yy4274 := *x.ReadOnlyRootFilesystem + yym4275 := z.EncBinary() + _ = yym4275 if false { } else { - r.EncodeBool(bool(yy4269)) + r.EncodeBool(bool(yy4274)) } } } } - if yyr4248 || yy2arr4248 { + if yyr4253 || yy2arr4253 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53156,25 +53197,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4271 := z.DecBinary() - _ = yym4271 + yym4276 := z.DecBinary() + _ = yym4276 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4272 := r.ContainerType() - if yyct4272 == codecSelferValueTypeMap1234 { - yyl4272 := r.ReadMapStart() - if yyl4272 == 0 { + yyct4277 := r.ContainerType() + if yyct4277 == codecSelferValueTypeMap1234 { + yyl4277 := r.ReadMapStart() + if yyl4277 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4272, d) + x.codecDecodeSelfFromMap(yyl4277, d) } - } else if yyct4272 == codecSelferValueTypeArray1234 { - yyl4272 := r.ReadArrayStart() - if yyl4272 == 0 { + } else if yyct4277 == codecSelferValueTypeArray1234 { + yyl4277 := r.ReadArrayStart() + if yyl4277 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4272, d) + x.codecDecodeSelfFromArray(yyl4277, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53186,12 +53227,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4273Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4273Slc - var yyhl4273 bool = l >= 0 - for yyj4273 := 0; ; yyj4273++ { - if yyhl4273 { - if yyj4273 >= l { + var yys4278Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4278Slc + var yyhl4278 bool = l >= 0 + for yyj4278 := 0; ; yyj4278++ { + if yyhl4278 { + if yyj4278 >= l { break } } else { @@ -53200,10 +53241,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4273Slc = r.DecodeBytes(yys4273Slc, true, true) - yys4273 := string(yys4273Slc) + yys4278Slc = r.DecodeBytes(yys4278Slc, true, true) + yys4278 := string(yys4278Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4273 { + switch yys4278 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -53224,8 +53265,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4276 := z.DecBinary() - _ = yym4276 + yym4281 := z.DecBinary() + _ = yym4281 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -53251,8 +53292,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4279 := z.DecBinary() - _ = yym4279 + yym4284 := z.DecBinary() + _ = yym4284 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -53267,8 +53308,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4281 := z.DecBinary() - _ = yym4281 + yym4286 := z.DecBinary() + _ = yym4286 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -53283,17 +53324,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4283 := z.DecBinary() - _ = yym4283 + yym4288 := z.DecBinary() + _ = yym4288 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4273) - } // end switch yys4273 - } // end for yyj4273 + z.DecStructFieldNotFound(-1, yys4278) + } // end switch yys4278 + } // end for yyj4278 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53301,16 +53342,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4284 int - var yyb4284 bool - var yyhl4284 bool = l >= 0 - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + var yyj4289 int + var yyb4289 bool + var yyhl4289 bool = l >= 0 + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4284 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4284 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53325,13 +53366,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4284 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4284 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53344,20 +53385,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4287 := z.DecBinary() - _ = yym4287 + yym4292 := z.DecBinary() + _ = yym4292 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4284 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4284 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53372,13 +53413,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4284 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4284 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53391,20 +53432,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4290 := z.DecBinary() - _ = yym4290 + yym4295 := z.DecBinary() + _ = yym4295 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4284 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4284 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53417,20 +53458,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4292 := z.DecBinary() - _ = yym4292 + yym4297 := z.DecBinary() + _ = yym4297 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4284 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4284 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53443,25 +53484,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4294 := z.DecBinary() - _ = yym4294 + yym4299 := z.DecBinary() + _ = yym4299 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4284 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4284 { + if yyb4289 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4284-1, "") + z.DecStructFieldNotFound(yyj4289-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53473,38 +53514,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4295 := z.EncBinary() - _ = yym4295 + yym4300 := z.EncBinary() + _ = yym4300 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4296 := !z.EncBinary() - yy2arr4296 := z.EncBasicHandle().StructToArray - var yyq4296 [4]bool - _, _, _ = yysep4296, yyq4296, yy2arr4296 - const yyr4296 bool = false - yyq4296[0] = x.User != "" - yyq4296[1] = x.Role != "" - yyq4296[2] = x.Type != "" - yyq4296[3] = x.Level != "" - var yynn4296 int - if yyr4296 || yy2arr4296 { + yysep4301 := !z.EncBinary() + yy2arr4301 := z.EncBasicHandle().StructToArray + var yyq4301 [4]bool + _, _, _ = yysep4301, yyq4301, yy2arr4301 + const yyr4301 bool = false + yyq4301[0] = x.User != "" + yyq4301[1] = x.Role != "" + yyq4301[2] = x.Type != "" + yyq4301[3] = x.Level != "" + var yynn4301 int + if yyr4301 || yy2arr4301 { r.EncodeArrayStart(4) } else { - yynn4296 = 0 - for _, b := range yyq4296 { + yynn4301 = 0 + for _, b := range yyq4301 { if b { - yynn4296++ + yynn4301++ } } - r.EncodeMapStart(yynn4296) - yynn4296 = 0 + r.EncodeMapStart(yynn4301) + yynn4301 = 0 } - if yyr4296 || yy2arr4296 { + if yyr4301 || yy2arr4301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4296[0] { - yym4298 := z.EncBinary() - _ = yym4298 + if yyq4301[0] { + yym4303 := z.EncBinary() + _ = yym4303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -53513,23 +53554,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4296[0] { + if yyq4301[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4299 := z.EncBinary() - _ = yym4299 + yym4304 := z.EncBinary() + _ = yym4304 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4296 || yy2arr4296 { + if yyr4301 || yy2arr4301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4296[1] { - yym4301 := z.EncBinary() - _ = yym4301 + if yyq4301[1] { + yym4306 := z.EncBinary() + _ = yym4306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -53538,23 +53579,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4296[1] { + if yyq4301[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4302 := z.EncBinary() - _ = yym4302 + yym4307 := z.EncBinary() + _ = yym4307 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4296 || yy2arr4296 { + if yyr4301 || yy2arr4301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4296[2] { - yym4304 := z.EncBinary() - _ = yym4304 + if yyq4301[2] { + yym4309 := z.EncBinary() + _ = yym4309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -53563,23 +53604,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4296[2] { + if yyq4301[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4305 := z.EncBinary() - _ = yym4305 + yym4310 := z.EncBinary() + _ = yym4310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4296 || yy2arr4296 { + if yyr4301 || yy2arr4301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4296[3] { - yym4307 := z.EncBinary() - _ = yym4307 + if yyq4301[3] { + yym4312 := z.EncBinary() + _ = yym4312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -53588,19 +53629,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4296[3] { + if yyq4301[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4308 := z.EncBinary() - _ = yym4308 + yym4313 := z.EncBinary() + _ = yym4313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4296 || yy2arr4296 { + if yyr4301 || yy2arr4301 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53613,25 +53654,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4309 := z.DecBinary() - _ = yym4309 + yym4314 := z.DecBinary() + _ = yym4314 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4310 := r.ContainerType() - if yyct4310 == codecSelferValueTypeMap1234 { - yyl4310 := r.ReadMapStart() - if yyl4310 == 0 { + yyct4315 := r.ContainerType() + if yyct4315 == codecSelferValueTypeMap1234 { + yyl4315 := r.ReadMapStart() + if yyl4315 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4310, d) + x.codecDecodeSelfFromMap(yyl4315, d) } - } else if yyct4310 == codecSelferValueTypeArray1234 { - yyl4310 := r.ReadArrayStart() - if yyl4310 == 0 { + } else if yyct4315 == codecSelferValueTypeArray1234 { + yyl4315 := r.ReadArrayStart() + if yyl4315 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4310, d) + x.codecDecodeSelfFromArray(yyl4315, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53643,12 +53684,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4311Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4311Slc - var yyhl4311 bool = l >= 0 - for yyj4311 := 0; ; yyj4311++ { - if yyhl4311 { - if yyj4311 >= l { + var yys4316Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4316Slc + var yyhl4316 bool = l >= 0 + for yyj4316 := 0; ; yyj4316++ { + if yyhl4316 { + if yyj4316 >= l { break } } else { @@ -53657,10 +53698,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4311Slc = r.DecodeBytes(yys4311Slc, true, true) - yys4311 := string(yys4311Slc) + yys4316Slc = r.DecodeBytes(yys4316Slc, true, true) + yys4316 := string(yys4316Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4311 { + switch yys4316 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -53686,9 +53727,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4311) - } // end switch yys4311 - } // end for yyj4311 + z.DecStructFieldNotFound(-1, yys4316) + } // end switch yys4316 + } // end for yyj4316 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53696,16 +53737,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4316 int - var yyb4316 bool - var yyhl4316 bool = l >= 0 - yyj4316++ - if yyhl4316 { - yyb4316 = yyj4316 > l + var yyj4321 int + var yyb4321 bool + var yyhl4321 bool = l >= 0 + yyj4321++ + if yyhl4321 { + yyb4321 = yyj4321 > l } else { - yyb4316 = r.CheckBreak() + yyb4321 = r.CheckBreak() } - if yyb4316 { + if yyb4321 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53715,13 +53756,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4316++ - if yyhl4316 { - yyb4316 = yyj4316 > l + yyj4321++ + if yyhl4321 { + yyb4321 = yyj4321 > l } else { - yyb4316 = r.CheckBreak() + yyb4321 = r.CheckBreak() } - if yyb4316 { + if yyb4321 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53731,13 +53772,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4316++ - if yyhl4316 { - yyb4316 = yyj4316 > l + yyj4321++ + if yyhl4321 { + yyb4321 = yyj4321 > l } else { - yyb4316 = r.CheckBreak() + yyb4321 = r.CheckBreak() } - if yyb4316 { + if yyb4321 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53747,13 +53788,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4316++ - if yyhl4316 { - yyb4316 = yyj4316 > l + yyj4321++ + if yyhl4321 { + yyb4321 = yyj4321 > l } else { - yyb4316 = r.CheckBreak() + yyb4321 = r.CheckBreak() } - if yyb4316 { + if yyb4321 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53764,17 +53805,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4316++ - if yyhl4316 { - yyb4316 = yyj4316 > l + yyj4321++ + if yyhl4321 { + yyb4321 = yyj4321 > l } else { - yyb4316 = r.CheckBreak() + yyb4321 = r.CheckBreak() } - if yyb4316 { + if yyb4321 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4316-1, "") + z.DecStructFieldNotFound(yyj4321-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53786,37 +53827,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4321 := z.EncBinary() - _ = yym4321 + yym4326 := z.EncBinary() + _ = yym4326 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4322 := !z.EncBinary() - yy2arr4322 := z.EncBasicHandle().StructToArray - var yyq4322 [5]bool - _, _, _ = yysep4322, yyq4322, yy2arr4322 - const yyr4322 bool = false - yyq4322[0] = x.Kind != "" - yyq4322[1] = x.APIVersion != "" - yyq4322[2] = true - var yynn4322 int - if yyr4322 || yy2arr4322 { + yysep4327 := !z.EncBinary() + yy2arr4327 := z.EncBasicHandle().StructToArray + var yyq4327 [5]bool + _, _, _ = yysep4327, yyq4327, yy2arr4327 + const yyr4327 bool = false + yyq4327[0] = x.Kind != "" + yyq4327[1] = x.APIVersion != "" + yyq4327[2] = true + var yynn4327 int + if yyr4327 || yy2arr4327 { r.EncodeArrayStart(5) } else { - yynn4322 = 2 - for _, b := range yyq4322 { + yynn4327 = 2 + for _, b := range yyq4327 { if b { - yynn4322++ + yynn4327++ } } - r.EncodeMapStart(yynn4322) - yynn4322 = 0 + r.EncodeMapStart(yynn4327) + yynn4327 = 0 } - if yyr4322 || yy2arr4322 { + if yyr4327 || yy2arr4327 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4322[0] { - yym4324 := z.EncBinary() - _ = yym4324 + if yyq4327[0] { + yym4329 := z.EncBinary() + _ = yym4329 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53825,23 +53866,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4322[0] { + if yyq4327[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4325 := z.EncBinary() - _ = yym4325 + yym4330 := z.EncBinary() + _ = yym4330 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4322 || yy2arr4322 { + if yyr4327 || yy2arr4327 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4322[1] { - yym4327 := z.EncBinary() - _ = yym4327 + if yyq4327[1] { + yym4332 := z.EncBinary() + _ = yym4332 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53850,39 +53891,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4322[1] { + if yyq4327[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4328 := z.EncBinary() - _ = yym4328 + yym4333 := z.EncBinary() + _ = yym4333 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4322 || yy2arr4322 { + if yyr4327 || yy2arr4327 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4322[2] { - yy4330 := &x.ObjectMeta - yy4330.CodecEncodeSelf(e) + if yyq4327[2] { + yy4335 := &x.ObjectMeta + yy4335.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4322[2] { + if yyq4327[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4331 := &x.ObjectMeta - yy4331.CodecEncodeSelf(e) + yy4336 := &x.ObjectMeta + yy4336.CodecEncodeSelf(e) } } - if yyr4322 || yy2arr4322 { + if yyr4327 || yy2arr4327 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4333 := z.EncBinary() - _ = yym4333 + yym4338 := z.EncBinary() + _ = yym4338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -53891,20 +53932,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4334 := z.EncBinary() - _ = yym4334 + yym4339 := z.EncBinary() + _ = yym4339 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4322 || yy2arr4322 { + if yyr4327 || yy2arr4327 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4336 := z.EncBinary() - _ = yym4336 + yym4341 := z.EncBinary() + _ = yym4341 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -53917,15 +53958,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4337 := z.EncBinary() - _ = yym4337 + yym4342 := z.EncBinary() + _ = yym4342 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4322 || yy2arr4322 { + if yyr4327 || yy2arr4327 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53938,25 +53979,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4338 := z.DecBinary() - _ = yym4338 + yym4343 := z.DecBinary() + _ = yym4343 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4339 := r.ContainerType() - if yyct4339 == codecSelferValueTypeMap1234 { - yyl4339 := r.ReadMapStart() - if yyl4339 == 0 { + yyct4344 := r.ContainerType() + if yyct4344 == codecSelferValueTypeMap1234 { + yyl4344 := r.ReadMapStart() + if yyl4344 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4339, d) + x.codecDecodeSelfFromMap(yyl4344, d) } - } else if yyct4339 == codecSelferValueTypeArray1234 { - yyl4339 := r.ReadArrayStart() - if yyl4339 == 0 { + } else if yyct4344 == codecSelferValueTypeArray1234 { + yyl4344 := r.ReadArrayStart() + if yyl4344 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4339, d) + x.codecDecodeSelfFromArray(yyl4344, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53968,12 +54009,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4340Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4340Slc - var yyhl4340 bool = l >= 0 - for yyj4340 := 0; ; yyj4340++ { - if yyhl4340 { - if yyj4340 >= l { + var yys4345Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4345Slc + var yyhl4345 bool = l >= 0 + for yyj4345 := 0; ; yyj4345++ { + if yyhl4345 { + if yyj4345 >= l { break } } else { @@ -53982,10 +54023,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4340Slc = r.DecodeBytes(yys4340Slc, true, true) - yys4340 := string(yys4340Slc) + yys4345Slc = r.DecodeBytes(yys4345Slc, true, true) + yys4345 := string(yys4345Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4340 { + switch yys4345 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54002,8 +54043,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4343 := &x.ObjectMeta - yyv4343.CodecDecodeSelf(d) + yyv4348 := &x.ObjectMeta + yyv4348.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -54015,18 +54056,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4345 := &x.Data - yym4346 := z.DecBinary() - _ = yym4346 + yyv4350 := &x.Data + yym4351 := z.DecBinary() + _ = yym4351 if false { } else { - *yyv4345 = r.DecodeBytes(*(*[]byte)(yyv4345), false, false) + *yyv4350 = r.DecodeBytes(*(*[]byte)(yyv4350), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4340) - } // end switch yys4340 - } // end for yyj4340 + z.DecStructFieldNotFound(-1, yys4345) + } // end switch yys4345 + } // end for yyj4345 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54034,16 +54075,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4347 int - var yyb4347 bool - var yyhl4347 bool = l >= 0 - yyj4347++ - if yyhl4347 { - yyb4347 = yyj4347 > l + var yyj4352 int + var yyb4352 bool + var yyhl4352 bool = l >= 0 + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4347 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4347 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54053,13 +54094,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4347++ - if yyhl4347 { - yyb4347 = yyj4347 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4347 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4347 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54069,13 +54110,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4347++ - if yyhl4347 { - yyb4347 = yyj4347 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4347 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4347 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54083,16 +54124,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4350 := &x.ObjectMeta - yyv4350.CodecDecodeSelf(d) + yyv4355 := &x.ObjectMeta + yyv4355.CodecDecodeSelf(d) } - yyj4347++ - if yyhl4347 { - yyb4347 = yyj4347 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4347 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4347 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54102,13 +54143,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4347++ - if yyhl4347 { - yyb4347 = yyj4347 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4347 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4347 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54116,26 +54157,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4352 := &x.Data - yym4353 := z.DecBinary() - _ = yym4353 + yyv4357 := &x.Data + yym4358 := z.DecBinary() + _ = yym4358 if false { } else { - *yyv4352 = r.DecodeBytes(*(*[]byte)(yyv4352), false, false) + *yyv4357 = r.DecodeBytes(*(*[]byte)(yyv4357), false, false) } } for { - yyj4347++ - if yyhl4347 { - yyb4347 = yyj4347 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4347 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4347 { + if yyb4352 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4347-1, "") + z.DecStructFieldNotFound(yyj4352-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54145,10 +54186,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4354 := range v { + for _, yyv4359 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4355 := &yyv4354 - yy4355.CodecEncodeSelf(e) + yy4360 := &yyv4359 + yy4360.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54158,83 +54199,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4356 := *v - yyh4356, yyl4356 := z.DecSliceHelperStart() - var yyc4356 bool - if yyl4356 == 0 { - if yyv4356 == nil { - yyv4356 = []OwnerReference{} - yyc4356 = true - } else if len(yyv4356) != 0 { - yyv4356 = yyv4356[:0] - yyc4356 = true + yyv4361 := *v + yyh4361, yyl4361 := z.DecSliceHelperStart() + var yyc4361 bool + if yyl4361 == 0 { + if yyv4361 == nil { + yyv4361 = []OwnerReference{} + yyc4361 = true + } else if len(yyv4361) != 0 { + yyv4361 = yyv4361[:0] + yyc4361 = true } - } else if yyl4356 > 0 { - var yyrr4356, yyrl4356 int - var yyrt4356 bool - if yyl4356 > cap(yyv4356) { + } else if yyl4361 > 0 { + var yyrr4361, yyrl4361 int + var yyrt4361 bool + if yyl4361 > cap(yyv4361) { - yyrg4356 := len(yyv4356) > 0 - yyv24356 := yyv4356 - yyrl4356, yyrt4356 = z.DecInferLen(yyl4356, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4356 { - if yyrl4356 <= cap(yyv4356) { - yyv4356 = yyv4356[:yyrl4356] + yyrg4361 := len(yyv4361) > 0 + yyv24361 := yyv4361 + yyrl4361, yyrt4361 = z.DecInferLen(yyl4361, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4361 { + if yyrl4361 <= cap(yyv4361) { + yyv4361 = yyv4361[:yyrl4361] } else { - yyv4356 = make([]OwnerReference, yyrl4356) + yyv4361 = make([]OwnerReference, yyrl4361) } } else { - yyv4356 = make([]OwnerReference, yyrl4356) + yyv4361 = make([]OwnerReference, yyrl4361) } - yyc4356 = true - yyrr4356 = len(yyv4356) - if yyrg4356 { - copy(yyv4356, yyv24356) + yyc4361 = true + yyrr4361 = len(yyv4361) + if yyrg4361 { + copy(yyv4361, yyv24361) } - } else if yyl4356 != len(yyv4356) { - yyv4356 = yyv4356[:yyl4356] - yyc4356 = true + } else if yyl4361 != len(yyv4361) { + yyv4361 = yyv4361[:yyl4361] + yyc4361 = true } - yyj4356 := 0 - for ; yyj4356 < yyrr4356; yyj4356++ { - yyh4356.ElemContainerState(yyj4356) + yyj4361 := 0 + for ; yyj4361 < yyrr4361; yyj4361++ { + yyh4361.ElemContainerState(yyj4361) if r.TryDecodeAsNil() { - yyv4356[yyj4356] = OwnerReference{} + yyv4361[yyj4361] = OwnerReference{} } else { - yyv4357 := &yyv4356[yyj4356] - yyv4357.CodecDecodeSelf(d) + yyv4362 := &yyv4361[yyj4361] + yyv4362.CodecDecodeSelf(d) } } - if yyrt4356 { - for ; yyj4356 < yyl4356; yyj4356++ { - yyv4356 = append(yyv4356, OwnerReference{}) - yyh4356.ElemContainerState(yyj4356) - if r.TryDecodeAsNil() { - yyv4356[yyj4356] = OwnerReference{} + if yyrt4361 { + for ; yyj4361 < yyl4361; yyj4361++ { + yyv4361 = append(yyv4361, OwnerReference{}) + yyh4361.ElemContainerState(yyj4361) + if r.TryDecodeAsNil() { + yyv4361[yyj4361] = OwnerReference{} } else { - yyv4358 := &yyv4356[yyj4356] - yyv4358.CodecDecodeSelf(d) + yyv4363 := &yyv4361[yyj4361] + yyv4363.CodecDecodeSelf(d) } } } } else { - yyj4356 := 0 - for ; !r.CheckBreak(); yyj4356++ { + yyj4361 := 0 + for ; !r.CheckBreak(); yyj4361++ { - if yyj4356 >= len(yyv4356) { - yyv4356 = append(yyv4356, OwnerReference{}) // var yyz4356 OwnerReference - yyc4356 = true + if yyj4361 >= len(yyv4361) { + yyv4361 = append(yyv4361, OwnerReference{}) // var yyz4361 OwnerReference + yyc4361 = true } - yyh4356.ElemContainerState(yyj4356) - if yyj4356 < len(yyv4356) { + yyh4361.ElemContainerState(yyj4361) + if yyj4361 < len(yyv4361) { if r.TryDecodeAsNil() { - yyv4356[yyj4356] = OwnerReference{} + yyv4361[yyj4361] = OwnerReference{} } else { - yyv4359 := &yyv4356[yyj4356] - yyv4359.CodecDecodeSelf(d) + yyv4364 := &yyv4361[yyj4361] + yyv4364.CodecDecodeSelf(d) } } else { @@ -54242,17 +54283,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4356 < len(yyv4356) { - yyv4356 = yyv4356[:yyj4356] - yyc4356 = true - } else if yyj4356 == 0 && yyv4356 == nil { - yyv4356 = []OwnerReference{} - yyc4356 = true + if yyj4361 < len(yyv4361) { + yyv4361 = yyv4361[:yyj4361] + yyc4361 = true + } else if yyj4361 == 0 && yyv4361 == nil { + yyv4361 = []OwnerReference{} + yyc4361 = true } } - yyh4356.End() - if yyc4356 { - *v = yyv4356 + yyh4361.End() + if yyc4361 { + *v = yyv4361 } } @@ -54261,9 +54302,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4360 := range v { + for _, yyv4365 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4360.CodecEncodeSelf(e) + yyv4365.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54273,75 +54314,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4361 := *v - yyh4361, yyl4361 := z.DecSliceHelperStart() - var yyc4361 bool - if yyl4361 == 0 { - if yyv4361 == nil { - yyv4361 = []PersistentVolumeAccessMode{} - yyc4361 = true - } else if len(yyv4361) != 0 { - yyv4361 = yyv4361[:0] - yyc4361 = true + yyv4366 := *v + yyh4366, yyl4366 := z.DecSliceHelperStart() + var yyc4366 bool + if yyl4366 == 0 { + if yyv4366 == nil { + yyv4366 = []PersistentVolumeAccessMode{} + yyc4366 = true + } else if len(yyv4366) != 0 { + yyv4366 = yyv4366[:0] + yyc4366 = true } - } else if yyl4361 > 0 { - var yyrr4361, yyrl4361 int - var yyrt4361 bool - if yyl4361 > cap(yyv4361) { + } else if yyl4366 > 0 { + var yyrr4366, yyrl4366 int + var yyrt4366 bool + if yyl4366 > cap(yyv4366) { - yyrl4361, yyrt4361 = z.DecInferLen(yyl4361, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4361 { - if yyrl4361 <= cap(yyv4361) { - yyv4361 = yyv4361[:yyrl4361] + yyrl4366, yyrt4366 = z.DecInferLen(yyl4366, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4366 { + if yyrl4366 <= cap(yyv4366) { + yyv4366 = yyv4366[:yyrl4366] } else { - yyv4361 = make([]PersistentVolumeAccessMode, yyrl4361) + yyv4366 = make([]PersistentVolumeAccessMode, yyrl4366) } } else { - yyv4361 = make([]PersistentVolumeAccessMode, yyrl4361) + yyv4366 = make([]PersistentVolumeAccessMode, yyrl4366) } - yyc4361 = true - yyrr4361 = len(yyv4361) - } else if yyl4361 != len(yyv4361) { - yyv4361 = yyv4361[:yyl4361] - yyc4361 = true + yyc4366 = true + yyrr4366 = len(yyv4366) + } else if yyl4366 != len(yyv4366) { + yyv4366 = yyv4366[:yyl4366] + yyc4366 = true } - yyj4361 := 0 - for ; yyj4361 < yyrr4361; yyj4361++ { - yyh4361.ElemContainerState(yyj4361) + yyj4366 := 0 + for ; yyj4366 < yyrr4366; yyj4366++ { + yyh4366.ElemContainerState(yyj4366) if r.TryDecodeAsNil() { - yyv4361[yyj4361] = "" + yyv4366[yyj4366] = "" } else { - yyv4361[yyj4361] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4366[yyj4366] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4361 { - for ; yyj4361 < yyl4361; yyj4361++ { - yyv4361 = append(yyv4361, "") - yyh4361.ElemContainerState(yyj4361) + if yyrt4366 { + for ; yyj4366 < yyl4366; yyj4366++ { + yyv4366 = append(yyv4366, "") + yyh4366.ElemContainerState(yyj4366) if r.TryDecodeAsNil() { - yyv4361[yyj4361] = "" + yyv4366[yyj4366] = "" } else { - yyv4361[yyj4361] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4366[yyj4366] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4361 := 0 - for ; !r.CheckBreak(); yyj4361++ { + yyj4366 := 0 + for ; !r.CheckBreak(); yyj4366++ { - if yyj4361 >= len(yyv4361) { - yyv4361 = append(yyv4361, "") // var yyz4361 PersistentVolumeAccessMode - yyc4361 = true + if yyj4366 >= len(yyv4366) { + yyv4366 = append(yyv4366, "") // var yyz4366 PersistentVolumeAccessMode + yyc4366 = true } - yyh4361.ElemContainerState(yyj4361) - if yyj4361 < len(yyv4361) { + yyh4366.ElemContainerState(yyj4366) + if yyj4366 < len(yyv4366) { if r.TryDecodeAsNil() { - yyv4361[yyj4361] = "" + yyv4366[yyj4366] = "" } else { - yyv4361[yyj4361] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4366[yyj4366] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -54349,17 +54390,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4361 < len(yyv4361) { - yyv4361 = yyv4361[:yyj4361] - yyc4361 = true - } else if yyj4361 == 0 && yyv4361 == nil { - yyv4361 = []PersistentVolumeAccessMode{} - yyc4361 = true + if yyj4366 < len(yyv4366) { + yyv4366 = yyv4366[:yyj4366] + yyc4366 = true + } else if yyj4366 == 0 && yyv4366 == nil { + yyv4366 = []PersistentVolumeAccessMode{} + yyc4366 = true } } - yyh4361.End() - if yyc4361 { - *v = yyv4361 + yyh4366.End() + if yyc4366 { + *v = yyv4366 } } @@ -54368,10 +54409,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4365 := range v { + for _, yyv4370 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4366 := &yyv4365 - yy4366.CodecEncodeSelf(e) + yy4371 := &yyv4370 + yy4371.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54381,83 +54422,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4367 := *v - yyh4367, yyl4367 := z.DecSliceHelperStart() - var yyc4367 bool - if yyl4367 == 0 { - if yyv4367 == nil { - yyv4367 = []PersistentVolume{} - yyc4367 = true - } else if len(yyv4367) != 0 { - yyv4367 = yyv4367[:0] - yyc4367 = true + yyv4372 := *v + yyh4372, yyl4372 := z.DecSliceHelperStart() + var yyc4372 bool + if yyl4372 == 0 { + if yyv4372 == nil { + yyv4372 = []PersistentVolume{} + yyc4372 = true + } else if len(yyv4372) != 0 { + yyv4372 = yyv4372[:0] + yyc4372 = true } - } else if yyl4367 > 0 { - var yyrr4367, yyrl4367 int - var yyrt4367 bool - if yyl4367 > cap(yyv4367) { + } else if yyl4372 > 0 { + var yyrr4372, yyrl4372 int + var yyrt4372 bool + if yyl4372 > cap(yyv4372) { - yyrg4367 := len(yyv4367) > 0 - yyv24367 := yyv4367 - yyrl4367, yyrt4367 = z.DecInferLen(yyl4367, z.DecBasicHandle().MaxInitLen, 456) - if yyrt4367 { - if yyrl4367 <= cap(yyv4367) { - yyv4367 = yyv4367[:yyrl4367] + yyrg4372 := len(yyv4372) > 0 + yyv24372 := yyv4372 + yyrl4372, yyrt4372 = z.DecInferLen(yyl4372, z.DecBasicHandle().MaxInitLen, 456) + if yyrt4372 { + if yyrl4372 <= cap(yyv4372) { + yyv4372 = yyv4372[:yyrl4372] } else { - yyv4367 = make([]PersistentVolume, yyrl4367) + yyv4372 = make([]PersistentVolume, yyrl4372) } } else { - yyv4367 = make([]PersistentVolume, yyrl4367) + yyv4372 = make([]PersistentVolume, yyrl4372) } - yyc4367 = true - yyrr4367 = len(yyv4367) - if yyrg4367 { - copy(yyv4367, yyv24367) + yyc4372 = true + yyrr4372 = len(yyv4372) + if yyrg4372 { + copy(yyv4372, yyv24372) } - } else if yyl4367 != len(yyv4367) { - yyv4367 = yyv4367[:yyl4367] - yyc4367 = true + } else if yyl4372 != len(yyv4372) { + yyv4372 = yyv4372[:yyl4372] + yyc4372 = true } - yyj4367 := 0 - for ; yyj4367 < yyrr4367; yyj4367++ { - yyh4367.ElemContainerState(yyj4367) + yyj4372 := 0 + for ; yyj4372 < yyrr4372; yyj4372++ { + yyh4372.ElemContainerState(yyj4372) if r.TryDecodeAsNil() { - yyv4367[yyj4367] = PersistentVolume{} + yyv4372[yyj4372] = PersistentVolume{} } else { - yyv4368 := &yyv4367[yyj4367] - yyv4368.CodecDecodeSelf(d) + yyv4373 := &yyv4372[yyj4372] + yyv4373.CodecDecodeSelf(d) } } - if yyrt4367 { - for ; yyj4367 < yyl4367; yyj4367++ { - yyv4367 = append(yyv4367, PersistentVolume{}) - yyh4367.ElemContainerState(yyj4367) + if yyrt4372 { + for ; yyj4372 < yyl4372; yyj4372++ { + yyv4372 = append(yyv4372, PersistentVolume{}) + yyh4372.ElemContainerState(yyj4372) if r.TryDecodeAsNil() { - yyv4367[yyj4367] = PersistentVolume{} + yyv4372[yyj4372] = PersistentVolume{} } else { - yyv4369 := &yyv4367[yyj4367] - yyv4369.CodecDecodeSelf(d) + yyv4374 := &yyv4372[yyj4372] + yyv4374.CodecDecodeSelf(d) } } } } else { - yyj4367 := 0 - for ; !r.CheckBreak(); yyj4367++ { + yyj4372 := 0 + for ; !r.CheckBreak(); yyj4372++ { - if yyj4367 >= len(yyv4367) { - yyv4367 = append(yyv4367, PersistentVolume{}) // var yyz4367 PersistentVolume - yyc4367 = true + if yyj4372 >= len(yyv4372) { + yyv4372 = append(yyv4372, PersistentVolume{}) // var yyz4372 PersistentVolume + yyc4372 = true } - yyh4367.ElemContainerState(yyj4367) - if yyj4367 < len(yyv4367) { + yyh4372.ElemContainerState(yyj4372) + if yyj4372 < len(yyv4372) { if r.TryDecodeAsNil() { - yyv4367[yyj4367] = PersistentVolume{} + yyv4372[yyj4372] = PersistentVolume{} } else { - yyv4370 := &yyv4367[yyj4367] - yyv4370.CodecDecodeSelf(d) + yyv4375 := &yyv4372[yyj4372] + yyv4375.CodecDecodeSelf(d) } } else { @@ -54465,17 +54506,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4367 < len(yyv4367) { - yyv4367 = yyv4367[:yyj4367] - yyc4367 = true - } else if yyj4367 == 0 && yyv4367 == nil { - yyv4367 = []PersistentVolume{} - yyc4367 = true + if yyj4372 < len(yyv4372) { + yyv4372 = yyv4372[:yyj4372] + yyc4372 = true + } else if yyj4372 == 0 && yyv4372 == nil { + yyv4372 = []PersistentVolume{} + yyc4372 = true } } - yyh4367.End() - if yyc4367 { - *v = yyv4367 + yyh4372.End() + if yyc4372 { + *v = yyv4372 } } @@ -54484,10 +54525,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4371 := range v { + for _, yyv4376 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4372 := &yyv4371 - yy4372.CodecEncodeSelf(e) + yy4377 := &yyv4376 + yy4377.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54497,83 +54538,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4373 := *v - yyh4373, yyl4373 := z.DecSliceHelperStart() - var yyc4373 bool - if yyl4373 == 0 { - if yyv4373 == nil { - yyv4373 = []PersistentVolumeClaim{} - yyc4373 = true - } else if len(yyv4373) != 0 { - yyv4373 = yyv4373[:0] - yyc4373 = true + yyv4378 := *v + yyh4378, yyl4378 := z.DecSliceHelperStart() + var yyc4378 bool + if yyl4378 == 0 { + if yyv4378 == nil { + yyv4378 = []PersistentVolumeClaim{} + yyc4378 = true + } else if len(yyv4378) != 0 { + yyv4378 = yyv4378[:0] + yyc4378 = true } - } else if yyl4373 > 0 { - var yyrr4373, yyrl4373 int - var yyrt4373 bool - if yyl4373 > cap(yyv4373) { + } else if yyl4378 > 0 { + var yyrr4378, yyrl4378 int + var yyrt4378 bool + if yyl4378 > cap(yyv4378) { - yyrg4373 := len(yyv4373) > 0 - yyv24373 := yyv4373 - yyrl4373, yyrt4373 = z.DecInferLen(yyl4373, z.DecBasicHandle().MaxInitLen, 352) - if yyrt4373 { - if yyrl4373 <= cap(yyv4373) { - yyv4373 = yyv4373[:yyrl4373] + yyrg4378 := len(yyv4378) > 0 + yyv24378 := yyv4378 + yyrl4378, yyrt4378 = z.DecInferLen(yyl4378, z.DecBasicHandle().MaxInitLen, 352) + if yyrt4378 { + if yyrl4378 <= cap(yyv4378) { + yyv4378 = yyv4378[:yyrl4378] } else { - yyv4373 = make([]PersistentVolumeClaim, yyrl4373) + yyv4378 = make([]PersistentVolumeClaim, yyrl4378) } } else { - yyv4373 = make([]PersistentVolumeClaim, yyrl4373) + yyv4378 = make([]PersistentVolumeClaim, yyrl4378) } - yyc4373 = true - yyrr4373 = len(yyv4373) - if yyrg4373 { - copy(yyv4373, yyv24373) + yyc4378 = true + yyrr4378 = len(yyv4378) + if yyrg4378 { + copy(yyv4378, yyv24378) } - } else if yyl4373 != len(yyv4373) { - yyv4373 = yyv4373[:yyl4373] - yyc4373 = true + } else if yyl4378 != len(yyv4378) { + yyv4378 = yyv4378[:yyl4378] + yyc4378 = true } - yyj4373 := 0 - for ; yyj4373 < yyrr4373; yyj4373++ { - yyh4373.ElemContainerState(yyj4373) + yyj4378 := 0 + for ; yyj4378 < yyrr4378; yyj4378++ { + yyh4378.ElemContainerState(yyj4378) if r.TryDecodeAsNil() { - yyv4373[yyj4373] = PersistentVolumeClaim{} + yyv4378[yyj4378] = PersistentVolumeClaim{} } else { - yyv4374 := &yyv4373[yyj4373] - yyv4374.CodecDecodeSelf(d) + yyv4379 := &yyv4378[yyj4378] + yyv4379.CodecDecodeSelf(d) } } - if yyrt4373 { - for ; yyj4373 < yyl4373; yyj4373++ { - yyv4373 = append(yyv4373, PersistentVolumeClaim{}) - yyh4373.ElemContainerState(yyj4373) + if yyrt4378 { + for ; yyj4378 < yyl4378; yyj4378++ { + yyv4378 = append(yyv4378, PersistentVolumeClaim{}) + yyh4378.ElemContainerState(yyj4378) if r.TryDecodeAsNil() { - yyv4373[yyj4373] = PersistentVolumeClaim{} + yyv4378[yyj4378] = PersistentVolumeClaim{} } else { - yyv4375 := &yyv4373[yyj4373] - yyv4375.CodecDecodeSelf(d) + yyv4380 := &yyv4378[yyj4378] + yyv4380.CodecDecodeSelf(d) } } } } else { - yyj4373 := 0 - for ; !r.CheckBreak(); yyj4373++ { + yyj4378 := 0 + for ; !r.CheckBreak(); yyj4378++ { - if yyj4373 >= len(yyv4373) { - yyv4373 = append(yyv4373, PersistentVolumeClaim{}) // var yyz4373 PersistentVolumeClaim - yyc4373 = true + if yyj4378 >= len(yyv4378) { + yyv4378 = append(yyv4378, PersistentVolumeClaim{}) // var yyz4378 PersistentVolumeClaim + yyc4378 = true } - yyh4373.ElemContainerState(yyj4373) - if yyj4373 < len(yyv4373) { + yyh4378.ElemContainerState(yyj4378) + if yyj4378 < len(yyv4378) { if r.TryDecodeAsNil() { - yyv4373[yyj4373] = PersistentVolumeClaim{} + yyv4378[yyj4378] = PersistentVolumeClaim{} } else { - yyv4376 := &yyv4373[yyj4373] - yyv4376.CodecDecodeSelf(d) + yyv4381 := &yyv4378[yyj4378] + yyv4381.CodecDecodeSelf(d) } } else { @@ -54581,17 +54622,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4373 < len(yyv4373) { - yyv4373 = yyv4373[:yyj4373] - yyc4373 = true - } else if yyj4373 == 0 && yyv4373 == nil { - yyv4373 = []PersistentVolumeClaim{} - yyc4373 = true + if yyj4378 < len(yyv4378) { + yyv4378 = yyv4378[:yyj4378] + yyc4378 = true + } else if yyj4378 == 0 && yyv4378 == nil { + yyv4378 = []PersistentVolumeClaim{} + yyc4378 = true } } - yyh4373.End() - if yyc4373 { - *v = yyv4373 + yyh4378.End() + if yyc4378 { + *v = yyv4378 } } @@ -54600,10 +54641,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4377 := range v { + for _, yyv4382 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4378 := &yyv4377 - yy4378.CodecEncodeSelf(e) + yy4383 := &yyv4382 + yy4383.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54613,83 +54654,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4379 := *v - yyh4379, yyl4379 := z.DecSliceHelperStart() - var yyc4379 bool - if yyl4379 == 0 { - if yyv4379 == nil { - yyv4379 = []KeyToPath{} - yyc4379 = true - } else if len(yyv4379) != 0 { - yyv4379 = yyv4379[:0] - yyc4379 = true + yyv4384 := *v + yyh4384, yyl4384 := z.DecSliceHelperStart() + var yyc4384 bool + if yyl4384 == 0 { + if yyv4384 == nil { + yyv4384 = []KeyToPath{} + yyc4384 = true + } else if len(yyv4384) != 0 { + yyv4384 = yyv4384[:0] + yyc4384 = true } - } else if yyl4379 > 0 { - var yyrr4379, yyrl4379 int - var yyrt4379 bool - if yyl4379 > cap(yyv4379) { + } else if yyl4384 > 0 { + var yyrr4384, yyrl4384 int + var yyrt4384 bool + if yyl4384 > cap(yyv4384) { - yyrg4379 := len(yyv4379) > 0 - yyv24379 := yyv4379 - yyrl4379, yyrt4379 = z.DecInferLen(yyl4379, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4379 { - if yyrl4379 <= cap(yyv4379) { - yyv4379 = yyv4379[:yyrl4379] + yyrg4384 := len(yyv4384) > 0 + yyv24384 := yyv4384 + yyrl4384, yyrt4384 = z.DecInferLen(yyl4384, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4384 { + if yyrl4384 <= cap(yyv4384) { + yyv4384 = yyv4384[:yyrl4384] } else { - yyv4379 = make([]KeyToPath, yyrl4379) + yyv4384 = make([]KeyToPath, yyrl4384) } } else { - yyv4379 = make([]KeyToPath, yyrl4379) + yyv4384 = make([]KeyToPath, yyrl4384) } - yyc4379 = true - yyrr4379 = len(yyv4379) - if yyrg4379 { - copy(yyv4379, yyv24379) + yyc4384 = true + yyrr4384 = len(yyv4384) + if yyrg4384 { + copy(yyv4384, yyv24384) } - } else if yyl4379 != len(yyv4379) { - yyv4379 = yyv4379[:yyl4379] - yyc4379 = true + } else if yyl4384 != len(yyv4384) { + yyv4384 = yyv4384[:yyl4384] + yyc4384 = true } - yyj4379 := 0 - for ; yyj4379 < yyrr4379; yyj4379++ { - yyh4379.ElemContainerState(yyj4379) + yyj4384 := 0 + for ; yyj4384 < yyrr4384; yyj4384++ { + yyh4384.ElemContainerState(yyj4384) if r.TryDecodeAsNil() { - yyv4379[yyj4379] = KeyToPath{} + yyv4384[yyj4384] = KeyToPath{} } else { - yyv4380 := &yyv4379[yyj4379] - yyv4380.CodecDecodeSelf(d) + yyv4385 := &yyv4384[yyj4384] + yyv4385.CodecDecodeSelf(d) } } - if yyrt4379 { - for ; yyj4379 < yyl4379; yyj4379++ { - yyv4379 = append(yyv4379, KeyToPath{}) - yyh4379.ElemContainerState(yyj4379) + if yyrt4384 { + for ; yyj4384 < yyl4384; yyj4384++ { + yyv4384 = append(yyv4384, KeyToPath{}) + yyh4384.ElemContainerState(yyj4384) if r.TryDecodeAsNil() { - yyv4379[yyj4379] = KeyToPath{} + yyv4384[yyj4384] = KeyToPath{} } else { - yyv4381 := &yyv4379[yyj4379] - yyv4381.CodecDecodeSelf(d) + yyv4386 := &yyv4384[yyj4384] + yyv4386.CodecDecodeSelf(d) } } } } else { - yyj4379 := 0 - for ; !r.CheckBreak(); yyj4379++ { + yyj4384 := 0 + for ; !r.CheckBreak(); yyj4384++ { - if yyj4379 >= len(yyv4379) { - yyv4379 = append(yyv4379, KeyToPath{}) // var yyz4379 KeyToPath - yyc4379 = true + if yyj4384 >= len(yyv4384) { + yyv4384 = append(yyv4384, KeyToPath{}) // var yyz4384 KeyToPath + yyc4384 = true } - yyh4379.ElemContainerState(yyj4379) - if yyj4379 < len(yyv4379) { + yyh4384.ElemContainerState(yyj4384) + if yyj4384 < len(yyv4384) { if r.TryDecodeAsNil() { - yyv4379[yyj4379] = KeyToPath{} + yyv4384[yyj4384] = KeyToPath{} } else { - yyv4382 := &yyv4379[yyj4379] - yyv4382.CodecDecodeSelf(d) + yyv4387 := &yyv4384[yyj4384] + yyv4387.CodecDecodeSelf(d) } } else { @@ -54697,17 +54738,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4379 < len(yyv4379) { - yyv4379 = yyv4379[:yyj4379] - yyc4379 = true - } else if yyj4379 == 0 && yyv4379 == nil { - yyv4379 = []KeyToPath{} - yyc4379 = true + if yyj4384 < len(yyv4384) { + yyv4384 = yyv4384[:yyj4384] + yyc4384 = true + } else if yyj4384 == 0 && yyv4384 == nil { + yyv4384 = []KeyToPath{} + yyc4384 = true } } - yyh4379.End() - if yyc4379 { - *v = yyv4379 + yyh4384.End() + if yyc4384 { + *v = yyv4384 } } @@ -54716,10 +54757,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4383 := range v { + for _, yyv4388 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4384 := &yyv4383 - yy4384.CodecEncodeSelf(e) + yy4389 := &yyv4388 + yy4389.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54729,83 +54770,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4385 := *v - yyh4385, yyl4385 := z.DecSliceHelperStart() - var yyc4385 bool - if yyl4385 == 0 { - if yyv4385 == nil { - yyv4385 = []DownwardAPIVolumeFile{} - yyc4385 = true - } else if len(yyv4385) != 0 { - yyv4385 = yyv4385[:0] - yyc4385 = true + yyv4390 := *v + yyh4390, yyl4390 := z.DecSliceHelperStart() + var yyc4390 bool + if yyl4390 == 0 { + if yyv4390 == nil { + yyv4390 = []DownwardAPIVolumeFile{} + yyc4390 = true + } else if len(yyv4390) != 0 { + yyv4390 = yyv4390[:0] + yyc4390 = true } - } else if yyl4385 > 0 { - var yyrr4385, yyrl4385 int - var yyrt4385 bool - if yyl4385 > cap(yyv4385) { + } else if yyl4390 > 0 { + var yyrr4390, yyrl4390 int + var yyrt4390 bool + if yyl4390 > cap(yyv4390) { - yyrg4385 := len(yyv4385) > 0 - yyv24385 := yyv4385 - yyrl4385, yyrt4385 = z.DecInferLen(yyl4385, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4385 { - if yyrl4385 <= cap(yyv4385) { - yyv4385 = yyv4385[:yyrl4385] + yyrg4390 := len(yyv4390) > 0 + yyv24390 := yyv4390 + yyrl4390, yyrt4390 = z.DecInferLen(yyl4390, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4390 { + if yyrl4390 <= cap(yyv4390) { + yyv4390 = yyv4390[:yyrl4390] } else { - yyv4385 = make([]DownwardAPIVolumeFile, yyrl4385) + yyv4390 = make([]DownwardAPIVolumeFile, yyrl4390) } } else { - yyv4385 = make([]DownwardAPIVolumeFile, yyrl4385) + yyv4390 = make([]DownwardAPIVolumeFile, yyrl4390) } - yyc4385 = true - yyrr4385 = len(yyv4385) - if yyrg4385 { - copy(yyv4385, yyv24385) + yyc4390 = true + yyrr4390 = len(yyv4390) + if yyrg4390 { + copy(yyv4390, yyv24390) } - } else if yyl4385 != len(yyv4385) { - yyv4385 = yyv4385[:yyl4385] - yyc4385 = true + } else if yyl4390 != len(yyv4390) { + yyv4390 = yyv4390[:yyl4390] + yyc4390 = true } - yyj4385 := 0 - for ; yyj4385 < yyrr4385; yyj4385++ { - yyh4385.ElemContainerState(yyj4385) + yyj4390 := 0 + for ; yyj4390 < yyrr4390; yyj4390++ { + yyh4390.ElemContainerState(yyj4390) if r.TryDecodeAsNil() { - yyv4385[yyj4385] = DownwardAPIVolumeFile{} + yyv4390[yyj4390] = DownwardAPIVolumeFile{} } else { - yyv4386 := &yyv4385[yyj4385] - yyv4386.CodecDecodeSelf(d) + yyv4391 := &yyv4390[yyj4390] + yyv4391.CodecDecodeSelf(d) } } - if yyrt4385 { - for ; yyj4385 < yyl4385; yyj4385++ { - yyv4385 = append(yyv4385, DownwardAPIVolumeFile{}) - yyh4385.ElemContainerState(yyj4385) + if yyrt4390 { + for ; yyj4390 < yyl4390; yyj4390++ { + yyv4390 = append(yyv4390, DownwardAPIVolumeFile{}) + yyh4390.ElemContainerState(yyj4390) if r.TryDecodeAsNil() { - yyv4385[yyj4385] = DownwardAPIVolumeFile{} + yyv4390[yyj4390] = DownwardAPIVolumeFile{} } else { - yyv4387 := &yyv4385[yyj4385] - yyv4387.CodecDecodeSelf(d) + yyv4392 := &yyv4390[yyj4390] + yyv4392.CodecDecodeSelf(d) } } } } else { - yyj4385 := 0 - for ; !r.CheckBreak(); yyj4385++ { + yyj4390 := 0 + for ; !r.CheckBreak(); yyj4390++ { - if yyj4385 >= len(yyv4385) { - yyv4385 = append(yyv4385, DownwardAPIVolumeFile{}) // var yyz4385 DownwardAPIVolumeFile - yyc4385 = true + if yyj4390 >= len(yyv4390) { + yyv4390 = append(yyv4390, DownwardAPIVolumeFile{}) // var yyz4390 DownwardAPIVolumeFile + yyc4390 = true } - yyh4385.ElemContainerState(yyj4385) - if yyj4385 < len(yyv4385) { + yyh4390.ElemContainerState(yyj4390) + if yyj4390 < len(yyv4390) { if r.TryDecodeAsNil() { - yyv4385[yyj4385] = DownwardAPIVolumeFile{} + yyv4390[yyj4390] = DownwardAPIVolumeFile{} } else { - yyv4388 := &yyv4385[yyj4385] - yyv4388.CodecDecodeSelf(d) + yyv4393 := &yyv4390[yyj4390] + yyv4393.CodecDecodeSelf(d) } } else { @@ -54813,17 +54854,17 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4385 < len(yyv4385) { - yyv4385 = yyv4385[:yyj4385] - yyc4385 = true - } else if yyj4385 == 0 && yyv4385 == nil { - yyv4385 = []DownwardAPIVolumeFile{} - yyc4385 = true + if yyj4390 < len(yyv4390) { + yyv4390 = yyv4390[:yyj4390] + yyc4390 = true + } else if yyj4390 == 0 && yyv4390 == nil { + yyv4390 = []DownwardAPIVolumeFile{} + yyc4390 = true } } - yyh4385.End() - if yyc4385 { - *v = yyv4385 + yyh4390.End() + if yyc4390 { + *v = yyv4390 } } @@ -54832,10 +54873,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4389 := range v { + for _, yyv4394 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4390 := &yyv4389 - yy4390.CodecEncodeSelf(e) + yy4395 := &yyv4394 + yy4395.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54845,83 +54886,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4391 := *v - yyh4391, yyl4391 := z.DecSliceHelperStart() - var yyc4391 bool - if yyl4391 == 0 { - if yyv4391 == nil { - yyv4391 = []HTTPHeader{} - yyc4391 = true - } else if len(yyv4391) != 0 { - yyv4391 = yyv4391[:0] - yyc4391 = true + yyv4396 := *v + yyh4396, yyl4396 := z.DecSliceHelperStart() + var yyc4396 bool + if yyl4396 == 0 { + if yyv4396 == nil { + yyv4396 = []HTTPHeader{} + yyc4396 = true + } else if len(yyv4396) != 0 { + yyv4396 = yyv4396[:0] + yyc4396 = true } - } else if yyl4391 > 0 { - var yyrr4391, yyrl4391 int - var yyrt4391 bool - if yyl4391 > cap(yyv4391) { + } else if yyl4396 > 0 { + var yyrr4396, yyrl4396 int + var yyrt4396 bool + if yyl4396 > cap(yyv4396) { - yyrg4391 := len(yyv4391) > 0 - yyv24391 := yyv4391 - yyrl4391, yyrt4391 = z.DecInferLen(yyl4391, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4391 { - if yyrl4391 <= cap(yyv4391) { - yyv4391 = yyv4391[:yyrl4391] + yyrg4396 := len(yyv4396) > 0 + yyv24396 := yyv4396 + yyrl4396, yyrt4396 = z.DecInferLen(yyl4396, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4396 { + if yyrl4396 <= cap(yyv4396) { + yyv4396 = yyv4396[:yyrl4396] } else { - yyv4391 = make([]HTTPHeader, yyrl4391) + yyv4396 = make([]HTTPHeader, yyrl4396) } } else { - yyv4391 = make([]HTTPHeader, yyrl4391) + yyv4396 = make([]HTTPHeader, yyrl4396) } - yyc4391 = true - yyrr4391 = len(yyv4391) - if yyrg4391 { - copy(yyv4391, yyv24391) + yyc4396 = true + yyrr4396 = len(yyv4396) + if yyrg4396 { + copy(yyv4396, yyv24396) } - } else if yyl4391 != len(yyv4391) { - yyv4391 = yyv4391[:yyl4391] - yyc4391 = true + } else if yyl4396 != len(yyv4396) { + yyv4396 = yyv4396[:yyl4396] + yyc4396 = true } - yyj4391 := 0 - for ; yyj4391 < yyrr4391; yyj4391++ { - yyh4391.ElemContainerState(yyj4391) + yyj4396 := 0 + for ; yyj4396 < yyrr4396; yyj4396++ { + yyh4396.ElemContainerState(yyj4396) if r.TryDecodeAsNil() { - yyv4391[yyj4391] = HTTPHeader{} + yyv4396[yyj4396] = HTTPHeader{} } else { - yyv4392 := &yyv4391[yyj4391] - yyv4392.CodecDecodeSelf(d) + yyv4397 := &yyv4396[yyj4396] + yyv4397.CodecDecodeSelf(d) } } - if yyrt4391 { - for ; yyj4391 < yyl4391; yyj4391++ { - yyv4391 = append(yyv4391, HTTPHeader{}) - yyh4391.ElemContainerState(yyj4391) + if yyrt4396 { + for ; yyj4396 < yyl4396; yyj4396++ { + yyv4396 = append(yyv4396, HTTPHeader{}) + yyh4396.ElemContainerState(yyj4396) if r.TryDecodeAsNil() { - yyv4391[yyj4391] = HTTPHeader{} + yyv4396[yyj4396] = HTTPHeader{} } else { - yyv4393 := &yyv4391[yyj4391] - yyv4393.CodecDecodeSelf(d) + yyv4398 := &yyv4396[yyj4396] + yyv4398.CodecDecodeSelf(d) } } } } else { - yyj4391 := 0 - for ; !r.CheckBreak(); yyj4391++ { + yyj4396 := 0 + for ; !r.CheckBreak(); yyj4396++ { - if yyj4391 >= len(yyv4391) { - yyv4391 = append(yyv4391, HTTPHeader{}) // var yyz4391 HTTPHeader - yyc4391 = true + if yyj4396 >= len(yyv4396) { + yyv4396 = append(yyv4396, HTTPHeader{}) // var yyz4396 HTTPHeader + yyc4396 = true } - yyh4391.ElemContainerState(yyj4391) - if yyj4391 < len(yyv4391) { + yyh4396.ElemContainerState(yyj4396) + if yyj4396 < len(yyv4396) { if r.TryDecodeAsNil() { - yyv4391[yyj4391] = HTTPHeader{} + yyv4396[yyj4396] = HTTPHeader{} } else { - yyv4394 := &yyv4391[yyj4391] - yyv4394.CodecDecodeSelf(d) + yyv4399 := &yyv4396[yyj4396] + yyv4399.CodecDecodeSelf(d) } } else { @@ -54929,17 +54970,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4391 < len(yyv4391) { - yyv4391 = yyv4391[:yyj4391] - yyc4391 = true - } else if yyj4391 == 0 && yyv4391 == nil { - yyv4391 = []HTTPHeader{} - yyc4391 = true + if yyj4396 < len(yyv4396) { + yyv4396 = yyv4396[:yyj4396] + yyc4396 = true + } else if yyj4396 == 0 && yyv4396 == nil { + yyv4396 = []HTTPHeader{} + yyc4396 = true } } - yyh4391.End() - if yyc4391 { - *v = yyv4391 + yyh4396.End() + if yyc4396 { + *v = yyv4396 } } @@ -54948,9 +54989,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4395 := range v { + for _, yyv4400 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4395.CodecEncodeSelf(e) + yyv4400.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54960,75 +55001,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4396 := *v - yyh4396, yyl4396 := z.DecSliceHelperStart() - var yyc4396 bool - if yyl4396 == 0 { - if yyv4396 == nil { - yyv4396 = []Capability{} - yyc4396 = true - } else if len(yyv4396) != 0 { - yyv4396 = yyv4396[:0] - yyc4396 = true + yyv4401 := *v + yyh4401, yyl4401 := z.DecSliceHelperStart() + var yyc4401 bool + if yyl4401 == 0 { + if yyv4401 == nil { + yyv4401 = []Capability{} + yyc4401 = true + } else if len(yyv4401) != 0 { + yyv4401 = yyv4401[:0] + yyc4401 = true } - } else if yyl4396 > 0 { - var yyrr4396, yyrl4396 int - var yyrt4396 bool - if yyl4396 > cap(yyv4396) { + } else if yyl4401 > 0 { + var yyrr4401, yyrl4401 int + var yyrt4401 bool + if yyl4401 > cap(yyv4401) { - yyrl4396, yyrt4396 = z.DecInferLen(yyl4396, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4396 { - if yyrl4396 <= cap(yyv4396) { - yyv4396 = yyv4396[:yyrl4396] + yyrl4401, yyrt4401 = z.DecInferLen(yyl4401, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4401 { + if yyrl4401 <= cap(yyv4401) { + yyv4401 = yyv4401[:yyrl4401] } else { - yyv4396 = make([]Capability, yyrl4396) + yyv4401 = make([]Capability, yyrl4401) } } else { - yyv4396 = make([]Capability, yyrl4396) + yyv4401 = make([]Capability, yyrl4401) } - yyc4396 = true - yyrr4396 = len(yyv4396) - } else if yyl4396 != len(yyv4396) { - yyv4396 = yyv4396[:yyl4396] - yyc4396 = true + yyc4401 = true + yyrr4401 = len(yyv4401) + } else if yyl4401 != len(yyv4401) { + yyv4401 = yyv4401[:yyl4401] + yyc4401 = true } - yyj4396 := 0 - for ; yyj4396 < yyrr4396; yyj4396++ { - yyh4396.ElemContainerState(yyj4396) + yyj4401 := 0 + for ; yyj4401 < yyrr4401; yyj4401++ { + yyh4401.ElemContainerState(yyj4401) if r.TryDecodeAsNil() { - yyv4396[yyj4396] = "" + yyv4401[yyj4401] = "" } else { - yyv4396[yyj4396] = Capability(r.DecodeString()) + yyv4401[yyj4401] = Capability(r.DecodeString()) } } - if yyrt4396 { - for ; yyj4396 < yyl4396; yyj4396++ { - yyv4396 = append(yyv4396, "") - yyh4396.ElemContainerState(yyj4396) + if yyrt4401 { + for ; yyj4401 < yyl4401; yyj4401++ { + yyv4401 = append(yyv4401, "") + yyh4401.ElemContainerState(yyj4401) if r.TryDecodeAsNil() { - yyv4396[yyj4396] = "" + yyv4401[yyj4401] = "" } else { - yyv4396[yyj4396] = Capability(r.DecodeString()) + yyv4401[yyj4401] = Capability(r.DecodeString()) } } } } else { - yyj4396 := 0 - for ; !r.CheckBreak(); yyj4396++ { + yyj4401 := 0 + for ; !r.CheckBreak(); yyj4401++ { - if yyj4396 >= len(yyv4396) { - yyv4396 = append(yyv4396, "") // var yyz4396 Capability - yyc4396 = true + if yyj4401 >= len(yyv4401) { + yyv4401 = append(yyv4401, "") // var yyz4401 Capability + yyc4401 = true } - yyh4396.ElemContainerState(yyj4396) - if yyj4396 < len(yyv4396) { + yyh4401.ElemContainerState(yyj4401) + if yyj4401 < len(yyv4401) { if r.TryDecodeAsNil() { - yyv4396[yyj4396] = "" + yyv4401[yyj4401] = "" } else { - yyv4396[yyj4396] = Capability(r.DecodeString()) + yyv4401[yyj4401] = Capability(r.DecodeString()) } } else { @@ -55036,17 +55077,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4396 < len(yyv4396) { - yyv4396 = yyv4396[:yyj4396] - yyc4396 = true - } else if yyj4396 == 0 && yyv4396 == nil { - yyv4396 = []Capability{} - yyc4396 = true + if yyj4401 < len(yyv4401) { + yyv4401 = yyv4401[:yyj4401] + yyc4401 = true + } else if yyj4401 == 0 && yyv4401 == nil { + yyv4401 = []Capability{} + yyc4401 = true } } - yyh4396.End() - if yyc4396 { - *v = yyv4396 + yyh4401.End() + if yyc4401 { + *v = yyv4401 } } @@ -55055,10 +55096,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4400 := range v { + for _, yyv4405 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4401 := &yyv4400 - yy4401.CodecEncodeSelf(e) + yy4406 := &yyv4405 + yy4406.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55068,83 +55109,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4402 := *v - yyh4402, yyl4402 := z.DecSliceHelperStart() - var yyc4402 bool - if yyl4402 == 0 { - if yyv4402 == nil { - yyv4402 = []ContainerPort{} - yyc4402 = true - } else if len(yyv4402) != 0 { - yyv4402 = yyv4402[:0] - yyc4402 = true + yyv4407 := *v + yyh4407, yyl4407 := z.DecSliceHelperStart() + var yyc4407 bool + if yyl4407 == 0 { + if yyv4407 == nil { + yyv4407 = []ContainerPort{} + yyc4407 = true + } else if len(yyv4407) != 0 { + yyv4407 = yyv4407[:0] + yyc4407 = true } - } else if yyl4402 > 0 { - var yyrr4402, yyrl4402 int - var yyrt4402 bool - if yyl4402 > cap(yyv4402) { + } else if yyl4407 > 0 { + var yyrr4407, yyrl4407 int + var yyrt4407 bool + if yyl4407 > cap(yyv4407) { - yyrg4402 := len(yyv4402) > 0 - yyv24402 := yyv4402 - yyrl4402, yyrt4402 = z.DecInferLen(yyl4402, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4402 { - if yyrl4402 <= cap(yyv4402) { - yyv4402 = yyv4402[:yyrl4402] + yyrg4407 := len(yyv4407) > 0 + yyv24407 := yyv4407 + yyrl4407, yyrt4407 = z.DecInferLen(yyl4407, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4407 { + if yyrl4407 <= cap(yyv4407) { + yyv4407 = yyv4407[:yyrl4407] } else { - yyv4402 = make([]ContainerPort, yyrl4402) + yyv4407 = make([]ContainerPort, yyrl4407) } } else { - yyv4402 = make([]ContainerPort, yyrl4402) + yyv4407 = make([]ContainerPort, yyrl4407) } - yyc4402 = true - yyrr4402 = len(yyv4402) - if yyrg4402 { - copy(yyv4402, yyv24402) + yyc4407 = true + yyrr4407 = len(yyv4407) + if yyrg4407 { + copy(yyv4407, yyv24407) } - } else if yyl4402 != len(yyv4402) { - yyv4402 = yyv4402[:yyl4402] - yyc4402 = true + } else if yyl4407 != len(yyv4407) { + yyv4407 = yyv4407[:yyl4407] + yyc4407 = true } - yyj4402 := 0 - for ; yyj4402 < yyrr4402; yyj4402++ { - yyh4402.ElemContainerState(yyj4402) + yyj4407 := 0 + for ; yyj4407 < yyrr4407; yyj4407++ { + yyh4407.ElemContainerState(yyj4407) if r.TryDecodeAsNil() { - yyv4402[yyj4402] = ContainerPort{} + yyv4407[yyj4407] = ContainerPort{} } else { - yyv4403 := &yyv4402[yyj4402] - yyv4403.CodecDecodeSelf(d) + yyv4408 := &yyv4407[yyj4407] + yyv4408.CodecDecodeSelf(d) } } - if yyrt4402 { - for ; yyj4402 < yyl4402; yyj4402++ { - yyv4402 = append(yyv4402, ContainerPort{}) - yyh4402.ElemContainerState(yyj4402) + if yyrt4407 { + for ; yyj4407 < yyl4407; yyj4407++ { + yyv4407 = append(yyv4407, ContainerPort{}) + yyh4407.ElemContainerState(yyj4407) if r.TryDecodeAsNil() { - yyv4402[yyj4402] = ContainerPort{} + yyv4407[yyj4407] = ContainerPort{} } else { - yyv4404 := &yyv4402[yyj4402] - yyv4404.CodecDecodeSelf(d) + yyv4409 := &yyv4407[yyj4407] + yyv4409.CodecDecodeSelf(d) } } } } else { - yyj4402 := 0 - for ; !r.CheckBreak(); yyj4402++ { + yyj4407 := 0 + for ; !r.CheckBreak(); yyj4407++ { - if yyj4402 >= len(yyv4402) { - yyv4402 = append(yyv4402, ContainerPort{}) // var yyz4402 ContainerPort - yyc4402 = true + if yyj4407 >= len(yyv4407) { + yyv4407 = append(yyv4407, ContainerPort{}) // var yyz4407 ContainerPort + yyc4407 = true } - yyh4402.ElemContainerState(yyj4402) - if yyj4402 < len(yyv4402) { + yyh4407.ElemContainerState(yyj4407) + if yyj4407 < len(yyv4407) { if r.TryDecodeAsNil() { - yyv4402[yyj4402] = ContainerPort{} + yyv4407[yyj4407] = ContainerPort{} } else { - yyv4405 := &yyv4402[yyj4402] - yyv4405.CodecDecodeSelf(d) + yyv4410 := &yyv4407[yyj4407] + yyv4410.CodecDecodeSelf(d) } } else { @@ -55152,17 +55193,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4402 < len(yyv4402) { - yyv4402 = yyv4402[:yyj4402] - yyc4402 = true - } else if yyj4402 == 0 && yyv4402 == nil { - yyv4402 = []ContainerPort{} - yyc4402 = true + if yyj4407 < len(yyv4407) { + yyv4407 = yyv4407[:yyj4407] + yyc4407 = true + } else if yyj4407 == 0 && yyv4407 == nil { + yyv4407 = []ContainerPort{} + yyc4407 = true } } - yyh4402.End() - if yyc4402 { - *v = yyv4402 + yyh4407.End() + if yyc4407 { + *v = yyv4407 } } @@ -55171,10 +55212,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4406 := range v { + for _, yyv4411 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4407 := &yyv4406 - yy4407.CodecEncodeSelf(e) + yy4412 := &yyv4411 + yy4412.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55184,83 +55225,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4408 := *v - yyh4408, yyl4408 := z.DecSliceHelperStart() - var yyc4408 bool - if yyl4408 == 0 { - if yyv4408 == nil { - yyv4408 = []EnvVar{} - yyc4408 = true - } else if len(yyv4408) != 0 { - yyv4408 = yyv4408[:0] - yyc4408 = true + yyv4413 := *v + yyh4413, yyl4413 := z.DecSliceHelperStart() + var yyc4413 bool + if yyl4413 == 0 { + if yyv4413 == nil { + yyv4413 = []EnvVar{} + yyc4413 = true + } else if len(yyv4413) != 0 { + yyv4413 = yyv4413[:0] + yyc4413 = true } - } else if yyl4408 > 0 { - var yyrr4408, yyrl4408 int - var yyrt4408 bool - if yyl4408 > cap(yyv4408) { + } else if yyl4413 > 0 { + var yyrr4413, yyrl4413 int + var yyrt4413 bool + if yyl4413 > cap(yyv4413) { - yyrg4408 := len(yyv4408) > 0 - yyv24408 := yyv4408 - yyrl4408, yyrt4408 = z.DecInferLen(yyl4408, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4408 { - if yyrl4408 <= cap(yyv4408) { - yyv4408 = yyv4408[:yyrl4408] + yyrg4413 := len(yyv4413) > 0 + yyv24413 := yyv4413 + yyrl4413, yyrt4413 = z.DecInferLen(yyl4413, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4413 { + if yyrl4413 <= cap(yyv4413) { + yyv4413 = yyv4413[:yyrl4413] } else { - yyv4408 = make([]EnvVar, yyrl4408) + yyv4413 = make([]EnvVar, yyrl4413) } } else { - yyv4408 = make([]EnvVar, yyrl4408) + yyv4413 = make([]EnvVar, yyrl4413) } - yyc4408 = true - yyrr4408 = len(yyv4408) - if yyrg4408 { - copy(yyv4408, yyv24408) + yyc4413 = true + yyrr4413 = len(yyv4413) + if yyrg4413 { + copy(yyv4413, yyv24413) } - } else if yyl4408 != len(yyv4408) { - yyv4408 = yyv4408[:yyl4408] - yyc4408 = true + } else if yyl4413 != len(yyv4413) { + yyv4413 = yyv4413[:yyl4413] + yyc4413 = true } - yyj4408 := 0 - for ; yyj4408 < yyrr4408; yyj4408++ { - yyh4408.ElemContainerState(yyj4408) + yyj4413 := 0 + for ; yyj4413 < yyrr4413; yyj4413++ { + yyh4413.ElemContainerState(yyj4413) if r.TryDecodeAsNil() { - yyv4408[yyj4408] = EnvVar{} + yyv4413[yyj4413] = EnvVar{} } else { - yyv4409 := &yyv4408[yyj4408] - yyv4409.CodecDecodeSelf(d) + yyv4414 := &yyv4413[yyj4413] + yyv4414.CodecDecodeSelf(d) } } - if yyrt4408 { - for ; yyj4408 < yyl4408; yyj4408++ { - yyv4408 = append(yyv4408, EnvVar{}) - yyh4408.ElemContainerState(yyj4408) + if yyrt4413 { + for ; yyj4413 < yyl4413; yyj4413++ { + yyv4413 = append(yyv4413, EnvVar{}) + yyh4413.ElemContainerState(yyj4413) if r.TryDecodeAsNil() { - yyv4408[yyj4408] = EnvVar{} + yyv4413[yyj4413] = EnvVar{} } else { - yyv4410 := &yyv4408[yyj4408] - yyv4410.CodecDecodeSelf(d) + yyv4415 := &yyv4413[yyj4413] + yyv4415.CodecDecodeSelf(d) } } } } else { - yyj4408 := 0 - for ; !r.CheckBreak(); yyj4408++ { + yyj4413 := 0 + for ; !r.CheckBreak(); yyj4413++ { - if yyj4408 >= len(yyv4408) { - yyv4408 = append(yyv4408, EnvVar{}) // var yyz4408 EnvVar - yyc4408 = true + if yyj4413 >= len(yyv4413) { + yyv4413 = append(yyv4413, EnvVar{}) // var yyz4413 EnvVar + yyc4413 = true } - yyh4408.ElemContainerState(yyj4408) - if yyj4408 < len(yyv4408) { + yyh4413.ElemContainerState(yyj4413) + if yyj4413 < len(yyv4413) { if r.TryDecodeAsNil() { - yyv4408[yyj4408] = EnvVar{} + yyv4413[yyj4413] = EnvVar{} } else { - yyv4411 := &yyv4408[yyj4408] - yyv4411.CodecDecodeSelf(d) + yyv4416 := &yyv4413[yyj4413] + yyv4416.CodecDecodeSelf(d) } } else { @@ -55268,17 +55309,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4408 < len(yyv4408) { - yyv4408 = yyv4408[:yyj4408] - yyc4408 = true - } else if yyj4408 == 0 && yyv4408 == nil { - yyv4408 = []EnvVar{} - yyc4408 = true + if yyj4413 < len(yyv4413) { + yyv4413 = yyv4413[:yyj4413] + yyc4413 = true + } else if yyj4413 == 0 && yyv4413 == nil { + yyv4413 = []EnvVar{} + yyc4413 = true } } - yyh4408.End() - if yyc4408 { - *v = yyv4408 + yyh4413.End() + if yyc4413 { + *v = yyv4413 } } @@ -55287,10 +55328,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4412 := range v { + for _, yyv4417 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4413 := &yyv4412 - yy4413.CodecEncodeSelf(e) + yy4418 := &yyv4417 + yy4418.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55300,83 +55341,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4414 := *v - yyh4414, yyl4414 := z.DecSliceHelperStart() - var yyc4414 bool - if yyl4414 == 0 { - if yyv4414 == nil { - yyv4414 = []VolumeMount{} - yyc4414 = true - } else if len(yyv4414) != 0 { - yyv4414 = yyv4414[:0] - yyc4414 = true + yyv4419 := *v + yyh4419, yyl4419 := z.DecSliceHelperStart() + var yyc4419 bool + if yyl4419 == 0 { + if yyv4419 == nil { + yyv4419 = []VolumeMount{} + yyc4419 = true + } else if len(yyv4419) != 0 { + yyv4419 = yyv4419[:0] + yyc4419 = true } - } else if yyl4414 > 0 { - var yyrr4414, yyrl4414 int - var yyrt4414 bool - if yyl4414 > cap(yyv4414) { + } else if yyl4419 > 0 { + var yyrr4419, yyrl4419 int + var yyrt4419 bool + if yyl4419 > cap(yyv4419) { - yyrg4414 := len(yyv4414) > 0 - yyv24414 := yyv4414 - yyrl4414, yyrt4414 = z.DecInferLen(yyl4414, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4414 { - if yyrl4414 <= cap(yyv4414) { - yyv4414 = yyv4414[:yyrl4414] + yyrg4419 := len(yyv4419) > 0 + yyv24419 := yyv4419 + yyrl4419, yyrt4419 = z.DecInferLen(yyl4419, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4419 { + if yyrl4419 <= cap(yyv4419) { + yyv4419 = yyv4419[:yyrl4419] } else { - yyv4414 = make([]VolumeMount, yyrl4414) + yyv4419 = make([]VolumeMount, yyrl4419) } } else { - yyv4414 = make([]VolumeMount, yyrl4414) + yyv4419 = make([]VolumeMount, yyrl4419) } - yyc4414 = true - yyrr4414 = len(yyv4414) - if yyrg4414 { - copy(yyv4414, yyv24414) + yyc4419 = true + yyrr4419 = len(yyv4419) + if yyrg4419 { + copy(yyv4419, yyv24419) } - } else if yyl4414 != len(yyv4414) { - yyv4414 = yyv4414[:yyl4414] - yyc4414 = true + } else if yyl4419 != len(yyv4419) { + yyv4419 = yyv4419[:yyl4419] + yyc4419 = true } - yyj4414 := 0 - for ; yyj4414 < yyrr4414; yyj4414++ { - yyh4414.ElemContainerState(yyj4414) + yyj4419 := 0 + for ; yyj4419 < yyrr4419; yyj4419++ { + yyh4419.ElemContainerState(yyj4419) if r.TryDecodeAsNil() { - yyv4414[yyj4414] = VolumeMount{} + yyv4419[yyj4419] = VolumeMount{} } else { - yyv4415 := &yyv4414[yyj4414] - yyv4415.CodecDecodeSelf(d) + yyv4420 := &yyv4419[yyj4419] + yyv4420.CodecDecodeSelf(d) } } - if yyrt4414 { - for ; yyj4414 < yyl4414; yyj4414++ { - yyv4414 = append(yyv4414, VolumeMount{}) - yyh4414.ElemContainerState(yyj4414) + if yyrt4419 { + for ; yyj4419 < yyl4419; yyj4419++ { + yyv4419 = append(yyv4419, VolumeMount{}) + yyh4419.ElemContainerState(yyj4419) if r.TryDecodeAsNil() { - yyv4414[yyj4414] = VolumeMount{} + yyv4419[yyj4419] = VolumeMount{} } else { - yyv4416 := &yyv4414[yyj4414] - yyv4416.CodecDecodeSelf(d) + yyv4421 := &yyv4419[yyj4419] + yyv4421.CodecDecodeSelf(d) } } } } else { - yyj4414 := 0 - for ; !r.CheckBreak(); yyj4414++ { + yyj4419 := 0 + for ; !r.CheckBreak(); yyj4419++ { - if yyj4414 >= len(yyv4414) { - yyv4414 = append(yyv4414, VolumeMount{}) // var yyz4414 VolumeMount - yyc4414 = true + if yyj4419 >= len(yyv4419) { + yyv4419 = append(yyv4419, VolumeMount{}) // var yyz4419 VolumeMount + yyc4419 = true } - yyh4414.ElemContainerState(yyj4414) - if yyj4414 < len(yyv4414) { + yyh4419.ElemContainerState(yyj4419) + if yyj4419 < len(yyv4419) { if r.TryDecodeAsNil() { - yyv4414[yyj4414] = VolumeMount{} + yyv4419[yyj4419] = VolumeMount{} } else { - yyv4417 := &yyv4414[yyj4414] - yyv4417.CodecDecodeSelf(d) + yyv4422 := &yyv4419[yyj4419] + yyv4422.CodecDecodeSelf(d) } } else { @@ -55384,17 +55425,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4414 < len(yyv4414) { - yyv4414 = yyv4414[:yyj4414] - yyc4414 = true - } else if yyj4414 == 0 && yyv4414 == nil { - yyv4414 = []VolumeMount{} - yyc4414 = true + if yyj4419 < len(yyv4419) { + yyv4419 = yyv4419[:yyj4419] + yyc4419 = true + } else if yyj4419 == 0 && yyv4419 == nil { + yyv4419 = []VolumeMount{} + yyc4419 = true } } - yyh4414.End() - if yyc4414 { - *v = yyv4414 + yyh4419.End() + if yyc4419 { + *v = yyv4419 } } @@ -55403,10 +55444,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4418 := range v { + for _, yyv4423 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4419 := &yyv4418 - yy4419.CodecEncodeSelf(e) + yy4424 := &yyv4423 + yy4424.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55416,83 +55457,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4420 := *v - yyh4420, yyl4420 := z.DecSliceHelperStart() - var yyc4420 bool - if yyl4420 == 0 { - if yyv4420 == nil { - yyv4420 = []Pod{} - yyc4420 = true - } else if len(yyv4420) != 0 { - yyv4420 = yyv4420[:0] - yyc4420 = true + yyv4425 := *v + yyh4425, yyl4425 := z.DecSliceHelperStart() + var yyc4425 bool + if yyl4425 == 0 { + if yyv4425 == nil { + yyv4425 = []Pod{} + yyc4425 = true + } else if len(yyv4425) != 0 { + yyv4425 = yyv4425[:0] + yyc4425 = true } - } else if yyl4420 > 0 { - var yyrr4420, yyrl4420 int - var yyrt4420 bool - if yyl4420 > cap(yyv4420) { + } else if yyl4425 > 0 { + var yyrr4425, yyrl4425 int + var yyrt4425 bool + if yyl4425 > cap(yyv4425) { - yyrg4420 := len(yyv4420) > 0 - yyv24420 := yyv4420 - yyrl4420, yyrt4420 = z.DecInferLen(yyl4420, z.DecBasicHandle().MaxInitLen, 624) - if yyrt4420 { - if yyrl4420 <= cap(yyv4420) { - yyv4420 = yyv4420[:yyrl4420] + yyrg4425 := len(yyv4425) > 0 + yyv24425 := yyv4425 + yyrl4425, yyrt4425 = z.DecInferLen(yyl4425, z.DecBasicHandle().MaxInitLen, 624) + if yyrt4425 { + if yyrl4425 <= cap(yyv4425) { + yyv4425 = yyv4425[:yyrl4425] } else { - yyv4420 = make([]Pod, yyrl4420) + yyv4425 = make([]Pod, yyrl4425) } } else { - yyv4420 = make([]Pod, yyrl4420) + yyv4425 = make([]Pod, yyrl4425) } - yyc4420 = true - yyrr4420 = len(yyv4420) - if yyrg4420 { - copy(yyv4420, yyv24420) + yyc4425 = true + yyrr4425 = len(yyv4425) + if yyrg4425 { + copy(yyv4425, yyv24425) } - } else if yyl4420 != len(yyv4420) { - yyv4420 = yyv4420[:yyl4420] - yyc4420 = true + } else if yyl4425 != len(yyv4425) { + yyv4425 = yyv4425[:yyl4425] + yyc4425 = true } - yyj4420 := 0 - for ; yyj4420 < yyrr4420; yyj4420++ { - yyh4420.ElemContainerState(yyj4420) + yyj4425 := 0 + for ; yyj4425 < yyrr4425; yyj4425++ { + yyh4425.ElemContainerState(yyj4425) if r.TryDecodeAsNil() { - yyv4420[yyj4420] = Pod{} + yyv4425[yyj4425] = Pod{} } else { - yyv4421 := &yyv4420[yyj4420] - yyv4421.CodecDecodeSelf(d) + yyv4426 := &yyv4425[yyj4425] + yyv4426.CodecDecodeSelf(d) } } - if yyrt4420 { - for ; yyj4420 < yyl4420; yyj4420++ { - yyv4420 = append(yyv4420, Pod{}) - yyh4420.ElemContainerState(yyj4420) + if yyrt4425 { + for ; yyj4425 < yyl4425; yyj4425++ { + yyv4425 = append(yyv4425, Pod{}) + yyh4425.ElemContainerState(yyj4425) if r.TryDecodeAsNil() { - yyv4420[yyj4420] = Pod{} + yyv4425[yyj4425] = Pod{} } else { - yyv4422 := &yyv4420[yyj4420] - yyv4422.CodecDecodeSelf(d) + yyv4427 := &yyv4425[yyj4425] + yyv4427.CodecDecodeSelf(d) } } } } else { - yyj4420 := 0 - for ; !r.CheckBreak(); yyj4420++ { + yyj4425 := 0 + for ; !r.CheckBreak(); yyj4425++ { - if yyj4420 >= len(yyv4420) { - yyv4420 = append(yyv4420, Pod{}) // var yyz4420 Pod - yyc4420 = true + if yyj4425 >= len(yyv4425) { + yyv4425 = append(yyv4425, Pod{}) // var yyz4425 Pod + yyc4425 = true } - yyh4420.ElemContainerState(yyj4420) - if yyj4420 < len(yyv4420) { + yyh4425.ElemContainerState(yyj4425) + if yyj4425 < len(yyv4425) { if r.TryDecodeAsNil() { - yyv4420[yyj4420] = Pod{} + yyv4425[yyj4425] = Pod{} } else { - yyv4423 := &yyv4420[yyj4420] - yyv4423.CodecDecodeSelf(d) + yyv4428 := &yyv4425[yyj4425] + yyv4428.CodecDecodeSelf(d) } } else { @@ -55500,17 +55541,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4420 < len(yyv4420) { - yyv4420 = yyv4420[:yyj4420] - yyc4420 = true - } else if yyj4420 == 0 && yyv4420 == nil { - yyv4420 = []Pod{} - yyc4420 = true + if yyj4425 < len(yyv4425) { + yyv4425 = yyv4425[:yyj4425] + yyc4425 = true + } else if yyj4425 == 0 && yyv4425 == nil { + yyv4425 = []Pod{} + yyc4425 = true } } - yyh4420.End() - if yyc4420 { - *v = yyv4420 + yyh4425.End() + if yyc4425 { + *v = yyv4425 } } @@ -55519,10 +55560,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4424 := range v { + for _, yyv4429 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4425 := &yyv4424 - yy4425.CodecEncodeSelf(e) + yy4430 := &yyv4429 + yy4430.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55532,83 +55573,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4426 := *v - yyh4426, yyl4426 := z.DecSliceHelperStart() - var yyc4426 bool - if yyl4426 == 0 { - if yyv4426 == nil { - yyv4426 = []NodeSelectorTerm{} - yyc4426 = true - } else if len(yyv4426) != 0 { - yyv4426 = yyv4426[:0] - yyc4426 = true + yyv4431 := *v + yyh4431, yyl4431 := z.DecSliceHelperStart() + var yyc4431 bool + if yyl4431 == 0 { + if yyv4431 == nil { + yyv4431 = []NodeSelectorTerm{} + yyc4431 = true + } else if len(yyv4431) != 0 { + yyv4431 = yyv4431[:0] + yyc4431 = true } - } else if yyl4426 > 0 { - var yyrr4426, yyrl4426 int - var yyrt4426 bool - if yyl4426 > cap(yyv4426) { + } else if yyl4431 > 0 { + var yyrr4431, yyrl4431 int + var yyrt4431 bool + if yyl4431 > cap(yyv4431) { - yyrg4426 := len(yyv4426) > 0 - yyv24426 := yyv4426 - yyrl4426, yyrt4426 = z.DecInferLen(yyl4426, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4426 { - if yyrl4426 <= cap(yyv4426) { - yyv4426 = yyv4426[:yyrl4426] + yyrg4431 := len(yyv4431) > 0 + yyv24431 := yyv4431 + yyrl4431, yyrt4431 = z.DecInferLen(yyl4431, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4431 { + if yyrl4431 <= cap(yyv4431) { + yyv4431 = yyv4431[:yyrl4431] } else { - yyv4426 = make([]NodeSelectorTerm, yyrl4426) + yyv4431 = make([]NodeSelectorTerm, yyrl4431) } } else { - yyv4426 = make([]NodeSelectorTerm, yyrl4426) + yyv4431 = make([]NodeSelectorTerm, yyrl4431) } - yyc4426 = true - yyrr4426 = len(yyv4426) - if yyrg4426 { - copy(yyv4426, yyv24426) + yyc4431 = true + yyrr4431 = len(yyv4431) + if yyrg4431 { + copy(yyv4431, yyv24431) } - } else if yyl4426 != len(yyv4426) { - yyv4426 = yyv4426[:yyl4426] - yyc4426 = true + } else if yyl4431 != len(yyv4431) { + yyv4431 = yyv4431[:yyl4431] + yyc4431 = true } - yyj4426 := 0 - for ; yyj4426 < yyrr4426; yyj4426++ { - yyh4426.ElemContainerState(yyj4426) + yyj4431 := 0 + for ; yyj4431 < yyrr4431; yyj4431++ { + yyh4431.ElemContainerState(yyj4431) if r.TryDecodeAsNil() { - yyv4426[yyj4426] = NodeSelectorTerm{} + yyv4431[yyj4431] = NodeSelectorTerm{} } else { - yyv4427 := &yyv4426[yyj4426] - yyv4427.CodecDecodeSelf(d) + yyv4432 := &yyv4431[yyj4431] + yyv4432.CodecDecodeSelf(d) } } - if yyrt4426 { - for ; yyj4426 < yyl4426; yyj4426++ { - yyv4426 = append(yyv4426, NodeSelectorTerm{}) - yyh4426.ElemContainerState(yyj4426) + if yyrt4431 { + for ; yyj4431 < yyl4431; yyj4431++ { + yyv4431 = append(yyv4431, NodeSelectorTerm{}) + yyh4431.ElemContainerState(yyj4431) if r.TryDecodeAsNil() { - yyv4426[yyj4426] = NodeSelectorTerm{} + yyv4431[yyj4431] = NodeSelectorTerm{} } else { - yyv4428 := &yyv4426[yyj4426] - yyv4428.CodecDecodeSelf(d) + yyv4433 := &yyv4431[yyj4431] + yyv4433.CodecDecodeSelf(d) } } } } else { - yyj4426 := 0 - for ; !r.CheckBreak(); yyj4426++ { + yyj4431 := 0 + for ; !r.CheckBreak(); yyj4431++ { - if yyj4426 >= len(yyv4426) { - yyv4426 = append(yyv4426, NodeSelectorTerm{}) // var yyz4426 NodeSelectorTerm - yyc4426 = true + if yyj4431 >= len(yyv4431) { + yyv4431 = append(yyv4431, NodeSelectorTerm{}) // var yyz4431 NodeSelectorTerm + yyc4431 = true } - yyh4426.ElemContainerState(yyj4426) - if yyj4426 < len(yyv4426) { + yyh4431.ElemContainerState(yyj4431) + if yyj4431 < len(yyv4431) { if r.TryDecodeAsNil() { - yyv4426[yyj4426] = NodeSelectorTerm{} + yyv4431[yyj4431] = NodeSelectorTerm{} } else { - yyv4429 := &yyv4426[yyj4426] - yyv4429.CodecDecodeSelf(d) + yyv4434 := &yyv4431[yyj4431] + yyv4434.CodecDecodeSelf(d) } } else { @@ -55616,17 +55657,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4426 < len(yyv4426) { - yyv4426 = yyv4426[:yyj4426] - yyc4426 = true - } else if yyj4426 == 0 && yyv4426 == nil { - yyv4426 = []NodeSelectorTerm{} - yyc4426 = true + if yyj4431 < len(yyv4431) { + yyv4431 = yyv4431[:yyj4431] + yyc4431 = true + } else if yyj4431 == 0 && yyv4431 == nil { + yyv4431 = []NodeSelectorTerm{} + yyc4431 = true } } - yyh4426.End() - if yyc4426 { - *v = yyv4426 + yyh4431.End() + if yyc4431 { + *v = yyv4431 } } @@ -55635,10 +55676,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4430 := range v { + for _, yyv4435 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4431 := &yyv4430 - yy4431.CodecEncodeSelf(e) + yy4436 := &yyv4435 + yy4436.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55648,83 +55689,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4432 := *v - yyh4432, yyl4432 := z.DecSliceHelperStart() - var yyc4432 bool - if yyl4432 == 0 { - if yyv4432 == nil { - yyv4432 = []NodeSelectorRequirement{} - yyc4432 = true - } else if len(yyv4432) != 0 { - yyv4432 = yyv4432[:0] - yyc4432 = true + yyv4437 := *v + yyh4437, yyl4437 := z.DecSliceHelperStart() + var yyc4437 bool + if yyl4437 == 0 { + if yyv4437 == nil { + yyv4437 = []NodeSelectorRequirement{} + yyc4437 = true + } else if len(yyv4437) != 0 { + yyv4437 = yyv4437[:0] + yyc4437 = true } - } else if yyl4432 > 0 { - var yyrr4432, yyrl4432 int - var yyrt4432 bool - if yyl4432 > cap(yyv4432) { + } else if yyl4437 > 0 { + var yyrr4437, yyrl4437 int + var yyrt4437 bool + if yyl4437 > cap(yyv4437) { - yyrg4432 := len(yyv4432) > 0 - yyv24432 := yyv4432 - yyrl4432, yyrt4432 = z.DecInferLen(yyl4432, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4432 { - if yyrl4432 <= cap(yyv4432) { - yyv4432 = yyv4432[:yyrl4432] + yyrg4437 := len(yyv4437) > 0 + yyv24437 := yyv4437 + yyrl4437, yyrt4437 = z.DecInferLen(yyl4437, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4437 { + if yyrl4437 <= cap(yyv4437) { + yyv4437 = yyv4437[:yyrl4437] } else { - yyv4432 = make([]NodeSelectorRequirement, yyrl4432) + yyv4437 = make([]NodeSelectorRequirement, yyrl4437) } } else { - yyv4432 = make([]NodeSelectorRequirement, yyrl4432) + yyv4437 = make([]NodeSelectorRequirement, yyrl4437) } - yyc4432 = true - yyrr4432 = len(yyv4432) - if yyrg4432 { - copy(yyv4432, yyv24432) + yyc4437 = true + yyrr4437 = len(yyv4437) + if yyrg4437 { + copy(yyv4437, yyv24437) } - } else if yyl4432 != len(yyv4432) { - yyv4432 = yyv4432[:yyl4432] - yyc4432 = true + } else if yyl4437 != len(yyv4437) { + yyv4437 = yyv4437[:yyl4437] + yyc4437 = true } - yyj4432 := 0 - for ; yyj4432 < yyrr4432; yyj4432++ { - yyh4432.ElemContainerState(yyj4432) + yyj4437 := 0 + for ; yyj4437 < yyrr4437; yyj4437++ { + yyh4437.ElemContainerState(yyj4437) if r.TryDecodeAsNil() { - yyv4432[yyj4432] = NodeSelectorRequirement{} + yyv4437[yyj4437] = NodeSelectorRequirement{} } else { - yyv4433 := &yyv4432[yyj4432] - yyv4433.CodecDecodeSelf(d) + yyv4438 := &yyv4437[yyj4437] + yyv4438.CodecDecodeSelf(d) } } - if yyrt4432 { - for ; yyj4432 < yyl4432; yyj4432++ { - yyv4432 = append(yyv4432, NodeSelectorRequirement{}) - yyh4432.ElemContainerState(yyj4432) + if yyrt4437 { + for ; yyj4437 < yyl4437; yyj4437++ { + yyv4437 = append(yyv4437, NodeSelectorRequirement{}) + yyh4437.ElemContainerState(yyj4437) if r.TryDecodeAsNil() { - yyv4432[yyj4432] = NodeSelectorRequirement{} + yyv4437[yyj4437] = NodeSelectorRequirement{} } else { - yyv4434 := &yyv4432[yyj4432] - yyv4434.CodecDecodeSelf(d) + yyv4439 := &yyv4437[yyj4437] + yyv4439.CodecDecodeSelf(d) } } } } else { - yyj4432 := 0 - for ; !r.CheckBreak(); yyj4432++ { + yyj4437 := 0 + for ; !r.CheckBreak(); yyj4437++ { - if yyj4432 >= len(yyv4432) { - yyv4432 = append(yyv4432, NodeSelectorRequirement{}) // var yyz4432 NodeSelectorRequirement - yyc4432 = true + if yyj4437 >= len(yyv4437) { + yyv4437 = append(yyv4437, NodeSelectorRequirement{}) // var yyz4437 NodeSelectorRequirement + yyc4437 = true } - yyh4432.ElemContainerState(yyj4432) - if yyj4432 < len(yyv4432) { + yyh4437.ElemContainerState(yyj4437) + if yyj4437 < len(yyv4437) { if r.TryDecodeAsNil() { - yyv4432[yyj4432] = NodeSelectorRequirement{} + yyv4437[yyj4437] = NodeSelectorRequirement{} } else { - yyv4435 := &yyv4432[yyj4432] - yyv4435.CodecDecodeSelf(d) + yyv4440 := &yyv4437[yyj4437] + yyv4440.CodecDecodeSelf(d) } } else { @@ -55732,17 +55773,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4432 < len(yyv4432) { - yyv4432 = yyv4432[:yyj4432] - yyc4432 = true - } else if yyj4432 == 0 && yyv4432 == nil { - yyv4432 = []NodeSelectorRequirement{} - yyc4432 = true + if yyj4437 < len(yyv4437) { + yyv4437 = yyv4437[:yyj4437] + yyc4437 = true + } else if yyj4437 == 0 && yyv4437 == nil { + yyv4437 = []NodeSelectorRequirement{} + yyc4437 = true } } - yyh4432.End() - if yyc4432 { - *v = yyv4432 + yyh4437.End() + if yyc4437 { + *v = yyv4437 } } @@ -55751,10 +55792,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4436 := range v { + for _, yyv4441 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4437 := &yyv4436 - yy4437.CodecEncodeSelf(e) + yy4442 := &yyv4441 + yy4442.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55764,83 +55805,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4438 := *v - yyh4438, yyl4438 := z.DecSliceHelperStart() - var yyc4438 bool - if yyl4438 == 0 { - if yyv4438 == nil { - yyv4438 = []PodAffinityTerm{} - yyc4438 = true - } else if len(yyv4438) != 0 { - yyv4438 = yyv4438[:0] - yyc4438 = true + yyv4443 := *v + yyh4443, yyl4443 := z.DecSliceHelperStart() + var yyc4443 bool + if yyl4443 == 0 { + if yyv4443 == nil { + yyv4443 = []PodAffinityTerm{} + yyc4443 = true + } else if len(yyv4443) != 0 { + yyv4443 = yyv4443[:0] + yyc4443 = true } - } else if yyl4438 > 0 { - var yyrr4438, yyrl4438 int - var yyrt4438 bool - if yyl4438 > cap(yyv4438) { + } else if yyl4443 > 0 { + var yyrr4443, yyrl4443 int + var yyrt4443 bool + if yyl4443 > cap(yyv4443) { - yyrg4438 := len(yyv4438) > 0 - yyv24438 := yyv4438 - yyrl4438, yyrt4438 = z.DecInferLen(yyl4438, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4438 { - if yyrl4438 <= cap(yyv4438) { - yyv4438 = yyv4438[:yyrl4438] + yyrg4443 := len(yyv4443) > 0 + yyv24443 := yyv4443 + yyrl4443, yyrt4443 = z.DecInferLen(yyl4443, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4443 { + if yyrl4443 <= cap(yyv4443) { + yyv4443 = yyv4443[:yyrl4443] } else { - yyv4438 = make([]PodAffinityTerm, yyrl4438) + yyv4443 = make([]PodAffinityTerm, yyrl4443) } } else { - yyv4438 = make([]PodAffinityTerm, yyrl4438) + yyv4443 = make([]PodAffinityTerm, yyrl4443) } - yyc4438 = true - yyrr4438 = len(yyv4438) - if yyrg4438 { - copy(yyv4438, yyv24438) + yyc4443 = true + yyrr4443 = len(yyv4443) + if yyrg4443 { + copy(yyv4443, yyv24443) } - } else if yyl4438 != len(yyv4438) { - yyv4438 = yyv4438[:yyl4438] - yyc4438 = true + } else if yyl4443 != len(yyv4443) { + yyv4443 = yyv4443[:yyl4443] + yyc4443 = true } - yyj4438 := 0 - for ; yyj4438 < yyrr4438; yyj4438++ { - yyh4438.ElemContainerState(yyj4438) + yyj4443 := 0 + for ; yyj4443 < yyrr4443; yyj4443++ { + yyh4443.ElemContainerState(yyj4443) if r.TryDecodeAsNil() { - yyv4438[yyj4438] = PodAffinityTerm{} + yyv4443[yyj4443] = PodAffinityTerm{} } else { - yyv4439 := &yyv4438[yyj4438] - yyv4439.CodecDecodeSelf(d) + yyv4444 := &yyv4443[yyj4443] + yyv4444.CodecDecodeSelf(d) } } - if yyrt4438 { - for ; yyj4438 < yyl4438; yyj4438++ { - yyv4438 = append(yyv4438, PodAffinityTerm{}) - yyh4438.ElemContainerState(yyj4438) + if yyrt4443 { + for ; yyj4443 < yyl4443; yyj4443++ { + yyv4443 = append(yyv4443, PodAffinityTerm{}) + yyh4443.ElemContainerState(yyj4443) if r.TryDecodeAsNil() { - yyv4438[yyj4438] = PodAffinityTerm{} + yyv4443[yyj4443] = PodAffinityTerm{} } else { - yyv4440 := &yyv4438[yyj4438] - yyv4440.CodecDecodeSelf(d) + yyv4445 := &yyv4443[yyj4443] + yyv4445.CodecDecodeSelf(d) } } } } else { - yyj4438 := 0 - for ; !r.CheckBreak(); yyj4438++ { + yyj4443 := 0 + for ; !r.CheckBreak(); yyj4443++ { - if yyj4438 >= len(yyv4438) { - yyv4438 = append(yyv4438, PodAffinityTerm{}) // var yyz4438 PodAffinityTerm - yyc4438 = true + if yyj4443 >= len(yyv4443) { + yyv4443 = append(yyv4443, PodAffinityTerm{}) // var yyz4443 PodAffinityTerm + yyc4443 = true } - yyh4438.ElemContainerState(yyj4438) - if yyj4438 < len(yyv4438) { + yyh4443.ElemContainerState(yyj4443) + if yyj4443 < len(yyv4443) { if r.TryDecodeAsNil() { - yyv4438[yyj4438] = PodAffinityTerm{} + yyv4443[yyj4443] = PodAffinityTerm{} } else { - yyv4441 := &yyv4438[yyj4438] - yyv4441.CodecDecodeSelf(d) + yyv4446 := &yyv4443[yyj4443] + yyv4446.CodecDecodeSelf(d) } } else { @@ -55848,17 +55889,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4438 < len(yyv4438) { - yyv4438 = yyv4438[:yyj4438] - yyc4438 = true - } else if yyj4438 == 0 && yyv4438 == nil { - yyv4438 = []PodAffinityTerm{} - yyc4438 = true + if yyj4443 < len(yyv4443) { + yyv4443 = yyv4443[:yyj4443] + yyc4443 = true + } else if yyj4443 == 0 && yyv4443 == nil { + yyv4443 = []PodAffinityTerm{} + yyc4443 = true } } - yyh4438.End() - if yyc4438 { - *v = yyv4438 + yyh4443.End() + if yyc4443 { + *v = yyv4443 } } @@ -55867,10 +55908,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4442 := range v { + for _, yyv4447 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4443 := &yyv4442 - yy4443.CodecEncodeSelf(e) + yy4448 := &yyv4447 + yy4448.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55880,83 +55921,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4444 := *v - yyh4444, yyl4444 := z.DecSliceHelperStart() - var yyc4444 bool - if yyl4444 == 0 { - if yyv4444 == nil { - yyv4444 = []WeightedPodAffinityTerm{} - yyc4444 = true - } else if len(yyv4444) != 0 { - yyv4444 = yyv4444[:0] - yyc4444 = true + yyv4449 := *v + yyh4449, yyl4449 := z.DecSliceHelperStart() + var yyc4449 bool + if yyl4449 == 0 { + if yyv4449 == nil { + yyv4449 = []WeightedPodAffinityTerm{} + yyc4449 = true + } else if len(yyv4449) != 0 { + yyv4449 = yyv4449[:0] + yyc4449 = true } - } else if yyl4444 > 0 { - var yyrr4444, yyrl4444 int - var yyrt4444 bool - if yyl4444 > cap(yyv4444) { + } else if yyl4449 > 0 { + var yyrr4449, yyrl4449 int + var yyrt4449 bool + if yyl4449 > cap(yyv4449) { - yyrg4444 := len(yyv4444) > 0 - yyv24444 := yyv4444 - yyrl4444, yyrt4444 = z.DecInferLen(yyl4444, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4444 { - if yyrl4444 <= cap(yyv4444) { - yyv4444 = yyv4444[:yyrl4444] + yyrg4449 := len(yyv4449) > 0 + yyv24449 := yyv4449 + yyrl4449, yyrt4449 = z.DecInferLen(yyl4449, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4449 { + if yyrl4449 <= cap(yyv4449) { + yyv4449 = yyv4449[:yyrl4449] } else { - yyv4444 = make([]WeightedPodAffinityTerm, yyrl4444) + yyv4449 = make([]WeightedPodAffinityTerm, yyrl4449) } } else { - yyv4444 = make([]WeightedPodAffinityTerm, yyrl4444) + yyv4449 = make([]WeightedPodAffinityTerm, yyrl4449) } - yyc4444 = true - yyrr4444 = len(yyv4444) - if yyrg4444 { - copy(yyv4444, yyv24444) + yyc4449 = true + yyrr4449 = len(yyv4449) + if yyrg4449 { + copy(yyv4449, yyv24449) } - } else if yyl4444 != len(yyv4444) { - yyv4444 = yyv4444[:yyl4444] - yyc4444 = true + } else if yyl4449 != len(yyv4449) { + yyv4449 = yyv4449[:yyl4449] + yyc4449 = true } - yyj4444 := 0 - for ; yyj4444 < yyrr4444; yyj4444++ { - yyh4444.ElemContainerState(yyj4444) + yyj4449 := 0 + for ; yyj4449 < yyrr4449; yyj4449++ { + yyh4449.ElemContainerState(yyj4449) if r.TryDecodeAsNil() { - yyv4444[yyj4444] = WeightedPodAffinityTerm{} + yyv4449[yyj4449] = WeightedPodAffinityTerm{} } else { - yyv4445 := &yyv4444[yyj4444] - yyv4445.CodecDecodeSelf(d) + yyv4450 := &yyv4449[yyj4449] + yyv4450.CodecDecodeSelf(d) } } - if yyrt4444 { - for ; yyj4444 < yyl4444; yyj4444++ { - yyv4444 = append(yyv4444, WeightedPodAffinityTerm{}) - yyh4444.ElemContainerState(yyj4444) + if yyrt4449 { + for ; yyj4449 < yyl4449; yyj4449++ { + yyv4449 = append(yyv4449, WeightedPodAffinityTerm{}) + yyh4449.ElemContainerState(yyj4449) if r.TryDecodeAsNil() { - yyv4444[yyj4444] = WeightedPodAffinityTerm{} + yyv4449[yyj4449] = WeightedPodAffinityTerm{} } else { - yyv4446 := &yyv4444[yyj4444] - yyv4446.CodecDecodeSelf(d) + yyv4451 := &yyv4449[yyj4449] + yyv4451.CodecDecodeSelf(d) } } } } else { - yyj4444 := 0 - for ; !r.CheckBreak(); yyj4444++ { + yyj4449 := 0 + for ; !r.CheckBreak(); yyj4449++ { - if yyj4444 >= len(yyv4444) { - yyv4444 = append(yyv4444, WeightedPodAffinityTerm{}) // var yyz4444 WeightedPodAffinityTerm - yyc4444 = true + if yyj4449 >= len(yyv4449) { + yyv4449 = append(yyv4449, WeightedPodAffinityTerm{}) // var yyz4449 WeightedPodAffinityTerm + yyc4449 = true } - yyh4444.ElemContainerState(yyj4444) - if yyj4444 < len(yyv4444) { + yyh4449.ElemContainerState(yyj4449) + if yyj4449 < len(yyv4449) { if r.TryDecodeAsNil() { - yyv4444[yyj4444] = WeightedPodAffinityTerm{} + yyv4449[yyj4449] = WeightedPodAffinityTerm{} } else { - yyv4447 := &yyv4444[yyj4444] - yyv4447.CodecDecodeSelf(d) + yyv4452 := &yyv4449[yyj4449] + yyv4452.CodecDecodeSelf(d) } } else { @@ -55964,17 +56005,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4444 < len(yyv4444) { - yyv4444 = yyv4444[:yyj4444] - yyc4444 = true - } else if yyj4444 == 0 && yyv4444 == nil { - yyv4444 = []WeightedPodAffinityTerm{} - yyc4444 = true + if yyj4449 < len(yyv4449) { + yyv4449 = yyv4449[:yyj4449] + yyc4449 = true + } else if yyj4449 == 0 && yyv4449 == nil { + yyv4449 = []WeightedPodAffinityTerm{} + yyc4449 = true } } - yyh4444.End() - if yyc4444 { - *v = yyv4444 + yyh4449.End() + if yyc4449 { + *v = yyv4449 } } @@ -55983,10 +56024,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4448 := range v { + for _, yyv4453 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4449 := &yyv4448 - yy4449.CodecEncodeSelf(e) + yy4454 := &yyv4453 + yy4454.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55996,83 +56037,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4450 := *v - yyh4450, yyl4450 := z.DecSliceHelperStart() - var yyc4450 bool - if yyl4450 == 0 { - if yyv4450 == nil { - yyv4450 = []PreferredSchedulingTerm{} - yyc4450 = true - } else if len(yyv4450) != 0 { - yyv4450 = yyv4450[:0] - yyc4450 = true + yyv4455 := *v + yyh4455, yyl4455 := z.DecSliceHelperStart() + var yyc4455 bool + if yyl4455 == 0 { + if yyv4455 == nil { + yyv4455 = []PreferredSchedulingTerm{} + yyc4455 = true + } else if len(yyv4455) != 0 { + yyv4455 = yyv4455[:0] + yyc4455 = true } - } else if yyl4450 > 0 { - var yyrr4450, yyrl4450 int - var yyrt4450 bool - if yyl4450 > cap(yyv4450) { + } else if yyl4455 > 0 { + var yyrr4455, yyrl4455 int + var yyrt4455 bool + if yyl4455 > cap(yyv4455) { - yyrg4450 := len(yyv4450) > 0 - yyv24450 := yyv4450 - yyrl4450, yyrt4450 = z.DecInferLen(yyl4450, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4450 { - if yyrl4450 <= cap(yyv4450) { - yyv4450 = yyv4450[:yyrl4450] + yyrg4455 := len(yyv4455) > 0 + yyv24455 := yyv4455 + yyrl4455, yyrt4455 = z.DecInferLen(yyl4455, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4455 { + if yyrl4455 <= cap(yyv4455) { + yyv4455 = yyv4455[:yyrl4455] } else { - yyv4450 = make([]PreferredSchedulingTerm, yyrl4450) + yyv4455 = make([]PreferredSchedulingTerm, yyrl4455) } } else { - yyv4450 = make([]PreferredSchedulingTerm, yyrl4450) + yyv4455 = make([]PreferredSchedulingTerm, yyrl4455) } - yyc4450 = true - yyrr4450 = len(yyv4450) - if yyrg4450 { - copy(yyv4450, yyv24450) + yyc4455 = true + yyrr4455 = len(yyv4455) + if yyrg4455 { + copy(yyv4455, yyv24455) } - } else if yyl4450 != len(yyv4450) { - yyv4450 = yyv4450[:yyl4450] - yyc4450 = true + } else if yyl4455 != len(yyv4455) { + yyv4455 = yyv4455[:yyl4455] + yyc4455 = true } - yyj4450 := 0 - for ; yyj4450 < yyrr4450; yyj4450++ { - yyh4450.ElemContainerState(yyj4450) + yyj4455 := 0 + for ; yyj4455 < yyrr4455; yyj4455++ { + yyh4455.ElemContainerState(yyj4455) if r.TryDecodeAsNil() { - yyv4450[yyj4450] = PreferredSchedulingTerm{} + yyv4455[yyj4455] = PreferredSchedulingTerm{} } else { - yyv4451 := &yyv4450[yyj4450] - yyv4451.CodecDecodeSelf(d) + yyv4456 := &yyv4455[yyj4455] + yyv4456.CodecDecodeSelf(d) } } - if yyrt4450 { - for ; yyj4450 < yyl4450; yyj4450++ { - yyv4450 = append(yyv4450, PreferredSchedulingTerm{}) - yyh4450.ElemContainerState(yyj4450) + if yyrt4455 { + for ; yyj4455 < yyl4455; yyj4455++ { + yyv4455 = append(yyv4455, PreferredSchedulingTerm{}) + yyh4455.ElemContainerState(yyj4455) if r.TryDecodeAsNil() { - yyv4450[yyj4450] = PreferredSchedulingTerm{} + yyv4455[yyj4455] = PreferredSchedulingTerm{} } else { - yyv4452 := &yyv4450[yyj4450] - yyv4452.CodecDecodeSelf(d) + yyv4457 := &yyv4455[yyj4455] + yyv4457.CodecDecodeSelf(d) } } } } else { - yyj4450 := 0 - for ; !r.CheckBreak(); yyj4450++ { + yyj4455 := 0 + for ; !r.CheckBreak(); yyj4455++ { - if yyj4450 >= len(yyv4450) { - yyv4450 = append(yyv4450, PreferredSchedulingTerm{}) // var yyz4450 PreferredSchedulingTerm - yyc4450 = true + if yyj4455 >= len(yyv4455) { + yyv4455 = append(yyv4455, PreferredSchedulingTerm{}) // var yyz4455 PreferredSchedulingTerm + yyc4455 = true } - yyh4450.ElemContainerState(yyj4450) - if yyj4450 < len(yyv4450) { + yyh4455.ElemContainerState(yyj4455) + if yyj4455 < len(yyv4455) { if r.TryDecodeAsNil() { - yyv4450[yyj4450] = PreferredSchedulingTerm{} + yyv4455[yyj4455] = PreferredSchedulingTerm{} } else { - yyv4453 := &yyv4450[yyj4450] - yyv4453.CodecDecodeSelf(d) + yyv4458 := &yyv4455[yyj4455] + yyv4458.CodecDecodeSelf(d) } } else { @@ -56080,17 +56121,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4450 < len(yyv4450) { - yyv4450 = yyv4450[:yyj4450] - yyc4450 = true - } else if yyj4450 == 0 && yyv4450 == nil { - yyv4450 = []PreferredSchedulingTerm{} - yyc4450 = true + if yyj4455 < len(yyv4455) { + yyv4455 = yyv4455[:yyj4455] + yyc4455 = true + } else if yyj4455 == 0 && yyv4455 == nil { + yyv4455 = []PreferredSchedulingTerm{} + yyc4455 = true } } - yyh4450.End() - if yyc4450 { - *v = yyv4450 + yyh4455.End() + if yyc4455 { + *v = yyv4455 } } @@ -56099,10 +56140,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4454 := range v { + for _, yyv4459 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4455 := &yyv4454 - yy4455.CodecEncodeSelf(e) + yy4460 := &yyv4459 + yy4460.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56112,83 +56153,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4456 := *v - yyh4456, yyl4456 := z.DecSliceHelperStart() - var yyc4456 bool - if yyl4456 == 0 { - if yyv4456 == nil { - yyv4456 = []Volume{} - yyc4456 = true - } else if len(yyv4456) != 0 { - yyv4456 = yyv4456[:0] - yyc4456 = true + yyv4461 := *v + yyh4461, yyl4461 := z.DecSliceHelperStart() + var yyc4461 bool + if yyl4461 == 0 { + if yyv4461 == nil { + yyv4461 = []Volume{} + yyc4461 = true + } else if len(yyv4461) != 0 { + yyv4461 = yyv4461[:0] + yyc4461 = true } - } else if yyl4456 > 0 { - var yyrr4456, yyrl4456 int - var yyrt4456 bool - if yyl4456 > cap(yyv4456) { + } else if yyl4461 > 0 { + var yyrr4461, yyrl4461 int + var yyrt4461 bool + if yyl4461 > cap(yyv4461) { - yyrg4456 := len(yyv4456) > 0 - yyv24456 := yyv4456 - yyrl4456, yyrt4456 = z.DecInferLen(yyl4456, z.DecBasicHandle().MaxInitLen, 176) - if yyrt4456 { - if yyrl4456 <= cap(yyv4456) { - yyv4456 = yyv4456[:yyrl4456] + yyrg4461 := len(yyv4461) > 0 + yyv24461 := yyv4461 + yyrl4461, yyrt4461 = z.DecInferLen(yyl4461, z.DecBasicHandle().MaxInitLen, 176) + if yyrt4461 { + if yyrl4461 <= cap(yyv4461) { + yyv4461 = yyv4461[:yyrl4461] } else { - yyv4456 = make([]Volume, yyrl4456) + yyv4461 = make([]Volume, yyrl4461) } } else { - yyv4456 = make([]Volume, yyrl4456) + yyv4461 = make([]Volume, yyrl4461) } - yyc4456 = true - yyrr4456 = len(yyv4456) - if yyrg4456 { - copy(yyv4456, yyv24456) + yyc4461 = true + yyrr4461 = len(yyv4461) + if yyrg4461 { + copy(yyv4461, yyv24461) } - } else if yyl4456 != len(yyv4456) { - yyv4456 = yyv4456[:yyl4456] - yyc4456 = true + } else if yyl4461 != len(yyv4461) { + yyv4461 = yyv4461[:yyl4461] + yyc4461 = true } - yyj4456 := 0 - for ; yyj4456 < yyrr4456; yyj4456++ { - yyh4456.ElemContainerState(yyj4456) + yyj4461 := 0 + for ; yyj4461 < yyrr4461; yyj4461++ { + yyh4461.ElemContainerState(yyj4461) if r.TryDecodeAsNil() { - yyv4456[yyj4456] = Volume{} + yyv4461[yyj4461] = Volume{} } else { - yyv4457 := &yyv4456[yyj4456] - yyv4457.CodecDecodeSelf(d) + yyv4462 := &yyv4461[yyj4461] + yyv4462.CodecDecodeSelf(d) } } - if yyrt4456 { - for ; yyj4456 < yyl4456; yyj4456++ { - yyv4456 = append(yyv4456, Volume{}) - yyh4456.ElemContainerState(yyj4456) + if yyrt4461 { + for ; yyj4461 < yyl4461; yyj4461++ { + yyv4461 = append(yyv4461, Volume{}) + yyh4461.ElemContainerState(yyj4461) if r.TryDecodeAsNil() { - yyv4456[yyj4456] = Volume{} + yyv4461[yyj4461] = Volume{} } else { - yyv4458 := &yyv4456[yyj4456] - yyv4458.CodecDecodeSelf(d) + yyv4463 := &yyv4461[yyj4461] + yyv4463.CodecDecodeSelf(d) } } } } else { - yyj4456 := 0 - for ; !r.CheckBreak(); yyj4456++ { + yyj4461 := 0 + for ; !r.CheckBreak(); yyj4461++ { - if yyj4456 >= len(yyv4456) { - yyv4456 = append(yyv4456, Volume{}) // var yyz4456 Volume - yyc4456 = true + if yyj4461 >= len(yyv4461) { + yyv4461 = append(yyv4461, Volume{}) // var yyz4461 Volume + yyc4461 = true } - yyh4456.ElemContainerState(yyj4456) - if yyj4456 < len(yyv4456) { + yyh4461.ElemContainerState(yyj4461) + if yyj4461 < len(yyv4461) { if r.TryDecodeAsNil() { - yyv4456[yyj4456] = Volume{} + yyv4461[yyj4461] = Volume{} } else { - yyv4459 := &yyv4456[yyj4456] - yyv4459.CodecDecodeSelf(d) + yyv4464 := &yyv4461[yyj4461] + yyv4464.CodecDecodeSelf(d) } } else { @@ -56196,17 +56237,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4456 < len(yyv4456) { - yyv4456 = yyv4456[:yyj4456] - yyc4456 = true - } else if yyj4456 == 0 && yyv4456 == nil { - yyv4456 = []Volume{} - yyc4456 = true + if yyj4461 < len(yyv4461) { + yyv4461 = yyv4461[:yyj4461] + yyc4461 = true + } else if yyj4461 == 0 && yyv4461 == nil { + yyv4461 = []Volume{} + yyc4461 = true } } - yyh4456.End() - if yyc4456 { - *v = yyv4456 + yyh4461.End() + if yyc4461 { + *v = yyv4461 } } @@ -56215,10 +56256,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4460 := range v { + for _, yyv4465 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4461 := &yyv4460 - yy4461.CodecEncodeSelf(e) + yy4466 := &yyv4465 + yy4466.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56228,83 +56269,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4462 := *v - yyh4462, yyl4462 := z.DecSliceHelperStart() - var yyc4462 bool - if yyl4462 == 0 { - if yyv4462 == nil { - yyv4462 = []Container{} - yyc4462 = true - } else if len(yyv4462) != 0 { - yyv4462 = yyv4462[:0] - yyc4462 = true + yyv4467 := *v + yyh4467, yyl4467 := z.DecSliceHelperStart() + var yyc4467 bool + if yyl4467 == 0 { + if yyv4467 == nil { + yyv4467 = []Container{} + yyc4467 = true + } else if len(yyv4467) != 0 { + yyv4467 = yyv4467[:0] + yyc4467 = true } - } else if yyl4462 > 0 { - var yyrr4462, yyrl4462 int - var yyrt4462 bool - if yyl4462 > cap(yyv4462) { + } else if yyl4467 > 0 { + var yyrr4467, yyrl4467 int + var yyrt4467 bool + if yyl4467 > cap(yyv4467) { - yyrg4462 := len(yyv4462) > 0 - yyv24462 := yyv4462 - yyrl4462, yyrt4462 = z.DecInferLen(yyl4462, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4462 { - if yyrl4462 <= cap(yyv4462) { - yyv4462 = yyv4462[:yyrl4462] + yyrg4467 := len(yyv4467) > 0 + yyv24467 := yyv4467 + yyrl4467, yyrt4467 = z.DecInferLen(yyl4467, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4467 { + if yyrl4467 <= cap(yyv4467) { + yyv4467 = yyv4467[:yyrl4467] } else { - yyv4462 = make([]Container, yyrl4462) + yyv4467 = make([]Container, yyrl4467) } } else { - yyv4462 = make([]Container, yyrl4462) + yyv4467 = make([]Container, yyrl4467) } - yyc4462 = true - yyrr4462 = len(yyv4462) - if yyrg4462 { - copy(yyv4462, yyv24462) + yyc4467 = true + yyrr4467 = len(yyv4467) + if yyrg4467 { + copy(yyv4467, yyv24467) } - } else if yyl4462 != len(yyv4462) { - yyv4462 = yyv4462[:yyl4462] - yyc4462 = true + } else if yyl4467 != len(yyv4467) { + yyv4467 = yyv4467[:yyl4467] + yyc4467 = true } - yyj4462 := 0 - for ; yyj4462 < yyrr4462; yyj4462++ { - yyh4462.ElemContainerState(yyj4462) + yyj4467 := 0 + for ; yyj4467 < yyrr4467; yyj4467++ { + yyh4467.ElemContainerState(yyj4467) if r.TryDecodeAsNil() { - yyv4462[yyj4462] = Container{} + yyv4467[yyj4467] = Container{} } else { - yyv4463 := &yyv4462[yyj4462] - yyv4463.CodecDecodeSelf(d) + yyv4468 := &yyv4467[yyj4467] + yyv4468.CodecDecodeSelf(d) } } - if yyrt4462 { - for ; yyj4462 < yyl4462; yyj4462++ { - yyv4462 = append(yyv4462, Container{}) - yyh4462.ElemContainerState(yyj4462) + if yyrt4467 { + for ; yyj4467 < yyl4467; yyj4467++ { + yyv4467 = append(yyv4467, Container{}) + yyh4467.ElemContainerState(yyj4467) if r.TryDecodeAsNil() { - yyv4462[yyj4462] = Container{} + yyv4467[yyj4467] = Container{} } else { - yyv4464 := &yyv4462[yyj4462] - yyv4464.CodecDecodeSelf(d) + yyv4469 := &yyv4467[yyj4467] + yyv4469.CodecDecodeSelf(d) } } } } else { - yyj4462 := 0 - for ; !r.CheckBreak(); yyj4462++ { + yyj4467 := 0 + for ; !r.CheckBreak(); yyj4467++ { - if yyj4462 >= len(yyv4462) { - yyv4462 = append(yyv4462, Container{}) // var yyz4462 Container - yyc4462 = true + if yyj4467 >= len(yyv4467) { + yyv4467 = append(yyv4467, Container{}) // var yyz4467 Container + yyc4467 = true } - yyh4462.ElemContainerState(yyj4462) - if yyj4462 < len(yyv4462) { + yyh4467.ElemContainerState(yyj4467) + if yyj4467 < len(yyv4467) { if r.TryDecodeAsNil() { - yyv4462[yyj4462] = Container{} + yyv4467[yyj4467] = Container{} } else { - yyv4465 := &yyv4462[yyj4462] - yyv4465.CodecDecodeSelf(d) + yyv4470 := &yyv4467[yyj4467] + yyv4470.CodecDecodeSelf(d) } } else { @@ -56312,17 +56353,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4462 < len(yyv4462) { - yyv4462 = yyv4462[:yyj4462] - yyc4462 = true - } else if yyj4462 == 0 && yyv4462 == nil { - yyv4462 = []Container{} - yyc4462 = true + if yyj4467 < len(yyv4467) { + yyv4467 = yyv4467[:yyj4467] + yyc4467 = true + } else if yyj4467 == 0 && yyv4467 == nil { + yyv4467 = []Container{} + yyc4467 = true } } - yyh4462.End() - if yyc4462 { - *v = yyv4462 + yyh4467.End() + if yyc4467 { + *v = yyv4467 } } @@ -56331,10 +56372,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4466 := range v { + for _, yyv4471 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4467 := &yyv4466 - yy4467.CodecEncodeSelf(e) + yy4472 := &yyv4471 + yy4472.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56344,83 +56385,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4468 := *v - yyh4468, yyl4468 := z.DecSliceHelperStart() - var yyc4468 bool - if yyl4468 == 0 { - if yyv4468 == nil { - yyv4468 = []LocalObjectReference{} - yyc4468 = true - } else if len(yyv4468) != 0 { - yyv4468 = yyv4468[:0] - yyc4468 = true + yyv4473 := *v + yyh4473, yyl4473 := z.DecSliceHelperStart() + var yyc4473 bool + if yyl4473 == 0 { + if yyv4473 == nil { + yyv4473 = []LocalObjectReference{} + yyc4473 = true + } else if len(yyv4473) != 0 { + yyv4473 = yyv4473[:0] + yyc4473 = true } - } else if yyl4468 > 0 { - var yyrr4468, yyrl4468 int - var yyrt4468 bool - if yyl4468 > cap(yyv4468) { + } else if yyl4473 > 0 { + var yyrr4473, yyrl4473 int + var yyrt4473 bool + if yyl4473 > cap(yyv4473) { - yyrg4468 := len(yyv4468) > 0 - yyv24468 := yyv4468 - yyrl4468, yyrt4468 = z.DecInferLen(yyl4468, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4468 { - if yyrl4468 <= cap(yyv4468) { - yyv4468 = yyv4468[:yyrl4468] + yyrg4473 := len(yyv4473) > 0 + yyv24473 := yyv4473 + yyrl4473, yyrt4473 = z.DecInferLen(yyl4473, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4473 { + if yyrl4473 <= cap(yyv4473) { + yyv4473 = yyv4473[:yyrl4473] } else { - yyv4468 = make([]LocalObjectReference, yyrl4468) + yyv4473 = make([]LocalObjectReference, yyrl4473) } } else { - yyv4468 = make([]LocalObjectReference, yyrl4468) + yyv4473 = make([]LocalObjectReference, yyrl4473) } - yyc4468 = true - yyrr4468 = len(yyv4468) - if yyrg4468 { - copy(yyv4468, yyv24468) + yyc4473 = true + yyrr4473 = len(yyv4473) + if yyrg4473 { + copy(yyv4473, yyv24473) } - } else if yyl4468 != len(yyv4468) { - yyv4468 = yyv4468[:yyl4468] - yyc4468 = true + } else if yyl4473 != len(yyv4473) { + yyv4473 = yyv4473[:yyl4473] + yyc4473 = true } - yyj4468 := 0 - for ; yyj4468 < yyrr4468; yyj4468++ { - yyh4468.ElemContainerState(yyj4468) + yyj4473 := 0 + for ; yyj4473 < yyrr4473; yyj4473++ { + yyh4473.ElemContainerState(yyj4473) if r.TryDecodeAsNil() { - yyv4468[yyj4468] = LocalObjectReference{} + yyv4473[yyj4473] = LocalObjectReference{} } else { - yyv4469 := &yyv4468[yyj4468] - yyv4469.CodecDecodeSelf(d) + yyv4474 := &yyv4473[yyj4473] + yyv4474.CodecDecodeSelf(d) } } - if yyrt4468 { - for ; yyj4468 < yyl4468; yyj4468++ { - yyv4468 = append(yyv4468, LocalObjectReference{}) - yyh4468.ElemContainerState(yyj4468) + if yyrt4473 { + for ; yyj4473 < yyl4473; yyj4473++ { + yyv4473 = append(yyv4473, LocalObjectReference{}) + yyh4473.ElemContainerState(yyj4473) if r.TryDecodeAsNil() { - yyv4468[yyj4468] = LocalObjectReference{} + yyv4473[yyj4473] = LocalObjectReference{} } else { - yyv4470 := &yyv4468[yyj4468] - yyv4470.CodecDecodeSelf(d) + yyv4475 := &yyv4473[yyj4473] + yyv4475.CodecDecodeSelf(d) } } } } else { - yyj4468 := 0 - for ; !r.CheckBreak(); yyj4468++ { + yyj4473 := 0 + for ; !r.CheckBreak(); yyj4473++ { - if yyj4468 >= len(yyv4468) { - yyv4468 = append(yyv4468, LocalObjectReference{}) // var yyz4468 LocalObjectReference - yyc4468 = true + if yyj4473 >= len(yyv4473) { + yyv4473 = append(yyv4473, LocalObjectReference{}) // var yyz4473 LocalObjectReference + yyc4473 = true } - yyh4468.ElemContainerState(yyj4468) - if yyj4468 < len(yyv4468) { + yyh4473.ElemContainerState(yyj4473) + if yyj4473 < len(yyv4473) { if r.TryDecodeAsNil() { - yyv4468[yyj4468] = LocalObjectReference{} + yyv4473[yyj4473] = LocalObjectReference{} } else { - yyv4471 := &yyv4468[yyj4468] - yyv4471.CodecDecodeSelf(d) + yyv4476 := &yyv4473[yyj4473] + yyv4476.CodecDecodeSelf(d) } } else { @@ -56428,17 +56469,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4468 < len(yyv4468) { - yyv4468 = yyv4468[:yyj4468] - yyc4468 = true - } else if yyj4468 == 0 && yyv4468 == nil { - yyv4468 = []LocalObjectReference{} - yyc4468 = true + if yyj4473 < len(yyv4473) { + yyv4473 = yyv4473[:yyj4473] + yyc4473 = true + } else if yyj4473 == 0 && yyv4473 == nil { + yyv4473 = []LocalObjectReference{} + yyc4473 = true } } - yyh4468.End() - if yyc4468 { - *v = yyv4468 + yyh4473.End() + if yyc4473 { + *v = yyv4473 } } @@ -56447,10 +56488,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4472 := range v { + for _, yyv4477 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4473 := &yyv4472 - yy4473.CodecEncodeSelf(e) + yy4478 := &yyv4477 + yy4478.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56460,83 +56501,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4474 := *v - yyh4474, yyl4474 := z.DecSliceHelperStart() - var yyc4474 bool - if yyl4474 == 0 { - if yyv4474 == nil { - yyv4474 = []PodCondition{} - yyc4474 = true - } else if len(yyv4474) != 0 { - yyv4474 = yyv4474[:0] - yyc4474 = true + yyv4479 := *v + yyh4479, yyl4479 := z.DecSliceHelperStart() + var yyc4479 bool + if yyl4479 == 0 { + if yyv4479 == nil { + yyv4479 = []PodCondition{} + yyc4479 = true + } else if len(yyv4479) != 0 { + yyv4479 = yyv4479[:0] + yyc4479 = true } - } else if yyl4474 > 0 { - var yyrr4474, yyrl4474 int - var yyrt4474 bool - if yyl4474 > cap(yyv4474) { + } else if yyl4479 > 0 { + var yyrr4479, yyrl4479 int + var yyrt4479 bool + if yyl4479 > cap(yyv4479) { - yyrg4474 := len(yyv4474) > 0 - yyv24474 := yyv4474 - yyrl4474, yyrt4474 = z.DecInferLen(yyl4474, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4474 { - if yyrl4474 <= cap(yyv4474) { - yyv4474 = yyv4474[:yyrl4474] + yyrg4479 := len(yyv4479) > 0 + yyv24479 := yyv4479 + yyrl4479, yyrt4479 = z.DecInferLen(yyl4479, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4479 { + if yyrl4479 <= cap(yyv4479) { + yyv4479 = yyv4479[:yyrl4479] } else { - yyv4474 = make([]PodCondition, yyrl4474) + yyv4479 = make([]PodCondition, yyrl4479) } } else { - yyv4474 = make([]PodCondition, yyrl4474) + yyv4479 = make([]PodCondition, yyrl4479) } - yyc4474 = true - yyrr4474 = len(yyv4474) - if yyrg4474 { - copy(yyv4474, yyv24474) + yyc4479 = true + yyrr4479 = len(yyv4479) + if yyrg4479 { + copy(yyv4479, yyv24479) } - } else if yyl4474 != len(yyv4474) { - yyv4474 = yyv4474[:yyl4474] - yyc4474 = true + } else if yyl4479 != len(yyv4479) { + yyv4479 = yyv4479[:yyl4479] + yyc4479 = true } - yyj4474 := 0 - for ; yyj4474 < yyrr4474; yyj4474++ { - yyh4474.ElemContainerState(yyj4474) + yyj4479 := 0 + for ; yyj4479 < yyrr4479; yyj4479++ { + yyh4479.ElemContainerState(yyj4479) if r.TryDecodeAsNil() { - yyv4474[yyj4474] = PodCondition{} + yyv4479[yyj4479] = PodCondition{} } else { - yyv4475 := &yyv4474[yyj4474] - yyv4475.CodecDecodeSelf(d) + yyv4480 := &yyv4479[yyj4479] + yyv4480.CodecDecodeSelf(d) } } - if yyrt4474 { - for ; yyj4474 < yyl4474; yyj4474++ { - yyv4474 = append(yyv4474, PodCondition{}) - yyh4474.ElemContainerState(yyj4474) + if yyrt4479 { + for ; yyj4479 < yyl4479; yyj4479++ { + yyv4479 = append(yyv4479, PodCondition{}) + yyh4479.ElemContainerState(yyj4479) if r.TryDecodeAsNil() { - yyv4474[yyj4474] = PodCondition{} + yyv4479[yyj4479] = PodCondition{} } else { - yyv4476 := &yyv4474[yyj4474] - yyv4476.CodecDecodeSelf(d) + yyv4481 := &yyv4479[yyj4479] + yyv4481.CodecDecodeSelf(d) } } } } else { - yyj4474 := 0 - for ; !r.CheckBreak(); yyj4474++ { + yyj4479 := 0 + for ; !r.CheckBreak(); yyj4479++ { - if yyj4474 >= len(yyv4474) { - yyv4474 = append(yyv4474, PodCondition{}) // var yyz4474 PodCondition - yyc4474 = true + if yyj4479 >= len(yyv4479) { + yyv4479 = append(yyv4479, PodCondition{}) // var yyz4479 PodCondition + yyc4479 = true } - yyh4474.ElemContainerState(yyj4474) - if yyj4474 < len(yyv4474) { + yyh4479.ElemContainerState(yyj4479) + if yyj4479 < len(yyv4479) { if r.TryDecodeAsNil() { - yyv4474[yyj4474] = PodCondition{} + yyv4479[yyj4479] = PodCondition{} } else { - yyv4477 := &yyv4474[yyj4474] - yyv4477.CodecDecodeSelf(d) + yyv4482 := &yyv4479[yyj4479] + yyv4482.CodecDecodeSelf(d) } } else { @@ -56544,17 +56585,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4474 < len(yyv4474) { - yyv4474 = yyv4474[:yyj4474] - yyc4474 = true - } else if yyj4474 == 0 && yyv4474 == nil { - yyv4474 = []PodCondition{} - yyc4474 = true + if yyj4479 < len(yyv4479) { + yyv4479 = yyv4479[:yyj4479] + yyc4479 = true + } else if yyj4479 == 0 && yyv4479 == nil { + yyv4479 = []PodCondition{} + yyc4479 = true } } - yyh4474.End() - if yyc4474 { - *v = yyv4474 + yyh4479.End() + if yyc4479 { + *v = yyv4479 } } @@ -56563,10 +56604,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4478 := range v { + for _, yyv4483 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4479 := &yyv4478 - yy4479.CodecEncodeSelf(e) + yy4484 := &yyv4483 + yy4484.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56576,83 +56617,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4480 := *v - yyh4480, yyl4480 := z.DecSliceHelperStart() - var yyc4480 bool - if yyl4480 == 0 { - if yyv4480 == nil { - yyv4480 = []ContainerStatus{} - yyc4480 = true - } else if len(yyv4480) != 0 { - yyv4480 = yyv4480[:0] - yyc4480 = true + yyv4485 := *v + yyh4485, yyl4485 := z.DecSliceHelperStart() + var yyc4485 bool + if yyl4485 == 0 { + if yyv4485 == nil { + yyv4485 = []ContainerStatus{} + yyc4485 = true + } else if len(yyv4485) != 0 { + yyv4485 = yyv4485[:0] + yyc4485 = true } - } else if yyl4480 > 0 { - var yyrr4480, yyrl4480 int - var yyrt4480 bool - if yyl4480 > cap(yyv4480) { + } else if yyl4485 > 0 { + var yyrr4485, yyrl4485 int + var yyrt4485 bool + if yyl4485 > cap(yyv4485) { - yyrg4480 := len(yyv4480) > 0 - yyv24480 := yyv4480 - yyrl4480, yyrt4480 = z.DecInferLen(yyl4480, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4480 { - if yyrl4480 <= cap(yyv4480) { - yyv4480 = yyv4480[:yyrl4480] + yyrg4485 := len(yyv4485) > 0 + yyv24485 := yyv4485 + yyrl4485, yyrt4485 = z.DecInferLen(yyl4485, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4485 { + if yyrl4485 <= cap(yyv4485) { + yyv4485 = yyv4485[:yyrl4485] } else { - yyv4480 = make([]ContainerStatus, yyrl4480) + yyv4485 = make([]ContainerStatus, yyrl4485) } } else { - yyv4480 = make([]ContainerStatus, yyrl4480) + yyv4485 = make([]ContainerStatus, yyrl4485) } - yyc4480 = true - yyrr4480 = len(yyv4480) - if yyrg4480 { - copy(yyv4480, yyv24480) + yyc4485 = true + yyrr4485 = len(yyv4485) + if yyrg4485 { + copy(yyv4485, yyv24485) } - } else if yyl4480 != len(yyv4480) { - yyv4480 = yyv4480[:yyl4480] - yyc4480 = true + } else if yyl4485 != len(yyv4485) { + yyv4485 = yyv4485[:yyl4485] + yyc4485 = true } - yyj4480 := 0 - for ; yyj4480 < yyrr4480; yyj4480++ { - yyh4480.ElemContainerState(yyj4480) + yyj4485 := 0 + for ; yyj4485 < yyrr4485; yyj4485++ { + yyh4485.ElemContainerState(yyj4485) if r.TryDecodeAsNil() { - yyv4480[yyj4480] = ContainerStatus{} + yyv4485[yyj4485] = ContainerStatus{} } else { - yyv4481 := &yyv4480[yyj4480] - yyv4481.CodecDecodeSelf(d) + yyv4486 := &yyv4485[yyj4485] + yyv4486.CodecDecodeSelf(d) } } - if yyrt4480 { - for ; yyj4480 < yyl4480; yyj4480++ { - yyv4480 = append(yyv4480, ContainerStatus{}) - yyh4480.ElemContainerState(yyj4480) + if yyrt4485 { + for ; yyj4485 < yyl4485; yyj4485++ { + yyv4485 = append(yyv4485, ContainerStatus{}) + yyh4485.ElemContainerState(yyj4485) if r.TryDecodeAsNil() { - yyv4480[yyj4480] = ContainerStatus{} + yyv4485[yyj4485] = ContainerStatus{} } else { - yyv4482 := &yyv4480[yyj4480] - yyv4482.CodecDecodeSelf(d) + yyv4487 := &yyv4485[yyj4485] + yyv4487.CodecDecodeSelf(d) } } } } else { - yyj4480 := 0 - for ; !r.CheckBreak(); yyj4480++ { + yyj4485 := 0 + for ; !r.CheckBreak(); yyj4485++ { - if yyj4480 >= len(yyv4480) { - yyv4480 = append(yyv4480, ContainerStatus{}) // var yyz4480 ContainerStatus - yyc4480 = true + if yyj4485 >= len(yyv4485) { + yyv4485 = append(yyv4485, ContainerStatus{}) // var yyz4485 ContainerStatus + yyc4485 = true } - yyh4480.ElemContainerState(yyj4480) - if yyj4480 < len(yyv4480) { + yyh4485.ElemContainerState(yyj4485) + if yyj4485 < len(yyv4485) { if r.TryDecodeAsNil() { - yyv4480[yyj4480] = ContainerStatus{} + yyv4485[yyj4485] = ContainerStatus{} } else { - yyv4483 := &yyv4480[yyj4480] - yyv4483.CodecDecodeSelf(d) + yyv4488 := &yyv4485[yyj4485] + yyv4488.CodecDecodeSelf(d) } } else { @@ -56660,17 +56701,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4480 < len(yyv4480) { - yyv4480 = yyv4480[:yyj4480] - yyc4480 = true - } else if yyj4480 == 0 && yyv4480 == nil { - yyv4480 = []ContainerStatus{} - yyc4480 = true + if yyj4485 < len(yyv4485) { + yyv4485 = yyv4485[:yyj4485] + yyc4485 = true + } else if yyj4485 == 0 && yyv4485 == nil { + yyv4485 = []ContainerStatus{} + yyc4485 = true } } - yyh4480.End() - if yyc4480 { - *v = yyv4480 + yyh4485.End() + if yyc4485 { + *v = yyv4485 } } @@ -56679,10 +56720,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4484 := range v { + for _, yyv4489 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4485 := &yyv4484 - yy4485.CodecEncodeSelf(e) + yy4490 := &yyv4489 + yy4490.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56692,83 +56733,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4486 := *v - yyh4486, yyl4486 := z.DecSliceHelperStart() - var yyc4486 bool - if yyl4486 == 0 { - if yyv4486 == nil { - yyv4486 = []PodTemplate{} - yyc4486 = true - } else if len(yyv4486) != 0 { - yyv4486 = yyv4486[:0] - yyc4486 = true + yyv4491 := *v + yyh4491, yyl4491 := z.DecSliceHelperStart() + var yyc4491 bool + if yyl4491 == 0 { + if yyv4491 == nil { + yyv4491 = []PodTemplate{} + yyc4491 = true + } else if len(yyv4491) != 0 { + yyv4491 = yyv4491[:0] + yyc4491 = true } - } else if yyl4486 > 0 { - var yyrr4486, yyrl4486 int - var yyrt4486 bool - if yyl4486 > cap(yyv4486) { + } else if yyl4491 > 0 { + var yyrr4491, yyrl4491 int + var yyrt4491 bool + if yyl4491 > cap(yyv4491) { - yyrg4486 := len(yyv4486) > 0 - yyv24486 := yyv4486 - yyrl4486, yyrt4486 = z.DecInferLen(yyl4486, z.DecBasicHandle().MaxInitLen, 672) - if yyrt4486 { - if yyrl4486 <= cap(yyv4486) { - yyv4486 = yyv4486[:yyrl4486] + yyrg4491 := len(yyv4491) > 0 + yyv24491 := yyv4491 + yyrl4491, yyrt4491 = z.DecInferLen(yyl4491, z.DecBasicHandle().MaxInitLen, 672) + if yyrt4491 { + if yyrl4491 <= cap(yyv4491) { + yyv4491 = yyv4491[:yyrl4491] } else { - yyv4486 = make([]PodTemplate, yyrl4486) + yyv4491 = make([]PodTemplate, yyrl4491) } } else { - yyv4486 = make([]PodTemplate, yyrl4486) + yyv4491 = make([]PodTemplate, yyrl4491) } - yyc4486 = true - yyrr4486 = len(yyv4486) - if yyrg4486 { - copy(yyv4486, yyv24486) + yyc4491 = true + yyrr4491 = len(yyv4491) + if yyrg4491 { + copy(yyv4491, yyv24491) } - } else if yyl4486 != len(yyv4486) { - yyv4486 = yyv4486[:yyl4486] - yyc4486 = true + } else if yyl4491 != len(yyv4491) { + yyv4491 = yyv4491[:yyl4491] + yyc4491 = true } - yyj4486 := 0 - for ; yyj4486 < yyrr4486; yyj4486++ { - yyh4486.ElemContainerState(yyj4486) + yyj4491 := 0 + for ; yyj4491 < yyrr4491; yyj4491++ { + yyh4491.ElemContainerState(yyj4491) if r.TryDecodeAsNil() { - yyv4486[yyj4486] = PodTemplate{} + yyv4491[yyj4491] = PodTemplate{} } else { - yyv4487 := &yyv4486[yyj4486] - yyv4487.CodecDecodeSelf(d) + yyv4492 := &yyv4491[yyj4491] + yyv4492.CodecDecodeSelf(d) } } - if yyrt4486 { - for ; yyj4486 < yyl4486; yyj4486++ { - yyv4486 = append(yyv4486, PodTemplate{}) - yyh4486.ElemContainerState(yyj4486) + if yyrt4491 { + for ; yyj4491 < yyl4491; yyj4491++ { + yyv4491 = append(yyv4491, PodTemplate{}) + yyh4491.ElemContainerState(yyj4491) if r.TryDecodeAsNil() { - yyv4486[yyj4486] = PodTemplate{} + yyv4491[yyj4491] = PodTemplate{} } else { - yyv4488 := &yyv4486[yyj4486] - yyv4488.CodecDecodeSelf(d) + yyv4493 := &yyv4491[yyj4491] + yyv4493.CodecDecodeSelf(d) } } } } else { - yyj4486 := 0 - for ; !r.CheckBreak(); yyj4486++ { + yyj4491 := 0 + for ; !r.CheckBreak(); yyj4491++ { - if yyj4486 >= len(yyv4486) { - yyv4486 = append(yyv4486, PodTemplate{}) // var yyz4486 PodTemplate - yyc4486 = true + if yyj4491 >= len(yyv4491) { + yyv4491 = append(yyv4491, PodTemplate{}) // var yyz4491 PodTemplate + yyc4491 = true } - yyh4486.ElemContainerState(yyj4486) - if yyj4486 < len(yyv4486) { + yyh4491.ElemContainerState(yyj4491) + if yyj4491 < len(yyv4491) { if r.TryDecodeAsNil() { - yyv4486[yyj4486] = PodTemplate{} + yyv4491[yyj4491] = PodTemplate{} } else { - yyv4489 := &yyv4486[yyj4486] - yyv4489.CodecDecodeSelf(d) + yyv4494 := &yyv4491[yyj4491] + yyv4494.CodecDecodeSelf(d) } } else { @@ -56776,17 +56817,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4486 < len(yyv4486) { - yyv4486 = yyv4486[:yyj4486] - yyc4486 = true - } else if yyj4486 == 0 && yyv4486 == nil { - yyv4486 = []PodTemplate{} - yyc4486 = true + if yyj4491 < len(yyv4491) { + yyv4491 = yyv4491[:yyj4491] + yyc4491 = true + } else if yyj4491 == 0 && yyv4491 == nil { + yyv4491 = []PodTemplate{} + yyc4491 = true } } - yyh4486.End() - if yyc4486 { - *v = yyv4486 + yyh4491.End() + if yyc4491 { + *v = yyv4491 } } @@ -56795,10 +56836,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4490 := range v { + for _, yyv4495 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4491 := &yyv4490 - yy4491.CodecEncodeSelf(e) + yy4496 := &yyv4495 + yy4496.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56808,83 +56849,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4492 := *v - yyh4492, yyl4492 := z.DecSliceHelperStart() - var yyc4492 bool - if yyl4492 == 0 { - if yyv4492 == nil { - yyv4492 = []ReplicationController{} - yyc4492 = true - } else if len(yyv4492) != 0 { - yyv4492 = yyv4492[:0] - yyc4492 = true + yyv4497 := *v + yyh4497, yyl4497 := z.DecSliceHelperStart() + var yyc4497 bool + if yyl4497 == 0 { + if yyv4497 == nil { + yyv4497 = []ReplicationController{} + yyc4497 = true + } else if len(yyv4497) != 0 { + yyv4497 = yyv4497[:0] + yyc4497 = true } - } else if yyl4492 > 0 { - var yyrr4492, yyrl4492 int - var yyrt4492 bool - if yyl4492 > cap(yyv4492) { + } else if yyl4497 > 0 { + var yyrr4497, yyrl4497 int + var yyrt4497 bool + if yyl4497 > cap(yyv4497) { - yyrg4492 := len(yyv4492) > 0 - yyv24492 := yyv4492 - yyrl4492, yyrt4492 = z.DecInferLen(yyl4492, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4492 { - if yyrl4492 <= cap(yyv4492) { - yyv4492 = yyv4492[:yyrl4492] + yyrg4497 := len(yyv4497) > 0 + yyv24497 := yyv4497 + yyrl4497, yyrt4497 = z.DecInferLen(yyl4497, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4497 { + if yyrl4497 <= cap(yyv4497) { + yyv4497 = yyv4497[:yyrl4497] } else { - yyv4492 = make([]ReplicationController, yyrl4492) + yyv4497 = make([]ReplicationController, yyrl4497) } } else { - yyv4492 = make([]ReplicationController, yyrl4492) + yyv4497 = make([]ReplicationController, yyrl4497) } - yyc4492 = true - yyrr4492 = len(yyv4492) - if yyrg4492 { - copy(yyv4492, yyv24492) + yyc4497 = true + yyrr4497 = len(yyv4497) + if yyrg4497 { + copy(yyv4497, yyv24497) } - } else if yyl4492 != len(yyv4492) { - yyv4492 = yyv4492[:yyl4492] - yyc4492 = true + } else if yyl4497 != len(yyv4497) { + yyv4497 = yyv4497[:yyl4497] + yyc4497 = true } - yyj4492 := 0 - for ; yyj4492 < yyrr4492; yyj4492++ { - yyh4492.ElemContainerState(yyj4492) + yyj4497 := 0 + for ; yyj4497 < yyrr4497; yyj4497++ { + yyh4497.ElemContainerState(yyj4497) if r.TryDecodeAsNil() { - yyv4492[yyj4492] = ReplicationController{} + yyv4497[yyj4497] = ReplicationController{} } else { - yyv4493 := &yyv4492[yyj4492] - yyv4493.CodecDecodeSelf(d) + yyv4498 := &yyv4497[yyj4497] + yyv4498.CodecDecodeSelf(d) } } - if yyrt4492 { - for ; yyj4492 < yyl4492; yyj4492++ { - yyv4492 = append(yyv4492, ReplicationController{}) - yyh4492.ElemContainerState(yyj4492) + if yyrt4497 { + for ; yyj4497 < yyl4497; yyj4497++ { + yyv4497 = append(yyv4497, ReplicationController{}) + yyh4497.ElemContainerState(yyj4497) if r.TryDecodeAsNil() { - yyv4492[yyj4492] = ReplicationController{} + yyv4497[yyj4497] = ReplicationController{} } else { - yyv4494 := &yyv4492[yyj4492] - yyv4494.CodecDecodeSelf(d) + yyv4499 := &yyv4497[yyj4497] + yyv4499.CodecDecodeSelf(d) } } } } else { - yyj4492 := 0 - for ; !r.CheckBreak(); yyj4492++ { + yyj4497 := 0 + for ; !r.CheckBreak(); yyj4497++ { - if yyj4492 >= len(yyv4492) { - yyv4492 = append(yyv4492, ReplicationController{}) // var yyz4492 ReplicationController - yyc4492 = true + if yyj4497 >= len(yyv4497) { + yyv4497 = append(yyv4497, ReplicationController{}) // var yyz4497 ReplicationController + yyc4497 = true } - yyh4492.ElemContainerState(yyj4492) - if yyj4492 < len(yyv4492) { + yyh4497.ElemContainerState(yyj4497) + if yyj4497 < len(yyv4497) { if r.TryDecodeAsNil() { - yyv4492[yyj4492] = ReplicationController{} + yyv4497[yyj4497] = ReplicationController{} } else { - yyv4495 := &yyv4492[yyj4492] - yyv4495.CodecDecodeSelf(d) + yyv4500 := &yyv4497[yyj4497] + yyv4500.CodecDecodeSelf(d) } } else { @@ -56892,17 +56933,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4492 < len(yyv4492) { - yyv4492 = yyv4492[:yyj4492] - yyc4492 = true - } else if yyj4492 == 0 && yyv4492 == nil { - yyv4492 = []ReplicationController{} - yyc4492 = true + if yyj4497 < len(yyv4497) { + yyv4497 = yyv4497[:yyj4497] + yyc4497 = true + } else if yyj4497 == 0 && yyv4497 == nil { + yyv4497 = []ReplicationController{} + yyc4497 = true } } - yyh4492.End() - if yyc4492 { - *v = yyv4492 + yyh4497.End() + if yyc4497 { + *v = yyv4497 } } @@ -56911,10 +56952,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4496 := range v { + for _, yyv4501 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4497 := &yyv4496 - yy4497.CodecEncodeSelf(e) + yy4502 := &yyv4501 + yy4502.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56924,83 +56965,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4498 := *v - yyh4498, yyl4498 := z.DecSliceHelperStart() - var yyc4498 bool - if yyl4498 == 0 { - if yyv4498 == nil { - yyv4498 = []Service{} - yyc4498 = true - } else if len(yyv4498) != 0 { - yyv4498 = yyv4498[:0] - yyc4498 = true + yyv4503 := *v + yyh4503, yyl4503 := z.DecSliceHelperStart() + var yyc4503 bool + if yyl4503 == 0 { + if yyv4503 == nil { + yyv4503 = []Service{} + yyc4503 = true + } else if len(yyv4503) != 0 { + yyv4503 = yyv4503[:0] + yyc4503 = true } - } else if yyl4498 > 0 { - var yyrr4498, yyrl4498 int - var yyrt4498 bool - if yyl4498 > cap(yyv4498) { + } else if yyl4503 > 0 { + var yyrr4503, yyrl4503 int + var yyrt4503 bool + if yyl4503 > cap(yyv4503) { - yyrg4498 := len(yyv4498) > 0 - yyv24498 := yyv4498 - yyrl4498, yyrt4498 = z.DecInferLen(yyl4498, z.DecBasicHandle().MaxInitLen, 408) - if yyrt4498 { - if yyrl4498 <= cap(yyv4498) { - yyv4498 = yyv4498[:yyrl4498] + yyrg4503 := len(yyv4503) > 0 + yyv24503 := yyv4503 + yyrl4503, yyrt4503 = z.DecInferLen(yyl4503, z.DecBasicHandle().MaxInitLen, 424) + if yyrt4503 { + if yyrl4503 <= cap(yyv4503) { + yyv4503 = yyv4503[:yyrl4503] } else { - yyv4498 = make([]Service, yyrl4498) + yyv4503 = make([]Service, yyrl4503) } } else { - yyv4498 = make([]Service, yyrl4498) + yyv4503 = make([]Service, yyrl4503) } - yyc4498 = true - yyrr4498 = len(yyv4498) - if yyrg4498 { - copy(yyv4498, yyv24498) + yyc4503 = true + yyrr4503 = len(yyv4503) + if yyrg4503 { + copy(yyv4503, yyv24503) } - } else if yyl4498 != len(yyv4498) { - yyv4498 = yyv4498[:yyl4498] - yyc4498 = true + } else if yyl4503 != len(yyv4503) { + yyv4503 = yyv4503[:yyl4503] + yyc4503 = true } - yyj4498 := 0 - for ; yyj4498 < yyrr4498; yyj4498++ { - yyh4498.ElemContainerState(yyj4498) + yyj4503 := 0 + for ; yyj4503 < yyrr4503; yyj4503++ { + yyh4503.ElemContainerState(yyj4503) if r.TryDecodeAsNil() { - yyv4498[yyj4498] = Service{} + yyv4503[yyj4503] = Service{} } else { - yyv4499 := &yyv4498[yyj4498] - yyv4499.CodecDecodeSelf(d) + yyv4504 := &yyv4503[yyj4503] + yyv4504.CodecDecodeSelf(d) } } - if yyrt4498 { - for ; yyj4498 < yyl4498; yyj4498++ { - yyv4498 = append(yyv4498, Service{}) - yyh4498.ElemContainerState(yyj4498) + if yyrt4503 { + for ; yyj4503 < yyl4503; yyj4503++ { + yyv4503 = append(yyv4503, Service{}) + yyh4503.ElemContainerState(yyj4503) if r.TryDecodeAsNil() { - yyv4498[yyj4498] = Service{} + yyv4503[yyj4503] = Service{} } else { - yyv4500 := &yyv4498[yyj4498] - yyv4500.CodecDecodeSelf(d) + yyv4505 := &yyv4503[yyj4503] + yyv4505.CodecDecodeSelf(d) } } } } else { - yyj4498 := 0 - for ; !r.CheckBreak(); yyj4498++ { + yyj4503 := 0 + for ; !r.CheckBreak(); yyj4503++ { - if yyj4498 >= len(yyv4498) { - yyv4498 = append(yyv4498, Service{}) // var yyz4498 Service - yyc4498 = true + if yyj4503 >= len(yyv4503) { + yyv4503 = append(yyv4503, Service{}) // var yyz4503 Service + yyc4503 = true } - yyh4498.ElemContainerState(yyj4498) - if yyj4498 < len(yyv4498) { + yyh4503.ElemContainerState(yyj4503) + if yyj4503 < len(yyv4503) { if r.TryDecodeAsNil() { - yyv4498[yyj4498] = Service{} + yyv4503[yyj4503] = Service{} } else { - yyv4501 := &yyv4498[yyj4498] - yyv4501.CodecDecodeSelf(d) + yyv4506 := &yyv4503[yyj4503] + yyv4506.CodecDecodeSelf(d) } } else { @@ -57008,17 +57049,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4498 < len(yyv4498) { - yyv4498 = yyv4498[:yyj4498] - yyc4498 = true - } else if yyj4498 == 0 && yyv4498 == nil { - yyv4498 = []Service{} - yyc4498 = true + if yyj4503 < len(yyv4503) { + yyv4503 = yyv4503[:yyj4503] + yyc4503 = true + } else if yyj4503 == 0 && yyv4503 == nil { + yyv4503 = []Service{} + yyc4503 = true } } - yyh4498.End() - if yyc4498 { - *v = yyv4498 + yyh4503.End() + if yyc4503 { + *v = yyv4503 } } @@ -57027,10 +57068,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4502 := range v { + for _, yyv4507 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4503 := &yyv4502 - yy4503.CodecEncodeSelf(e) + yy4508 := &yyv4507 + yy4508.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57040,83 +57081,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4504 := *v - yyh4504, yyl4504 := z.DecSliceHelperStart() - var yyc4504 bool - if yyl4504 == 0 { - if yyv4504 == nil { - yyv4504 = []LoadBalancerIngress{} - yyc4504 = true - } else if len(yyv4504) != 0 { - yyv4504 = yyv4504[:0] - yyc4504 = true + yyv4509 := *v + yyh4509, yyl4509 := z.DecSliceHelperStart() + var yyc4509 bool + if yyl4509 == 0 { + if yyv4509 == nil { + yyv4509 = []LoadBalancerIngress{} + yyc4509 = true + } else if len(yyv4509) != 0 { + yyv4509 = yyv4509[:0] + yyc4509 = true } - } else if yyl4504 > 0 { - var yyrr4504, yyrl4504 int - var yyrt4504 bool - if yyl4504 > cap(yyv4504) { + } else if yyl4509 > 0 { + var yyrr4509, yyrl4509 int + var yyrt4509 bool + if yyl4509 > cap(yyv4509) { - yyrg4504 := len(yyv4504) > 0 - yyv24504 := yyv4504 - yyrl4504, yyrt4504 = z.DecInferLen(yyl4504, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4504 { - if yyrl4504 <= cap(yyv4504) { - yyv4504 = yyv4504[:yyrl4504] + yyrg4509 := len(yyv4509) > 0 + yyv24509 := yyv4509 + yyrl4509, yyrt4509 = z.DecInferLen(yyl4509, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4509 { + if yyrl4509 <= cap(yyv4509) { + yyv4509 = yyv4509[:yyrl4509] } else { - yyv4504 = make([]LoadBalancerIngress, yyrl4504) + yyv4509 = make([]LoadBalancerIngress, yyrl4509) } } else { - yyv4504 = make([]LoadBalancerIngress, yyrl4504) + yyv4509 = make([]LoadBalancerIngress, yyrl4509) } - yyc4504 = true - yyrr4504 = len(yyv4504) - if yyrg4504 { - copy(yyv4504, yyv24504) + yyc4509 = true + yyrr4509 = len(yyv4509) + if yyrg4509 { + copy(yyv4509, yyv24509) } - } else if yyl4504 != len(yyv4504) { - yyv4504 = yyv4504[:yyl4504] - yyc4504 = true + } else if yyl4509 != len(yyv4509) { + yyv4509 = yyv4509[:yyl4509] + yyc4509 = true } - yyj4504 := 0 - for ; yyj4504 < yyrr4504; yyj4504++ { - yyh4504.ElemContainerState(yyj4504) + yyj4509 := 0 + for ; yyj4509 < yyrr4509; yyj4509++ { + yyh4509.ElemContainerState(yyj4509) if r.TryDecodeAsNil() { - yyv4504[yyj4504] = LoadBalancerIngress{} + yyv4509[yyj4509] = LoadBalancerIngress{} } else { - yyv4505 := &yyv4504[yyj4504] - yyv4505.CodecDecodeSelf(d) + yyv4510 := &yyv4509[yyj4509] + yyv4510.CodecDecodeSelf(d) } } - if yyrt4504 { - for ; yyj4504 < yyl4504; yyj4504++ { - yyv4504 = append(yyv4504, LoadBalancerIngress{}) - yyh4504.ElemContainerState(yyj4504) + if yyrt4509 { + for ; yyj4509 < yyl4509; yyj4509++ { + yyv4509 = append(yyv4509, LoadBalancerIngress{}) + yyh4509.ElemContainerState(yyj4509) if r.TryDecodeAsNil() { - yyv4504[yyj4504] = LoadBalancerIngress{} + yyv4509[yyj4509] = LoadBalancerIngress{} } else { - yyv4506 := &yyv4504[yyj4504] - yyv4506.CodecDecodeSelf(d) + yyv4511 := &yyv4509[yyj4509] + yyv4511.CodecDecodeSelf(d) } } } } else { - yyj4504 := 0 - for ; !r.CheckBreak(); yyj4504++ { + yyj4509 := 0 + for ; !r.CheckBreak(); yyj4509++ { - if yyj4504 >= len(yyv4504) { - yyv4504 = append(yyv4504, LoadBalancerIngress{}) // var yyz4504 LoadBalancerIngress - yyc4504 = true + if yyj4509 >= len(yyv4509) { + yyv4509 = append(yyv4509, LoadBalancerIngress{}) // var yyz4509 LoadBalancerIngress + yyc4509 = true } - yyh4504.ElemContainerState(yyj4504) - if yyj4504 < len(yyv4504) { + yyh4509.ElemContainerState(yyj4509) + if yyj4509 < len(yyv4509) { if r.TryDecodeAsNil() { - yyv4504[yyj4504] = LoadBalancerIngress{} + yyv4509[yyj4509] = LoadBalancerIngress{} } else { - yyv4507 := &yyv4504[yyj4504] - yyv4507.CodecDecodeSelf(d) + yyv4512 := &yyv4509[yyj4509] + yyv4512.CodecDecodeSelf(d) } } else { @@ -57124,17 +57165,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4504 < len(yyv4504) { - yyv4504 = yyv4504[:yyj4504] - yyc4504 = true - } else if yyj4504 == 0 && yyv4504 == nil { - yyv4504 = []LoadBalancerIngress{} - yyc4504 = true + if yyj4509 < len(yyv4509) { + yyv4509 = yyv4509[:yyj4509] + yyc4509 = true + } else if yyj4509 == 0 && yyv4509 == nil { + yyv4509 = []LoadBalancerIngress{} + yyc4509 = true } } - yyh4504.End() - if yyc4504 { - *v = yyv4504 + yyh4509.End() + if yyc4509 { + *v = yyv4509 } } @@ -57143,10 +57184,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4508 := range v { + for _, yyv4513 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4509 := &yyv4508 - yy4509.CodecEncodeSelf(e) + yy4514 := &yyv4513 + yy4514.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57156,83 +57197,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4510 := *v - yyh4510, yyl4510 := z.DecSliceHelperStart() - var yyc4510 bool - if yyl4510 == 0 { - if yyv4510 == nil { - yyv4510 = []ServicePort{} - yyc4510 = true - } else if len(yyv4510) != 0 { - yyv4510 = yyv4510[:0] - yyc4510 = true + yyv4515 := *v + yyh4515, yyl4515 := z.DecSliceHelperStart() + var yyc4515 bool + if yyl4515 == 0 { + if yyv4515 == nil { + yyv4515 = []ServicePort{} + yyc4515 = true + } else if len(yyv4515) != 0 { + yyv4515 = yyv4515[:0] + yyc4515 = true } - } else if yyl4510 > 0 { - var yyrr4510, yyrl4510 int - var yyrt4510 bool - if yyl4510 > cap(yyv4510) { + } else if yyl4515 > 0 { + var yyrr4515, yyrl4515 int + var yyrt4515 bool + if yyl4515 > cap(yyv4515) { - yyrg4510 := len(yyv4510) > 0 - yyv24510 := yyv4510 - yyrl4510, yyrt4510 = z.DecInferLen(yyl4510, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4510 { - if yyrl4510 <= cap(yyv4510) { - yyv4510 = yyv4510[:yyrl4510] + yyrg4515 := len(yyv4515) > 0 + yyv24515 := yyv4515 + yyrl4515, yyrt4515 = z.DecInferLen(yyl4515, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4515 { + if yyrl4515 <= cap(yyv4515) { + yyv4515 = yyv4515[:yyrl4515] } else { - yyv4510 = make([]ServicePort, yyrl4510) + yyv4515 = make([]ServicePort, yyrl4515) } } else { - yyv4510 = make([]ServicePort, yyrl4510) + yyv4515 = make([]ServicePort, yyrl4515) } - yyc4510 = true - yyrr4510 = len(yyv4510) - if yyrg4510 { - copy(yyv4510, yyv24510) + yyc4515 = true + yyrr4515 = len(yyv4515) + if yyrg4515 { + copy(yyv4515, yyv24515) } - } else if yyl4510 != len(yyv4510) { - yyv4510 = yyv4510[:yyl4510] - yyc4510 = true + } else if yyl4515 != len(yyv4515) { + yyv4515 = yyv4515[:yyl4515] + yyc4515 = true } - yyj4510 := 0 - for ; yyj4510 < yyrr4510; yyj4510++ { - yyh4510.ElemContainerState(yyj4510) + yyj4515 := 0 + for ; yyj4515 < yyrr4515; yyj4515++ { + yyh4515.ElemContainerState(yyj4515) if r.TryDecodeAsNil() { - yyv4510[yyj4510] = ServicePort{} + yyv4515[yyj4515] = ServicePort{} } else { - yyv4511 := &yyv4510[yyj4510] - yyv4511.CodecDecodeSelf(d) + yyv4516 := &yyv4515[yyj4515] + yyv4516.CodecDecodeSelf(d) } } - if yyrt4510 { - for ; yyj4510 < yyl4510; yyj4510++ { - yyv4510 = append(yyv4510, ServicePort{}) - yyh4510.ElemContainerState(yyj4510) + if yyrt4515 { + for ; yyj4515 < yyl4515; yyj4515++ { + yyv4515 = append(yyv4515, ServicePort{}) + yyh4515.ElemContainerState(yyj4515) if r.TryDecodeAsNil() { - yyv4510[yyj4510] = ServicePort{} + yyv4515[yyj4515] = ServicePort{} } else { - yyv4512 := &yyv4510[yyj4510] - yyv4512.CodecDecodeSelf(d) + yyv4517 := &yyv4515[yyj4515] + yyv4517.CodecDecodeSelf(d) } } } } else { - yyj4510 := 0 - for ; !r.CheckBreak(); yyj4510++ { + yyj4515 := 0 + for ; !r.CheckBreak(); yyj4515++ { - if yyj4510 >= len(yyv4510) { - yyv4510 = append(yyv4510, ServicePort{}) // var yyz4510 ServicePort - yyc4510 = true + if yyj4515 >= len(yyv4515) { + yyv4515 = append(yyv4515, ServicePort{}) // var yyz4515 ServicePort + yyc4515 = true } - yyh4510.ElemContainerState(yyj4510) - if yyj4510 < len(yyv4510) { + yyh4515.ElemContainerState(yyj4515) + if yyj4515 < len(yyv4515) { if r.TryDecodeAsNil() { - yyv4510[yyj4510] = ServicePort{} + yyv4515[yyj4515] = ServicePort{} } else { - yyv4513 := &yyv4510[yyj4510] - yyv4513.CodecDecodeSelf(d) + yyv4518 := &yyv4515[yyj4515] + yyv4518.CodecDecodeSelf(d) } } else { @@ -57240,17 +57281,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4510 < len(yyv4510) { - yyv4510 = yyv4510[:yyj4510] - yyc4510 = true - } else if yyj4510 == 0 && yyv4510 == nil { - yyv4510 = []ServicePort{} - yyc4510 = true + if yyj4515 < len(yyv4515) { + yyv4515 = yyv4515[:yyj4515] + yyc4515 = true + } else if yyj4515 == 0 && yyv4515 == nil { + yyv4515 = []ServicePort{} + yyc4515 = true } } - yyh4510.End() - if yyc4510 { - *v = yyv4510 + yyh4515.End() + if yyc4515 { + *v = yyv4515 } } @@ -57259,10 +57300,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4514 := range v { + for _, yyv4519 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4515 := &yyv4514 - yy4515.CodecEncodeSelf(e) + yy4520 := &yyv4519 + yy4520.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57272,83 +57313,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4516 := *v - yyh4516, yyl4516 := z.DecSliceHelperStart() - var yyc4516 bool - if yyl4516 == 0 { - if yyv4516 == nil { - yyv4516 = []ObjectReference{} - yyc4516 = true - } else if len(yyv4516) != 0 { - yyv4516 = yyv4516[:0] - yyc4516 = true + yyv4521 := *v + yyh4521, yyl4521 := z.DecSliceHelperStart() + var yyc4521 bool + if yyl4521 == 0 { + if yyv4521 == nil { + yyv4521 = []ObjectReference{} + yyc4521 = true + } else if len(yyv4521) != 0 { + yyv4521 = yyv4521[:0] + yyc4521 = true } - } else if yyl4516 > 0 { - var yyrr4516, yyrl4516 int - var yyrt4516 bool - if yyl4516 > cap(yyv4516) { + } else if yyl4521 > 0 { + var yyrr4521, yyrl4521 int + var yyrt4521 bool + if yyl4521 > cap(yyv4521) { - yyrg4516 := len(yyv4516) > 0 - yyv24516 := yyv4516 - yyrl4516, yyrt4516 = z.DecInferLen(yyl4516, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4516 { - if yyrl4516 <= cap(yyv4516) { - yyv4516 = yyv4516[:yyrl4516] + yyrg4521 := len(yyv4521) > 0 + yyv24521 := yyv4521 + yyrl4521, yyrt4521 = z.DecInferLen(yyl4521, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4521 { + if yyrl4521 <= cap(yyv4521) { + yyv4521 = yyv4521[:yyrl4521] } else { - yyv4516 = make([]ObjectReference, yyrl4516) + yyv4521 = make([]ObjectReference, yyrl4521) } } else { - yyv4516 = make([]ObjectReference, yyrl4516) + yyv4521 = make([]ObjectReference, yyrl4521) } - yyc4516 = true - yyrr4516 = len(yyv4516) - if yyrg4516 { - copy(yyv4516, yyv24516) + yyc4521 = true + yyrr4521 = len(yyv4521) + if yyrg4521 { + copy(yyv4521, yyv24521) } - } else if yyl4516 != len(yyv4516) { - yyv4516 = yyv4516[:yyl4516] - yyc4516 = true + } else if yyl4521 != len(yyv4521) { + yyv4521 = yyv4521[:yyl4521] + yyc4521 = true } - yyj4516 := 0 - for ; yyj4516 < yyrr4516; yyj4516++ { - yyh4516.ElemContainerState(yyj4516) + yyj4521 := 0 + for ; yyj4521 < yyrr4521; yyj4521++ { + yyh4521.ElemContainerState(yyj4521) if r.TryDecodeAsNil() { - yyv4516[yyj4516] = ObjectReference{} + yyv4521[yyj4521] = ObjectReference{} } else { - yyv4517 := &yyv4516[yyj4516] - yyv4517.CodecDecodeSelf(d) + yyv4522 := &yyv4521[yyj4521] + yyv4522.CodecDecodeSelf(d) } } - if yyrt4516 { - for ; yyj4516 < yyl4516; yyj4516++ { - yyv4516 = append(yyv4516, ObjectReference{}) - yyh4516.ElemContainerState(yyj4516) + if yyrt4521 { + for ; yyj4521 < yyl4521; yyj4521++ { + yyv4521 = append(yyv4521, ObjectReference{}) + yyh4521.ElemContainerState(yyj4521) if r.TryDecodeAsNil() { - yyv4516[yyj4516] = ObjectReference{} + yyv4521[yyj4521] = ObjectReference{} } else { - yyv4518 := &yyv4516[yyj4516] - yyv4518.CodecDecodeSelf(d) + yyv4523 := &yyv4521[yyj4521] + yyv4523.CodecDecodeSelf(d) } } } } else { - yyj4516 := 0 - for ; !r.CheckBreak(); yyj4516++ { + yyj4521 := 0 + for ; !r.CheckBreak(); yyj4521++ { - if yyj4516 >= len(yyv4516) { - yyv4516 = append(yyv4516, ObjectReference{}) // var yyz4516 ObjectReference - yyc4516 = true + if yyj4521 >= len(yyv4521) { + yyv4521 = append(yyv4521, ObjectReference{}) // var yyz4521 ObjectReference + yyc4521 = true } - yyh4516.ElemContainerState(yyj4516) - if yyj4516 < len(yyv4516) { + yyh4521.ElemContainerState(yyj4521) + if yyj4521 < len(yyv4521) { if r.TryDecodeAsNil() { - yyv4516[yyj4516] = ObjectReference{} + yyv4521[yyj4521] = ObjectReference{} } else { - yyv4519 := &yyv4516[yyj4516] - yyv4519.CodecDecodeSelf(d) + yyv4524 := &yyv4521[yyj4521] + yyv4524.CodecDecodeSelf(d) } } else { @@ -57356,17 +57397,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4516 < len(yyv4516) { - yyv4516 = yyv4516[:yyj4516] - yyc4516 = true - } else if yyj4516 == 0 && yyv4516 == nil { - yyv4516 = []ObjectReference{} - yyc4516 = true + if yyj4521 < len(yyv4521) { + yyv4521 = yyv4521[:yyj4521] + yyc4521 = true + } else if yyj4521 == 0 && yyv4521 == nil { + yyv4521 = []ObjectReference{} + yyc4521 = true } } - yyh4516.End() - if yyc4516 { - *v = yyv4516 + yyh4521.End() + if yyc4521 { + *v = yyv4521 } } @@ -57375,10 +57416,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4520 := range v { + for _, yyv4525 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4521 := &yyv4520 - yy4521.CodecEncodeSelf(e) + yy4526 := &yyv4525 + yy4526.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57388,83 +57429,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4522 := *v - yyh4522, yyl4522 := z.DecSliceHelperStart() - var yyc4522 bool - if yyl4522 == 0 { - if yyv4522 == nil { - yyv4522 = []ServiceAccount{} - yyc4522 = true - } else if len(yyv4522) != 0 { - yyv4522 = yyv4522[:0] - yyc4522 = true + yyv4527 := *v + yyh4527, yyl4527 := z.DecSliceHelperStart() + var yyc4527 bool + if yyl4527 == 0 { + if yyv4527 == nil { + yyv4527 = []ServiceAccount{} + yyc4527 = true + } else if len(yyv4527) != 0 { + yyv4527 = yyv4527[:0] + yyc4527 = true } - } else if yyl4522 > 0 { - var yyrr4522, yyrl4522 int - var yyrt4522 bool - if yyl4522 > cap(yyv4522) { + } else if yyl4527 > 0 { + var yyrr4527, yyrl4527 int + var yyrt4527 bool + if yyl4527 > cap(yyv4527) { - yyrg4522 := len(yyv4522) > 0 - yyv24522 := yyv4522 - yyrl4522, yyrt4522 = z.DecInferLen(yyl4522, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4522 { - if yyrl4522 <= cap(yyv4522) { - yyv4522 = yyv4522[:yyrl4522] + yyrg4527 := len(yyv4527) > 0 + yyv24527 := yyv4527 + yyrl4527, yyrt4527 = z.DecInferLen(yyl4527, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4527 { + if yyrl4527 <= cap(yyv4527) { + yyv4527 = yyv4527[:yyrl4527] } else { - yyv4522 = make([]ServiceAccount, yyrl4522) + yyv4527 = make([]ServiceAccount, yyrl4527) } } else { - yyv4522 = make([]ServiceAccount, yyrl4522) + yyv4527 = make([]ServiceAccount, yyrl4527) } - yyc4522 = true - yyrr4522 = len(yyv4522) - if yyrg4522 { - copy(yyv4522, yyv24522) + yyc4527 = true + yyrr4527 = len(yyv4527) + if yyrg4527 { + copy(yyv4527, yyv24527) } - } else if yyl4522 != len(yyv4522) { - yyv4522 = yyv4522[:yyl4522] - yyc4522 = true + } else if yyl4527 != len(yyv4527) { + yyv4527 = yyv4527[:yyl4527] + yyc4527 = true } - yyj4522 := 0 - for ; yyj4522 < yyrr4522; yyj4522++ { - yyh4522.ElemContainerState(yyj4522) + yyj4527 := 0 + for ; yyj4527 < yyrr4527; yyj4527++ { + yyh4527.ElemContainerState(yyj4527) if r.TryDecodeAsNil() { - yyv4522[yyj4522] = ServiceAccount{} + yyv4527[yyj4527] = ServiceAccount{} } else { - yyv4523 := &yyv4522[yyj4522] - yyv4523.CodecDecodeSelf(d) + yyv4528 := &yyv4527[yyj4527] + yyv4528.CodecDecodeSelf(d) } } - if yyrt4522 { - for ; yyj4522 < yyl4522; yyj4522++ { - yyv4522 = append(yyv4522, ServiceAccount{}) - yyh4522.ElemContainerState(yyj4522) + if yyrt4527 { + for ; yyj4527 < yyl4527; yyj4527++ { + yyv4527 = append(yyv4527, ServiceAccount{}) + yyh4527.ElemContainerState(yyj4527) if r.TryDecodeAsNil() { - yyv4522[yyj4522] = ServiceAccount{} + yyv4527[yyj4527] = ServiceAccount{} } else { - yyv4524 := &yyv4522[yyj4522] - yyv4524.CodecDecodeSelf(d) + yyv4529 := &yyv4527[yyj4527] + yyv4529.CodecDecodeSelf(d) } } } } else { - yyj4522 := 0 - for ; !r.CheckBreak(); yyj4522++ { + yyj4527 := 0 + for ; !r.CheckBreak(); yyj4527++ { - if yyj4522 >= len(yyv4522) { - yyv4522 = append(yyv4522, ServiceAccount{}) // var yyz4522 ServiceAccount - yyc4522 = true + if yyj4527 >= len(yyv4527) { + yyv4527 = append(yyv4527, ServiceAccount{}) // var yyz4527 ServiceAccount + yyc4527 = true } - yyh4522.ElemContainerState(yyj4522) - if yyj4522 < len(yyv4522) { + yyh4527.ElemContainerState(yyj4527) + if yyj4527 < len(yyv4527) { if r.TryDecodeAsNil() { - yyv4522[yyj4522] = ServiceAccount{} + yyv4527[yyj4527] = ServiceAccount{} } else { - yyv4525 := &yyv4522[yyj4522] - yyv4525.CodecDecodeSelf(d) + yyv4530 := &yyv4527[yyj4527] + yyv4530.CodecDecodeSelf(d) } } else { @@ -57472,17 +57513,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4522 < len(yyv4522) { - yyv4522 = yyv4522[:yyj4522] - yyc4522 = true - } else if yyj4522 == 0 && yyv4522 == nil { - yyv4522 = []ServiceAccount{} - yyc4522 = true + if yyj4527 < len(yyv4527) { + yyv4527 = yyv4527[:yyj4527] + yyc4527 = true + } else if yyj4527 == 0 && yyv4527 == nil { + yyv4527 = []ServiceAccount{} + yyc4527 = true } } - yyh4522.End() - if yyc4522 { - *v = yyv4522 + yyh4527.End() + if yyc4527 { + *v = yyv4527 } } @@ -57491,10 +57532,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4526 := range v { + for _, yyv4531 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4527 := &yyv4526 - yy4527.CodecEncodeSelf(e) + yy4532 := &yyv4531 + yy4532.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57504,83 +57545,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4528 := *v - yyh4528, yyl4528 := z.DecSliceHelperStart() - var yyc4528 bool - if yyl4528 == 0 { - if yyv4528 == nil { - yyv4528 = []EndpointSubset{} - yyc4528 = true - } else if len(yyv4528) != 0 { - yyv4528 = yyv4528[:0] - yyc4528 = true + yyv4533 := *v + yyh4533, yyl4533 := z.DecSliceHelperStart() + var yyc4533 bool + if yyl4533 == 0 { + if yyv4533 == nil { + yyv4533 = []EndpointSubset{} + yyc4533 = true + } else if len(yyv4533) != 0 { + yyv4533 = yyv4533[:0] + yyc4533 = true } - } else if yyl4528 > 0 { - var yyrr4528, yyrl4528 int - var yyrt4528 bool - if yyl4528 > cap(yyv4528) { + } else if yyl4533 > 0 { + var yyrr4533, yyrl4533 int + var yyrt4533 bool + if yyl4533 > cap(yyv4533) { - yyrg4528 := len(yyv4528) > 0 - yyv24528 := yyv4528 - yyrl4528, yyrt4528 = z.DecInferLen(yyl4528, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4528 { - if yyrl4528 <= cap(yyv4528) { - yyv4528 = yyv4528[:yyrl4528] + yyrg4533 := len(yyv4533) > 0 + yyv24533 := yyv4533 + yyrl4533, yyrt4533 = z.DecInferLen(yyl4533, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4533 { + if yyrl4533 <= cap(yyv4533) { + yyv4533 = yyv4533[:yyrl4533] } else { - yyv4528 = make([]EndpointSubset, yyrl4528) + yyv4533 = make([]EndpointSubset, yyrl4533) } } else { - yyv4528 = make([]EndpointSubset, yyrl4528) + yyv4533 = make([]EndpointSubset, yyrl4533) } - yyc4528 = true - yyrr4528 = len(yyv4528) - if yyrg4528 { - copy(yyv4528, yyv24528) + yyc4533 = true + yyrr4533 = len(yyv4533) + if yyrg4533 { + copy(yyv4533, yyv24533) } - } else if yyl4528 != len(yyv4528) { - yyv4528 = yyv4528[:yyl4528] - yyc4528 = true + } else if yyl4533 != len(yyv4533) { + yyv4533 = yyv4533[:yyl4533] + yyc4533 = true } - yyj4528 := 0 - for ; yyj4528 < yyrr4528; yyj4528++ { - yyh4528.ElemContainerState(yyj4528) + yyj4533 := 0 + for ; yyj4533 < yyrr4533; yyj4533++ { + yyh4533.ElemContainerState(yyj4533) if r.TryDecodeAsNil() { - yyv4528[yyj4528] = EndpointSubset{} + yyv4533[yyj4533] = EndpointSubset{} } else { - yyv4529 := &yyv4528[yyj4528] - yyv4529.CodecDecodeSelf(d) + yyv4534 := &yyv4533[yyj4533] + yyv4534.CodecDecodeSelf(d) } } - if yyrt4528 { - for ; yyj4528 < yyl4528; yyj4528++ { - yyv4528 = append(yyv4528, EndpointSubset{}) - yyh4528.ElemContainerState(yyj4528) + if yyrt4533 { + for ; yyj4533 < yyl4533; yyj4533++ { + yyv4533 = append(yyv4533, EndpointSubset{}) + yyh4533.ElemContainerState(yyj4533) if r.TryDecodeAsNil() { - yyv4528[yyj4528] = EndpointSubset{} + yyv4533[yyj4533] = EndpointSubset{} } else { - yyv4530 := &yyv4528[yyj4528] - yyv4530.CodecDecodeSelf(d) + yyv4535 := &yyv4533[yyj4533] + yyv4535.CodecDecodeSelf(d) } } } } else { - yyj4528 := 0 - for ; !r.CheckBreak(); yyj4528++ { + yyj4533 := 0 + for ; !r.CheckBreak(); yyj4533++ { - if yyj4528 >= len(yyv4528) { - yyv4528 = append(yyv4528, EndpointSubset{}) // var yyz4528 EndpointSubset - yyc4528 = true + if yyj4533 >= len(yyv4533) { + yyv4533 = append(yyv4533, EndpointSubset{}) // var yyz4533 EndpointSubset + yyc4533 = true } - yyh4528.ElemContainerState(yyj4528) - if yyj4528 < len(yyv4528) { + yyh4533.ElemContainerState(yyj4533) + if yyj4533 < len(yyv4533) { if r.TryDecodeAsNil() { - yyv4528[yyj4528] = EndpointSubset{} + yyv4533[yyj4533] = EndpointSubset{} } else { - yyv4531 := &yyv4528[yyj4528] - yyv4531.CodecDecodeSelf(d) + yyv4536 := &yyv4533[yyj4533] + yyv4536.CodecDecodeSelf(d) } } else { @@ -57588,17 +57629,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4528 < len(yyv4528) { - yyv4528 = yyv4528[:yyj4528] - yyc4528 = true - } else if yyj4528 == 0 && yyv4528 == nil { - yyv4528 = []EndpointSubset{} - yyc4528 = true + if yyj4533 < len(yyv4533) { + yyv4533 = yyv4533[:yyj4533] + yyc4533 = true + } else if yyj4533 == 0 && yyv4533 == nil { + yyv4533 = []EndpointSubset{} + yyc4533 = true } } - yyh4528.End() - if yyc4528 { - *v = yyv4528 + yyh4533.End() + if yyc4533 { + *v = yyv4533 } } @@ -57607,10 +57648,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4532 := range v { + for _, yyv4537 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4533 := &yyv4532 - yy4533.CodecEncodeSelf(e) + yy4538 := &yyv4537 + yy4538.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57620,83 +57661,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4534 := *v - yyh4534, yyl4534 := z.DecSliceHelperStart() - var yyc4534 bool - if yyl4534 == 0 { - if yyv4534 == nil { - yyv4534 = []EndpointAddress{} - yyc4534 = true - } else if len(yyv4534) != 0 { - yyv4534 = yyv4534[:0] - yyc4534 = true + yyv4539 := *v + yyh4539, yyl4539 := z.DecSliceHelperStart() + var yyc4539 bool + if yyl4539 == 0 { + if yyv4539 == nil { + yyv4539 = []EndpointAddress{} + yyc4539 = true + } else if len(yyv4539) != 0 { + yyv4539 = yyv4539[:0] + yyc4539 = true } - } else if yyl4534 > 0 { - var yyrr4534, yyrl4534 int - var yyrt4534 bool - if yyl4534 > cap(yyv4534) { + } else if yyl4539 > 0 { + var yyrr4539, yyrl4539 int + var yyrt4539 bool + if yyl4539 > cap(yyv4539) { - yyrg4534 := len(yyv4534) > 0 - yyv24534 := yyv4534 - yyrl4534, yyrt4534 = z.DecInferLen(yyl4534, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4534 { - if yyrl4534 <= cap(yyv4534) { - yyv4534 = yyv4534[:yyrl4534] + yyrg4539 := len(yyv4539) > 0 + yyv24539 := yyv4539 + yyrl4539, yyrt4539 = z.DecInferLen(yyl4539, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4539 { + if yyrl4539 <= cap(yyv4539) { + yyv4539 = yyv4539[:yyrl4539] } else { - yyv4534 = make([]EndpointAddress, yyrl4534) + yyv4539 = make([]EndpointAddress, yyrl4539) } } else { - yyv4534 = make([]EndpointAddress, yyrl4534) + yyv4539 = make([]EndpointAddress, yyrl4539) } - yyc4534 = true - yyrr4534 = len(yyv4534) - if yyrg4534 { - copy(yyv4534, yyv24534) + yyc4539 = true + yyrr4539 = len(yyv4539) + if yyrg4539 { + copy(yyv4539, yyv24539) } - } else if yyl4534 != len(yyv4534) { - yyv4534 = yyv4534[:yyl4534] - yyc4534 = true + } else if yyl4539 != len(yyv4539) { + yyv4539 = yyv4539[:yyl4539] + yyc4539 = true } - yyj4534 := 0 - for ; yyj4534 < yyrr4534; yyj4534++ { - yyh4534.ElemContainerState(yyj4534) + yyj4539 := 0 + for ; yyj4539 < yyrr4539; yyj4539++ { + yyh4539.ElemContainerState(yyj4539) if r.TryDecodeAsNil() { - yyv4534[yyj4534] = EndpointAddress{} + yyv4539[yyj4539] = EndpointAddress{} } else { - yyv4535 := &yyv4534[yyj4534] - yyv4535.CodecDecodeSelf(d) + yyv4540 := &yyv4539[yyj4539] + yyv4540.CodecDecodeSelf(d) } } - if yyrt4534 { - for ; yyj4534 < yyl4534; yyj4534++ { - yyv4534 = append(yyv4534, EndpointAddress{}) - yyh4534.ElemContainerState(yyj4534) + if yyrt4539 { + for ; yyj4539 < yyl4539; yyj4539++ { + yyv4539 = append(yyv4539, EndpointAddress{}) + yyh4539.ElemContainerState(yyj4539) if r.TryDecodeAsNil() { - yyv4534[yyj4534] = EndpointAddress{} + yyv4539[yyj4539] = EndpointAddress{} } else { - yyv4536 := &yyv4534[yyj4534] - yyv4536.CodecDecodeSelf(d) + yyv4541 := &yyv4539[yyj4539] + yyv4541.CodecDecodeSelf(d) } } } } else { - yyj4534 := 0 - for ; !r.CheckBreak(); yyj4534++ { + yyj4539 := 0 + for ; !r.CheckBreak(); yyj4539++ { - if yyj4534 >= len(yyv4534) { - yyv4534 = append(yyv4534, EndpointAddress{}) // var yyz4534 EndpointAddress - yyc4534 = true + if yyj4539 >= len(yyv4539) { + yyv4539 = append(yyv4539, EndpointAddress{}) // var yyz4539 EndpointAddress + yyc4539 = true } - yyh4534.ElemContainerState(yyj4534) - if yyj4534 < len(yyv4534) { + yyh4539.ElemContainerState(yyj4539) + if yyj4539 < len(yyv4539) { if r.TryDecodeAsNil() { - yyv4534[yyj4534] = EndpointAddress{} + yyv4539[yyj4539] = EndpointAddress{} } else { - yyv4537 := &yyv4534[yyj4534] - yyv4537.CodecDecodeSelf(d) + yyv4542 := &yyv4539[yyj4539] + yyv4542.CodecDecodeSelf(d) } } else { @@ -57704,17 +57745,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4534 < len(yyv4534) { - yyv4534 = yyv4534[:yyj4534] - yyc4534 = true - } else if yyj4534 == 0 && yyv4534 == nil { - yyv4534 = []EndpointAddress{} - yyc4534 = true + if yyj4539 < len(yyv4539) { + yyv4539 = yyv4539[:yyj4539] + yyc4539 = true + } else if yyj4539 == 0 && yyv4539 == nil { + yyv4539 = []EndpointAddress{} + yyc4539 = true } } - yyh4534.End() - if yyc4534 { - *v = yyv4534 + yyh4539.End() + if yyc4539 { + *v = yyv4539 } } @@ -57723,10 +57764,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4538 := range v { + for _, yyv4543 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4539 := &yyv4538 - yy4539.CodecEncodeSelf(e) + yy4544 := &yyv4543 + yy4544.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57736,83 +57777,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4540 := *v - yyh4540, yyl4540 := z.DecSliceHelperStart() - var yyc4540 bool - if yyl4540 == 0 { - if yyv4540 == nil { - yyv4540 = []EndpointPort{} - yyc4540 = true - } else if len(yyv4540) != 0 { - yyv4540 = yyv4540[:0] - yyc4540 = true + yyv4545 := *v + yyh4545, yyl4545 := z.DecSliceHelperStart() + var yyc4545 bool + if yyl4545 == 0 { + if yyv4545 == nil { + yyv4545 = []EndpointPort{} + yyc4545 = true + } else if len(yyv4545) != 0 { + yyv4545 = yyv4545[:0] + yyc4545 = true } - } else if yyl4540 > 0 { - var yyrr4540, yyrl4540 int - var yyrt4540 bool - if yyl4540 > cap(yyv4540) { + } else if yyl4545 > 0 { + var yyrr4545, yyrl4545 int + var yyrt4545 bool + if yyl4545 > cap(yyv4545) { - yyrg4540 := len(yyv4540) > 0 - yyv24540 := yyv4540 - yyrl4540, yyrt4540 = z.DecInferLen(yyl4540, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4540 { - if yyrl4540 <= cap(yyv4540) { - yyv4540 = yyv4540[:yyrl4540] + yyrg4545 := len(yyv4545) > 0 + yyv24545 := yyv4545 + yyrl4545, yyrt4545 = z.DecInferLen(yyl4545, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4545 { + if yyrl4545 <= cap(yyv4545) { + yyv4545 = yyv4545[:yyrl4545] } else { - yyv4540 = make([]EndpointPort, yyrl4540) + yyv4545 = make([]EndpointPort, yyrl4545) } } else { - yyv4540 = make([]EndpointPort, yyrl4540) + yyv4545 = make([]EndpointPort, yyrl4545) } - yyc4540 = true - yyrr4540 = len(yyv4540) - if yyrg4540 { - copy(yyv4540, yyv24540) + yyc4545 = true + yyrr4545 = len(yyv4545) + if yyrg4545 { + copy(yyv4545, yyv24545) } - } else if yyl4540 != len(yyv4540) { - yyv4540 = yyv4540[:yyl4540] - yyc4540 = true + } else if yyl4545 != len(yyv4545) { + yyv4545 = yyv4545[:yyl4545] + yyc4545 = true } - yyj4540 := 0 - for ; yyj4540 < yyrr4540; yyj4540++ { - yyh4540.ElemContainerState(yyj4540) + yyj4545 := 0 + for ; yyj4545 < yyrr4545; yyj4545++ { + yyh4545.ElemContainerState(yyj4545) if r.TryDecodeAsNil() { - yyv4540[yyj4540] = EndpointPort{} + yyv4545[yyj4545] = EndpointPort{} } else { - yyv4541 := &yyv4540[yyj4540] - yyv4541.CodecDecodeSelf(d) + yyv4546 := &yyv4545[yyj4545] + yyv4546.CodecDecodeSelf(d) } } - if yyrt4540 { - for ; yyj4540 < yyl4540; yyj4540++ { - yyv4540 = append(yyv4540, EndpointPort{}) - yyh4540.ElemContainerState(yyj4540) + if yyrt4545 { + for ; yyj4545 < yyl4545; yyj4545++ { + yyv4545 = append(yyv4545, EndpointPort{}) + yyh4545.ElemContainerState(yyj4545) if r.TryDecodeAsNil() { - yyv4540[yyj4540] = EndpointPort{} + yyv4545[yyj4545] = EndpointPort{} } else { - yyv4542 := &yyv4540[yyj4540] - yyv4542.CodecDecodeSelf(d) + yyv4547 := &yyv4545[yyj4545] + yyv4547.CodecDecodeSelf(d) } } } } else { - yyj4540 := 0 - for ; !r.CheckBreak(); yyj4540++ { + yyj4545 := 0 + for ; !r.CheckBreak(); yyj4545++ { - if yyj4540 >= len(yyv4540) { - yyv4540 = append(yyv4540, EndpointPort{}) // var yyz4540 EndpointPort - yyc4540 = true + if yyj4545 >= len(yyv4545) { + yyv4545 = append(yyv4545, EndpointPort{}) // var yyz4545 EndpointPort + yyc4545 = true } - yyh4540.ElemContainerState(yyj4540) - if yyj4540 < len(yyv4540) { + yyh4545.ElemContainerState(yyj4545) + if yyj4545 < len(yyv4545) { if r.TryDecodeAsNil() { - yyv4540[yyj4540] = EndpointPort{} + yyv4545[yyj4545] = EndpointPort{} } else { - yyv4543 := &yyv4540[yyj4540] - yyv4543.CodecDecodeSelf(d) + yyv4548 := &yyv4545[yyj4545] + yyv4548.CodecDecodeSelf(d) } } else { @@ -57820,17 +57861,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4540 < len(yyv4540) { - yyv4540 = yyv4540[:yyj4540] - yyc4540 = true - } else if yyj4540 == 0 && yyv4540 == nil { - yyv4540 = []EndpointPort{} - yyc4540 = true + if yyj4545 < len(yyv4545) { + yyv4545 = yyv4545[:yyj4545] + yyc4545 = true + } else if yyj4545 == 0 && yyv4545 == nil { + yyv4545 = []EndpointPort{} + yyc4545 = true } } - yyh4540.End() - if yyc4540 { - *v = yyv4540 + yyh4545.End() + if yyc4545 { + *v = yyv4545 } } @@ -57839,10 +57880,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4544 := range v { + for _, yyv4549 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4545 := &yyv4544 - yy4545.CodecEncodeSelf(e) + yy4550 := &yyv4549 + yy4550.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57852,83 +57893,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4546 := *v - yyh4546, yyl4546 := z.DecSliceHelperStart() - var yyc4546 bool - if yyl4546 == 0 { - if yyv4546 == nil { - yyv4546 = []Endpoints{} - yyc4546 = true - } else if len(yyv4546) != 0 { - yyv4546 = yyv4546[:0] - yyc4546 = true + yyv4551 := *v + yyh4551, yyl4551 := z.DecSliceHelperStart() + var yyc4551 bool + if yyl4551 == 0 { + if yyv4551 == nil { + yyv4551 = []Endpoints{} + yyc4551 = true + } else if len(yyv4551) != 0 { + yyv4551 = yyv4551[:0] + yyc4551 = true } - } else if yyl4546 > 0 { - var yyrr4546, yyrl4546 int - var yyrt4546 bool - if yyl4546 > cap(yyv4546) { + } else if yyl4551 > 0 { + var yyrr4551, yyrl4551 int + var yyrt4551 bool + if yyl4551 > cap(yyv4551) { - yyrg4546 := len(yyv4546) > 0 - yyv24546 := yyv4546 - yyrl4546, yyrt4546 = z.DecInferLen(yyl4546, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4546 { - if yyrl4546 <= cap(yyv4546) { - yyv4546 = yyv4546[:yyrl4546] + yyrg4551 := len(yyv4551) > 0 + yyv24551 := yyv4551 + yyrl4551, yyrt4551 = z.DecInferLen(yyl4551, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4551 { + if yyrl4551 <= cap(yyv4551) { + yyv4551 = yyv4551[:yyrl4551] } else { - yyv4546 = make([]Endpoints, yyrl4546) + yyv4551 = make([]Endpoints, yyrl4551) } } else { - yyv4546 = make([]Endpoints, yyrl4546) + yyv4551 = make([]Endpoints, yyrl4551) } - yyc4546 = true - yyrr4546 = len(yyv4546) - if yyrg4546 { - copy(yyv4546, yyv24546) + yyc4551 = true + yyrr4551 = len(yyv4551) + if yyrg4551 { + copy(yyv4551, yyv24551) } - } else if yyl4546 != len(yyv4546) { - yyv4546 = yyv4546[:yyl4546] - yyc4546 = true + } else if yyl4551 != len(yyv4551) { + yyv4551 = yyv4551[:yyl4551] + yyc4551 = true } - yyj4546 := 0 - for ; yyj4546 < yyrr4546; yyj4546++ { - yyh4546.ElemContainerState(yyj4546) + yyj4551 := 0 + for ; yyj4551 < yyrr4551; yyj4551++ { + yyh4551.ElemContainerState(yyj4551) if r.TryDecodeAsNil() { - yyv4546[yyj4546] = Endpoints{} + yyv4551[yyj4551] = Endpoints{} } else { - yyv4547 := &yyv4546[yyj4546] - yyv4547.CodecDecodeSelf(d) + yyv4552 := &yyv4551[yyj4551] + yyv4552.CodecDecodeSelf(d) } } - if yyrt4546 { - for ; yyj4546 < yyl4546; yyj4546++ { - yyv4546 = append(yyv4546, Endpoints{}) - yyh4546.ElemContainerState(yyj4546) + if yyrt4551 { + for ; yyj4551 < yyl4551; yyj4551++ { + yyv4551 = append(yyv4551, Endpoints{}) + yyh4551.ElemContainerState(yyj4551) if r.TryDecodeAsNil() { - yyv4546[yyj4546] = Endpoints{} + yyv4551[yyj4551] = Endpoints{} } else { - yyv4548 := &yyv4546[yyj4546] - yyv4548.CodecDecodeSelf(d) + yyv4553 := &yyv4551[yyj4551] + yyv4553.CodecDecodeSelf(d) } } } } else { - yyj4546 := 0 - for ; !r.CheckBreak(); yyj4546++ { + yyj4551 := 0 + for ; !r.CheckBreak(); yyj4551++ { - if yyj4546 >= len(yyv4546) { - yyv4546 = append(yyv4546, Endpoints{}) // var yyz4546 Endpoints - yyc4546 = true + if yyj4551 >= len(yyv4551) { + yyv4551 = append(yyv4551, Endpoints{}) // var yyz4551 Endpoints + yyc4551 = true } - yyh4546.ElemContainerState(yyj4546) - if yyj4546 < len(yyv4546) { + yyh4551.ElemContainerState(yyj4551) + if yyj4551 < len(yyv4551) { if r.TryDecodeAsNil() { - yyv4546[yyj4546] = Endpoints{} + yyv4551[yyj4551] = Endpoints{} } else { - yyv4549 := &yyv4546[yyj4546] - yyv4549.CodecDecodeSelf(d) + yyv4554 := &yyv4551[yyj4551] + yyv4554.CodecDecodeSelf(d) } } else { @@ -57936,17 +57977,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4546 < len(yyv4546) { - yyv4546 = yyv4546[:yyj4546] - yyc4546 = true - } else if yyj4546 == 0 && yyv4546 == nil { - yyv4546 = []Endpoints{} - yyc4546 = true + if yyj4551 < len(yyv4551) { + yyv4551 = yyv4551[:yyj4551] + yyc4551 = true + } else if yyj4551 == 0 && yyv4551 == nil { + yyv4551 = []Endpoints{} + yyc4551 = true } } - yyh4546.End() - if yyc4546 { - *v = yyv4546 + yyh4551.End() + if yyc4551 { + *v = yyv4551 } } @@ -57955,10 +57996,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4550 := range v { + for _, yyv4555 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4551 := &yyv4550 - yy4551.CodecEncodeSelf(e) + yy4556 := &yyv4555 + yy4556.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57968,83 +58009,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4552 := *v - yyh4552, yyl4552 := z.DecSliceHelperStart() - var yyc4552 bool - if yyl4552 == 0 { - if yyv4552 == nil { - yyv4552 = []NodeCondition{} - yyc4552 = true - } else if len(yyv4552) != 0 { - yyv4552 = yyv4552[:0] - yyc4552 = true + yyv4557 := *v + yyh4557, yyl4557 := z.DecSliceHelperStart() + var yyc4557 bool + if yyl4557 == 0 { + if yyv4557 == nil { + yyv4557 = []NodeCondition{} + yyc4557 = true + } else if len(yyv4557) != 0 { + yyv4557 = yyv4557[:0] + yyc4557 = true } - } else if yyl4552 > 0 { - var yyrr4552, yyrl4552 int - var yyrt4552 bool - if yyl4552 > cap(yyv4552) { + } else if yyl4557 > 0 { + var yyrr4557, yyrl4557 int + var yyrt4557 bool + if yyl4557 > cap(yyv4557) { - yyrg4552 := len(yyv4552) > 0 - yyv24552 := yyv4552 - yyrl4552, yyrt4552 = z.DecInferLen(yyl4552, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4552 { - if yyrl4552 <= cap(yyv4552) { - yyv4552 = yyv4552[:yyrl4552] + yyrg4557 := len(yyv4557) > 0 + yyv24557 := yyv4557 + yyrl4557, yyrt4557 = z.DecInferLen(yyl4557, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4557 { + if yyrl4557 <= cap(yyv4557) { + yyv4557 = yyv4557[:yyrl4557] } else { - yyv4552 = make([]NodeCondition, yyrl4552) + yyv4557 = make([]NodeCondition, yyrl4557) } } else { - yyv4552 = make([]NodeCondition, yyrl4552) + yyv4557 = make([]NodeCondition, yyrl4557) } - yyc4552 = true - yyrr4552 = len(yyv4552) - if yyrg4552 { - copy(yyv4552, yyv24552) + yyc4557 = true + yyrr4557 = len(yyv4557) + if yyrg4557 { + copy(yyv4557, yyv24557) } - } else if yyl4552 != len(yyv4552) { - yyv4552 = yyv4552[:yyl4552] - yyc4552 = true + } else if yyl4557 != len(yyv4557) { + yyv4557 = yyv4557[:yyl4557] + yyc4557 = true } - yyj4552 := 0 - for ; yyj4552 < yyrr4552; yyj4552++ { - yyh4552.ElemContainerState(yyj4552) + yyj4557 := 0 + for ; yyj4557 < yyrr4557; yyj4557++ { + yyh4557.ElemContainerState(yyj4557) if r.TryDecodeAsNil() { - yyv4552[yyj4552] = NodeCondition{} + yyv4557[yyj4557] = NodeCondition{} } else { - yyv4553 := &yyv4552[yyj4552] - yyv4553.CodecDecodeSelf(d) + yyv4558 := &yyv4557[yyj4557] + yyv4558.CodecDecodeSelf(d) } } - if yyrt4552 { - for ; yyj4552 < yyl4552; yyj4552++ { - yyv4552 = append(yyv4552, NodeCondition{}) - yyh4552.ElemContainerState(yyj4552) + if yyrt4557 { + for ; yyj4557 < yyl4557; yyj4557++ { + yyv4557 = append(yyv4557, NodeCondition{}) + yyh4557.ElemContainerState(yyj4557) if r.TryDecodeAsNil() { - yyv4552[yyj4552] = NodeCondition{} + yyv4557[yyj4557] = NodeCondition{} } else { - yyv4554 := &yyv4552[yyj4552] - yyv4554.CodecDecodeSelf(d) + yyv4559 := &yyv4557[yyj4557] + yyv4559.CodecDecodeSelf(d) } } } } else { - yyj4552 := 0 - for ; !r.CheckBreak(); yyj4552++ { + yyj4557 := 0 + for ; !r.CheckBreak(); yyj4557++ { - if yyj4552 >= len(yyv4552) { - yyv4552 = append(yyv4552, NodeCondition{}) // var yyz4552 NodeCondition - yyc4552 = true + if yyj4557 >= len(yyv4557) { + yyv4557 = append(yyv4557, NodeCondition{}) // var yyz4557 NodeCondition + yyc4557 = true } - yyh4552.ElemContainerState(yyj4552) - if yyj4552 < len(yyv4552) { + yyh4557.ElemContainerState(yyj4557) + if yyj4557 < len(yyv4557) { if r.TryDecodeAsNil() { - yyv4552[yyj4552] = NodeCondition{} + yyv4557[yyj4557] = NodeCondition{} } else { - yyv4555 := &yyv4552[yyj4552] - yyv4555.CodecDecodeSelf(d) + yyv4560 := &yyv4557[yyj4557] + yyv4560.CodecDecodeSelf(d) } } else { @@ -58052,17 +58093,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4552 < len(yyv4552) { - yyv4552 = yyv4552[:yyj4552] - yyc4552 = true - } else if yyj4552 == 0 && yyv4552 == nil { - yyv4552 = []NodeCondition{} - yyc4552 = true + if yyj4557 < len(yyv4557) { + yyv4557 = yyv4557[:yyj4557] + yyc4557 = true + } else if yyj4557 == 0 && yyv4557 == nil { + yyv4557 = []NodeCondition{} + yyc4557 = true } } - yyh4552.End() - if yyc4552 { - *v = yyv4552 + yyh4557.End() + if yyc4557 { + *v = yyv4557 } } @@ -58071,10 +58112,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4556 := range v { + for _, yyv4561 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4557 := &yyv4556 - yy4557.CodecEncodeSelf(e) + yy4562 := &yyv4561 + yy4562.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58084,83 +58125,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4558 := *v - yyh4558, yyl4558 := z.DecSliceHelperStart() - var yyc4558 bool - if yyl4558 == 0 { - if yyv4558 == nil { - yyv4558 = []NodeAddress{} - yyc4558 = true - } else if len(yyv4558) != 0 { - yyv4558 = yyv4558[:0] - yyc4558 = true + yyv4563 := *v + yyh4563, yyl4563 := z.DecSliceHelperStart() + var yyc4563 bool + if yyl4563 == 0 { + if yyv4563 == nil { + yyv4563 = []NodeAddress{} + yyc4563 = true + } else if len(yyv4563) != 0 { + yyv4563 = yyv4563[:0] + yyc4563 = true } - } else if yyl4558 > 0 { - var yyrr4558, yyrl4558 int - var yyrt4558 bool - if yyl4558 > cap(yyv4558) { + } else if yyl4563 > 0 { + var yyrr4563, yyrl4563 int + var yyrt4563 bool + if yyl4563 > cap(yyv4563) { - yyrg4558 := len(yyv4558) > 0 - yyv24558 := yyv4558 - yyrl4558, yyrt4558 = z.DecInferLen(yyl4558, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4558 { - if yyrl4558 <= cap(yyv4558) { - yyv4558 = yyv4558[:yyrl4558] + yyrg4563 := len(yyv4563) > 0 + yyv24563 := yyv4563 + yyrl4563, yyrt4563 = z.DecInferLen(yyl4563, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4563 { + if yyrl4563 <= cap(yyv4563) { + yyv4563 = yyv4563[:yyrl4563] } else { - yyv4558 = make([]NodeAddress, yyrl4558) + yyv4563 = make([]NodeAddress, yyrl4563) } } else { - yyv4558 = make([]NodeAddress, yyrl4558) + yyv4563 = make([]NodeAddress, yyrl4563) } - yyc4558 = true - yyrr4558 = len(yyv4558) - if yyrg4558 { - copy(yyv4558, yyv24558) + yyc4563 = true + yyrr4563 = len(yyv4563) + if yyrg4563 { + copy(yyv4563, yyv24563) } - } else if yyl4558 != len(yyv4558) { - yyv4558 = yyv4558[:yyl4558] - yyc4558 = true + } else if yyl4563 != len(yyv4563) { + yyv4563 = yyv4563[:yyl4563] + yyc4563 = true } - yyj4558 := 0 - for ; yyj4558 < yyrr4558; yyj4558++ { - yyh4558.ElemContainerState(yyj4558) + yyj4563 := 0 + for ; yyj4563 < yyrr4563; yyj4563++ { + yyh4563.ElemContainerState(yyj4563) if r.TryDecodeAsNil() { - yyv4558[yyj4558] = NodeAddress{} + yyv4563[yyj4563] = NodeAddress{} } else { - yyv4559 := &yyv4558[yyj4558] - yyv4559.CodecDecodeSelf(d) + yyv4564 := &yyv4563[yyj4563] + yyv4564.CodecDecodeSelf(d) } } - if yyrt4558 { - for ; yyj4558 < yyl4558; yyj4558++ { - yyv4558 = append(yyv4558, NodeAddress{}) - yyh4558.ElemContainerState(yyj4558) + if yyrt4563 { + for ; yyj4563 < yyl4563; yyj4563++ { + yyv4563 = append(yyv4563, NodeAddress{}) + yyh4563.ElemContainerState(yyj4563) if r.TryDecodeAsNil() { - yyv4558[yyj4558] = NodeAddress{} + yyv4563[yyj4563] = NodeAddress{} } else { - yyv4560 := &yyv4558[yyj4558] - yyv4560.CodecDecodeSelf(d) + yyv4565 := &yyv4563[yyj4563] + yyv4565.CodecDecodeSelf(d) } } } } else { - yyj4558 := 0 - for ; !r.CheckBreak(); yyj4558++ { + yyj4563 := 0 + for ; !r.CheckBreak(); yyj4563++ { - if yyj4558 >= len(yyv4558) { - yyv4558 = append(yyv4558, NodeAddress{}) // var yyz4558 NodeAddress - yyc4558 = true + if yyj4563 >= len(yyv4563) { + yyv4563 = append(yyv4563, NodeAddress{}) // var yyz4563 NodeAddress + yyc4563 = true } - yyh4558.ElemContainerState(yyj4558) - if yyj4558 < len(yyv4558) { + yyh4563.ElemContainerState(yyj4563) + if yyj4563 < len(yyv4563) { if r.TryDecodeAsNil() { - yyv4558[yyj4558] = NodeAddress{} + yyv4563[yyj4563] = NodeAddress{} } else { - yyv4561 := &yyv4558[yyj4558] - yyv4561.CodecDecodeSelf(d) + yyv4566 := &yyv4563[yyj4563] + yyv4566.CodecDecodeSelf(d) } } else { @@ -58168,17 +58209,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4558 < len(yyv4558) { - yyv4558 = yyv4558[:yyj4558] - yyc4558 = true - } else if yyj4558 == 0 && yyv4558 == nil { - yyv4558 = []NodeAddress{} - yyc4558 = true + if yyj4563 < len(yyv4563) { + yyv4563 = yyv4563[:yyj4563] + yyc4563 = true + } else if yyj4563 == 0 && yyv4563 == nil { + yyv4563 = []NodeAddress{} + yyc4563 = true } } - yyh4558.End() - if yyc4558 { - *v = yyv4558 + yyh4563.End() + if yyc4563 { + *v = yyv4563 } } @@ -58187,10 +58228,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4562 := range v { + for _, yyv4567 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4563 := &yyv4562 - yy4563.CodecEncodeSelf(e) + yy4568 := &yyv4567 + yy4568.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58200,83 +58241,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4564 := *v - yyh4564, yyl4564 := z.DecSliceHelperStart() - var yyc4564 bool - if yyl4564 == 0 { - if yyv4564 == nil { - yyv4564 = []ContainerImage{} - yyc4564 = true - } else if len(yyv4564) != 0 { - yyv4564 = yyv4564[:0] - yyc4564 = true + yyv4569 := *v + yyh4569, yyl4569 := z.DecSliceHelperStart() + var yyc4569 bool + if yyl4569 == 0 { + if yyv4569 == nil { + yyv4569 = []ContainerImage{} + yyc4569 = true + } else if len(yyv4569) != 0 { + yyv4569 = yyv4569[:0] + yyc4569 = true } - } else if yyl4564 > 0 { - var yyrr4564, yyrl4564 int - var yyrt4564 bool - if yyl4564 > cap(yyv4564) { + } else if yyl4569 > 0 { + var yyrr4569, yyrl4569 int + var yyrt4569 bool + if yyl4569 > cap(yyv4569) { - yyrg4564 := len(yyv4564) > 0 - yyv24564 := yyv4564 - yyrl4564, yyrt4564 = z.DecInferLen(yyl4564, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4564 { - if yyrl4564 <= cap(yyv4564) { - yyv4564 = yyv4564[:yyrl4564] + yyrg4569 := len(yyv4569) > 0 + yyv24569 := yyv4569 + yyrl4569, yyrt4569 = z.DecInferLen(yyl4569, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4569 { + if yyrl4569 <= cap(yyv4569) { + yyv4569 = yyv4569[:yyrl4569] } else { - yyv4564 = make([]ContainerImage, yyrl4564) + yyv4569 = make([]ContainerImage, yyrl4569) } } else { - yyv4564 = make([]ContainerImage, yyrl4564) + yyv4569 = make([]ContainerImage, yyrl4569) } - yyc4564 = true - yyrr4564 = len(yyv4564) - if yyrg4564 { - copy(yyv4564, yyv24564) + yyc4569 = true + yyrr4569 = len(yyv4569) + if yyrg4569 { + copy(yyv4569, yyv24569) } - } else if yyl4564 != len(yyv4564) { - yyv4564 = yyv4564[:yyl4564] - yyc4564 = true + } else if yyl4569 != len(yyv4569) { + yyv4569 = yyv4569[:yyl4569] + yyc4569 = true } - yyj4564 := 0 - for ; yyj4564 < yyrr4564; yyj4564++ { - yyh4564.ElemContainerState(yyj4564) + yyj4569 := 0 + for ; yyj4569 < yyrr4569; yyj4569++ { + yyh4569.ElemContainerState(yyj4569) if r.TryDecodeAsNil() { - yyv4564[yyj4564] = ContainerImage{} + yyv4569[yyj4569] = ContainerImage{} } else { - yyv4565 := &yyv4564[yyj4564] - yyv4565.CodecDecodeSelf(d) + yyv4570 := &yyv4569[yyj4569] + yyv4570.CodecDecodeSelf(d) } } - if yyrt4564 { - for ; yyj4564 < yyl4564; yyj4564++ { - yyv4564 = append(yyv4564, ContainerImage{}) - yyh4564.ElemContainerState(yyj4564) + if yyrt4569 { + for ; yyj4569 < yyl4569; yyj4569++ { + yyv4569 = append(yyv4569, ContainerImage{}) + yyh4569.ElemContainerState(yyj4569) if r.TryDecodeAsNil() { - yyv4564[yyj4564] = ContainerImage{} + yyv4569[yyj4569] = ContainerImage{} } else { - yyv4566 := &yyv4564[yyj4564] - yyv4566.CodecDecodeSelf(d) + yyv4571 := &yyv4569[yyj4569] + yyv4571.CodecDecodeSelf(d) } } } } else { - yyj4564 := 0 - for ; !r.CheckBreak(); yyj4564++ { + yyj4569 := 0 + for ; !r.CheckBreak(); yyj4569++ { - if yyj4564 >= len(yyv4564) { - yyv4564 = append(yyv4564, ContainerImage{}) // var yyz4564 ContainerImage - yyc4564 = true + if yyj4569 >= len(yyv4569) { + yyv4569 = append(yyv4569, ContainerImage{}) // var yyz4569 ContainerImage + yyc4569 = true } - yyh4564.ElemContainerState(yyj4564) - if yyj4564 < len(yyv4564) { + yyh4569.ElemContainerState(yyj4569) + if yyj4569 < len(yyv4569) { if r.TryDecodeAsNil() { - yyv4564[yyj4564] = ContainerImage{} + yyv4569[yyj4569] = ContainerImage{} } else { - yyv4567 := &yyv4564[yyj4564] - yyv4567.CodecDecodeSelf(d) + yyv4572 := &yyv4569[yyj4569] + yyv4572.CodecDecodeSelf(d) } } else { @@ -58284,17 +58325,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4564 < len(yyv4564) { - yyv4564 = yyv4564[:yyj4564] - yyc4564 = true - } else if yyj4564 == 0 && yyv4564 == nil { - yyv4564 = []ContainerImage{} - yyc4564 = true + if yyj4569 < len(yyv4569) { + yyv4569 = yyv4569[:yyj4569] + yyc4569 = true + } else if yyj4569 == 0 && yyv4569 == nil { + yyv4569 = []ContainerImage{} + yyc4569 = true } } - yyh4564.End() - if yyc4564 { - *v = yyv4564 + yyh4569.End() + if yyc4569 { + *v = yyv4569 } } @@ -58303,9 +58344,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4568 := range v { + for _, yyv4573 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4568.CodecEncodeSelf(e) + yyv4573.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58315,75 +58356,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4569 := *v - yyh4569, yyl4569 := z.DecSliceHelperStart() - var yyc4569 bool - if yyl4569 == 0 { - if yyv4569 == nil { - yyv4569 = []UniqueVolumeName{} - yyc4569 = true - } else if len(yyv4569) != 0 { - yyv4569 = yyv4569[:0] - yyc4569 = true + yyv4574 := *v + yyh4574, yyl4574 := z.DecSliceHelperStart() + var yyc4574 bool + if yyl4574 == 0 { + if yyv4574 == nil { + yyv4574 = []UniqueVolumeName{} + yyc4574 = true + } else if len(yyv4574) != 0 { + yyv4574 = yyv4574[:0] + yyc4574 = true } - } else if yyl4569 > 0 { - var yyrr4569, yyrl4569 int - var yyrt4569 bool - if yyl4569 > cap(yyv4569) { + } else if yyl4574 > 0 { + var yyrr4574, yyrl4574 int + var yyrt4574 bool + if yyl4574 > cap(yyv4574) { - yyrl4569, yyrt4569 = z.DecInferLen(yyl4569, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4569 { - if yyrl4569 <= cap(yyv4569) { - yyv4569 = yyv4569[:yyrl4569] + yyrl4574, yyrt4574 = z.DecInferLen(yyl4574, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4574 { + if yyrl4574 <= cap(yyv4574) { + yyv4574 = yyv4574[:yyrl4574] } else { - yyv4569 = make([]UniqueVolumeName, yyrl4569) + yyv4574 = make([]UniqueVolumeName, yyrl4574) } } else { - yyv4569 = make([]UniqueVolumeName, yyrl4569) + yyv4574 = make([]UniqueVolumeName, yyrl4574) } - yyc4569 = true - yyrr4569 = len(yyv4569) - } else if yyl4569 != len(yyv4569) { - yyv4569 = yyv4569[:yyl4569] - yyc4569 = true + yyc4574 = true + yyrr4574 = len(yyv4574) + } else if yyl4574 != len(yyv4574) { + yyv4574 = yyv4574[:yyl4574] + yyc4574 = true } - yyj4569 := 0 - for ; yyj4569 < yyrr4569; yyj4569++ { - yyh4569.ElemContainerState(yyj4569) + yyj4574 := 0 + for ; yyj4574 < yyrr4574; yyj4574++ { + yyh4574.ElemContainerState(yyj4574) if r.TryDecodeAsNil() { - yyv4569[yyj4569] = "" + yyv4574[yyj4574] = "" } else { - yyv4569[yyj4569] = UniqueVolumeName(r.DecodeString()) + yyv4574[yyj4574] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4569 { - for ; yyj4569 < yyl4569; yyj4569++ { - yyv4569 = append(yyv4569, "") - yyh4569.ElemContainerState(yyj4569) + if yyrt4574 { + for ; yyj4574 < yyl4574; yyj4574++ { + yyv4574 = append(yyv4574, "") + yyh4574.ElemContainerState(yyj4574) if r.TryDecodeAsNil() { - yyv4569[yyj4569] = "" + yyv4574[yyj4574] = "" } else { - yyv4569[yyj4569] = UniqueVolumeName(r.DecodeString()) + yyv4574[yyj4574] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4569 := 0 - for ; !r.CheckBreak(); yyj4569++ { + yyj4574 := 0 + for ; !r.CheckBreak(); yyj4574++ { - if yyj4569 >= len(yyv4569) { - yyv4569 = append(yyv4569, "") // var yyz4569 UniqueVolumeName - yyc4569 = true + if yyj4574 >= len(yyv4574) { + yyv4574 = append(yyv4574, "") // var yyz4574 UniqueVolumeName + yyc4574 = true } - yyh4569.ElemContainerState(yyj4569) - if yyj4569 < len(yyv4569) { + yyh4574.ElemContainerState(yyj4574) + if yyj4574 < len(yyv4574) { if r.TryDecodeAsNil() { - yyv4569[yyj4569] = "" + yyv4574[yyj4574] = "" } else { - yyv4569[yyj4569] = UniqueVolumeName(r.DecodeString()) + yyv4574[yyj4574] = UniqueVolumeName(r.DecodeString()) } } else { @@ -58391,17 +58432,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4569 < len(yyv4569) { - yyv4569 = yyv4569[:yyj4569] - yyc4569 = true - } else if yyj4569 == 0 && yyv4569 == nil { - yyv4569 = []UniqueVolumeName{} - yyc4569 = true + if yyj4574 < len(yyv4574) { + yyv4574 = yyv4574[:yyj4574] + yyc4574 = true + } else if yyj4574 == 0 && yyv4574 == nil { + yyv4574 = []UniqueVolumeName{} + yyc4574 = true } } - yyh4569.End() - if yyc4569 { - *v = yyv4569 + yyh4574.End() + if yyc4574 { + *v = yyv4574 } } @@ -58410,10 +58451,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4573 := range v { + for _, yyv4578 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4574 := &yyv4573 - yy4574.CodecEncodeSelf(e) + yy4579 := &yyv4578 + yy4579.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58423,83 +58464,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4575 := *v - yyh4575, yyl4575 := z.DecSliceHelperStart() - var yyc4575 bool - if yyl4575 == 0 { - if yyv4575 == nil { - yyv4575 = []AttachedVolume{} - yyc4575 = true - } else if len(yyv4575) != 0 { - yyv4575 = yyv4575[:0] - yyc4575 = true + yyv4580 := *v + yyh4580, yyl4580 := z.DecSliceHelperStart() + var yyc4580 bool + if yyl4580 == 0 { + if yyv4580 == nil { + yyv4580 = []AttachedVolume{} + yyc4580 = true + } else if len(yyv4580) != 0 { + yyv4580 = yyv4580[:0] + yyc4580 = true } - } else if yyl4575 > 0 { - var yyrr4575, yyrl4575 int - var yyrt4575 bool - if yyl4575 > cap(yyv4575) { + } else if yyl4580 > 0 { + var yyrr4580, yyrl4580 int + var yyrt4580 bool + if yyl4580 > cap(yyv4580) { - yyrg4575 := len(yyv4575) > 0 - yyv24575 := yyv4575 - yyrl4575, yyrt4575 = z.DecInferLen(yyl4575, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4575 { - if yyrl4575 <= cap(yyv4575) { - yyv4575 = yyv4575[:yyrl4575] + yyrg4580 := len(yyv4580) > 0 + yyv24580 := yyv4580 + yyrl4580, yyrt4580 = z.DecInferLen(yyl4580, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4580 { + if yyrl4580 <= cap(yyv4580) { + yyv4580 = yyv4580[:yyrl4580] } else { - yyv4575 = make([]AttachedVolume, yyrl4575) + yyv4580 = make([]AttachedVolume, yyrl4580) } } else { - yyv4575 = make([]AttachedVolume, yyrl4575) + yyv4580 = make([]AttachedVolume, yyrl4580) } - yyc4575 = true - yyrr4575 = len(yyv4575) - if yyrg4575 { - copy(yyv4575, yyv24575) + yyc4580 = true + yyrr4580 = len(yyv4580) + if yyrg4580 { + copy(yyv4580, yyv24580) } - } else if yyl4575 != len(yyv4575) { - yyv4575 = yyv4575[:yyl4575] - yyc4575 = true + } else if yyl4580 != len(yyv4580) { + yyv4580 = yyv4580[:yyl4580] + yyc4580 = true } - yyj4575 := 0 - for ; yyj4575 < yyrr4575; yyj4575++ { - yyh4575.ElemContainerState(yyj4575) + yyj4580 := 0 + for ; yyj4580 < yyrr4580; yyj4580++ { + yyh4580.ElemContainerState(yyj4580) if r.TryDecodeAsNil() { - yyv4575[yyj4575] = AttachedVolume{} + yyv4580[yyj4580] = AttachedVolume{} } else { - yyv4576 := &yyv4575[yyj4575] - yyv4576.CodecDecodeSelf(d) + yyv4581 := &yyv4580[yyj4580] + yyv4581.CodecDecodeSelf(d) } } - if yyrt4575 { - for ; yyj4575 < yyl4575; yyj4575++ { - yyv4575 = append(yyv4575, AttachedVolume{}) - yyh4575.ElemContainerState(yyj4575) + if yyrt4580 { + for ; yyj4580 < yyl4580; yyj4580++ { + yyv4580 = append(yyv4580, AttachedVolume{}) + yyh4580.ElemContainerState(yyj4580) if r.TryDecodeAsNil() { - yyv4575[yyj4575] = AttachedVolume{} + yyv4580[yyj4580] = AttachedVolume{} } else { - yyv4577 := &yyv4575[yyj4575] - yyv4577.CodecDecodeSelf(d) + yyv4582 := &yyv4580[yyj4580] + yyv4582.CodecDecodeSelf(d) } } } } else { - yyj4575 := 0 - for ; !r.CheckBreak(); yyj4575++ { + yyj4580 := 0 + for ; !r.CheckBreak(); yyj4580++ { - if yyj4575 >= len(yyv4575) { - yyv4575 = append(yyv4575, AttachedVolume{}) // var yyz4575 AttachedVolume - yyc4575 = true + if yyj4580 >= len(yyv4580) { + yyv4580 = append(yyv4580, AttachedVolume{}) // var yyz4580 AttachedVolume + yyc4580 = true } - yyh4575.ElemContainerState(yyj4575) - if yyj4575 < len(yyv4575) { + yyh4580.ElemContainerState(yyj4580) + if yyj4580 < len(yyv4580) { if r.TryDecodeAsNil() { - yyv4575[yyj4575] = AttachedVolume{} + yyv4580[yyj4580] = AttachedVolume{} } else { - yyv4578 := &yyv4575[yyj4575] - yyv4578.CodecDecodeSelf(d) + yyv4583 := &yyv4580[yyj4580] + yyv4583.CodecDecodeSelf(d) } } else { @@ -58507,17 +58548,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4575 < len(yyv4575) { - yyv4575 = yyv4575[:yyj4575] - yyc4575 = true - } else if yyj4575 == 0 && yyv4575 == nil { - yyv4575 = []AttachedVolume{} - yyc4575 = true + if yyj4580 < len(yyv4580) { + yyv4580 = yyv4580[:yyj4580] + yyc4580 = true + } else if yyj4580 == 0 && yyv4580 == nil { + yyv4580 = []AttachedVolume{} + yyc4580 = true } } - yyh4575.End() - if yyc4575 { - *v = yyv4575 + yyh4580.End() + if yyc4580 { + *v = yyv4580 } } @@ -58526,10 +58567,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4579 := range v { + for _, yyv4584 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4580 := &yyv4579 - yy4580.CodecEncodeSelf(e) + yy4585 := &yyv4584 + yy4585.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58539,83 +58580,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4581 := *v - yyh4581, yyl4581 := z.DecSliceHelperStart() - var yyc4581 bool - if yyl4581 == 0 { - if yyv4581 == nil { - yyv4581 = []PreferAvoidPodsEntry{} - yyc4581 = true - } else if len(yyv4581) != 0 { - yyv4581 = yyv4581[:0] - yyc4581 = true + yyv4586 := *v + yyh4586, yyl4586 := z.DecSliceHelperStart() + var yyc4586 bool + if yyl4586 == 0 { + if yyv4586 == nil { + yyv4586 = []PreferAvoidPodsEntry{} + yyc4586 = true + } else if len(yyv4586) != 0 { + yyv4586 = yyv4586[:0] + yyc4586 = true } - } else if yyl4581 > 0 { - var yyrr4581, yyrl4581 int - var yyrt4581 bool - if yyl4581 > cap(yyv4581) { + } else if yyl4586 > 0 { + var yyrr4586, yyrl4586 int + var yyrt4586 bool + if yyl4586 > cap(yyv4586) { - yyrg4581 := len(yyv4581) > 0 - yyv24581 := yyv4581 - yyrl4581, yyrt4581 = z.DecInferLen(yyl4581, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4581 { - if yyrl4581 <= cap(yyv4581) { - yyv4581 = yyv4581[:yyrl4581] + yyrg4586 := len(yyv4586) > 0 + yyv24586 := yyv4586 + yyrl4586, yyrt4586 = z.DecInferLen(yyl4586, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4586 { + if yyrl4586 <= cap(yyv4586) { + yyv4586 = yyv4586[:yyrl4586] } else { - yyv4581 = make([]PreferAvoidPodsEntry, yyrl4581) + yyv4586 = make([]PreferAvoidPodsEntry, yyrl4586) } } else { - yyv4581 = make([]PreferAvoidPodsEntry, yyrl4581) + yyv4586 = make([]PreferAvoidPodsEntry, yyrl4586) } - yyc4581 = true - yyrr4581 = len(yyv4581) - if yyrg4581 { - copy(yyv4581, yyv24581) + yyc4586 = true + yyrr4586 = len(yyv4586) + if yyrg4586 { + copy(yyv4586, yyv24586) } - } else if yyl4581 != len(yyv4581) { - yyv4581 = yyv4581[:yyl4581] - yyc4581 = true + } else if yyl4586 != len(yyv4586) { + yyv4586 = yyv4586[:yyl4586] + yyc4586 = true } - yyj4581 := 0 - for ; yyj4581 < yyrr4581; yyj4581++ { - yyh4581.ElemContainerState(yyj4581) + yyj4586 := 0 + for ; yyj4586 < yyrr4586; yyj4586++ { + yyh4586.ElemContainerState(yyj4586) if r.TryDecodeAsNil() { - yyv4581[yyj4581] = PreferAvoidPodsEntry{} + yyv4586[yyj4586] = PreferAvoidPodsEntry{} } else { - yyv4582 := &yyv4581[yyj4581] - yyv4582.CodecDecodeSelf(d) + yyv4587 := &yyv4586[yyj4586] + yyv4587.CodecDecodeSelf(d) } } - if yyrt4581 { - for ; yyj4581 < yyl4581; yyj4581++ { - yyv4581 = append(yyv4581, PreferAvoidPodsEntry{}) - yyh4581.ElemContainerState(yyj4581) + if yyrt4586 { + for ; yyj4586 < yyl4586; yyj4586++ { + yyv4586 = append(yyv4586, PreferAvoidPodsEntry{}) + yyh4586.ElemContainerState(yyj4586) if r.TryDecodeAsNil() { - yyv4581[yyj4581] = PreferAvoidPodsEntry{} + yyv4586[yyj4586] = PreferAvoidPodsEntry{} } else { - yyv4583 := &yyv4581[yyj4581] - yyv4583.CodecDecodeSelf(d) + yyv4588 := &yyv4586[yyj4586] + yyv4588.CodecDecodeSelf(d) } } } } else { - yyj4581 := 0 - for ; !r.CheckBreak(); yyj4581++ { + yyj4586 := 0 + for ; !r.CheckBreak(); yyj4586++ { - if yyj4581 >= len(yyv4581) { - yyv4581 = append(yyv4581, PreferAvoidPodsEntry{}) // var yyz4581 PreferAvoidPodsEntry - yyc4581 = true + if yyj4586 >= len(yyv4586) { + yyv4586 = append(yyv4586, PreferAvoidPodsEntry{}) // var yyz4586 PreferAvoidPodsEntry + yyc4586 = true } - yyh4581.ElemContainerState(yyj4581) - if yyj4581 < len(yyv4581) { + yyh4586.ElemContainerState(yyj4586) + if yyj4586 < len(yyv4586) { if r.TryDecodeAsNil() { - yyv4581[yyj4581] = PreferAvoidPodsEntry{} + yyv4586[yyj4586] = PreferAvoidPodsEntry{} } else { - yyv4584 := &yyv4581[yyj4581] - yyv4584.CodecDecodeSelf(d) + yyv4589 := &yyv4586[yyj4586] + yyv4589.CodecDecodeSelf(d) } } else { @@ -58623,17 +58664,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4581 < len(yyv4581) { - yyv4581 = yyv4581[:yyj4581] - yyc4581 = true - } else if yyj4581 == 0 && yyv4581 == nil { - yyv4581 = []PreferAvoidPodsEntry{} - yyc4581 = true + if yyj4586 < len(yyv4586) { + yyv4586 = yyv4586[:yyj4586] + yyc4586 = true + } else if yyj4586 == 0 && yyv4586 == nil { + yyv4586 = []PreferAvoidPodsEntry{} + yyc4586 = true } } - yyh4581.End() - if yyc4581 { - *v = yyv4581 + yyh4586.End() + if yyc4586 { + *v = yyv4586 } } @@ -58642,19 +58683,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4585, yyv4585 := range v { + for yyk4590, yyv4590 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4585.CodecEncodeSelf(e) + yyk4590.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4586 := &yyv4585 - yym4587 := z.EncBinary() - _ = yym4587 + yy4591 := &yyv4590 + yym4592 := z.EncBinary() + _ = yym4592 if false { - } else if z.HasExtensions() && z.EncExt(yy4586) { - } else if !yym4587 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4586) + } else if z.HasExtensions() && z.EncExt(yy4591) { + } else if !yym4592 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4591) } else { - z.EncFallback(yy4586) + z.EncFallback(yy4591) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -58665,86 +58706,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4588 := *v - yyl4588 := r.ReadMapStart() - yybh4588 := z.DecBasicHandle() - if yyv4588 == nil { - yyrl4588, _ := z.DecInferLen(yyl4588, yybh4588.MaxInitLen, 72) - yyv4588 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4588) - *v = yyv4588 + yyv4593 := *v + yyl4593 := r.ReadMapStart() + yybh4593 := z.DecBasicHandle() + if yyv4593 == nil { + yyrl4593, _ := z.DecInferLen(yyl4593, yybh4593.MaxInitLen, 72) + yyv4593 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4593) + *v = yyv4593 } - var yymk4588 ResourceName - var yymv4588 pkg3_resource.Quantity - var yymg4588 bool - if yybh4588.MapValueReset { - yymg4588 = true + var yymk4593 ResourceName + var yymv4593 pkg3_resource.Quantity + var yymg4593 bool + if yybh4593.MapValueReset { + yymg4593 = true } - if yyl4588 > 0 { - for yyj4588 := 0; yyj4588 < yyl4588; yyj4588++ { + if yyl4593 > 0 { + for yyj4593 := 0; yyj4593 < yyl4593; yyj4593++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4588 = "" + yymk4593 = "" } else { - yymk4588 = ResourceName(r.DecodeString()) + yymk4593 = ResourceName(r.DecodeString()) } - if yymg4588 { - yymv4588 = yyv4588[yymk4588] + if yymg4593 { + yymv4593 = yyv4593[yymk4593] } else { - yymv4588 = pkg3_resource.Quantity{} + yymv4593 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4588 = pkg3_resource.Quantity{} + yymv4593 = pkg3_resource.Quantity{} } else { - yyv4590 := &yymv4588 - yym4591 := z.DecBinary() - _ = yym4591 + yyv4595 := &yymv4593 + yym4596 := z.DecBinary() + _ = yym4596 if false { - } else if z.HasExtensions() && z.DecExt(yyv4590) { - } else if !yym4591 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4590) + } else if z.HasExtensions() && z.DecExt(yyv4595) { + } else if !yym4596 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4595) } else { - z.DecFallback(yyv4590, false) + z.DecFallback(yyv4595, false) } } - if yyv4588 != nil { - yyv4588[yymk4588] = yymv4588 + if yyv4593 != nil { + yyv4593[yymk4593] = yymv4593 } } - } else if yyl4588 < 0 { - for yyj4588 := 0; !r.CheckBreak(); yyj4588++ { + } else if yyl4593 < 0 { + for yyj4593 := 0; !r.CheckBreak(); yyj4593++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4588 = "" + yymk4593 = "" } else { - yymk4588 = ResourceName(r.DecodeString()) + yymk4593 = ResourceName(r.DecodeString()) } - if yymg4588 { - yymv4588 = yyv4588[yymk4588] + if yymg4593 { + yymv4593 = yyv4593[yymk4593] } else { - yymv4588 = pkg3_resource.Quantity{} + yymv4593 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4588 = pkg3_resource.Quantity{} + yymv4593 = pkg3_resource.Quantity{} } else { - yyv4593 := &yymv4588 - yym4594 := z.DecBinary() - _ = yym4594 + yyv4598 := &yymv4593 + yym4599 := z.DecBinary() + _ = yym4599 if false { - } else if z.HasExtensions() && z.DecExt(yyv4593) { - } else if !yym4594 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4593) + } else if z.HasExtensions() && z.DecExt(yyv4598) { + } else if !yym4599 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4598) } else { - z.DecFallback(yyv4593, false) + z.DecFallback(yyv4598, false) } } - if yyv4588 != nil { - yyv4588[yymk4588] = yymv4588 + if yyv4593 != nil { + yyv4593[yymk4593] = yymv4593 } } } // else len==0: TODO: Should we clear map entries? @@ -58756,10 +58797,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4595 := range v { + for _, yyv4600 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4596 := &yyv4595 - yy4596.CodecEncodeSelf(e) + yy4601 := &yyv4600 + yy4601.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58769,127 +58810,12 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4597 := *v - yyh4597, yyl4597 := z.DecSliceHelperStart() - var yyc4597 bool - if yyl4597 == 0 { - if yyv4597 == nil { - yyv4597 = []Node{} - yyc4597 = true - } else if len(yyv4597) != 0 { - yyv4597 = yyv4597[:0] - yyc4597 = true - } - } else if yyl4597 > 0 { - var yyrr4597, yyrl4597 int - var yyrt4597 bool - if yyl4597 > cap(yyv4597) { - - yyrg4597 := len(yyv4597) > 0 - yyv24597 := yyv4597 - yyrl4597, yyrt4597 = z.DecInferLen(yyl4597, z.DecBasicHandle().MaxInitLen, 616) - if yyrt4597 { - if yyrl4597 <= cap(yyv4597) { - yyv4597 = yyv4597[:yyrl4597] - } else { - yyv4597 = make([]Node, yyrl4597) - } - } else { - yyv4597 = make([]Node, yyrl4597) - } - yyc4597 = true - yyrr4597 = len(yyv4597) - if yyrg4597 { - copy(yyv4597, yyv24597) - } - } else if yyl4597 != len(yyv4597) { - yyv4597 = yyv4597[:yyl4597] - yyc4597 = true - } - yyj4597 := 0 - for ; yyj4597 < yyrr4597; yyj4597++ { - yyh4597.ElemContainerState(yyj4597) - if r.TryDecodeAsNil() { - yyv4597[yyj4597] = Node{} - } else { - yyv4598 := &yyv4597[yyj4597] - yyv4598.CodecDecodeSelf(d) - } - - } - if yyrt4597 { - for ; yyj4597 < yyl4597; yyj4597++ { - yyv4597 = append(yyv4597, Node{}) - yyh4597.ElemContainerState(yyj4597) - if r.TryDecodeAsNil() { - yyv4597[yyj4597] = Node{} - } else { - yyv4599 := &yyv4597[yyj4597] - yyv4599.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4597 := 0 - for ; !r.CheckBreak(); yyj4597++ { - - if yyj4597 >= len(yyv4597) { - yyv4597 = append(yyv4597, Node{}) // var yyz4597 Node - yyc4597 = true - } - yyh4597.ElemContainerState(yyj4597) - if yyj4597 < len(yyv4597) { - if r.TryDecodeAsNil() { - yyv4597[yyj4597] = Node{} - } else { - yyv4600 := &yyv4597[yyj4597] - yyv4600.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4597 < len(yyv4597) { - yyv4597 = yyv4597[:yyj4597] - yyc4597 = true - } else if yyj4597 == 0 && yyv4597 == nil { - yyv4597 = []Node{} - yyc4597 = true - } - } - yyh4597.End() - if yyc4597 { - *v = yyv4597 - } -} - -func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4601 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4601.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4602 := *v yyh4602, yyl4602 := z.DecSliceHelperStart() var yyc4602 bool if yyl4602 == 0 { if yyv4602 == nil { - yyv4602 = []FinalizerName{} + yyv4602 = []Node{} yyc4602 = true } else if len(yyv4602) != 0 { yyv4602 = yyv4602[:0] @@ -58900,18 +58826,23 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. var yyrt4602 bool if yyl4602 > cap(yyv4602) { - yyrl4602, yyrt4602 = z.DecInferLen(yyl4602, z.DecBasicHandle().MaxInitLen, 16) + yyrg4602 := len(yyv4602) > 0 + yyv24602 := yyv4602 + yyrl4602, yyrt4602 = z.DecInferLen(yyl4602, z.DecBasicHandle().MaxInitLen, 616) if yyrt4602 { if yyrl4602 <= cap(yyv4602) { yyv4602 = yyv4602[:yyrl4602] } else { - yyv4602 = make([]FinalizerName, yyrl4602) + yyv4602 = make([]Node, yyrl4602) } } else { - yyv4602 = make([]FinalizerName, yyrl4602) + yyv4602 = make([]Node, yyrl4602) } yyc4602 = true yyrr4602 = len(yyv4602) + if yyrg4602 { + copy(yyv4602, yyv24602) + } } else if yyl4602 != len(yyv4602) { yyv4602 = yyv4602[:yyl4602] yyc4602 = true @@ -58920,20 +58851,22 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; yyj4602 < yyrr4602; yyj4602++ { yyh4602.ElemContainerState(yyj4602) if r.TryDecodeAsNil() { - yyv4602[yyj4602] = "" + yyv4602[yyj4602] = Node{} } else { - yyv4602[yyj4602] = FinalizerName(r.DecodeString()) + yyv4603 := &yyv4602[yyj4602] + yyv4603.CodecDecodeSelf(d) } } if yyrt4602 { for ; yyj4602 < yyl4602; yyj4602++ { - yyv4602 = append(yyv4602, "") + yyv4602 = append(yyv4602, Node{}) yyh4602.ElemContainerState(yyj4602) if r.TryDecodeAsNil() { - yyv4602[yyj4602] = "" + yyv4602[yyj4602] = Node{} } else { - yyv4602[yyj4602] = FinalizerName(r.DecodeString()) + yyv4604 := &yyv4602[yyj4602] + yyv4604.CodecDecodeSelf(d) } } @@ -58944,15 +58877,16 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; !r.CheckBreak(); yyj4602++ { if yyj4602 >= len(yyv4602) { - yyv4602 = append(yyv4602, "") // var yyz4602 FinalizerName + yyv4602 = append(yyv4602, Node{}) // var yyz4602 Node yyc4602 = true } yyh4602.ElemContainerState(yyj4602) if yyj4602 < len(yyv4602) { if r.TryDecodeAsNil() { - yyv4602[yyj4602] = "" + yyv4602[yyj4602] = Node{} } else { - yyv4602[yyj4602] = FinalizerName(r.DecodeString()) + yyv4605 := &yyv4602[yyj4602] + yyv4605.CodecDecodeSelf(d) } } else { @@ -58964,7 +58898,7 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. yyv4602 = yyv4602[:yyj4602] yyc4602 = true } else if yyj4602 == 0 && yyv4602 == nil { - yyv4602 = []FinalizerName{} + yyv4602 = []Node{} yyc4602 = true } } @@ -58974,101 +58908,92 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } -func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4606 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4607 := &yyv4606 - yy4607.CodecEncodeSelf(e) + yyv4606.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4608 := *v - yyh4608, yyl4608 := z.DecSliceHelperStart() - var yyc4608 bool - if yyl4608 == 0 { - if yyv4608 == nil { - yyv4608 = []Namespace{} - yyc4608 = true - } else if len(yyv4608) != 0 { - yyv4608 = yyv4608[:0] - yyc4608 = true + yyv4607 := *v + yyh4607, yyl4607 := z.DecSliceHelperStart() + var yyc4607 bool + if yyl4607 == 0 { + if yyv4607 == nil { + yyv4607 = []FinalizerName{} + yyc4607 = true + } else if len(yyv4607) != 0 { + yyv4607 = yyv4607[:0] + yyc4607 = true } - } else if yyl4608 > 0 { - var yyrr4608, yyrl4608 int - var yyrt4608 bool - if yyl4608 > cap(yyv4608) { + } else if yyl4607 > 0 { + var yyrr4607, yyrl4607 int + var yyrt4607 bool + if yyl4607 > cap(yyv4607) { - yyrg4608 := len(yyv4608) > 0 - yyv24608 := yyv4608 - yyrl4608, yyrt4608 = z.DecInferLen(yyl4608, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4608 { - if yyrl4608 <= cap(yyv4608) { - yyv4608 = yyv4608[:yyrl4608] + yyrl4607, yyrt4607 = z.DecInferLen(yyl4607, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4607 { + if yyrl4607 <= cap(yyv4607) { + yyv4607 = yyv4607[:yyrl4607] } else { - yyv4608 = make([]Namespace, yyrl4608) + yyv4607 = make([]FinalizerName, yyrl4607) } } else { - yyv4608 = make([]Namespace, yyrl4608) - } - yyc4608 = true - yyrr4608 = len(yyv4608) - if yyrg4608 { - copy(yyv4608, yyv24608) + yyv4607 = make([]FinalizerName, yyrl4607) } - } else if yyl4608 != len(yyv4608) { - yyv4608 = yyv4608[:yyl4608] - yyc4608 = true + yyc4607 = true + yyrr4607 = len(yyv4607) + } else if yyl4607 != len(yyv4607) { + yyv4607 = yyv4607[:yyl4607] + yyc4607 = true } - yyj4608 := 0 - for ; yyj4608 < yyrr4608; yyj4608++ { - yyh4608.ElemContainerState(yyj4608) + yyj4607 := 0 + for ; yyj4607 < yyrr4607; yyj4607++ { + yyh4607.ElemContainerState(yyj4607) if r.TryDecodeAsNil() { - yyv4608[yyj4608] = Namespace{} + yyv4607[yyj4607] = "" } else { - yyv4609 := &yyv4608[yyj4608] - yyv4609.CodecDecodeSelf(d) + yyv4607[yyj4607] = FinalizerName(r.DecodeString()) } } - if yyrt4608 { - for ; yyj4608 < yyl4608; yyj4608++ { - yyv4608 = append(yyv4608, Namespace{}) - yyh4608.ElemContainerState(yyj4608) + if yyrt4607 { + for ; yyj4607 < yyl4607; yyj4607++ { + yyv4607 = append(yyv4607, "") + yyh4607.ElemContainerState(yyj4607) if r.TryDecodeAsNil() { - yyv4608[yyj4608] = Namespace{} + yyv4607[yyj4607] = "" } else { - yyv4610 := &yyv4608[yyj4608] - yyv4610.CodecDecodeSelf(d) + yyv4607[yyj4607] = FinalizerName(r.DecodeString()) } } } } else { - yyj4608 := 0 - for ; !r.CheckBreak(); yyj4608++ { + yyj4607 := 0 + for ; !r.CheckBreak(); yyj4607++ { - if yyj4608 >= len(yyv4608) { - yyv4608 = append(yyv4608, Namespace{}) // var yyz4608 Namespace - yyc4608 = true + if yyj4607 >= len(yyv4607) { + yyv4607 = append(yyv4607, "") // var yyz4607 FinalizerName + yyc4607 = true } - yyh4608.ElemContainerState(yyj4608) - if yyj4608 < len(yyv4608) { + yyh4607.ElemContainerState(yyj4607) + if yyj4607 < len(yyv4607) { if r.TryDecodeAsNil() { - yyv4608[yyj4608] = Namespace{} + yyv4607[yyj4607] = "" } else { - yyv4611 := &yyv4608[yyj4608] - yyv4611.CodecDecodeSelf(d) + yyv4607[yyj4607] = FinalizerName(r.DecodeString()) } } else { @@ -59076,115 +59001,115 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4608 < len(yyv4608) { - yyv4608 = yyv4608[:yyj4608] - yyc4608 = true - } else if yyj4608 == 0 && yyv4608 == nil { - yyv4608 = []Namespace{} - yyc4608 = true + if yyj4607 < len(yyv4607) { + yyv4607 = yyv4607[:yyj4607] + yyc4607 = true + } else if yyj4607 == 0 && yyv4607 == nil { + yyv4607 = []FinalizerName{} + yyc4607 = true } } - yyh4608.End() - if yyc4608 { - *v = yyv4608 + yyh4607.End() + if yyc4607 { + *v = yyv4607 } } -func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4612 := range v { + for _, yyv4611 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4613 := &yyv4612 - yy4613.CodecEncodeSelf(e) + yy4612 := &yyv4611 + yy4612.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4614 := *v - yyh4614, yyl4614 := z.DecSliceHelperStart() - var yyc4614 bool - if yyl4614 == 0 { - if yyv4614 == nil { - yyv4614 = []Event{} - yyc4614 = true - } else if len(yyv4614) != 0 { - yyv4614 = yyv4614[:0] - yyc4614 = true + yyv4613 := *v + yyh4613, yyl4613 := z.DecSliceHelperStart() + var yyc4613 bool + if yyl4613 == 0 { + if yyv4613 == nil { + yyv4613 = []Namespace{} + yyc4613 = true + } else if len(yyv4613) != 0 { + yyv4613 = yyv4613[:0] + yyc4613 = true } - } else if yyl4614 > 0 { - var yyrr4614, yyrl4614 int - var yyrt4614 bool - if yyl4614 > cap(yyv4614) { + } else if yyl4613 > 0 { + var yyrr4613, yyrl4613 int + var yyrt4613 bool + if yyl4613 > cap(yyv4613) { - yyrg4614 := len(yyv4614) > 0 - yyv24614 := yyv4614 - yyrl4614, yyrt4614 = z.DecInferLen(yyl4614, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4614 { - if yyrl4614 <= cap(yyv4614) { - yyv4614 = yyv4614[:yyrl4614] + yyrg4613 := len(yyv4613) > 0 + yyv24613 := yyv4613 + yyrl4613, yyrt4613 = z.DecInferLen(yyl4613, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4613 { + if yyrl4613 <= cap(yyv4613) { + yyv4613 = yyv4613[:yyrl4613] } else { - yyv4614 = make([]Event, yyrl4614) + yyv4613 = make([]Namespace, yyrl4613) } } else { - yyv4614 = make([]Event, yyrl4614) + yyv4613 = make([]Namespace, yyrl4613) } - yyc4614 = true - yyrr4614 = len(yyv4614) - if yyrg4614 { - copy(yyv4614, yyv24614) + yyc4613 = true + yyrr4613 = len(yyv4613) + if yyrg4613 { + copy(yyv4613, yyv24613) } - } else if yyl4614 != len(yyv4614) { - yyv4614 = yyv4614[:yyl4614] - yyc4614 = true + } else if yyl4613 != len(yyv4613) { + yyv4613 = yyv4613[:yyl4613] + yyc4613 = true } - yyj4614 := 0 - for ; yyj4614 < yyrr4614; yyj4614++ { - yyh4614.ElemContainerState(yyj4614) + yyj4613 := 0 + for ; yyj4613 < yyrr4613; yyj4613++ { + yyh4613.ElemContainerState(yyj4613) if r.TryDecodeAsNil() { - yyv4614[yyj4614] = Event{} + yyv4613[yyj4613] = Namespace{} } else { - yyv4615 := &yyv4614[yyj4614] - yyv4615.CodecDecodeSelf(d) + yyv4614 := &yyv4613[yyj4613] + yyv4614.CodecDecodeSelf(d) } } - if yyrt4614 { - for ; yyj4614 < yyl4614; yyj4614++ { - yyv4614 = append(yyv4614, Event{}) - yyh4614.ElemContainerState(yyj4614) + if yyrt4613 { + for ; yyj4613 < yyl4613; yyj4613++ { + yyv4613 = append(yyv4613, Namespace{}) + yyh4613.ElemContainerState(yyj4613) if r.TryDecodeAsNil() { - yyv4614[yyj4614] = Event{} + yyv4613[yyj4613] = Namespace{} } else { - yyv4616 := &yyv4614[yyj4614] - yyv4616.CodecDecodeSelf(d) + yyv4615 := &yyv4613[yyj4613] + yyv4615.CodecDecodeSelf(d) } } } } else { - yyj4614 := 0 - for ; !r.CheckBreak(); yyj4614++ { + yyj4613 := 0 + for ; !r.CheckBreak(); yyj4613++ { - if yyj4614 >= len(yyv4614) { - yyv4614 = append(yyv4614, Event{}) // var yyz4614 Event - yyc4614 = true + if yyj4613 >= len(yyv4613) { + yyv4613 = append(yyv4613, Namespace{}) // var yyz4613 Namespace + yyc4613 = true } - yyh4614.ElemContainerState(yyj4614) - if yyj4614 < len(yyv4614) { + yyh4613.ElemContainerState(yyj4613) + if yyj4613 < len(yyv4613) { if r.TryDecodeAsNil() { - yyv4614[yyj4614] = Event{} + yyv4613[yyj4613] = Namespace{} } else { - yyv4617 := &yyv4614[yyj4614] - yyv4617.CodecDecodeSelf(d) + yyv4616 := &yyv4613[yyj4613] + yyv4616.CodecDecodeSelf(d) } } else { @@ -59192,142 +59117,115 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4614 < len(yyv4614) { - yyv4614 = yyv4614[:yyj4614] - yyc4614 = true - } else if yyj4614 == 0 && yyv4614 == nil { - yyv4614 = []Event{} - yyc4614 = true + if yyj4613 < len(yyv4613) { + yyv4613 = yyv4613[:yyj4613] + yyc4613 = true + } else if yyj4613 == 0 && yyv4613 == nil { + yyv4613 = []Namespace{} + yyc4613 = true } } - yyh4614.End() - if yyc4614 { - *v = yyv4614 + yyh4613.End() + if yyc4613 { + *v = yyv4613 } } -func (x codecSelfer1234) encSliceruntime_Object(v []pkg7_runtime.Object, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4618 := range v { + for _, yyv4617 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv4618 == nil { - r.EncodeNil() - } else { - yym4619 := z.EncBinary() - _ = yym4619 - if false { - } else if z.HasExtensions() && z.EncExt(yyv4618) { - } else { - z.EncFallback(yyv4618) - } - } + yy4618 := &yyv4617 + yy4618.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4620 := *v - yyh4620, yyl4620 := z.DecSliceHelperStart() - var yyc4620 bool - if yyl4620 == 0 { - if yyv4620 == nil { - yyv4620 = []pkg7_runtime.Object{} - yyc4620 = true - } else if len(yyv4620) != 0 { - yyv4620 = yyv4620[:0] - yyc4620 = true + yyv4619 := *v + yyh4619, yyl4619 := z.DecSliceHelperStart() + var yyc4619 bool + if yyl4619 == 0 { + if yyv4619 == nil { + yyv4619 = []Event{} + yyc4619 = true + } else if len(yyv4619) != 0 { + yyv4619 = yyv4619[:0] + yyc4619 = true } - } else if yyl4620 > 0 { - var yyrr4620, yyrl4620 int - var yyrt4620 bool - if yyl4620 > cap(yyv4620) { + } else if yyl4619 > 0 { + var yyrr4619, yyrl4619 int + var yyrt4619 bool + if yyl4619 > cap(yyv4619) { - yyrg4620 := len(yyv4620) > 0 - yyv24620 := yyv4620 - yyrl4620, yyrt4620 = z.DecInferLen(yyl4620, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4620 { - if yyrl4620 <= cap(yyv4620) { - yyv4620 = yyv4620[:yyrl4620] + yyrg4619 := len(yyv4619) > 0 + yyv24619 := yyv4619 + yyrl4619, yyrt4619 = z.DecInferLen(yyl4619, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4619 { + if yyrl4619 <= cap(yyv4619) { + yyv4619 = yyv4619[:yyrl4619] } else { - yyv4620 = make([]pkg7_runtime.Object, yyrl4620) + yyv4619 = make([]Event, yyrl4619) } } else { - yyv4620 = make([]pkg7_runtime.Object, yyrl4620) + yyv4619 = make([]Event, yyrl4619) } - yyc4620 = true - yyrr4620 = len(yyv4620) - if yyrg4620 { - copy(yyv4620, yyv24620) + yyc4619 = true + yyrr4619 = len(yyv4619) + if yyrg4619 { + copy(yyv4619, yyv24619) } - } else if yyl4620 != len(yyv4620) { - yyv4620 = yyv4620[:yyl4620] - yyc4620 = true + } else if yyl4619 != len(yyv4619) { + yyv4619 = yyv4619[:yyl4619] + yyc4619 = true } - yyj4620 := 0 - for ; yyj4620 < yyrr4620; yyj4620++ { - yyh4620.ElemContainerState(yyj4620) + yyj4619 := 0 + for ; yyj4619 < yyrr4619; yyj4619++ { + yyh4619.ElemContainerState(yyj4619) if r.TryDecodeAsNil() { - yyv4620[yyj4620] = nil + yyv4619[yyj4619] = Event{} } else { - yyv4621 := &yyv4620[yyj4620] - yym4622 := z.DecBinary() - _ = yym4622 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4621) { - } else { - z.DecFallback(yyv4621, true) - } + yyv4620 := &yyv4619[yyj4619] + yyv4620.CodecDecodeSelf(d) } } - if yyrt4620 { - for ; yyj4620 < yyl4620; yyj4620++ { - yyv4620 = append(yyv4620, nil) - yyh4620.ElemContainerState(yyj4620) + if yyrt4619 { + for ; yyj4619 < yyl4619; yyj4619++ { + yyv4619 = append(yyv4619, Event{}) + yyh4619.ElemContainerState(yyj4619) if r.TryDecodeAsNil() { - yyv4620[yyj4620] = nil + yyv4619[yyj4619] = Event{} } else { - yyv4623 := &yyv4620[yyj4620] - yym4624 := z.DecBinary() - _ = yym4624 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4623) { - } else { - z.DecFallback(yyv4623, true) - } + yyv4621 := &yyv4619[yyj4619] + yyv4621.CodecDecodeSelf(d) } } } } else { - yyj4620 := 0 - for ; !r.CheckBreak(); yyj4620++ { + yyj4619 := 0 + for ; !r.CheckBreak(); yyj4619++ { - if yyj4620 >= len(yyv4620) { - yyv4620 = append(yyv4620, nil) // var yyz4620 pkg7_runtime.Object - yyc4620 = true + if yyj4619 >= len(yyv4619) { + yyv4619 = append(yyv4619, Event{}) // var yyz4619 Event + yyc4619 = true } - yyh4620.ElemContainerState(yyj4620) - if yyj4620 < len(yyv4620) { + yyh4619.ElemContainerState(yyj4619) + if yyj4619 < len(yyv4619) { if r.TryDecodeAsNil() { - yyv4620[yyj4620] = nil + yyv4619[yyj4619] = Event{} } else { - yyv4625 := &yyv4620[yyj4620] - yym4626 := z.DecBinary() - _ = yym4626 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4625) { - } else { - z.DecFallback(yyv4625, true) - } + yyv4622 := &yyv4619[yyj4619] + yyv4622.CodecDecodeSelf(d) } } else { @@ -59335,115 +59233,142 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } - if yyj4620 < len(yyv4620) { - yyv4620 = yyv4620[:yyj4620] - yyc4620 = true - } else if yyj4620 == 0 && yyv4620 == nil { - yyv4620 = []pkg7_runtime.Object{} - yyc4620 = true + if yyj4619 < len(yyv4619) { + yyv4619 = yyv4619[:yyj4619] + yyc4619 = true + } else if yyj4619 == 0 && yyv4619 == nil { + yyv4619 = []Event{} + yyc4619 = true } } - yyh4620.End() - if yyc4620 { - *v = yyv4620 + yyh4619.End() + if yyc4619 { + *v = yyv4619 } } -func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceruntime_Object(v []pkg7_runtime.Object, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4627 := range v { + for _, yyv4623 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4628 := &yyv4627 - yy4628.CodecEncodeSelf(e) + if yyv4623 == nil { + r.EncodeNil() + } else { + yym4624 := z.EncBinary() + _ = yym4624 + if false { + } else if z.HasExtensions() && z.EncExt(yyv4623) { + } else { + z.EncFallback(yyv4623) + } + } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4629 := *v - yyh4629, yyl4629 := z.DecSliceHelperStart() - var yyc4629 bool - if yyl4629 == 0 { - if yyv4629 == nil { - yyv4629 = []LimitRangeItem{} - yyc4629 = true - } else if len(yyv4629) != 0 { - yyv4629 = yyv4629[:0] - yyc4629 = true + yyv4625 := *v + yyh4625, yyl4625 := z.DecSliceHelperStart() + var yyc4625 bool + if yyl4625 == 0 { + if yyv4625 == nil { + yyv4625 = []pkg7_runtime.Object{} + yyc4625 = true + } else if len(yyv4625) != 0 { + yyv4625 = yyv4625[:0] + yyc4625 = true } - } else if yyl4629 > 0 { - var yyrr4629, yyrl4629 int - var yyrt4629 bool - if yyl4629 > cap(yyv4629) { + } else if yyl4625 > 0 { + var yyrr4625, yyrl4625 int + var yyrt4625 bool + if yyl4625 > cap(yyv4625) { - yyrg4629 := len(yyv4629) > 0 - yyv24629 := yyv4629 - yyrl4629, yyrt4629 = z.DecInferLen(yyl4629, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4629 { - if yyrl4629 <= cap(yyv4629) { - yyv4629 = yyv4629[:yyrl4629] + yyrg4625 := len(yyv4625) > 0 + yyv24625 := yyv4625 + yyrl4625, yyrt4625 = z.DecInferLen(yyl4625, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4625 { + if yyrl4625 <= cap(yyv4625) { + yyv4625 = yyv4625[:yyrl4625] } else { - yyv4629 = make([]LimitRangeItem, yyrl4629) + yyv4625 = make([]pkg7_runtime.Object, yyrl4625) } } else { - yyv4629 = make([]LimitRangeItem, yyrl4629) + yyv4625 = make([]pkg7_runtime.Object, yyrl4625) } - yyc4629 = true - yyrr4629 = len(yyv4629) - if yyrg4629 { - copy(yyv4629, yyv24629) + yyc4625 = true + yyrr4625 = len(yyv4625) + if yyrg4625 { + copy(yyv4625, yyv24625) } - } else if yyl4629 != len(yyv4629) { - yyv4629 = yyv4629[:yyl4629] - yyc4629 = true + } else if yyl4625 != len(yyv4625) { + yyv4625 = yyv4625[:yyl4625] + yyc4625 = true } - yyj4629 := 0 - for ; yyj4629 < yyrr4629; yyj4629++ { - yyh4629.ElemContainerState(yyj4629) + yyj4625 := 0 + for ; yyj4625 < yyrr4625; yyj4625++ { + yyh4625.ElemContainerState(yyj4625) if r.TryDecodeAsNil() { - yyv4629[yyj4629] = LimitRangeItem{} + yyv4625[yyj4625] = nil } else { - yyv4630 := &yyv4629[yyj4629] - yyv4630.CodecDecodeSelf(d) + yyv4626 := &yyv4625[yyj4625] + yym4627 := z.DecBinary() + _ = yym4627 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4626) { + } else { + z.DecFallback(yyv4626, true) + } } } - if yyrt4629 { - for ; yyj4629 < yyl4629; yyj4629++ { - yyv4629 = append(yyv4629, LimitRangeItem{}) - yyh4629.ElemContainerState(yyj4629) + if yyrt4625 { + for ; yyj4625 < yyl4625; yyj4625++ { + yyv4625 = append(yyv4625, nil) + yyh4625.ElemContainerState(yyj4625) if r.TryDecodeAsNil() { - yyv4629[yyj4629] = LimitRangeItem{} + yyv4625[yyj4625] = nil } else { - yyv4631 := &yyv4629[yyj4629] - yyv4631.CodecDecodeSelf(d) + yyv4628 := &yyv4625[yyj4625] + yym4629 := z.DecBinary() + _ = yym4629 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4628) { + } else { + z.DecFallback(yyv4628, true) + } } } } } else { - yyj4629 := 0 - for ; !r.CheckBreak(); yyj4629++ { + yyj4625 := 0 + for ; !r.CheckBreak(); yyj4625++ { - if yyj4629 >= len(yyv4629) { - yyv4629 = append(yyv4629, LimitRangeItem{}) // var yyz4629 LimitRangeItem - yyc4629 = true + if yyj4625 >= len(yyv4625) { + yyv4625 = append(yyv4625, nil) // var yyz4625 pkg7_runtime.Object + yyc4625 = true } - yyh4629.ElemContainerState(yyj4629) - if yyj4629 < len(yyv4629) { + yyh4625.ElemContainerState(yyj4625) + if yyj4625 < len(yyv4625) { if r.TryDecodeAsNil() { - yyv4629[yyj4629] = LimitRangeItem{} + yyv4625[yyj4625] = nil } else { - yyv4632 := &yyv4629[yyj4629] - yyv4632.CodecDecodeSelf(d) + yyv4630 := &yyv4625[yyj4625] + yym4631 := z.DecBinary() + _ = yym4631 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4630) { + } else { + z.DecFallback(yyv4630, true) + } } } else { @@ -59451,115 +59376,115 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4629 < len(yyv4629) { - yyv4629 = yyv4629[:yyj4629] - yyc4629 = true - } else if yyj4629 == 0 && yyv4629 == nil { - yyv4629 = []LimitRangeItem{} - yyc4629 = true + if yyj4625 < len(yyv4625) { + yyv4625 = yyv4625[:yyj4625] + yyc4625 = true + } else if yyj4625 == 0 && yyv4625 == nil { + yyv4625 = []pkg7_runtime.Object{} + yyc4625 = true } } - yyh4629.End() - if yyc4629 { - *v = yyv4629 + yyh4625.End() + if yyc4625 { + *v = yyv4625 } } -func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4633 := range v { + for _, yyv4632 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4634 := &yyv4633 - yy4634.CodecEncodeSelf(e) + yy4633 := &yyv4632 + yy4633.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4635 := *v - yyh4635, yyl4635 := z.DecSliceHelperStart() - var yyc4635 bool - if yyl4635 == 0 { - if yyv4635 == nil { - yyv4635 = []LimitRange{} - yyc4635 = true - } else if len(yyv4635) != 0 { - yyv4635 = yyv4635[:0] - yyc4635 = true + yyv4634 := *v + yyh4634, yyl4634 := z.DecSliceHelperStart() + var yyc4634 bool + if yyl4634 == 0 { + if yyv4634 == nil { + yyv4634 = []LimitRangeItem{} + yyc4634 = true + } else if len(yyv4634) != 0 { + yyv4634 = yyv4634[:0] + yyc4634 = true } - } else if yyl4635 > 0 { - var yyrr4635, yyrl4635 int - var yyrt4635 bool - if yyl4635 > cap(yyv4635) { + } else if yyl4634 > 0 { + var yyrr4634, yyrl4634 int + var yyrt4634 bool + if yyl4634 > cap(yyv4634) { - yyrg4635 := len(yyv4635) > 0 - yyv24635 := yyv4635 - yyrl4635, yyrt4635 = z.DecInferLen(yyl4635, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4635 { - if yyrl4635 <= cap(yyv4635) { - yyv4635 = yyv4635[:yyrl4635] + yyrg4634 := len(yyv4634) > 0 + yyv24634 := yyv4634 + yyrl4634, yyrt4634 = z.DecInferLen(yyl4634, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4634 { + if yyrl4634 <= cap(yyv4634) { + yyv4634 = yyv4634[:yyrl4634] } else { - yyv4635 = make([]LimitRange, yyrl4635) + yyv4634 = make([]LimitRangeItem, yyrl4634) } } else { - yyv4635 = make([]LimitRange, yyrl4635) + yyv4634 = make([]LimitRangeItem, yyrl4634) } - yyc4635 = true - yyrr4635 = len(yyv4635) - if yyrg4635 { - copy(yyv4635, yyv24635) + yyc4634 = true + yyrr4634 = len(yyv4634) + if yyrg4634 { + copy(yyv4634, yyv24634) } - } else if yyl4635 != len(yyv4635) { - yyv4635 = yyv4635[:yyl4635] - yyc4635 = true + } else if yyl4634 != len(yyv4634) { + yyv4634 = yyv4634[:yyl4634] + yyc4634 = true } - yyj4635 := 0 - for ; yyj4635 < yyrr4635; yyj4635++ { - yyh4635.ElemContainerState(yyj4635) + yyj4634 := 0 + for ; yyj4634 < yyrr4634; yyj4634++ { + yyh4634.ElemContainerState(yyj4634) if r.TryDecodeAsNil() { - yyv4635[yyj4635] = LimitRange{} + yyv4634[yyj4634] = LimitRangeItem{} } else { - yyv4636 := &yyv4635[yyj4635] - yyv4636.CodecDecodeSelf(d) + yyv4635 := &yyv4634[yyj4634] + yyv4635.CodecDecodeSelf(d) } } - if yyrt4635 { - for ; yyj4635 < yyl4635; yyj4635++ { - yyv4635 = append(yyv4635, LimitRange{}) - yyh4635.ElemContainerState(yyj4635) + if yyrt4634 { + for ; yyj4634 < yyl4634; yyj4634++ { + yyv4634 = append(yyv4634, LimitRangeItem{}) + yyh4634.ElemContainerState(yyj4634) if r.TryDecodeAsNil() { - yyv4635[yyj4635] = LimitRange{} + yyv4634[yyj4634] = LimitRangeItem{} } else { - yyv4637 := &yyv4635[yyj4635] - yyv4637.CodecDecodeSelf(d) + yyv4636 := &yyv4634[yyj4634] + yyv4636.CodecDecodeSelf(d) } } } } else { - yyj4635 := 0 - for ; !r.CheckBreak(); yyj4635++ { + yyj4634 := 0 + for ; !r.CheckBreak(); yyj4634++ { - if yyj4635 >= len(yyv4635) { - yyv4635 = append(yyv4635, LimitRange{}) // var yyz4635 LimitRange - yyc4635 = true + if yyj4634 >= len(yyv4634) { + yyv4634 = append(yyv4634, LimitRangeItem{}) // var yyz4634 LimitRangeItem + yyc4634 = true } - yyh4635.ElemContainerState(yyj4635) - if yyj4635 < len(yyv4635) { + yyh4634.ElemContainerState(yyj4634) + if yyj4634 < len(yyv4634) { if r.TryDecodeAsNil() { - yyv4635[yyj4635] = LimitRange{} + yyv4634[yyj4634] = LimitRangeItem{} } else { - yyv4638 := &yyv4635[yyj4635] - yyv4638.CodecDecodeSelf(d) + yyv4637 := &yyv4634[yyj4634] + yyv4637.CodecDecodeSelf(d) } } else { @@ -59567,33 +59492,34 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4635 < len(yyv4635) { - yyv4635 = yyv4635[:yyj4635] - yyc4635 = true - } else if yyj4635 == 0 && yyv4635 == nil { - yyv4635 = []LimitRange{} - yyc4635 = true + if yyj4634 < len(yyv4634) { + yyv4634 = yyv4634[:yyj4634] + yyc4634 = true + } else if yyj4634 == 0 && yyv4634 == nil { + yyv4634 = []LimitRangeItem{} + yyc4634 = true } } - yyh4635.End() - if yyc4635 { - *v = yyv4635 + yyh4634.End() + if yyc4634 { + *v = yyv4634 } } -func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4639 := range v { + for _, yyv4638 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4639.CodecEncodeSelf(e) + yy4639 := &yyv4638 + yy4639.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -59603,7 +59529,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyc4640 bool if yyl4640 == 0 { if yyv4640 == nil { - yyv4640 = []ResourceQuotaScope{} + yyv4640 = []LimitRange{} yyc4640 = true } else if len(yyv4640) != 0 { yyv4640 = yyv4640[:0] @@ -59614,18 +59540,23 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyrt4640 bool if yyl4640 > cap(yyv4640) { - yyrl4640, yyrt4640 = z.DecInferLen(yyl4640, z.DecBasicHandle().MaxInitLen, 16) + yyrg4640 := len(yyv4640) > 0 + yyv24640 := yyv4640 + yyrl4640, yyrt4640 = z.DecInferLen(yyl4640, z.DecBasicHandle().MaxInitLen, 264) if yyrt4640 { if yyrl4640 <= cap(yyv4640) { yyv4640 = yyv4640[:yyrl4640] } else { - yyv4640 = make([]ResourceQuotaScope, yyrl4640) + yyv4640 = make([]LimitRange, yyrl4640) } } else { - yyv4640 = make([]ResourceQuotaScope, yyrl4640) + yyv4640 = make([]LimitRange, yyrl4640) } yyc4640 = true yyrr4640 = len(yyv4640) + if yyrg4640 { + copy(yyv4640, yyv24640) + } } else if yyl4640 != len(yyv4640) { yyv4640 = yyv4640[:yyl4640] yyc4640 = true @@ -59634,20 +59565,22 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; yyj4640 < yyrr4640; yyj4640++ { yyh4640.ElemContainerState(yyj4640) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = "" + yyv4640[yyj4640] = LimitRange{} } else { - yyv4640[yyj4640] = ResourceQuotaScope(r.DecodeString()) + yyv4641 := &yyv4640[yyj4640] + yyv4641.CodecDecodeSelf(d) } } if yyrt4640 { for ; yyj4640 < yyl4640; yyj4640++ { - yyv4640 = append(yyv4640, "") + yyv4640 = append(yyv4640, LimitRange{}) yyh4640.ElemContainerState(yyj4640) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = "" + yyv4640[yyj4640] = LimitRange{} } else { - yyv4640[yyj4640] = ResourceQuotaScope(r.DecodeString()) + yyv4642 := &yyv4640[yyj4640] + yyv4642.CodecDecodeSelf(d) } } @@ -59658,15 +59591,16 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; !r.CheckBreak(); yyj4640++ { if yyj4640 >= len(yyv4640) { - yyv4640 = append(yyv4640, "") // var yyz4640 ResourceQuotaScope + yyv4640 = append(yyv4640, LimitRange{}) // var yyz4640 LimitRange yyc4640 = true } yyh4640.ElemContainerState(yyj4640) if yyj4640 < len(yyv4640) { if r.TryDecodeAsNil() { - yyv4640[yyj4640] = "" + yyv4640[yyj4640] = LimitRange{} } else { - yyv4640[yyj4640] = ResourceQuotaScope(r.DecodeString()) + yyv4643 := &yyv4640[yyj4640] + yyv4643.CodecDecodeSelf(d) } } else { @@ -59678,7 +59612,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * yyv4640 = yyv4640[:yyj4640] yyc4640 = true } else if yyj4640 == 0 && yyv4640 == nil { - yyv4640 = []ResourceQuotaScope{} + yyv4640 = []LimitRange{} yyc4640 = true } } @@ -59688,15 +59622,122 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } -func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4644 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4645 := &yyv4644 - yy4645.CodecEncodeSelf(e) + yyv4644.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4645 := *v + yyh4645, yyl4645 := z.DecSliceHelperStart() + var yyc4645 bool + if yyl4645 == 0 { + if yyv4645 == nil { + yyv4645 = []ResourceQuotaScope{} + yyc4645 = true + } else if len(yyv4645) != 0 { + yyv4645 = yyv4645[:0] + yyc4645 = true + } + } else if yyl4645 > 0 { + var yyrr4645, yyrl4645 int + var yyrt4645 bool + if yyl4645 > cap(yyv4645) { + + yyrl4645, yyrt4645 = z.DecInferLen(yyl4645, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4645 { + if yyrl4645 <= cap(yyv4645) { + yyv4645 = yyv4645[:yyrl4645] + } else { + yyv4645 = make([]ResourceQuotaScope, yyrl4645) + } + } else { + yyv4645 = make([]ResourceQuotaScope, yyrl4645) + } + yyc4645 = true + yyrr4645 = len(yyv4645) + } else if yyl4645 != len(yyv4645) { + yyv4645 = yyv4645[:yyl4645] + yyc4645 = true + } + yyj4645 := 0 + for ; yyj4645 < yyrr4645; yyj4645++ { + yyh4645.ElemContainerState(yyj4645) + if r.TryDecodeAsNil() { + yyv4645[yyj4645] = "" + } else { + yyv4645[yyj4645] = ResourceQuotaScope(r.DecodeString()) + } + + } + if yyrt4645 { + for ; yyj4645 < yyl4645; yyj4645++ { + yyv4645 = append(yyv4645, "") + yyh4645.ElemContainerState(yyj4645) + if r.TryDecodeAsNil() { + yyv4645[yyj4645] = "" + } else { + yyv4645[yyj4645] = ResourceQuotaScope(r.DecodeString()) + } + + } + } + + } else { + yyj4645 := 0 + for ; !r.CheckBreak(); yyj4645++ { + + if yyj4645 >= len(yyv4645) { + yyv4645 = append(yyv4645, "") // var yyz4645 ResourceQuotaScope + yyc4645 = true + } + yyh4645.ElemContainerState(yyj4645) + if yyj4645 < len(yyv4645) { + if r.TryDecodeAsNil() { + yyv4645[yyj4645] = "" + } else { + yyv4645[yyj4645] = ResourceQuotaScope(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4645 < len(yyv4645) { + yyv4645 = yyv4645[:yyj4645] + yyc4645 = true + } else if yyj4645 == 0 && yyv4645 == nil { + yyv4645 = []ResourceQuotaScope{} + yyc4645 = true + } + } + yyh4645.End() + if yyc4645 { + *v = yyv4645 + } +} + +func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4649 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4650 := &yyv4649 + yy4650.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59706,83 +59747,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4646 := *v - yyh4646, yyl4646 := z.DecSliceHelperStart() - var yyc4646 bool - if yyl4646 == 0 { - if yyv4646 == nil { - yyv4646 = []ResourceQuota{} - yyc4646 = true - } else if len(yyv4646) != 0 { - yyv4646 = yyv4646[:0] - yyc4646 = true + yyv4651 := *v + yyh4651, yyl4651 := z.DecSliceHelperStart() + var yyc4651 bool + if yyl4651 == 0 { + if yyv4651 == nil { + yyv4651 = []ResourceQuota{} + yyc4651 = true + } else if len(yyv4651) != 0 { + yyv4651 = yyv4651[:0] + yyc4651 = true } - } else if yyl4646 > 0 { - var yyrr4646, yyrl4646 int - var yyrt4646 bool - if yyl4646 > cap(yyv4646) { + } else if yyl4651 > 0 { + var yyrr4651, yyrl4651 int + var yyrt4651 bool + if yyl4651 > cap(yyv4651) { - yyrg4646 := len(yyv4646) > 0 - yyv24646 := yyv4646 - yyrl4646, yyrt4646 = z.DecInferLen(yyl4646, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4646 { - if yyrl4646 <= cap(yyv4646) { - yyv4646 = yyv4646[:yyrl4646] + yyrg4651 := len(yyv4651) > 0 + yyv24651 := yyv4651 + yyrl4651, yyrt4651 = z.DecInferLen(yyl4651, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4651 { + if yyrl4651 <= cap(yyv4651) { + yyv4651 = yyv4651[:yyrl4651] } else { - yyv4646 = make([]ResourceQuota, yyrl4646) + yyv4651 = make([]ResourceQuota, yyrl4651) } } else { - yyv4646 = make([]ResourceQuota, yyrl4646) + yyv4651 = make([]ResourceQuota, yyrl4651) } - yyc4646 = true - yyrr4646 = len(yyv4646) - if yyrg4646 { - copy(yyv4646, yyv24646) + yyc4651 = true + yyrr4651 = len(yyv4651) + if yyrg4651 { + copy(yyv4651, yyv24651) } - } else if yyl4646 != len(yyv4646) { - yyv4646 = yyv4646[:yyl4646] - yyc4646 = true + } else if yyl4651 != len(yyv4651) { + yyv4651 = yyv4651[:yyl4651] + yyc4651 = true } - yyj4646 := 0 - for ; yyj4646 < yyrr4646; yyj4646++ { - yyh4646.ElemContainerState(yyj4646) + yyj4651 := 0 + for ; yyj4651 < yyrr4651; yyj4651++ { + yyh4651.ElemContainerState(yyj4651) if r.TryDecodeAsNil() { - yyv4646[yyj4646] = ResourceQuota{} + yyv4651[yyj4651] = ResourceQuota{} } else { - yyv4647 := &yyv4646[yyj4646] - yyv4647.CodecDecodeSelf(d) + yyv4652 := &yyv4651[yyj4651] + yyv4652.CodecDecodeSelf(d) } } - if yyrt4646 { - for ; yyj4646 < yyl4646; yyj4646++ { - yyv4646 = append(yyv4646, ResourceQuota{}) - yyh4646.ElemContainerState(yyj4646) + if yyrt4651 { + for ; yyj4651 < yyl4651; yyj4651++ { + yyv4651 = append(yyv4651, ResourceQuota{}) + yyh4651.ElemContainerState(yyj4651) if r.TryDecodeAsNil() { - yyv4646[yyj4646] = ResourceQuota{} + yyv4651[yyj4651] = ResourceQuota{} } else { - yyv4648 := &yyv4646[yyj4646] - yyv4648.CodecDecodeSelf(d) + yyv4653 := &yyv4651[yyj4651] + yyv4653.CodecDecodeSelf(d) } } } } else { - yyj4646 := 0 - for ; !r.CheckBreak(); yyj4646++ { + yyj4651 := 0 + for ; !r.CheckBreak(); yyj4651++ { - if yyj4646 >= len(yyv4646) { - yyv4646 = append(yyv4646, ResourceQuota{}) // var yyz4646 ResourceQuota - yyc4646 = true + if yyj4651 >= len(yyv4651) { + yyv4651 = append(yyv4651, ResourceQuota{}) // var yyz4651 ResourceQuota + yyc4651 = true } - yyh4646.ElemContainerState(yyj4646) - if yyj4646 < len(yyv4646) { + yyh4651.ElemContainerState(yyj4651) + if yyj4651 < len(yyv4651) { if r.TryDecodeAsNil() { - yyv4646[yyj4646] = ResourceQuota{} + yyv4651[yyj4651] = ResourceQuota{} } else { - yyv4649 := &yyv4646[yyj4646] - yyv4649.CodecDecodeSelf(d) + yyv4654 := &yyv4651[yyj4651] + yyv4654.CodecDecodeSelf(d) } } else { @@ -59790,17 +59831,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4646 < len(yyv4646) { - yyv4646 = yyv4646[:yyj4646] - yyc4646 = true - } else if yyj4646 == 0 && yyv4646 == nil { - yyv4646 = []ResourceQuota{} - yyc4646 = true + if yyj4651 < len(yyv4651) { + yyv4651 = yyv4651[:yyj4651] + yyc4651 = true + } else if yyj4651 == 0 && yyv4651 == nil { + yyv4651 = []ResourceQuota{} + yyc4651 = true } } - yyh4646.End() - if yyc4646 { - *v = yyv4646 + yyh4651.End() + if yyc4651 { + *v = yyv4651 } } @@ -59809,23 +59850,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4650, yyv4650 := range v { + for yyk4655, yyv4655 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4651 := z.EncBinary() - _ = yym4651 + yym4656 := z.EncBinary() + _ = yym4656 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4650)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4655)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4650 == nil { + if yyv4655 == nil { r.EncodeNil() } else { - yym4652 := z.EncBinary() - _ = yym4652 + yym4657 := z.EncBinary() + _ = yym4657 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4650)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4655)) } } } @@ -59837,80 +59878,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4653 := *v - yyl4653 := r.ReadMapStart() - yybh4653 := z.DecBasicHandle() - if yyv4653 == nil { - yyrl4653, _ := z.DecInferLen(yyl4653, yybh4653.MaxInitLen, 40) - yyv4653 = make(map[string][]uint8, yyrl4653) - *v = yyv4653 + yyv4658 := *v + yyl4658 := r.ReadMapStart() + yybh4658 := z.DecBasicHandle() + if yyv4658 == nil { + yyrl4658, _ := z.DecInferLen(yyl4658, yybh4658.MaxInitLen, 40) + yyv4658 = make(map[string][]uint8, yyrl4658) + *v = yyv4658 } - var yymk4653 string - var yymv4653 []uint8 - var yymg4653 bool - if yybh4653.MapValueReset { - yymg4653 = true + var yymk4658 string + var yymv4658 []uint8 + var yymg4658 bool + if yybh4658.MapValueReset { + yymg4658 = true } - if yyl4653 > 0 { - for yyj4653 := 0; yyj4653 < yyl4653; yyj4653++ { + if yyl4658 > 0 { + for yyj4658 := 0; yyj4658 < yyl4658; yyj4658++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4653 = "" + yymk4658 = "" } else { - yymk4653 = string(r.DecodeString()) + yymk4658 = string(r.DecodeString()) } - if yymg4653 { - yymv4653 = yyv4653[yymk4653] + if yymg4658 { + yymv4658 = yyv4658[yymk4658] } else { - yymv4653 = nil + yymv4658 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4653 = nil + yymv4658 = nil } else { - yyv4655 := &yymv4653 - yym4656 := z.DecBinary() - _ = yym4656 + yyv4660 := &yymv4658 + yym4661 := z.DecBinary() + _ = yym4661 if false { } else { - *yyv4655 = r.DecodeBytes(*(*[]byte)(yyv4655), false, false) + *yyv4660 = r.DecodeBytes(*(*[]byte)(yyv4660), false, false) } } - if yyv4653 != nil { - yyv4653[yymk4653] = yymv4653 + if yyv4658 != nil { + yyv4658[yymk4658] = yymv4658 } } - } else if yyl4653 < 0 { - for yyj4653 := 0; !r.CheckBreak(); yyj4653++ { + } else if yyl4658 < 0 { + for yyj4658 := 0; !r.CheckBreak(); yyj4658++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4653 = "" + yymk4658 = "" } else { - yymk4653 = string(r.DecodeString()) + yymk4658 = string(r.DecodeString()) } - if yymg4653 { - yymv4653 = yyv4653[yymk4653] + if yymg4658 { + yymv4658 = yyv4658[yymk4658] } else { - yymv4653 = nil + yymv4658 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4653 = nil + yymv4658 = nil } else { - yyv4658 := &yymv4653 - yym4659 := z.DecBinary() - _ = yym4659 + yyv4663 := &yymv4658 + yym4664 := z.DecBinary() + _ = yym4664 if false { } else { - *yyv4658 = r.DecodeBytes(*(*[]byte)(yyv4658), false, false) + *yyv4663 = r.DecodeBytes(*(*[]byte)(yyv4663), false, false) } } - if yyv4653 != nil { - yyv4653[yymk4653] = yymv4653 + if yyv4658 != nil { + yyv4658[yymk4658] = yymv4658 } } } // else len==0: TODO: Should we clear map entries? @@ -59922,10 +59963,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4660 := range v { + for _, yyv4665 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4661 := &yyv4660 - yy4661.CodecEncodeSelf(e) + yy4666 := &yyv4665 + yy4666.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59935,83 +59976,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4662 := *v - yyh4662, yyl4662 := z.DecSliceHelperStart() - var yyc4662 bool - if yyl4662 == 0 { - if yyv4662 == nil { - yyv4662 = []Secret{} - yyc4662 = true - } else if len(yyv4662) != 0 { - yyv4662 = yyv4662[:0] - yyc4662 = true + yyv4667 := *v + yyh4667, yyl4667 := z.DecSliceHelperStart() + var yyc4667 bool + if yyl4667 == 0 { + if yyv4667 == nil { + yyv4667 = []Secret{} + yyc4667 = true + } else if len(yyv4667) != 0 { + yyv4667 = yyv4667[:0] + yyc4667 = true } - } else if yyl4662 > 0 { - var yyrr4662, yyrl4662 int - var yyrt4662 bool - if yyl4662 > cap(yyv4662) { + } else if yyl4667 > 0 { + var yyrr4667, yyrl4667 int + var yyrt4667 bool + if yyl4667 > cap(yyv4667) { - yyrg4662 := len(yyv4662) > 0 - yyv24662 := yyv4662 - yyrl4662, yyrt4662 = z.DecInferLen(yyl4662, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4662 { - if yyrl4662 <= cap(yyv4662) { - yyv4662 = yyv4662[:yyrl4662] + yyrg4667 := len(yyv4667) > 0 + yyv24667 := yyv4667 + yyrl4667, yyrt4667 = z.DecInferLen(yyl4667, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4667 { + if yyrl4667 <= cap(yyv4667) { + yyv4667 = yyv4667[:yyrl4667] } else { - yyv4662 = make([]Secret, yyrl4662) + yyv4667 = make([]Secret, yyrl4667) } } else { - yyv4662 = make([]Secret, yyrl4662) + yyv4667 = make([]Secret, yyrl4667) } - yyc4662 = true - yyrr4662 = len(yyv4662) - if yyrg4662 { - copy(yyv4662, yyv24662) + yyc4667 = true + yyrr4667 = len(yyv4667) + if yyrg4667 { + copy(yyv4667, yyv24667) } - } else if yyl4662 != len(yyv4662) { - yyv4662 = yyv4662[:yyl4662] - yyc4662 = true + } else if yyl4667 != len(yyv4667) { + yyv4667 = yyv4667[:yyl4667] + yyc4667 = true } - yyj4662 := 0 - for ; yyj4662 < yyrr4662; yyj4662++ { - yyh4662.ElemContainerState(yyj4662) + yyj4667 := 0 + for ; yyj4667 < yyrr4667; yyj4667++ { + yyh4667.ElemContainerState(yyj4667) if r.TryDecodeAsNil() { - yyv4662[yyj4662] = Secret{} + yyv4667[yyj4667] = Secret{} } else { - yyv4663 := &yyv4662[yyj4662] - yyv4663.CodecDecodeSelf(d) + yyv4668 := &yyv4667[yyj4667] + yyv4668.CodecDecodeSelf(d) } } - if yyrt4662 { - for ; yyj4662 < yyl4662; yyj4662++ { - yyv4662 = append(yyv4662, Secret{}) - yyh4662.ElemContainerState(yyj4662) + if yyrt4667 { + for ; yyj4667 < yyl4667; yyj4667++ { + yyv4667 = append(yyv4667, Secret{}) + yyh4667.ElemContainerState(yyj4667) if r.TryDecodeAsNil() { - yyv4662[yyj4662] = Secret{} + yyv4667[yyj4667] = Secret{} } else { - yyv4664 := &yyv4662[yyj4662] - yyv4664.CodecDecodeSelf(d) + yyv4669 := &yyv4667[yyj4667] + yyv4669.CodecDecodeSelf(d) } } } } else { - yyj4662 := 0 - for ; !r.CheckBreak(); yyj4662++ { + yyj4667 := 0 + for ; !r.CheckBreak(); yyj4667++ { - if yyj4662 >= len(yyv4662) { - yyv4662 = append(yyv4662, Secret{}) // var yyz4662 Secret - yyc4662 = true + if yyj4667 >= len(yyv4667) { + yyv4667 = append(yyv4667, Secret{}) // var yyz4667 Secret + yyc4667 = true } - yyh4662.ElemContainerState(yyj4662) - if yyj4662 < len(yyv4662) { + yyh4667.ElemContainerState(yyj4667) + if yyj4667 < len(yyv4667) { if r.TryDecodeAsNil() { - yyv4662[yyj4662] = Secret{} + yyv4667[yyj4667] = Secret{} } else { - yyv4665 := &yyv4662[yyj4662] - yyv4665.CodecDecodeSelf(d) + yyv4670 := &yyv4667[yyj4667] + yyv4670.CodecDecodeSelf(d) } } else { @@ -60019,17 +60060,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4662 < len(yyv4662) { - yyv4662 = yyv4662[:yyj4662] - yyc4662 = true - } else if yyj4662 == 0 && yyv4662 == nil { - yyv4662 = []Secret{} - yyc4662 = true + if yyj4667 < len(yyv4667) { + yyv4667 = yyv4667[:yyj4667] + yyc4667 = true + } else if yyj4667 == 0 && yyv4667 == nil { + yyv4667 = []Secret{} + yyc4667 = true } } - yyh4662.End() - if yyc4662 { - *v = yyv4662 + yyh4667.End() + if yyc4667 { + *v = yyv4667 } } @@ -60038,10 +60079,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4666 := range v { + for _, yyv4671 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4667 := &yyv4666 - yy4667.CodecEncodeSelf(e) + yy4672 := &yyv4671 + yy4672.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60051,83 +60092,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4668 := *v - yyh4668, yyl4668 := z.DecSliceHelperStart() - var yyc4668 bool - if yyl4668 == 0 { - if yyv4668 == nil { - yyv4668 = []ConfigMap{} - yyc4668 = true - } else if len(yyv4668) != 0 { - yyv4668 = yyv4668[:0] - yyc4668 = true + yyv4673 := *v + yyh4673, yyl4673 := z.DecSliceHelperStart() + var yyc4673 bool + if yyl4673 == 0 { + if yyv4673 == nil { + yyv4673 = []ConfigMap{} + yyc4673 = true + } else if len(yyv4673) != 0 { + yyv4673 = yyv4673[:0] + yyc4673 = true } - } else if yyl4668 > 0 { - var yyrr4668, yyrl4668 int - var yyrt4668 bool - if yyl4668 > cap(yyv4668) { + } else if yyl4673 > 0 { + var yyrr4673, yyrl4673 int + var yyrt4673 bool + if yyl4673 > cap(yyv4673) { - yyrg4668 := len(yyv4668) > 0 - yyv24668 := yyv4668 - yyrl4668, yyrt4668 = z.DecInferLen(yyl4668, z.DecBasicHandle().MaxInitLen, 248) - if yyrt4668 { - if yyrl4668 <= cap(yyv4668) { - yyv4668 = yyv4668[:yyrl4668] + yyrg4673 := len(yyv4673) > 0 + yyv24673 := yyv4673 + yyrl4673, yyrt4673 = z.DecInferLen(yyl4673, z.DecBasicHandle().MaxInitLen, 248) + if yyrt4673 { + if yyrl4673 <= cap(yyv4673) { + yyv4673 = yyv4673[:yyrl4673] } else { - yyv4668 = make([]ConfigMap, yyrl4668) + yyv4673 = make([]ConfigMap, yyrl4673) } } else { - yyv4668 = make([]ConfigMap, yyrl4668) + yyv4673 = make([]ConfigMap, yyrl4673) } - yyc4668 = true - yyrr4668 = len(yyv4668) - if yyrg4668 { - copy(yyv4668, yyv24668) + yyc4673 = true + yyrr4673 = len(yyv4673) + if yyrg4673 { + copy(yyv4673, yyv24673) } - } else if yyl4668 != len(yyv4668) { - yyv4668 = yyv4668[:yyl4668] - yyc4668 = true + } else if yyl4673 != len(yyv4673) { + yyv4673 = yyv4673[:yyl4673] + yyc4673 = true } - yyj4668 := 0 - for ; yyj4668 < yyrr4668; yyj4668++ { - yyh4668.ElemContainerState(yyj4668) + yyj4673 := 0 + for ; yyj4673 < yyrr4673; yyj4673++ { + yyh4673.ElemContainerState(yyj4673) if r.TryDecodeAsNil() { - yyv4668[yyj4668] = ConfigMap{} + yyv4673[yyj4673] = ConfigMap{} } else { - yyv4669 := &yyv4668[yyj4668] - yyv4669.CodecDecodeSelf(d) + yyv4674 := &yyv4673[yyj4673] + yyv4674.CodecDecodeSelf(d) } } - if yyrt4668 { - for ; yyj4668 < yyl4668; yyj4668++ { - yyv4668 = append(yyv4668, ConfigMap{}) - yyh4668.ElemContainerState(yyj4668) + if yyrt4673 { + for ; yyj4673 < yyl4673; yyj4673++ { + yyv4673 = append(yyv4673, ConfigMap{}) + yyh4673.ElemContainerState(yyj4673) if r.TryDecodeAsNil() { - yyv4668[yyj4668] = ConfigMap{} + yyv4673[yyj4673] = ConfigMap{} } else { - yyv4670 := &yyv4668[yyj4668] - yyv4670.CodecDecodeSelf(d) + yyv4675 := &yyv4673[yyj4673] + yyv4675.CodecDecodeSelf(d) } } } } else { - yyj4668 := 0 - for ; !r.CheckBreak(); yyj4668++ { + yyj4673 := 0 + for ; !r.CheckBreak(); yyj4673++ { - if yyj4668 >= len(yyv4668) { - yyv4668 = append(yyv4668, ConfigMap{}) // var yyz4668 ConfigMap - yyc4668 = true + if yyj4673 >= len(yyv4673) { + yyv4673 = append(yyv4673, ConfigMap{}) // var yyz4673 ConfigMap + yyc4673 = true } - yyh4668.ElemContainerState(yyj4668) - if yyj4668 < len(yyv4668) { + yyh4673.ElemContainerState(yyj4673) + if yyj4673 < len(yyv4673) { if r.TryDecodeAsNil() { - yyv4668[yyj4668] = ConfigMap{} + yyv4673[yyj4673] = ConfigMap{} } else { - yyv4671 := &yyv4668[yyj4668] - yyv4671.CodecDecodeSelf(d) + yyv4676 := &yyv4673[yyj4673] + yyv4676.CodecDecodeSelf(d) } } else { @@ -60135,17 +60176,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4668 < len(yyv4668) { - yyv4668 = yyv4668[:yyj4668] - yyc4668 = true - } else if yyj4668 == 0 && yyv4668 == nil { - yyv4668 = []ConfigMap{} - yyc4668 = true + if yyj4673 < len(yyv4673) { + yyv4673 = yyv4673[:yyj4673] + yyc4673 = true + } else if yyj4673 == 0 && yyv4673 == nil { + yyv4673 = []ConfigMap{} + yyc4673 = true } } - yyh4668.End() - if yyc4668 { - *v = yyv4668 + yyh4673.End() + if yyc4673 { + *v = yyv4673 } } @@ -60154,10 +60195,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4672 := range v { + for _, yyv4677 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4673 := &yyv4672 - yy4673.CodecEncodeSelf(e) + yy4678 := &yyv4677 + yy4678.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60167,83 +60208,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4674 := *v - yyh4674, yyl4674 := z.DecSliceHelperStart() - var yyc4674 bool - if yyl4674 == 0 { - if yyv4674 == nil { - yyv4674 = []ComponentCondition{} - yyc4674 = true - } else if len(yyv4674) != 0 { - yyv4674 = yyv4674[:0] - yyc4674 = true + yyv4679 := *v + yyh4679, yyl4679 := z.DecSliceHelperStart() + var yyc4679 bool + if yyl4679 == 0 { + if yyv4679 == nil { + yyv4679 = []ComponentCondition{} + yyc4679 = true + } else if len(yyv4679) != 0 { + yyv4679 = yyv4679[:0] + yyc4679 = true } - } else if yyl4674 > 0 { - var yyrr4674, yyrl4674 int - var yyrt4674 bool - if yyl4674 > cap(yyv4674) { + } else if yyl4679 > 0 { + var yyrr4679, yyrl4679 int + var yyrt4679 bool + if yyl4679 > cap(yyv4679) { - yyrg4674 := len(yyv4674) > 0 - yyv24674 := yyv4674 - yyrl4674, yyrt4674 = z.DecInferLen(yyl4674, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4674 { - if yyrl4674 <= cap(yyv4674) { - yyv4674 = yyv4674[:yyrl4674] + yyrg4679 := len(yyv4679) > 0 + yyv24679 := yyv4679 + yyrl4679, yyrt4679 = z.DecInferLen(yyl4679, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4679 { + if yyrl4679 <= cap(yyv4679) { + yyv4679 = yyv4679[:yyrl4679] } else { - yyv4674 = make([]ComponentCondition, yyrl4674) + yyv4679 = make([]ComponentCondition, yyrl4679) } } else { - yyv4674 = make([]ComponentCondition, yyrl4674) + yyv4679 = make([]ComponentCondition, yyrl4679) } - yyc4674 = true - yyrr4674 = len(yyv4674) - if yyrg4674 { - copy(yyv4674, yyv24674) + yyc4679 = true + yyrr4679 = len(yyv4679) + if yyrg4679 { + copy(yyv4679, yyv24679) } - } else if yyl4674 != len(yyv4674) { - yyv4674 = yyv4674[:yyl4674] - yyc4674 = true + } else if yyl4679 != len(yyv4679) { + yyv4679 = yyv4679[:yyl4679] + yyc4679 = true } - yyj4674 := 0 - for ; yyj4674 < yyrr4674; yyj4674++ { - yyh4674.ElemContainerState(yyj4674) + yyj4679 := 0 + for ; yyj4679 < yyrr4679; yyj4679++ { + yyh4679.ElemContainerState(yyj4679) if r.TryDecodeAsNil() { - yyv4674[yyj4674] = ComponentCondition{} + yyv4679[yyj4679] = ComponentCondition{} } else { - yyv4675 := &yyv4674[yyj4674] - yyv4675.CodecDecodeSelf(d) + yyv4680 := &yyv4679[yyj4679] + yyv4680.CodecDecodeSelf(d) } } - if yyrt4674 { - for ; yyj4674 < yyl4674; yyj4674++ { - yyv4674 = append(yyv4674, ComponentCondition{}) - yyh4674.ElemContainerState(yyj4674) + if yyrt4679 { + for ; yyj4679 < yyl4679; yyj4679++ { + yyv4679 = append(yyv4679, ComponentCondition{}) + yyh4679.ElemContainerState(yyj4679) if r.TryDecodeAsNil() { - yyv4674[yyj4674] = ComponentCondition{} + yyv4679[yyj4679] = ComponentCondition{} } else { - yyv4676 := &yyv4674[yyj4674] - yyv4676.CodecDecodeSelf(d) + yyv4681 := &yyv4679[yyj4679] + yyv4681.CodecDecodeSelf(d) } } } } else { - yyj4674 := 0 - for ; !r.CheckBreak(); yyj4674++ { + yyj4679 := 0 + for ; !r.CheckBreak(); yyj4679++ { - if yyj4674 >= len(yyv4674) { - yyv4674 = append(yyv4674, ComponentCondition{}) // var yyz4674 ComponentCondition - yyc4674 = true + if yyj4679 >= len(yyv4679) { + yyv4679 = append(yyv4679, ComponentCondition{}) // var yyz4679 ComponentCondition + yyc4679 = true } - yyh4674.ElemContainerState(yyj4674) - if yyj4674 < len(yyv4674) { + yyh4679.ElemContainerState(yyj4679) + if yyj4679 < len(yyv4679) { if r.TryDecodeAsNil() { - yyv4674[yyj4674] = ComponentCondition{} + yyv4679[yyj4679] = ComponentCondition{} } else { - yyv4677 := &yyv4674[yyj4674] - yyv4677.CodecDecodeSelf(d) + yyv4682 := &yyv4679[yyj4679] + yyv4682.CodecDecodeSelf(d) } } else { @@ -60251,17 +60292,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4674 < len(yyv4674) { - yyv4674 = yyv4674[:yyj4674] - yyc4674 = true - } else if yyj4674 == 0 && yyv4674 == nil { - yyv4674 = []ComponentCondition{} - yyc4674 = true + if yyj4679 < len(yyv4679) { + yyv4679 = yyv4679[:yyj4679] + yyc4679 = true + } else if yyj4679 == 0 && yyv4679 == nil { + yyv4679 = []ComponentCondition{} + yyc4679 = true } } - yyh4674.End() - if yyc4674 { - *v = yyv4674 + yyh4679.End() + if yyc4679 { + *v = yyv4679 } } @@ -60270,10 +60311,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4678 := range v { + for _, yyv4683 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4679 := &yyv4678 - yy4679.CodecEncodeSelf(e) + yy4684 := &yyv4683 + yy4684.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60283,83 +60324,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4680 := *v - yyh4680, yyl4680 := z.DecSliceHelperStart() - var yyc4680 bool - if yyl4680 == 0 { - if yyv4680 == nil { - yyv4680 = []ComponentStatus{} - yyc4680 = true - } else if len(yyv4680) != 0 { - yyv4680 = yyv4680[:0] - yyc4680 = true + yyv4685 := *v + yyh4685, yyl4685 := z.DecSliceHelperStart() + var yyc4685 bool + if yyl4685 == 0 { + if yyv4685 == nil { + yyv4685 = []ComponentStatus{} + yyc4685 = true + } else if len(yyv4685) != 0 { + yyv4685 = yyv4685[:0] + yyc4685 = true } - } else if yyl4680 > 0 { - var yyrr4680, yyrl4680 int - var yyrt4680 bool - if yyl4680 > cap(yyv4680) { + } else if yyl4685 > 0 { + var yyrr4685, yyrl4685 int + var yyrt4685 bool + if yyl4685 > cap(yyv4685) { - yyrg4680 := len(yyv4680) > 0 - yyv24680 := yyv4680 - yyrl4680, yyrt4680 = z.DecInferLen(yyl4680, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4680 { - if yyrl4680 <= cap(yyv4680) { - yyv4680 = yyv4680[:yyrl4680] + yyrg4685 := len(yyv4685) > 0 + yyv24685 := yyv4685 + yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4685 { + if yyrl4685 <= cap(yyv4685) { + yyv4685 = yyv4685[:yyrl4685] } else { - yyv4680 = make([]ComponentStatus, yyrl4680) + yyv4685 = make([]ComponentStatus, yyrl4685) } } else { - yyv4680 = make([]ComponentStatus, yyrl4680) + yyv4685 = make([]ComponentStatus, yyrl4685) } - yyc4680 = true - yyrr4680 = len(yyv4680) - if yyrg4680 { - copy(yyv4680, yyv24680) + yyc4685 = true + yyrr4685 = len(yyv4685) + if yyrg4685 { + copy(yyv4685, yyv24685) } - } else if yyl4680 != len(yyv4680) { - yyv4680 = yyv4680[:yyl4680] - yyc4680 = true + } else if yyl4685 != len(yyv4685) { + yyv4685 = yyv4685[:yyl4685] + yyc4685 = true } - yyj4680 := 0 - for ; yyj4680 < yyrr4680; yyj4680++ { - yyh4680.ElemContainerState(yyj4680) + yyj4685 := 0 + for ; yyj4685 < yyrr4685; yyj4685++ { + yyh4685.ElemContainerState(yyj4685) if r.TryDecodeAsNil() { - yyv4680[yyj4680] = ComponentStatus{} + yyv4685[yyj4685] = ComponentStatus{} } else { - yyv4681 := &yyv4680[yyj4680] - yyv4681.CodecDecodeSelf(d) + yyv4686 := &yyv4685[yyj4685] + yyv4686.CodecDecodeSelf(d) } } - if yyrt4680 { - for ; yyj4680 < yyl4680; yyj4680++ { - yyv4680 = append(yyv4680, ComponentStatus{}) - yyh4680.ElemContainerState(yyj4680) + if yyrt4685 { + for ; yyj4685 < yyl4685; yyj4685++ { + yyv4685 = append(yyv4685, ComponentStatus{}) + yyh4685.ElemContainerState(yyj4685) if r.TryDecodeAsNil() { - yyv4680[yyj4680] = ComponentStatus{} + yyv4685[yyj4685] = ComponentStatus{} } else { - yyv4682 := &yyv4680[yyj4680] - yyv4682.CodecDecodeSelf(d) + yyv4687 := &yyv4685[yyj4685] + yyv4687.CodecDecodeSelf(d) } } } } else { - yyj4680 := 0 - for ; !r.CheckBreak(); yyj4680++ { + yyj4685 := 0 + for ; !r.CheckBreak(); yyj4685++ { - if yyj4680 >= len(yyv4680) { - yyv4680 = append(yyv4680, ComponentStatus{}) // var yyz4680 ComponentStatus - yyc4680 = true + if yyj4685 >= len(yyv4685) { + yyv4685 = append(yyv4685, ComponentStatus{}) // var yyz4685 ComponentStatus + yyc4685 = true } - yyh4680.ElemContainerState(yyj4680) - if yyj4680 < len(yyv4680) { + yyh4685.ElemContainerState(yyj4685) + if yyj4685 < len(yyv4685) { if r.TryDecodeAsNil() { - yyv4680[yyj4680] = ComponentStatus{} + yyv4685[yyj4685] = ComponentStatus{} } else { - yyv4683 := &yyv4680[yyj4680] - yyv4683.CodecDecodeSelf(d) + yyv4688 := &yyv4685[yyj4685] + yyv4688.CodecDecodeSelf(d) } } else { @@ -60367,16 +60408,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4680 < len(yyv4680) { - yyv4680 = yyv4680[:yyj4680] - yyc4680 = true - } else if yyj4680 == 0 && yyv4680 == nil { - yyv4680 = []ComponentStatus{} - yyc4680 = true + if yyj4685 < len(yyv4685) { + yyv4685 = yyv4685[:yyj4685] + yyc4685 = true + } else if yyj4685 == 0 && yyv4685 == nil { + yyv4685 = []ComponentStatus{} + yyc4685 = true } } - yyh4680.End() - if yyc4680 { - *v = yyv4680 + yyh4685.End() + if yyc4685 { + *v = yyv4685 } } diff --git a/pkg/api/types.go b/pkg/api/types.go index ac1b282bf39b0..e9fae7a2726a4 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -1704,6 +1704,11 @@ const ( // external load balancer (if the cloud provider supports it), in addition // to 'NodePort' type. ServiceTypeLoadBalancer ServiceType = "LoadBalancer" + + // ServiceTypeExternalName means a service consists of only a reference to + // an external name that kubedns or equivalent will return as a CNAME + // record, with no exposing or proxying of any pods involved. + ServiceTypeExternalName ServiceType = "ExternalName" ) // ServiceStatus represents the current status of a service @@ -1734,24 +1739,39 @@ type LoadBalancerIngress struct { // ServiceSpec describes the attributes that a user creates on a service type ServiceSpec struct { - // Type determines how the service will be exposed. Valid options: ClusterIP, NodePort, LoadBalancer + // Type determines how to expose the service. Defaults to ClusterIP and only + // applies if clusterIP != "None". Valid options are ClusterIP, NodePort, + // LoadBalancer, ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview Type ServiceType `json:"type,omitempty"` // Required: The list of ports that are exposed by this service. Ports []ServicePort `json:"ports"` - // This service will route traffic to pods having labels matching this selector. If empty or not present, - // the service is assumed to have endpoints set by an external process and Kubernetes will not modify - // those endpoints. + // Route service traffic to pods with label keys and values matching this + // selector. If empty or not present, the service is assumed to have an + // external process managing its endpoints, which Kubernetes will not + // modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + // Ignored if type is ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview Selector map[string]string `json:"selector"` - // ClusterIP is usually assigned by the master. If specified by the user - // we will try to respect it or else fail the request. This field can - // not be changed by updates. - // Valid values are None, empty string (""), or a valid IP address - // None can be specified for headless services when proxying is not required + // ClusterIP is the IP address of the service and is usually assigned + // randomly by the master. If an address is specified manually and is not in + // use by others, it will be allocated to the service; otherwise, creation + // of the service will fail. This field can not be changed through updates. + // Valid values are "None", empty string (""), or a valid IP address. "None" + // can be specified for headless services when proxying is not required. + // Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if + // type is ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies ClusterIP string `json:"clusterIP,omitempty"` + // ExternalName is the external reference that kubedns or equivalent will + // return as a CNAME record for this service. No proxying will be involved. + // Must be a valid DNS name and requires Type to be ExternalName. + ExternalName string + // ExternalIPs are used by external load balancers, or can be set by // users to handle external traffic that arrives at a node. ExternalIPs []string `json:"externalIPs,omitempty"` diff --git a/pkg/api/v1/defaults.go b/pkg/api/v1/defaults.go index 2a79ede82d784..c58394dcec4ca 100644 --- a/pkg/api/v1/defaults.go +++ b/pkg/api/v1/defaults.go @@ -113,6 +113,8 @@ func SetDefaults_ServiceSpec(obj *ServiceSpec) { } if obj.Type == "" { obj.Type = ServiceTypeClusterIP + } else if obj.Type == ServiceTypeExternalName { + obj.ClusterIP = ClusterIPNone } for i := range obj.Ports { sp := &obj.Ports[i] diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index 54822e9ec7b4d..5d69fbd0513b0 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -7431,6 +7431,10 @@ func (m *ServiceSpec) MarshalTo(data []byte) (int, error) { i += copy(data[i:], s) } } + data[i] = 0x52 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.ExternalName))) + i += copy(data[i:], m.ExternalName) return i, nil } @@ -10297,6 +10301,8 @@ func (m *ServiceSpec) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } + l = len(m.ExternalName) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -12490,6 +12496,7 @@ func (this *ServiceSpec) String() string { `SessionAffinity:` + fmt.Sprintf("%v", this.SessionAffinity) + `,`, `LoadBalancerIP:` + fmt.Sprintf("%v", this.LoadBalancerIP) + `,`, `LoadBalancerSourceRanges:` + fmt.Sprintf("%v", this.LoadBalancerSourceRanges) + `,`, + `ExternalName:` + fmt.Sprintf("%v", this.ExternalName) + `,`, `}`, }, "") return s @@ -35727,6 +35734,35 @@ func (m *ServiceSpec) Unmarshal(data []byte) error { } m.LoadBalancerSourceRanges = append(m.LoadBalancerSourceRanges, string(data[iNdEx:postIndex])) iNdEx = postIndex + case 10: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ExternalName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ExternalName = string(data[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -37500,87 +37536,87 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 9468 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x64, 0x57, - 0x76, 0xd0, 0x56, 0x55, 0x7f, 0xd5, 0xed, 0xcf, 0x79, 0x33, 0x63, 0xb7, 0x7b, 0xd7, 0x5f, 0x6f, - 0x6d, 0xaf, 0x3d, 0xf6, 0xf4, 0x78, 0xc6, 0x76, 0x6c, 0xef, 0x2e, 0xbb, 0xee, 0xee, 0xea, 0x9e, - 0xe9, 0x4c, 0xcf, 0x4c, 0xf9, 0x54, 0x7b, 0x66, 0x37, 0x6b, 0x36, 0x7e, 0x5d, 0xf5, 0xba, 0xfb, - 0xed, 0x54, 0xd7, 0x2b, 0xbf, 0xf7, 0xaa, 0x67, 0xda, 0x4b, 0xa4, 0x10, 0x85, 0x20, 0x44, 0x08, - 0xfb, 0x83, 0x00, 0x12, 0x20, 0x05, 0x24, 0x24, 0x3e, 0x44, 0xc8, 0x86, 0x25, 0xf1, 0x42, 0x14, - 0x21, 0x11, 0x56, 0x2b, 0x20, 0xc8, 0x2b, 0x01, 0x89, 0x12, 0x69, 0x61, 0x13, 0x21, 0x84, 0xc4, - 0x0f, 0x24, 0x7e, 0x61, 0x45, 0xc0, 0x3d, 0xf7, 0xfb, 0xbe, 0x7a, 0xd5, 0xef, 0x55, 0x7b, 0xaa, - 0x99, 0x44, 0xfc, 0x68, 0xa9, 0xeb, 0x9e, 0x73, 0xcf, 0xfd, 0x78, 0xe7, 0x9e, 0x7b, 0xce, 0xb9, - 0xe7, 0x9e, 0x4b, 0x5e, 0xba, 0xfb, 0x46, 0xbc, 0x1c, 0x84, 0x97, 0xee, 0xf6, 0x76, 0xfc, 0xa8, - 0xe3, 0x27, 0x7e, 0x7c, 0xa9, 0x7b, 0x77, 0xef, 0x92, 0xd7, 0x0d, 0x2e, 0x1d, 0x5e, 0xbe, 0xb4, - 0xe7, 0x77, 0xfc, 0xc8, 0x4b, 0xfc, 0xd6, 0x72, 0x37, 0x0a, 0x93, 0xd0, 0xf9, 0x0c, 0xc7, 0x5e, - 0xd6, 0xd8, 0xcb, 0x14, 0x7b, 0x99, 0x62, 0x2f, 0x1f, 0x5e, 0x5e, 0xba, 0xb8, 0x17, 0x24, 0xfb, - 0xbd, 0x9d, 0xe5, 0x66, 0x78, 0x70, 0x69, 0x2f, 0xdc, 0x0b, 0x2f, 0xb1, 0x4a, 0x3b, 0xbd, 0x5d, - 0xf6, 0x8b, 0xfd, 0x60, 0xff, 0x71, 0x62, 0x4b, 0x57, 0x06, 0x37, 0x1d, 0xf9, 0x71, 0xd8, 0x8b, - 0x9a, 0x7e, 0xba, 0x03, 0x4b, 0xaf, 0x0d, 0xae, 0xd3, 0xeb, 0x1c, 0xfa, 0x51, 0x1c, 0x84, 0x1d, - 0xbf, 0xd5, 0x57, 0xed, 0x62, 0x76, 0xb5, 0xa8, 0xd7, 0x49, 0x82, 0x83, 0xfe, 0x56, 0x2e, 0x67, - 0xa3, 0xf7, 0x92, 0xa0, 0x7d, 0x29, 0xe8, 0x24, 0x71, 0x12, 0xa5, 0xab, 0xb8, 0xbf, 0x53, 0x22, - 0x4f, 0xad, 0xdc, 0x69, 0xac, 0xb7, 0xbd, 0x38, 0x09, 0x9a, 0xab, 0xed, 0xb0, 0x79, 0xb7, 0x91, - 0x84, 0x91, 0x7f, 0x3b, 0x6c, 0xf7, 0x0e, 0xfc, 0x06, 0x1b, 0x8d, 0xf3, 0x12, 0x99, 0x3a, 0x64, - 0xbf, 0x37, 0x6b, 0x8b, 0xa5, 0xa7, 0x4a, 0xcf, 0x57, 0x57, 0x17, 0xbe, 0xff, 0xc3, 0x27, 0x3f, - 0xf5, 0x07, 0x3f, 0x7c, 0x72, 0xea, 0xb6, 0x28, 0x07, 0x85, 0xe1, 0x3c, 0x47, 0x26, 0x76, 0xe3, - 0xed, 0xa3, 0xae, 0xbf, 0x58, 0x66, 0xb8, 0x73, 0x02, 0x77, 0x62, 0xa3, 0x81, 0xa5, 0x20, 0xa0, - 0xce, 0x25, 0x52, 0xed, 0x7a, 0x51, 0x12, 0x24, 0x74, 0xec, 0x8b, 0x15, 0x8a, 0x3a, 0xbe, 0x7a, - 0x46, 0xa0, 0x56, 0xeb, 0x12, 0x00, 0x1a, 0x07, 0xbb, 0x11, 0xf9, 0x5e, 0xeb, 0x56, 0xa7, 0x7d, - 0xb4, 0x38, 0x46, 0xf1, 0xa7, 0x74, 0x37, 0x40, 0x94, 0x83, 0xc2, 0x70, 0x3f, 0x2c, 0x93, 0xa9, - 0x95, 0xdd, 0xdd, 0xa0, 0x13, 0x24, 0x47, 0xce, 0x7b, 0x64, 0xa6, 0x13, 0xb6, 0x7c, 0xf9, 0x9b, - 0x8d, 0x62, 0xfa, 0xca, 0x85, 0xe5, 0xe3, 0xf8, 0x62, 0xf9, 0xa6, 0x51, 0x63, 0x75, 0x81, 0x36, - 0x33, 0x63, 0x96, 0x80, 0x45, 0xd1, 0x79, 0x97, 0x4c, 0x77, 0xc3, 0x96, 0x6a, 0xa0, 0xcc, 0x1a, - 0x78, 0xe1, 0xf8, 0x06, 0xea, 0xba, 0xc2, 0xea, 0x3c, 0xa5, 0x3f, 0x6d, 0x14, 0x80, 0x49, 0xce, - 0x69, 0x93, 0x79, 0xfc, 0x49, 0x3f, 0xbb, 0x6a, 0xa1, 0xc2, 0x5a, 0xb8, 0x98, 0xdf, 0x82, 0x51, - 0x69, 0xf5, 0x2c, 0x6d, 0x65, 0x3e, 0x55, 0x08, 0x69, 0xd2, 0xee, 0x07, 0x64, 0x6e, 0x25, 0x49, - 0xbc, 0xe6, 0xbe, 0xdf, 0xe2, 0xdf, 0xd7, 0x79, 0x95, 0x8c, 0x75, 0xbc, 0x03, 0x5f, 0x7c, 0xfd, - 0xa7, 0xc4, 0xb4, 0x8f, 0xdd, 0xa4, 0x65, 0x1f, 0xff, 0xf0, 0xc9, 0x85, 0x77, 0x3a, 0xc1, 0xfb, - 0x3d, 0xc1, 0x33, 0x58, 0x06, 0x0c, 0xdb, 0xb9, 0x42, 0x48, 0xcb, 0x3f, 0x0c, 0x9a, 0x7e, 0xdd, - 0x4b, 0xf6, 0x05, 0x37, 0x38, 0xa2, 0x2e, 0xa9, 0x29, 0x08, 0x18, 0x58, 0xee, 0xcf, 0x94, 0x48, - 0x75, 0xe5, 0x30, 0x0c, 0x5a, 0xb4, 0x97, 0xb1, 0xd3, 0xa3, 0xe3, 0x8e, 0xfc, 0x5d, 0x3f, 0x52, - 0x45, 0xb4, 0x0b, 0x15, 0x3a, 0xee, 0x2b, 0x39, 0xe3, 0xb6, 0x2b, 0xad, 0x77, 0x92, 0xe8, 0x68, - 0xf5, 0x51, 0xd1, 0xf4, 0x7c, 0x0a, 0x0a, 0xe9, 0x36, 0xdc, 0x7f, 0x50, 0x22, 0xe7, 0x57, 0x3e, - 0xe8, 0x45, 0xfe, 0x46, 0xd0, 0xb6, 0x97, 0x02, 0x1d, 0x52, 0xec, 0x37, 0x23, 0x3f, 0xb9, 0xa9, - 0xa7, 0x43, 0x0d, 0xa9, 0xa1, 0x20, 0x60, 0x60, 0x21, 0xa3, 0xc7, 0xfb, 0x5e, 0xc4, 0x66, 0x46, - 0xcc, 0x82, 0x62, 0xf4, 0x86, 0x04, 0x80, 0xc6, 0xb1, 0x18, 0xbd, 0x92, 0xcb, 0xe8, 0xff, 0xac, - 0x44, 0x26, 0x57, 0x83, 0x4e, 0x2b, 0xe8, 0xec, 0x39, 0x5f, 0x21, 0x53, 0x07, 0x7e, 0xe2, 0xb5, - 0xbc, 0xc4, 0x13, 0x3c, 0xfe, 0xfc, 0xf1, 0x13, 0x75, 0x6b, 0xe7, 0x1b, 0x7e, 0x33, 0xb9, 0x41, - 0xeb, 0xe8, 0x61, 0xe8, 0x32, 0x50, 0xd4, 0x9c, 0x77, 0xc8, 0x44, 0xe2, 0x45, 0x7b, 0x7e, 0x22, - 0x58, 0xfb, 0x62, 0x11, 0xba, 0x80, 0xd3, 0xea, 0x77, 0x9a, 0xbe, 0x16, 0x02, 0xdb, 0x8c, 0x08, - 0x08, 0x62, 0x6e, 0x93, 0xcc, 0xac, 0x79, 0x5d, 0x6f, 0x27, 0x68, 0xd3, 0x35, 0xee, 0xc7, 0xce, - 0xe7, 0x48, 0xc5, 0x6b, 0xb5, 0xd8, 0x47, 0xae, 0xae, 0x9e, 0xa7, 0x15, 0x2a, 0x2b, 0xad, 0x16, - 0x65, 0x31, 0xa2, 0xb0, 0x8e, 0x00, 0x31, 0x9c, 0x0b, 0x64, 0xac, 0x15, 0x85, 0x5d, 0xda, 0x1b, - 0xc4, 0x7c, 0x04, 0xb9, 0xb1, 0x46, 0x7f, 0xa7, 0x50, 0x19, 0x8e, 0xfb, 0xaf, 0xca, 0xc4, 0x59, - 0xf3, 0xbb, 0xfb, 0x1b, 0x0d, 0xeb, 0x5b, 0x3e, 0x4f, 0x27, 0x2b, 0xa4, 0x0c, 0x1f, 0x46, 0xb1, - 0x68, 0x70, 0x06, 0xa7, 0xf8, 0x86, 0x28, 0x03, 0x05, 0x75, 0x9e, 0x22, 0x63, 0x5d, 0xcd, 0xc2, - 0x33, 0x92, 0xfd, 0x19, 0xf3, 0x32, 0x08, 0x62, 0xf4, 0x62, 0x3f, 0x62, 0x9f, 0xcb, 0xc0, 0x78, - 0x87, 0x96, 0x01, 0x83, 0x68, 0xce, 0x41, 0x9e, 0x62, 0xf2, 0xab, 0x8f, 0x73, 0x10, 0x02, 0x06, - 0x96, 0xf3, 0x93, 0x94, 0x73, 0xd8, 0x2f, 0x3a, 0x91, 0x8b, 0xe3, 0x6c, 0xde, 0x73, 0x18, 0x7f, - 0x2b, 0x6c, 0x7a, 0xed, 0xf4, 0xe4, 0xcf, 0x32, 0x4e, 0x93, 0x84, 0x40, 0xd3, 0xb4, 0x38, 0x6d, - 0x22, 0x97, 0xd3, 0xfe, 0x7a, 0x89, 0xce, 0x23, 0xe5, 0x34, 0x3f, 0x3a, 0x85, 0xed, 0x61, 0xb8, - 0x45, 0xf0, 0xfb, 0xd8, 0xb5, 0xf0, 0xa0, 0x4b, 0xb7, 0xd1, 0x4e, 0xb2, 0x16, 0xd2, 0xd5, 0xc0, - 0xb6, 0x8c, 0xcf, 0x93, 0xb1, 0x04, 0x9b, 0xe2, 0xdd, 0x7a, 0x4e, 0x7e, 0x16, 0x6c, 0x80, 0x72, - 0xca, 0x23, 0xfd, 0x35, 0x58, 0x17, 0x58, 0x1d, 0xe7, 0x4d, 0x32, 0x11, 0x27, 0x5e, 0xd2, 0x8b, - 0x45, 0x47, 0x9f, 0x96, 0x1d, 0x6d, 0xb0, 0x52, 0x5a, 0x7f, 0x5e, 0x55, 0xe3, 0x45, 0x20, 0x2a, - 0x38, 0x2f, 0x90, 0xc9, 0x03, 0x3f, 0x8e, 0xbd, 0x3d, 0x5f, 0x30, 0xc4, 0xbc, 0xa8, 0x3b, 0x79, - 0x83, 0x17, 0x83, 0x84, 0x3b, 0x9f, 0x25, 0xe3, 0x7e, 0x14, 0x85, 0x91, 0xe0, 0x88, 0x59, 0x81, - 0x38, 0xbe, 0x8e, 0x85, 0xc0, 0x61, 0xee, 0x0f, 0x4a, 0x64, 0x5e, 0xf5, 0x95, 0xb7, 0x35, 0xc2, + // 9482 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x24, 0x47, + 0x76, 0xd8, 0xcd, 0x0c, 0xbf, 0xa6, 0xf8, 0xb9, 0xbd, 0xbb, 0x12, 0xc5, 0x3b, 0x7d, 0xf5, 0x49, + 0x3a, 0x69, 0xa5, 0xe5, 0x6a, 0x57, 0x92, 0x25, 0xdd, 0x5d, 0xee, 0x44, 0x72, 0xc8, 0x5d, 0x7a, + 0xb9, 0xbb, 0xa3, 0x37, 0xd4, 0xee, 0x9d, 0x4f, 0x39, 0xab, 0x39, 0xd3, 0x24, 0xfb, 0x76, 0x38, + 0x3d, 0xea, 0xee, 0xe1, 0x2e, 0x75, 0x31, 0xe0, 0x18, 0x8e, 0x83, 0xc0, 0x8e, 0x73, 0x3f, 0xe2, + 0x24, 0x40, 0x12, 0xc0, 0x09, 0x10, 0x20, 0x1f, 0x88, 0xe3, 0x73, 0x2e, 0xb6, 0x2e, 0x31, 0x8c, + 0x00, 0x71, 0x0e, 0x87, 0x24, 0x0e, 0x64, 0x20, 0x89, 0x0d, 0x1b, 0xb8, 0xe4, 0x6c, 0x04, 0x41, + 0x80, 0xfc, 0x08, 0x90, 0x5f, 0x11, 0x8c, 0x24, 0xf5, 0xea, 0xbb, 0x7a, 0x7a, 0xd8, 0x3d, 0xd4, + 0x0e, 0xb3, 0x36, 0xfc, 0x83, 0x00, 0xa7, 0xde, 0xab, 0x57, 0x1f, 0xfd, 0xea, 0xd5, 0x7b, 0xaf, + 0x5e, 0xbd, 0x22, 0x2f, 0xdd, 0x7d, 0x23, 0x5e, 0x0e, 0xc2, 0x4b, 0x77, 0x7b, 0x3b, 0x7e, 0xd4, + 0xf1, 0x13, 0x3f, 0xbe, 0xd4, 0xbd, 0xbb, 0x77, 0xc9, 0xeb, 0x06, 0x97, 0x0e, 0x2f, 0x5f, 0xda, + 0xf3, 0x3b, 0x7e, 0xe4, 0x25, 0x7e, 0x6b, 0xb9, 0x1b, 0x85, 0x49, 0xe8, 0x7c, 0x86, 0x63, 0x2f, + 0x6b, 0xec, 0x65, 0x8a, 0xbd, 0x4c, 0xb1, 0x97, 0x0f, 0x2f, 0x2f, 0x5d, 0xdc, 0x0b, 0x92, 0xfd, + 0xde, 0xce, 0x72, 0x33, 0x3c, 0xb8, 0xb4, 0x17, 0xee, 0x85, 0x97, 0x58, 0xa5, 0x9d, 0xde, 0x2e, + 0xfb, 0xc5, 0x7e, 0xb0, 0xff, 0x38, 0xb1, 0xa5, 0x2b, 0x83, 0x9b, 0x8e, 0xfc, 0x38, 0xec, 0x45, + 0x4d, 0x3f, 0xdd, 0x81, 0xa5, 0xd7, 0x06, 0xd7, 0xe9, 0x75, 0x0e, 0xfd, 0x28, 0x0e, 0xc2, 0x8e, + 0xdf, 0xea, 0xab, 0x76, 0x31, 0xbb, 0x5a, 0xd4, 0xeb, 0x24, 0xc1, 0x41, 0x7f, 0x2b, 0x97, 0xb3, + 0xd1, 0x7b, 0x49, 0xd0, 0xbe, 0x14, 0x74, 0x92, 0x38, 0x89, 0xd2, 0x55, 0xdc, 0xdf, 0x29, 0x91, + 0xa7, 0x56, 0xee, 0x34, 0xd6, 0xdb, 0x5e, 0x9c, 0x04, 0xcd, 0xd5, 0x76, 0xd8, 0xbc, 0xdb, 0x48, + 0xc2, 0xc8, 0xbf, 0x1d, 0xb6, 0x7b, 0x07, 0x7e, 0x83, 0x8d, 0xc6, 0x79, 0x89, 0x4c, 0x1d, 0xb2, + 0xdf, 0x9b, 0xb5, 0xc5, 0xd2, 0x53, 0xa5, 0xe7, 0xab, 0xab, 0x0b, 0xdf, 0xff, 0xc1, 0x93, 0x9f, + 0xfa, 0x83, 0x1f, 0x3c, 0x39, 0x75, 0x5b, 0x94, 0x83, 0xc2, 0x70, 0x9e, 0x23, 0x13, 0xbb, 0xf1, + 0xf6, 0x51, 0xd7, 0x5f, 0x2c, 0x33, 0xdc, 0x39, 0x81, 0x3b, 0xb1, 0xd1, 0xc0, 0x52, 0x10, 0x50, + 0xe7, 0x12, 0xa9, 0x76, 0xbd, 0x28, 0x09, 0x12, 0x3a, 0xf6, 0xc5, 0x0a, 0x45, 0x1d, 0x5f, 0x3d, + 0x23, 0x50, 0xab, 0x75, 0x09, 0x00, 0x8d, 0x83, 0xdd, 0x88, 0x7c, 0xaf, 0x75, 0xab, 0xd3, 0x3e, + 0x5a, 0x1c, 0xa3, 0xf8, 0x53, 0xba, 0x1b, 0x20, 0xca, 0x41, 0x61, 0xb8, 0x1f, 0x96, 0xc9, 0xd4, + 0xca, 0xee, 0x6e, 0xd0, 0x09, 0x92, 0x23, 0xe7, 0x3d, 0x32, 0xd3, 0x09, 0x5b, 0xbe, 0xfc, 0xcd, + 0x46, 0x31, 0x7d, 0xe5, 0xc2, 0xf2, 0x71, 0x7c, 0xb1, 0x7c, 0xd3, 0xa8, 0xb1, 0xba, 0x40, 0x9b, + 0x99, 0x31, 0x4b, 0xc0, 0xa2, 0xe8, 0xbc, 0x4b, 0xa6, 0xbb, 0x61, 0x4b, 0x35, 0x50, 0x66, 0x0d, + 0xbc, 0x70, 0x7c, 0x03, 0x75, 0x5d, 0x61, 0x75, 0x9e, 0xd2, 0x9f, 0x36, 0x0a, 0xc0, 0x24, 0xe7, + 0xb4, 0xc9, 0x3c, 0xfe, 0xa4, 0x9f, 0x5d, 0xb5, 0x50, 0x61, 0x2d, 0x5c, 0xcc, 0x6f, 0xc1, 0xa8, + 0xb4, 0x7a, 0x96, 0xb6, 0x32, 0x9f, 0x2a, 0x84, 0x34, 0x69, 0xf7, 0x03, 0x32, 0xb7, 0x92, 0x24, + 0x5e, 0x73, 0xdf, 0x6f, 0xf1, 0xef, 0xeb, 0xbc, 0x4a, 0xc6, 0x3a, 0xde, 0x81, 0x2f, 0xbe, 0xfe, + 0x53, 0x62, 0xda, 0xc7, 0x6e, 0xd2, 0xb2, 0x8f, 0x7f, 0xf0, 0xe4, 0xc2, 0x3b, 0x9d, 0xe0, 0xfd, + 0x9e, 0xe0, 0x19, 0x2c, 0x03, 0x86, 0xed, 0x5c, 0x21, 0xa4, 0xe5, 0x1f, 0x06, 0x4d, 0xbf, 0xee, + 0x25, 0xfb, 0x82, 0x1b, 0x1c, 0x51, 0x97, 0xd4, 0x14, 0x04, 0x0c, 0x2c, 0xf7, 0xa7, 0x4a, 0xa4, + 0xba, 0x72, 0x18, 0x06, 0x2d, 0xda, 0xcb, 0xd8, 0xe9, 0xd1, 0x71, 0x47, 0xfe, 0xae, 0x1f, 0xa9, + 0x22, 0xda, 0x85, 0x0a, 0x1d, 0xf7, 0x95, 0x9c, 0x71, 0xdb, 0x95, 0xd6, 0x3b, 0x49, 0x74, 0xb4, + 0xfa, 0xa8, 0x68, 0x7a, 0x3e, 0x05, 0x85, 0x74, 0x1b, 0xee, 0x3f, 0x2c, 0x91, 0xf3, 0x2b, 0x1f, + 0xf4, 0x22, 0x7f, 0x23, 0x68, 0xdb, 0x4b, 0x81, 0x0e, 0x29, 0xf6, 0x9b, 0x91, 0x9f, 0xdc, 0xd4, + 0xd3, 0xa1, 0x86, 0xd4, 0x50, 0x10, 0x30, 0xb0, 0x90, 0xd1, 0xe3, 0x7d, 0x2f, 0x62, 0x33, 0x23, + 0x66, 0x41, 0x31, 0x7a, 0x43, 0x02, 0x40, 0xe3, 0x58, 0x8c, 0x5e, 0xc9, 0x65, 0xf4, 0x7f, 0x5e, + 0x22, 0x93, 0xab, 0x41, 0xa7, 0x15, 0x74, 0xf6, 0x9c, 0xaf, 0x90, 0xa9, 0x03, 0x3f, 0xf1, 0x5a, + 0x5e, 0xe2, 0x09, 0x1e, 0x7f, 0xfe, 0xf8, 0x89, 0xba, 0xb5, 0xf3, 0x0d, 0xbf, 0x99, 0xdc, 0xa0, + 0x75, 0xf4, 0x30, 0x74, 0x19, 0x28, 0x6a, 0xce, 0x3b, 0x64, 0x22, 0xf1, 0xa2, 0x3d, 0x3f, 0x11, + 0xac, 0x7d, 0xb1, 0x08, 0x5d, 0xc0, 0x69, 0xf5, 0x3b, 0x4d, 0x5f, 0x0b, 0x81, 0x6d, 0x46, 0x04, + 0x04, 0x31, 0xb7, 0x49, 0x66, 0xd6, 0xbc, 0xae, 0xb7, 0x13, 0xb4, 0xe9, 0x1a, 0xf7, 0x63, 0xe7, + 0x73, 0xa4, 0xe2, 0xb5, 0x5a, 0xec, 0x23, 0x57, 0x57, 0xcf, 0xd3, 0x0a, 0x95, 0x95, 0x56, 0x8b, + 0xb2, 0x18, 0x51, 0x58, 0x47, 0x80, 0x18, 0xce, 0x05, 0x32, 0xd6, 0x8a, 0xc2, 0x2e, 0xed, 0x0d, + 0x62, 0x3e, 0x82, 0xdc, 0x58, 0xa3, 0xbf, 0x53, 0xa8, 0x0c, 0xc7, 0xfd, 0xd7, 0x65, 0xe2, 0xac, + 0xf9, 0xdd, 0xfd, 0x8d, 0x86, 0xf5, 0x2d, 0x9f, 0xa7, 0x93, 0x15, 0x52, 0x86, 0x0f, 0xa3, 0x58, + 0x34, 0x38, 0x83, 0x53, 0x7c, 0x43, 0x94, 0x81, 0x82, 0x3a, 0x4f, 0x91, 0xb1, 0xae, 0x66, 0xe1, + 0x19, 0xc9, 0xfe, 0x8c, 0x79, 0x19, 0x04, 0x31, 0x7a, 0xb1, 0x1f, 0xb1, 0xcf, 0x65, 0x60, 0xbc, + 0x43, 0xcb, 0x80, 0x41, 0x34, 0xe7, 0x20, 0x4f, 0x31, 0xf9, 0xd5, 0xc7, 0x39, 0x08, 0x01, 0x03, + 0xcb, 0xf9, 0x71, 0xca, 0x39, 0xec, 0x17, 0x9d, 0xc8, 0xc5, 0x71, 0x36, 0xef, 0x39, 0x8c, 0xbf, + 0x15, 0x36, 0xbd, 0x76, 0x7a, 0xf2, 0x67, 0x19, 0xa7, 0x49, 0x42, 0xa0, 0x69, 0x5a, 0x9c, 0x36, + 0x91, 0xcb, 0x69, 0x7f, 0xa3, 0x44, 0xe7, 0x91, 0x72, 0x9a, 0x1f, 0x9d, 0xc2, 0xf6, 0x30, 0xdc, + 0x22, 0xf8, 0x7d, 0xec, 0x5a, 0x78, 0xd0, 0xa5, 0xdb, 0x68, 0x27, 0x59, 0x0b, 0xe9, 0x6a, 0x60, + 0x5b, 0xc6, 0xe7, 0xc9, 0x58, 0x82, 0x4d, 0xf1, 0x6e, 0x3d, 0x27, 0x3f, 0x0b, 0x36, 0x40, 0x39, + 0xe5, 0x91, 0xfe, 0x1a, 0xac, 0x0b, 0xac, 0x8e, 0xf3, 0x26, 0x99, 0x88, 0x13, 0x2f, 0xe9, 0xc5, + 0xa2, 0xa3, 0x4f, 0xcb, 0x8e, 0x36, 0x58, 0x29, 0xad, 0x3f, 0xaf, 0xaa, 0xf1, 0x22, 0x10, 0x15, + 0x9c, 0x17, 0xc8, 0xe4, 0x81, 0x1f, 0xc7, 0xde, 0x9e, 0x2f, 0x18, 0x62, 0x5e, 0xd4, 0x9d, 0xbc, + 0xc1, 0x8b, 0x41, 0xc2, 0x9d, 0xcf, 0x92, 0x71, 0x3f, 0x8a, 0xc2, 0x48, 0x70, 0xc4, 0xac, 0x40, + 0x1c, 0x5f, 0xc7, 0x42, 0xe0, 0x30, 0xf7, 0xb7, 0x4b, 0x64, 0x5e, 0xf5, 0x95, 0xb7, 0x35, 0xc2, 0xa5, 0xde, 0x22, 0xa4, 0x29, 0x07, 0x16, 0xb3, 0x05, 0x36, 0x7d, 0xe5, 0xe5, 0xe3, 0x69, 0xf7, 0x4f, 0xa4, 0x6e, 0x43, 0x15, 0xc5, 0x60, 0xd0, 0x75, 0xbf, 0x5f, 0x22, 0x67, 0x53, 0x63, 0xda, - 0x0a, 0xe2, 0xc4, 0xf9, 0xd3, 0x7d, 0xe3, 0xba, 0x74, 0x4c, 0xdb, 0x86, 0xf6, 0xb4, 0x8c, 0xd5, + 0x0a, 0xe2, 0xc4, 0xf9, 0xb3, 0x7d, 0xe3, 0xba, 0x74, 0x4c, 0xdb, 0x86, 0xf6, 0xb4, 0x8c, 0xd5, 0xd9, 0xf0, 0x14, 0xa3, 0xc8, 0x12, 0x63, 0x70, 0x40, 0xc6, 0x83, 0xc4, 0x3f, 0x90, 0xe3, 0xba, - 0x58, 0x70, 0x5c, 0xbc, 0x83, 0xfa, 0xf3, 0x6c, 0x22, 0x0d, 0xe0, 0xa4, 0xdc, 0xff, 0x49, 0xf7, + 0x58, 0x70, 0x5c, 0xbc, 0x83, 0xfa, 0xf3, 0x6c, 0x22, 0x0d, 0xe0, 0xa4, 0xdc, 0xff, 0x45, 0xf7, 0x2c, 0x3a, 0xca, 0xdd, 0x60, 0xef, 0x86, 0xd7, 0x1d, 0xe1, 0x87, 0x69, 0x50, 0x99, 0x87, 0x54, 0x79, 0xd7, 0x2f, 0xe7, 0x75, 0x5d, 0x74, 0x68, 0xb9, 0x46, 0xeb, 0xf0, 0x1d, 0x50, 0xc9, 0x25, 0x2c, 0x02, 0x46, 0x6c, 0xe9, 0x75, 0x52, 0x55, 0x08, 0xce, 0x02, 0xa9, 0xdc, 0xf5, 0xb9, 0x7a, 0x54, 0x05, 0xfc, 0xd7, 0x39, 0x47, 0xc6, 0x0f, 0xbd, 0x76, 0x4f, 0xac, 0x56, 0xe0, 0x3f, 0x3e, - 0x5f, 0x7e, 0xa3, 0xe4, 0xfe, 0x46, 0x89, 0x9c, 0x53, 0x8d, 0x5c, 0xf7, 0x8f, 0x1a, 0x7e, 0x9b, - 0x76, 0x39, 0x8c, 0x9c, 0x9f, 0xa5, 0x80, 0x76, 0x86, 0x1c, 0x12, 0xb3, 0x71, 0x12, 0x09, 0xf6, + 0x5f, 0x7e, 0xa3, 0xe4, 0xfe, 0x7a, 0x89, 0x9c, 0x53, 0x8d, 0x5c, 0xf7, 0x8f, 0x1a, 0x7e, 0x9b, + 0x76, 0x39, 0x8c, 0x9c, 0x9f, 0xa6, 0x80, 0x76, 0x86, 0x1c, 0x12, 0xb3, 0x71, 0x12, 0x09, 0xf6, 0x19, 0xd1, 0xf1, 0x73, 0x59, 0x50, 0xc8, 0x6c, 0xcd, 0x79, 0x9c, 0x8f, 0x85, 0x2f, 0xde, 0x69, 0x41, 0xa0, 0x42, 0x3b, 0xca, 0x06, 0x86, 0xdd, 0x9f, 0x55, 0xdd, 0x3f, 0x0d, 0xce, 0xdb, 0xb2, - 0x39, 0xef, 0x73, 0x05, 0x3f, 0xdf, 0x00, 0x9e, 0xfb, 0xef, 0x54, 0x45, 0x51, 0x38, 0x96, 0x38, + 0x39, 0xef, 0x73, 0x05, 0x3f, 0xdf, 0x00, 0x9e, 0xfb, 0x1f, 0x54, 0x45, 0x51, 0x38, 0x96, 0x38, 0x7e, 0x48, 0xa6, 0x7f, 0xb8, 0xe1, 0xd2, 0xcf, 0xb2, 0x1d, 0xe2, 0x7e, 0x3a, 0x60, 0xb8, 0xbf, - 0x5d, 0x65, 0x4b, 0x2c, 0xf1, 0x02, 0x6a, 0xbf, 0xe0, 0x6e, 0x6b, 0xa8, 0xa3, 0x33, 0xa6, 0x3a, + 0x55, 0x65, 0x4b, 0x2c, 0xf1, 0x02, 0x6a, 0xbf, 0xe0, 0x6e, 0x6b, 0xa8, 0xa3, 0x33, 0xa6, 0x3a, 0x2a, 0x54, 0x4f, 0x2a, 0x56, 0x83, 0x03, 0x94, 0xbf, 0x65, 0x5b, 0xac, 0x6e, 0x62, 0x21, 0x70, 0x98, 0xf3, 0x2c, 0x99, 0xa4, 0x36, 0xdf, 0x81, 0xd7, 0x69, 0x51, 0x31, 0x8d, 0xfb, 0xff, 0x34, 0x8a, 0xe8, 0x35, 0x5e, 0x04, 0x12, 0xe6, 0x7c, 0x86, 0x8c, 0x51, 0x65, 0x25, 0xa6, 0x12, 0x1a, @@ -37609,15 +37645,15 @@ var fileDescriptorGenerated = []byte{ 0xb7, 0xbf, 0x0a, 0x58, 0xee, 0xee, 0x90, 0x39, 0xb5, 0xac, 0xd9, 0xec, 0x38, 0x4f, 0x92, 0x71, 0x94, 0x5c, 0xd2, 0x14, 0xa9, 0x62, 0x17, 0x50, 0xa0, 0xd1, 0x25, 0xce, 0xca, 0x59, 0x17, 0x82, 0x0f, 0xfc, 0xd5, 0x23, 0x3a, 0x6a, 0x26, 0xd6, 0x2a, 0x46, 0x17, 0x24, 0x00, 0x34, 0x8e, 0xfb, - 0xbf, 0xf9, 0x0e, 0xa7, 0x65, 0x47, 0x01, 0xb9, 0x49, 0xb5, 0xee, 0xfd, 0x30, 0x4e, 0x10, 0x9b, + 0x7f, 0xf8, 0x0e, 0xa7, 0x65, 0x47, 0x01, 0xb9, 0x49, 0xb5, 0xee, 0xfd, 0x30, 0x4e, 0x10, 0x9b, 0xb5, 0x31, 0xae, 0xb7, 0xb4, 0x6b, 0xa2, 0x1c, 0x14, 0x86, 0xf3, 0x05, 0x32, 0xdb, 0x34, 0x1b, 0x10, 0x6e, 0x9c, 0xf3, 0xa2, 0x8a, 0xdd, 0x3a, 0xd8, 0xb8, 0xce, 0x1b, 0x64, 0x8a, 0xf9, 0xa0, 0x9a, 0x61, 0x5b, 0x28, 0xbf, 0x72, 0x9b, 0x99, 0xaa, 0x8b, 0xf2, 0x8f, 0x8d, 0xff, 0x41, 0x61, 0xa3, 0x09, 0x81, 0x5d, 0xd8, 0xac, 0x0b, 0x71, 0xab, 0x4c, 0x88, 0x6b, 0xac, 0x14, 0x04, 0xd4, - 0xfd, 0x95, 0xb2, 0x31, 0xcb, 0xa8, 0xc1, 0xf9, 0xce, 0x4f, 0x90, 0xc9, 0x7b, 0x1e, 0xd5, 0x40, + 0xfd, 0xe5, 0xb2, 0x31, 0xcb, 0xa8, 0xc1, 0xf9, 0xce, 0x8f, 0x91, 0xc9, 0x7b, 0x1e, 0xd5, 0x40, 0x3b, 0x7b, 0x62, 0x3b, 0x7c, 0xa5, 0xa0, 0xec, 0x65, 0xd5, 0xef, 0xf0, 0xaa, 0x7c, 0x9f, 0x10, 0x3f, 0x40, 0x12, 0x44, 0xda, 0x51, 0xaf, 0xd3, 0x41, 0xda, 0xe5, 0xe1, 0x69, 0x03, 0xaf, 0xca, - 0x69, 0x8b, 0x1f, 0x20, 0x09, 0x3a, 0xbb, 0x84, 0xc8, 0xd5, 0xe7, 0xb7, 0x84, 0xef, 0xe7, 0xc7, + 0x69, 0x8b, 0x1f, 0x20, 0x09, 0x3a, 0xbb, 0x84, 0xc8, 0xd5, 0xe7, 0xb7, 0x84, 0xef, 0xe7, 0x47, 0x86, 0x21, 0xbf, 0xad, 0x6a, 0xaf, 0xce, 0xe1, 0xce, 0xa4, 0x7f, 0x83, 0x41, 0xd9, 0xed, 0x31, 0xad, 0xa2, 0xbf, 0x5b, 0x54, 0xa2, 0x52, 0xe6, 0xf6, 0x22, 0x8a, 0xb3, 0x92, 0x88, 0xa9, 0x7b, 0xb1, 0xa0, 0x76, 0xb4, 0x1d, 0x1c, 0xf8, 0xe6, 0x6a, 0x11, 0x54, 0x40, 0x13, 0x74, 0xbf, 0x5b, @@ -37628,7 +37664,7 @@ var fileDescriptorGenerated = []byte{ 0x5d, 0x87, 0xa0, 0x7f, 0x2e, 0xde, 0x67, 0xe4, 0x27, 0x86, 0x27, 0xaf, 0xb4, 0x92, 0x0d, 0x45, 0x06, 0x0c, 0x92, 0xce, 0x6b, 0x64, 0x5a, 0xad, 0x50, 0x6a, 0xca, 0x4f, 0xb2, 0xd1, 0x9e, 0x15, 0x95, 0xa6, 0xb5, 0xb8, 0xaa, 0x81, 0x89, 0xe7, 0x7e, 0x23, 0xcd, 0x32, 0x62, 0x61, 0x18, 0x33, - 0x5c, 0x2a, 0x3a, 0xc3, 0xe5, 0xe3, 0x67, 0xd8, 0xfd, 0x8f, 0x15, 0x34, 0x84, 0x8d, 0xc6, 0x7a, + 0x5c, 0x2a, 0x3a, 0xc3, 0xe5, 0xe3, 0x67, 0xd8, 0xfd, 0x4f, 0x15, 0x34, 0x84, 0x8d, 0xc6, 0x7a, 0x71, 0x01, 0xa1, 0xf6, 0x36, 0x4a, 0x78, 0xda, 0x31, 0xb1, 0x2c, 0x5f, 0x1a, 0x66, 0xdd, 0x98, 0xfb, 0x01, 0x2e, 0x07, 0x4e, 0xc9, 0xd9, 0xa7, 0x3b, 0xb4, 0x17, 0x33, 0xb3, 0xd0, 0x17, 0xcb, 0x71, 0x38, 0xb2, 0x5a, 0xa5, 0xa6, 0x64, 0x8c, 0x0d, 0x97, 0xb7, 0xa2, 0x89, 0xe3, 0xf6, 0x84, @@ -37637,13 +37673,13 @@ var fileDescriptorGenerated = []byte{ 0x6a, 0x45, 0x79, 0xe2, 0x18, 0x45, 0x99, 0x7e, 0x21, 0xf6, 0x8f, 0xe2, 0x0a, 0xf5, 0x85, 0x36, 0x79, 0x31, 0x48, 0x78, 0x9a, 0x89, 0xa6, 0x0a, 0x32, 0xd1, 0x05, 0x32, 0x57, 0xf3, 0xfc, 0x83, 0xb0, 0xb3, 0xde, 0x69, 0x75, 0xc3, 0x80, 0x76, 0x6c, 0x91, 0x8c, 0xb1, 0x2d, 0x85, 0xaf, 0xf8, - 0x31, 0xa4, 0x00, 0x63, 0xa8, 0xec, 0xba, 0xff, 0x87, 0xee, 0x6b, 0x35, 0x6a, 0x6c, 0x26, 0xfe, + 0x31, 0xa4, 0x00, 0x63, 0xa8, 0xec, 0xba, 0xff, 0x97, 0xee, 0x6b, 0x35, 0x6a, 0x6c, 0x26, 0xfe, 0xad, 0x2e, 0xf3, 0x25, 0x38, 0x1b, 0xc4, 0xd9, 0x8b, 0xbc, 0xa6, 0x5f, 0xf7, 0xa3, 0x20, 0x6c, 0xd1, 0x1d, 0x3f, 0xec, 0x30, 0x4f, 0x31, 0xee, 0x91, 0xe8, 0x1a, 0x74, 0xae, 0xf6, 0x41, 0x21, 0xa3, 0x86, 0xd3, 0x22, 0xb3, 0xdd, 0xc8, 0xb7, 0x9c, 0x1f, 0xa5, 0x7c, 0xfd, 0xbc, 0x6e, 0x56, 0xe1, 0xea, 0xa3, 0x55, 0x04, 0x36, 0x51, 0xe7, 0x2d, 0xb2, 0x10, 0x46, 0xdd, 0x7d, 0xaf, 0x53, 0xf3, 0xbb, 0x7e, 0xa7, 0x85, 0x3a, 0xb3, 0xf0, 0x70, 0x9d, 0xa3, 0x75, 0x17, 0x6e, 0xa5, 0x60, - 0xd0, 0x87, 0xed, 0xfe, 0xa5, 0x32, 0x39, 0x5f, 0x0b, 0xef, 0x75, 0xee, 0x79, 0x51, 0x6b, 0xa5, + 0xd0, 0x87, 0xed, 0xfe, 0xe5, 0x32, 0x39, 0x5f, 0x0b, 0xef, 0x75, 0xee, 0x79, 0x51, 0x6b, 0xa5, 0xbe, 0xc9, 0x15, 0x61, 0xe6, 0x31, 0x94, 0x9e, 0xca, 0xd2, 0x40, 0x4f, 0xe5, 0xd7, 0xc8, 0xd4, 0x6e, 0xe0, 0xb7, 0x5b, 0xe8, 0x52, 0xe4, 0xc3, 0xbb, 0x5c, 0xc4, 0x3d, 0xb1, 0x81, 0x75, 0xa4, 0x89, 0xcf, 0x1d, 0xa5, 0x1b, 0x82, 0x0c, 0x28, 0x82, 0x4e, 0x8f, 0x2c, 0x48, 0x4d, 0x5f, 0x42, @@ -37652,27 +37688,27 @@ var fileDescriptorGenerated = []byte{ 0x8d, 0xcc, 0x49, 0x1d, 0x60, 0x92, 0xde, 0x22, 0xe7, 0xd6, 0x0f, 0xba, 0xc9, 0x11, 0x35, 0xe8, 0xac, 0x16, 0x5f, 0x27, 0x13, 0x07, 0x7e, 0x2b, 0xe8, 0x1d, 0x88, 0x8f, 0xf0, 0xa4, 0x14, 0x7b, 0x37, 0x58, 0x29, 0xd5, 0x69, 0x66, 0xf1, 0x88, 0x8d, 0x2e, 0x17, 0x5e, 0x00, 0x02, 0xdd, 0xfd, - 0x51, 0x89, 0xcc, 0x4b, 0xf6, 0x5f, 0x69, 0xb5, 0xe8, 0x28, 0x63, 0x67, 0x89, 0x94, 0x83, 0xae, + 0x61, 0x89, 0xcc, 0x4b, 0xf6, 0x5f, 0x69, 0xb5, 0xe8, 0x28, 0x63, 0x67, 0x89, 0x94, 0x83, 0xae, 0x20, 0x44, 0x04, 0xa1, 0x32, 0x55, 0x71, 0x68, 0x29, 0xd5, 0x37, 0xaa, 0xdc, 0x8b, 0xae, 0x3f, 0xe5, 0x90, 0x5e, 0x79, 0x66, 0x2b, 0x6c, 0x4b, 0x1a, 0xa0, 0xc9, 0x49, 0x3d, 0x90, 0x09, 0xd6, 0x8a, 0xed, 0xd3, 0xbd, 0x26, 0xca, 0x41, 0x61, 0xa0, 0x27, 0x1d, 0x0f, 0xc3, 0xd8, 0x01, 0x07, - 0xdf, 0x24, 0x19, 0x83, 0xdc, 0x14, 0x65, 0xa0, 0xa0, 0xee, 0xcf, 0x97, 0xc8, 0x8c, 0x1c, 0x63, + 0xdf, 0x24, 0x19, 0x83, 0xdc, 0x14, 0x65, 0xa0, 0xa0, 0xee, 0xcf, 0x95, 0xc8, 0x8c, 0x1c, 0x63, 0x41, 0x95, 0x14, 0x59, 0x5a, 0xab, 0xa3, 0x9a, 0xa5, 0x51, 0xa5, 0x64, 0x10, 0x4b, 0x93, 0xac, 0x0c, 0xa3, 0x49, 0xba, 0xdf, 0xa5, 0x1a, 0xa2, 0xec, 0x4e, 0xa3, 0xb7, 0x13, 0xfb, 0x89, 0xf3, 0x75, 0x52, 0xf5, 0xf8, 0xe4, 0xfb, 0x92, 0x69, 0x2e, 0xe6, 0xd9, 0xd3, 0xd6, 0x37, 0xd3, 0xdb, 0xf8, 0x8a, 0xa4, 0x03, 0x9a, 0xa4, 0x73, 0x48, 0xce, 0x74, 0xc2, 0x84, 0x49, 0x6f, 0x05, 0x2f, 0xe6, 0x8c, 0x4c, 0xb7, 0xf3, 0x98, 0x68, 0xe7, 0xcc, 0xcd, 0x34, 0x3d, 0xe8, 0x6f, 0x82, 0x5a, - 0x69, 0xc2, 0xe7, 0x50, 0x61, 0x6d, 0x5d, 0x28, 0xd6, 0xd6, 0x60, 0x97, 0x83, 0xfb, 0x9b, 0x25, + 0x69, 0xc2, 0xe7, 0x50, 0x61, 0x6d, 0x5d, 0x28, 0xd6, 0xd6, 0x60, 0x97, 0x83, 0xfb, 0x1b, 0x25, 0x52, 0x95, 0x68, 0xa3, 0x74, 0x47, 0xdf, 0x21, 0x93, 0x31, 0xfb, 0x34, 0x72, 0x9a, 0x5e, 0x2a, 0xd6, 0x75, 0xfe, 0x3d, 0xf5, 0x56, 0xc5, 0x7f, 0xc7, 0x20, 0xa9, 0x31, 0x0f, 0xa0, 0x1a, 0xc0, - 0xc3, 0xe7, 0x01, 0x54, 0x5d, 0x1b, 0x20, 0x7f, 0xfe, 0x5e, 0x89, 0x4c, 0x70, 0x57, 0x4e, 0x31, + 0xc3, 0xe7, 0x01, 0x54, 0x5d, 0x1b, 0x20, 0x7f, 0xfe, 0x7e, 0x89, 0x4c, 0x70, 0x57, 0x4e, 0x31, 0x7f, 0x98, 0xe1, 0xc6, 0xd5, 0x14, 0x6f, 0x63, 0xa1, 0xf0, 0xea, 0xd2, 0x99, 0xae, 0xb2, 0x7f, 0x36, 0xa2, 0xf0, 0x40, 0x88, 0xed, 0x0b, 0x45, 0x5c, 0x49, 0x5c, 0xf0, 0x71, 0x69, 0x72, 0x5b, - 0x12, 0x00, 0x4d, 0xcb, 0xfd, 0x8d, 0x0a, 0xae, 0x7a, 0x8d, 0x6a, 0x6d, 0x42, 0xa5, 0xd3, 0xd8, + 0x12, 0x00, 0x4d, 0xcb, 0xfd, 0xf5, 0x0a, 0xae, 0x7a, 0x8d, 0x6a, 0x6d, 0x42, 0xa5, 0xd3, 0xd8, 0x84, 0xca, 0x23, 0xdf, 0x84, 0x9c, 0xf7, 0xc9, 0x7c, 0xd3, 0x70, 0x87, 0xeb, 0xad, 0xef, 0x4a, 0x41, 0x4f, 0xaf, 0xe1, 0x43, 0xe7, 0xae, 0x8b, 0x35, 0x9b, 0x1c, 0xa4, 0xe9, 0x3b, 0x3e, 0x99, 0xe1, 0x67, 0x79, 0xa2, 0xbd, 0xb1, 0x5c, 0x9e, 0xe5, 0x5e, 0x12, 0x5e, 0x43, 0x35, 0xc6, 0x62, - 0x1b, 0x1a, 0x06, 0x21, 0xb0, 0xc8, 0xba, 0x7f, 0x65, 0x9c, 0x8c, 0xaf, 0x1f, 0x52, 0xcd, 0x63, + 0x1b, 0x1a, 0x06, 0x21, 0xb0, 0xc8, 0xba, 0x7f, 0x75, 0x9c, 0x8c, 0xaf, 0x1f, 0x52, 0xcd, 0x63, 0x84, 0xab, 0xfc, 0x80, 0xcc, 0x05, 0x9d, 0xc3, 0xb0, 0x7d, 0xe8, 0xb7, 0x38, 0xfc, 0x64, 0x3b, 0xda, 0x23, 0xa2, 0x91, 0xb9, 0x4d, 0x8b, 0x18, 0xa4, 0x88, 0x8f, 0xc2, 0xfa, 0x7b, 0x9b, 0x1a, 0x9e, 0x8c, 0x23, 0x84, 0xe9, 0x97, 0xe3, 0xd2, 0x64, 0x13, 0x2a, 0x56, 0x8e, 0xb6, 0x51, 0xb9, @@ -37690,54 +37726,54 @@ var fileDescriptorGenerated = []byte{ 0xeb, 0x58, 0x08, 0x1c, 0xe6, 0x7e, 0xbb, 0x44, 0xe6, 0x36, 0xd6, 0x2c, 0x3d, 0x79, 0x99, 0x10, 0xae, 0x6f, 0xde, 0xb9, 0x73, 0x53, 0x7a, 0x3d, 0xb9, 0x6b, 0x4a, 0x95, 0x82, 0x81, 0xe1, 0x3c, 0x46, 0x2a, 0xed, 0x5e, 0x47, 0xa8, 0x81, 0x93, 0xe8, 0x4d, 0xdd, 0xea, 0x75, 0x00, 0xcb, 0x8c, - 0x98, 0x82, 0x4a, 0xe1, 0x98, 0x82, 0xfc, 0x08, 0xb2, 0x5f, 0xac, 0x90, 0x85, 0x8d, 0xb6, 0x7f, + 0x98, 0x82, 0x4a, 0xe1, 0x98, 0x82, 0xfc, 0x08, 0xb2, 0x5f, 0xa8, 0x90, 0x85, 0x8d, 0xb6, 0x7f, 0xdf, 0xea, 0x35, 0x6d, 0xaa, 0x15, 0x05, 0x94, 0x79, 0xd2, 0x4e, 0x8d, 0x1a, 0x2b, 0x05, 0x01, 0x2d, 0x1c, 0xe6, 0x60, 0x85, 0x78, 0x54, 0x46, 0x1c, 0xe2, 0x91, 0x3b, 0x66, 0x67, 0x97, 0x4c, 0x86, 0xfc, 0xfb, 0x53, 0x29, 0x86, 0x8c, 0xfe, 0x85, 0xe3, 0x3b, 0x93, 0x9e, 0x9f, 0x65, 0xc1, 0x3d, 0xfc, 0xbc, 0x59, 0x09, 0x4b, 0x51, 0x0a, 0x92, 0xf8, 0xd2, 0xe7, 0xc9, 0x8c, 0x89, 0x39, 0xd4, 0xc1, 0xf3, 0x16, 0x39, 0xbb, 0x81, 0x81, 0x8a, 0xa9, 0x30, 0x94, 0xd7, 0xc8, 0x34, 0xae, - 0xd4, 0xd8, 0x8a, 0xcd, 0x52, 0x9e, 0x87, 0x9a, 0x06, 0x81, 0x89, 0xe7, 0xfe, 0xbb, 0x12, 0x79, + 0xd4, 0xd8, 0x8a, 0xcd, 0x52, 0x9e, 0x87, 0x9a, 0x06, 0x81, 0x89, 0xe7, 0xfe, 0xfb, 0x12, 0x79, 0xfc, 0xea, 0xda, 0x7a, 0x1d, 0xc5, 0x41, 0x9c, 0xd0, 0x05, 0x56, 0x0b, 0xe2, 0xbb, 0xe9, 0x4f, 0xde, 0x6d, 0x19, 0x34, 0xd5, 0xa7, 0xac, 0xd7, 0x18, 0x39, 0x01, 0x7d, 0x58, 0x02, 0x1f, 0xa9, 0x5e, 0x78, 0xf6, 0x6a, 0x40, 0xbf, 0x7d, 0x37, 0x4c, 0x87, 0xae, 0x45, 0xb4, 0x2c, 0xc6, 0x90, 0xa6, 0xa3, 0x74, 0xe8, 0x1a, 0x28, 0x08, 0x18, 0x58, 0xbc, 0xe5, 0xc3, 0x00, 0x05, 0xa5, 0x18, 0x94, 0xd1, 0x32, 0x2f, 0x07, 0x85, 0x81, 0x03, 0x6b, 0x05, 0x11, 0xd3, 0x29, 0x8e, 0xc4, 0x4a, - 0x54, 0x03, 0xab, 0x49, 0x00, 0x68, 0x1c, 0xf7, 0x6f, 0x96, 0xc8, 0xf9, 0xab, 0xed, 0x1e, 0x9d, + 0x54, 0x03, 0xab, 0x49, 0x00, 0x68, 0x1c, 0xf7, 0x6f, 0x95, 0xc8, 0xf9, 0xab, 0xed, 0x1e, 0x9d, 0xf6, 0x68, 0x37, 0xb6, 0x3a, 0xfb, 0x0a, 0xa9, 0xfa, 0x52, 0xff, 0x15, 0x7d, 0x55, 0x7b, 0x8b, - 0x52, 0x8c, 0x79, 0xdc, 0x9c, 0xc2, 0x2b, 0x10, 0xa6, 0x35, 0x5c, 0x50, 0xd1, 0x3f, 0x2f, 0x93, + 0x52, 0x8c, 0x79, 0xdc, 0x9c, 0xc2, 0x2b, 0x10, 0xa6, 0x35, 0x5c, 0x50, 0xd1, 0xbf, 0x28, 0x93, 0xd9, 0x6b, 0xdb, 0xdb, 0xf5, 0xab, 0x7e, 0x22, 0x64, 0x69, 0xbe, 0x7b, 0xa5, 0x6e, 0x58, 0xab, 0xd3, 0x57, 0x96, 0x07, 0xac, 0x1e, 0x0c, 0xc9, 0x5d, 0xe6, 0x21, 0xb9, 0xcb, 0x9b, 0x9d, 0xe4, 0x56, 0xd4, 0x48, 0x22, 0x74, 0xfe, 0x67, 0x59, 0xb7, 0x52, 0xde, 0x57, 0x06, 0xc9, 0x7b, 0x3a, 0x59, 0x13, 0x71, 0x73, 0xdf, 0x57, 0xc6, 0xf7, 0xa7, 0x95, 0x3a, 0xc1, 0x4a, 0xa9, 0xed, 0x5b, 0x7d, 0x07, 0x36, 0xf9, 0x0f, 0x10, 0xa8, 0x54, 0xf0, 0x4c, 0xef, 0x27, 0x49, 0xf7, 0x1a, 0x1d, 0x2c, 0x65, 0x7d, 0xb1, 0xda, 0x73, 0xb4, 0x39, 0x9c, 0x0c, 0x5e, 0x41, 0x2f, 0x2c, 0x5d, 0x16, - 0x83, 0x49, 0xd1, 0x6d, 0x10, 0xa2, 0x61, 0x0f, 0xc8, 0x44, 0x71, 0xff, 0x6c, 0x99, 0x4c, 0x5e, + 0x83, 0x49, 0xd1, 0x6d, 0x10, 0xa2, 0x61, 0x0f, 0xc8, 0x44, 0x71, 0xff, 0x7c, 0x99, 0x4c, 0x5e, 0xa3, 0xdb, 0x55, 0x9b, 0x92, 0xdc, 0x20, 0x63, 0x3e, 0xdd, 0xe6, 0x8a, 0x29, 0xa2, 0x7a, 0x43, 0xe4, 0x27, 0xf8, 0xf8, 0x1b, 0x58, 0x7d, 0x07, 0xc8, 0x24, 0xf6, 0xfb, 0xaa, 0x8a, 0x6d, 0x7c, 0x31, 0x7f, 0x16, 0x14, 0x4b, 0xf0, 0xdd, 0x54, 0x14, 0x81, 0x24, 0xc4, 0x7c, 0x33, 0xcd, 0x6e, 0x03, 0xa5, 0x54, 0x52, 0x2c, 0x54, 0x77, 0x7b, 0xad, 0xce, 0xd1, 0x05, 0x5d, 0xee, 0x9b, 0x91, 0x85, 0xa0, 0xc9, 0xb9, 0x6f, 0x90, 0x73, 0xec, 0x2c, 0x8e, 0xb2, 0x9b, 0xb5, 0x66, 0x72, 0x99, - 0xd3, 0xfd, 0xdb, 0x65, 0x72, 0x66, 0xb3, 0xb1, 0xd6, 0xb0, 0x5d, 0x64, 0x6f, 0x90, 0x19, 0xbe, + 0xd3, 0xfd, 0x3b, 0x65, 0x72, 0x66, 0xb3, 0xb1, 0xd6, 0xb0, 0x5d, 0x64, 0x6f, 0x90, 0x19, 0xbe, 0xcd, 0x22, 0xd3, 0x79, 0x6d, 0x51, 0x5f, 0x39, 0x8f, 0xb7, 0x0d, 0x18, 0x58, 0x98, 0x78, 0xc8, 0x19, 0xbc, 0xdf, 0x49, 0x87, 0xd8, 0x6c, 0xbe, 0x7d, 0x13, 0xb0, 0x1c, 0xc1, 0xb8, 0x63, 0x73, 0x11, 0xa7, 0xc0, 0x6a, 0xd7, 0xfe, 0x12, 0x55, 0xf9, 0xe3, 0x66, 0x1c, 0xd0, 0x05, 0x40, 0xd7, 0xbf, 0xd7, 0x94, 0xec, 0xab, 0x75, 0x78, 0xec, 0xaa, 0x82, 0x42, 0x0a, 0xdb, 0x90, 0xb7, 0xe3, 0x85, 0x77, 0xfd, 0xfc, 0x20, 0xc7, 0x2d, 0x52, 0x55, 0xc1, 0x28, 0x32, 0x86, 0xa8, 0x94, 0x1d, - 0x43, 0x94, 0x2f, 0x70, 0xdc, 0x7f, 0x44, 0x75, 0x54, 0x75, 0x18, 0x4f, 0x39, 0xad, 0x4a, 0x45, + 0x43, 0x94, 0x2f, 0x70, 0xdc, 0x7f, 0x4c, 0x75, 0x54, 0x75, 0x18, 0x4f, 0x39, 0xad, 0x4a, 0x45, 0x6b, 0xc2, 0x8e, 0x77, 0x04, 0xdb, 0x3e, 0x9b, 0xc3, 0x6b, 0x9c, 0xd7, 0x39, 0x37, 0xd4, 0x65, 0x5d, 0xd0, 0x64, 0x9c, 0x2d, 0x32, 0xd9, 0x8d, 0xfc, 0x46, 0xc2, 0x62, 0x61, 0x87, 0xa0, 0xc8, - 0xf8, 0xb6, 0xce, 0x6b, 0x82, 0x24, 0xe1, 0xfe, 0x5a, 0x89, 0x90, 0xad, 0xe0, 0x80, 0x6e, 0x1f, + 0xf8, 0xb6, 0xce, 0x6b, 0x82, 0x24, 0xe1, 0xfe, 0x6a, 0x89, 0x90, 0xad, 0xe0, 0x80, 0x6e, 0x1f, 0x5e, 0x67, 0xcf, 0x1f, 0xa1, 0xbd, 0x77, 0x93, 0x8c, 0xc5, 0x5d, 0xba, 0x78, 0x0b, 0x1d, 0xc9, - 0xe8, 0x1e, 0x35, 0x68, 0x1d, 0x3d, 0xd1, 0xf8, 0x0b, 0x18, 0x1d, 0xf7, 0x97, 0x09, 0x99, 0xd3, + 0xe8, 0x1e, 0x35, 0x68, 0x1d, 0x3d, 0xd1, 0xf8, 0x0b, 0x18, 0x1d, 0xf7, 0x97, 0x08, 0x99, 0xd3, 0x68, 0xa8, 0x70, 0x3b, 0x17, 0xad, 0xe0, 0xcf, 0xc7, 0x52, 0xc1, 0x9f, 0x55, 0x86, 0x6d, 0xc4, 0x7b, 0x26, 0xa4, 0x72, 0xe0, 0xdd, 0x17, 0xfa, 0xfd, 0x6b, 0x45, 0x3b, 0x84, 0x2d, 0x2d, 0xdf, 0xf0, 0xee, 0x73, 0x85, 0xe7, 0x45, 0xc9, 0x22, 0xb4, 0xe4, 0x63, 0x7e, 0xf0, 0xc2, 0xd6, 0x18, - 0x1a, 0x14, 0x3f, 0xf3, 0x9f, 0xf4, 0x6f, 0x26, 0xf6, 0xb0, 0x39, 0xd6, 0x6a, 0xd0, 0x11, 0x4e, + 0x1a, 0x14, 0x3f, 0xf5, 0x9f, 0xf5, 0x6f, 0x26, 0xf6, 0xb0, 0x39, 0xd6, 0x6a, 0xd0, 0x11, 0x4e, 0xb9, 0x21, 0x5b, 0x0d, 0x3a, 0xe9, 0x56, 0x83, 0x4e, 0x81, 0x56, 0x83, 0x0e, 0xc6, 0x88, 0x4d, 0xb6, 0xfc, 0x5d, 0xaf, 0xd7, 0x4e, 0x58, 0x58, 0xd3, 0xf4, 0x95, 0x37, 0x87, 0x6a, 0xba, 0xc6, - 0xeb, 0xf2, 0xe6, 0x2f, 0x49, 0x2d, 0x4f, 0x94, 0xe6, 0x76, 0x41, 0x36, 0xed, 0xfc, 0x12, 0xb5, + 0xeb, 0xf2, 0xe6, 0x2f, 0x49, 0x2d, 0x4f, 0x94, 0xe6, 0x76, 0x41, 0x36, 0xed, 0xfc, 0x22, 0xb5, 0x0a, 0xc4, 0xff, 0x18, 0x41, 0x44, 0xcd, 0x43, 0xb1, 0x0f, 0xbd, 0x75, 0x92, 0xde, 0x08, 0x12, - 0xbc, 0x53, 0x3f, 0x26, 0x85, 0x88, 0x0d, 0xcc, 0xed, 0x5b, 0xaa, 0x3f, 0xce, 0x87, 0x25, 0x72, + 0xbc, 0x53, 0x3f, 0x22, 0x85, 0x88, 0x0d, 0xcc, 0xed, 0x5b, 0xaa, 0x3f, 0xce, 0x87, 0x25, 0x72, 0x8e, 0x7e, 0x27, 0xde, 0x22, 0x2f, 0x03, 0x3c, 0xa8, 0x13, 0xa1, 0x5b, 0x1b, 0xc3, 0xf2, 0x49, 0x1f, 0x21, 0xde, 0xdd, 0x2f, 0xca, 0xe3, 0xc0, 0x2c, 0x94, 0xdc, 0x4e, 0x67, 0xf6, 0x70, 0xa9, 0x45, 0xa6, 0x24, 0x63, 0x66, 0xe8, 0xd7, 0xab, 0xe6, 0x76, 0x7b, 0xfc, 0x0a, 0x94, 0xae, 0xae, @@ -37746,59 +37782,59 @@ var fileDescriptorGenerated = []byte{ 0x3d, 0xf2, 0xd8, 0x40, 0xbe, 0x18, 0x5d, 0xb3, 0xe8, 0xbe, 0x37, 0x04, 0xe6, 0x69, 0xb8, 0x50, 0x6e, 0xd8, 0x2e, 0x94, 0xe7, 0x8b, 0x2e, 0x9d, 0x01, 0x7e, 0x94, 0x5d, 0xb3, 0xff, 0xb8, 0x13, 0x38, 0xdb, 0x64, 0xa2, 0x8d, 0x25, 0xf2, 0xdc, 0xe6, 0xa5, 0x61, 0x16, 0xa7, 0x56, 0x1f, 0x58, - 0x79, 0x0c, 0x82, 0x96, 0xfb, 0xeb, 0x25, 0x32, 0x76, 0x1a, 0xd3, 0x53, 0xb7, 0xa7, 0x67, 0x90, + 0x79, 0x0c, 0x82, 0x96, 0xfb, 0x6b, 0x25, 0x32, 0x76, 0x1a, 0xd3, 0x53, 0xb7, 0xa7, 0x67, 0x90, 0x12, 0x2a, 0x2e, 0xff, 0x2d, 0x83, 0x77, 0x6f, 0xfd, 0x3e, 0xb5, 0x57, 0x63, 0xa6, 0x2c, 0x66, - 0xce, 0xd0, 0x3f, 0x2c, 0x93, 0x69, 0x6c, 0x48, 0x7a, 0x74, 0xbe, 0x80, 0x1e, 0xbe, 0x1d, 0xbf, + 0xce, 0xd0, 0x3f, 0x2a, 0x93, 0x69, 0x6c, 0x48, 0x7a, 0x74, 0xbe, 0x80, 0x1e, 0xbe, 0x1d, 0xbf, 0x2d, 0x1d, 0xbf, 0x69, 0xc3, 0x6a, 0xcb, 0x04, 0x82, 0x8d, 0x8b, 0x95, 0x77, 0x4d, 0xbf, 0xb8, 0x50, 0x7a, 0x54, 0x65, 0xcb, 0x69, 0x0e, 0x36, 0x2e, 0xea, 0xf6, 0xf7, 0xbc, 0xa4, 0xb9, 0x2f, 0x8c, 0x2e, 0xd5, 0xdd, 0x3b, 0x58, 0x08, 0x1c, 0xe6, 0xac, 0x90, 0x79, 0xc9, 0xb1, 0xb7, 0xf9, 0xd4, 0x09, 0x85, 0x50, 0x5d, 0xdc, 0x02, 0x1b, 0x0c, 0x69, 0x7c, 0xe7, 0xf3, 0x64, 0x0e, 0x27, 0x27, 0xec, 0x25, 0x32, 0x08, 0x60, 0x9c, 0x05, 0x01, 0xb0, 0xa0, 0xcb, 0x6d, 0x0b, 0x02, 0x29, - 0x4c, 0xf7, 0x27, 0xc9, 0xd9, 0xad, 0xd0, 0x6b, 0xad, 0x7a, 0x6d, 0xaf, 0xd3, 0xf4, 0xa3, 0xcd, + 0x4c, 0xf7, 0xc7, 0xc9, 0xd9, 0xad, 0xd0, 0x6b, 0xad, 0x7a, 0x6d, 0xaf, 0xd3, 0xf4, 0xa3, 0xcd, 0xce, 0x5e, 0xee, 0x09, 0xac, 0x79, 0x4a, 0x5a, 0xce, 0x3b, 0x25, 0x75, 0x23, 0xe2, 0x98, 0x0d, 0x88, 0xf0, 0x95, 0x77, 0xc9, 0x64, 0xc0, 0x9b, 0x12, 0x5c, 0x7b, 0x39, 0xcf, 0xfd, 0xd3, 0xd7, 0x47, 0x23, 0x1c, 0x83, 0x17, 0x80, 0x24, 0x89, 0xb6, 0x42, 0x96, 0xbf, 0x28, 0xdf, 0x1c, 0x73, - 0xff, 0x42, 0x89, 0xcc, 0xdf, 0x4c, 0xdd, 0x98, 0xc2, 0xd8, 0x2a, 0x3f, 0xca, 0x70, 0x7e, 0x35, - 0x58, 0x29, 0x08, 0xe8, 0x03, 0x37, 0xc4, 0xff, 0x62, 0x99, 0x54, 0x59, 0x2c, 0x64, 0xd7, 0x6b, - 0x8e, 0x52, 0x29, 0xbd, 0x61, 0x29, 0xa5, 0x39, 0x66, 0xa0, 0xea, 0xd0, 0x20, 0x9d, 0x14, 0xef, - 0xcc, 0x89, 0x1b, 0x44, 0x85, 0x2c, 0x40, 0x4d, 0x90, 0x5f, 0x36, 0x99, 0xb3, 0x2f, 0x1c, 0xc9, - 0xdb, 0x45, 0xec, 0xdc, 0x52, 0xe1, 0x3e, 0x7c, 0xe7, 0x96, 0xaa, 0x6b, 0x03, 0xa4, 0x52, 0xdd, - 0xe8, 0x3d, 0x13, 0xdb, 0x5f, 0x66, 0x81, 0x6d, 0x5e, 0x3b, 0xf8, 0xc0, 0x57, 0x37, 0xf1, 0x9e, - 0x14, 0x71, 0x6a, 0xa2, 0xf4, 0x63, 0x26, 0x60, 0xc4, 0x2f, 0x7e, 0xc1, 0x52, 0x57, 0x71, 0xaf, - 0x51, 0x4e, 0xb5, 0xe7, 0xce, 0x79, 0x8d, 0x8c, 0x77, 0xf7, 0xbd, 0xd8, 0x4f, 0xc5, 0x60, 0x8c, - 0xd7, 0xb1, 0x90, 0x52, 0x9b, 0x53, 0x15, 0x58, 0x09, 0x70, 0x6c, 0xf7, 0x8f, 0xa8, 0xac, 0xc7, - 0xa8, 0x85, 0x11, 0xf2, 0xd8, 0x35, 0x8b, 0xc7, 0x9e, 0xcb, 0xbf, 0x82, 0x3c, 0x90, 0xbd, 0xea, - 0x29, 0xf6, 0x7a, 0xbe, 0x00, 0xad, 0xe3, 0x39, 0xeb, 0x80, 0x4c, 0xb3, 0x2b, 0xce, 0x22, 0xf8, - 0xe4, 0x15, 0xcb, 0x80, 0x7a, 0x32, 0x65, 0x40, 0xcd, 0x1b, 0xa8, 0x86, 0x19, 0xf5, 0x02, 0x99, - 0x14, 0xc1, 0x0e, 0xe9, 0x68, 0x3e, 0x81, 0x0b, 0x12, 0xee, 0xfe, 0x6a, 0x85, 0x58, 0x57, 0xaa, - 0x9d, 0xef, 0x95, 0x08, 0x55, 0x5a, 0xd8, 0x55, 0x82, 0x56, 0xad, 0x87, 0x1e, 0x31, 0x74, 0x5a, - 0xb5, 0x7a, 0x6d, 0xfa, 0xdf, 0xe6, 0x5e, 0x27, 0x54, 0xc5, 0xe8, 0xbd, 0xe9, 0x31, 0xff, 0x69, - 0xe1, 0x9b, 0xdc, 0xea, 0xb4, 0xf3, 0x0a, 0xed, 0xcb, 0x32, 0x0c, 0xd5, 0x0a, 0x0c, 0xd9, 0x2b, - 0xe7, 0x77, 0x4b, 0xe4, 0x12, 0xbf, 0x54, 0x5c, 0x7c, 0x24, 0x85, 0x0c, 0xcf, 0xba, 0x24, 0xaa, - 0xc9, 0x61, 0xf0, 0xe0, 0xea, 0xeb, 0x62, 0x92, 0x2f, 0xd5, 0x87, 0x6b, 0x15, 0x86, 0xed, 0xa6, - 0xfb, 0x2f, 0x2b, 0x74, 0xfd, 0xd2, 0xf9, 0xd4, 0x97, 0x2c, 0x5f, 0xb3, 0xd8, 0xe4, 0xe9, 0x14, - 0x9b, 0x9c, 0xb1, 0x90, 0x1f, 0xcc, 0xfd, 0xca, 0x84, 0x9c, 0xc1, 0x13, 0xc5, 0x6b, 0xbe, 0x17, - 0x25, 0x3b, 0xbe, 0xc7, 0x8e, 0x16, 0xc5, 0x22, 0x18, 0xea, 0xb8, 0x52, 0x45, 0xd0, 0x6c, 0xa5, - 0xa9, 0x41, 0x7f, 0x03, 0xce, 0x3d, 0xe2, 0xb0, 0x73, 0xcc, 0xc8, 0xa3, 0x4a, 0x17, 0x1b, 0x4c, - 0x20, 0x5c, 0xae, 0x43, 0x36, 0xbb, 0x24, 0x9a, 0x75, 0xb6, 0xfa, 0xc8, 0x41, 0x46, 0x13, 0xc6, - 0x61, 0xf5, 0x78, 0xd1, 0xc3, 0xea, 0x89, 0x9c, 0x40, 0xda, 0x9f, 0x2b, 0x91, 0xb3, 0xf8, 0x61, - 0xec, 0xa0, 0xcb, 0xd8, 0x09, 0xc9, 0x3c, 0x8e, 0xa0, 0xed, 0x27, 0xb2, 0x4c, 0xac, 0xb0, 0x1c, - 0x5d, 0xda, 0xa6, 0xa3, 0x35, 0xb6, 0xeb, 0x36, 0x31, 0x48, 0x53, 0x77, 0x7f, 0xb5, 0x44, 0x58, - 0x9c, 0xd8, 0x69, 0xec, 0x63, 0x57, 0xed, 0x7d, 0xcc, 0xcd, 0x17, 0x1a, 0x03, 0xb6, 0xb0, 0x57, - 0xc9, 0x02, 0x42, 0xeb, 0x51, 0x78, 0xff, 0x48, 0x2a, 0xd7, 0xf9, 0xde, 0xd7, 0x3f, 0x5f, 0xe2, - 0xe2, 0x4e, 0x69, 0xc5, 0xf7, 0x30, 0x14, 0x4c, 0xff, 0xc6, 0x85, 0x2c, 0x95, 0xc0, 0xe5, 0xe2, - 0x02, 0x8d, 0xad, 0x7f, 0x23, 0x16, 0x2c, 0x45, 0x10, 0xfa, 0xdb, 0x70, 0xff, 0x4e, 0x89, 0x3c, - 0x6a, 0x22, 0x1a, 0xd7, 0xb7, 0xf2, 0x5c, 0x9e, 0x35, 0x32, 0x15, 0x76, 0x31, 0x85, 0x88, 0xb2, - 0x00, 0x9e, 0x97, 0x33, 0x7e, 0x4b, 0x94, 0xd3, 0x95, 0x7b, 0xce, 0xa4, 0x2e, 0xcb, 0x41, 0xd5, - 0x74, 0x5c, 0x32, 0xc1, 0x2c, 0xd1, 0x58, 0x5c, 0xbc, 0x23, 0xc8, 0xcd, 0xcc, 0xd1, 0x4f, 0x17, - 0x39, 0x87, 0xb8, 0x7f, 0xb9, 0xc4, 0x67, 0xd9, 0xec, 0xba, 0xf3, 0x4d, 0xb2, 0x70, 0x80, 0xc6, - 0xc2, 0xfa, 0xfd, 0x2e, 0x6e, 0x21, 0xec, 0xa0, 0xb2, 0x54, 0x44, 0x70, 0x0e, 0x18, 0xee, 0xea, - 0xa2, 0xe8, 0xfd, 0xc2, 0x8d, 0x14, 0x59, 0xe8, 0x6b, 0xc8, 0xfd, 0x3d, 0xc1, 0xab, 0x4c, 0x6b, - 0xa1, 0x8b, 0xad, 0x1b, 0xb6, 0xd6, 0x36, 0x6b, 0x20, 0xe6, 0x4a, 0x2d, 0xb6, 0x3a, 0x2f, 0x06, - 0x09, 0xc7, 0x93, 0x37, 0x9f, 0x9a, 0x6a, 0x11, 0x55, 0x58, 0x36, 0x6b, 0xe9, 0x3c, 0x18, 0xeb, - 0x0a, 0x02, 0x06, 0x16, 0xd6, 0xe9, 0x46, 0xe1, 0x61, 0xd0, 0x62, 0x61, 0xd4, 0x15, 0xbb, 0x4e, - 0x5d, 0x41, 0xc0, 0xc0, 0x42, 0x13, 0xad, 0xd7, 0x89, 0xb9, 0x00, 0xf7, 0x76, 0x44, 0x96, 0x81, - 0x29, 0x6d, 0xa2, 0xbd, 0x63, 0x02, 0xc1, 0xc6, 0x75, 0x7f, 0x50, 0x25, 0x44, 0xab, 0x08, 0xe8, + 0xff, 0x52, 0x89, 0xcc, 0xdf, 0x4c, 0xdd, 0x98, 0xc2, 0xd8, 0x2a, 0x3f, 0xca, 0x70, 0x7e, 0x35, + 0x58, 0x29, 0x08, 0xe8, 0x03, 0x37, 0xc4, 0x7f, 0xb6, 0x4c, 0xaa, 0x2c, 0x16, 0xb2, 0xeb, 0x35, + 0x47, 0xa9, 0x94, 0xde, 0xb0, 0x94, 0xd2, 0x1c, 0x33, 0x50, 0x75, 0x68, 0x90, 0x4e, 0x8a, 0x77, + 0xe6, 0xc4, 0x0d, 0xa2, 0x42, 0x16, 0xa0, 0x26, 0xc8, 0x2f, 0x9b, 0xcc, 0xd9, 0x17, 0x8e, 0xe4, + 0xed, 0x22, 0x76, 0x6e, 0xa9, 0x70, 0x1f, 0xbe, 0x73, 0x4b, 0xd5, 0xb5, 0x01, 0x52, 0xa9, 0x6e, + 0xf4, 0x9e, 0x89, 0xed, 0x2f, 0xb3, 0xc0, 0x36, 0xaf, 0x1d, 0x7c, 0xe0, 0xab, 0x9b, 0x78, 0x4f, + 0x8a, 0x38, 0x35, 0x51, 0xfa, 0x31, 0x13, 0x30, 0xe2, 0x17, 0xbf, 0x60, 0xa9, 0xab, 0xb8, 0xd7, + 0x28, 0xa7, 0xda, 0x73, 0xe7, 0xbc, 0x46, 0xc6, 0xbb, 0xfb, 0x5e, 0xec, 0xa7, 0x62, 0x30, 0xc6, + 0xeb, 0x58, 0x48, 0xa9, 0xcd, 0xa9, 0x0a, 0xac, 0x04, 0x38, 0xb6, 0xfb, 0x47, 0x54, 0xd6, 0x63, + 0xd4, 0xc2, 0x08, 0x79, 0xec, 0x9a, 0xc5, 0x63, 0xcf, 0xe5, 0x5f, 0x41, 0x1e, 0xc8, 0x5e, 0xf5, + 0x14, 0x7b, 0x3d, 0x5f, 0x80, 0xd6, 0xf1, 0x9c, 0x75, 0x40, 0xa6, 0xd9, 0x15, 0x67, 0x11, 0x7c, + 0xf2, 0x8a, 0x65, 0x40, 0x3d, 0x99, 0x32, 0xa0, 0xe6, 0x0d, 0x54, 0xc3, 0x8c, 0x7a, 0x81, 0x4c, + 0x8a, 0x60, 0x87, 0x74, 0x34, 0x9f, 0xc0, 0x05, 0x09, 0x77, 0x7f, 0xa5, 0x42, 0xac, 0x2b, 0xd5, + 0xce, 0xf7, 0x4a, 0x84, 0x2a, 0x2d, 0xec, 0x2a, 0x41, 0xab, 0xd6, 0x43, 0x8f, 0x18, 0x3a, 0xad, + 0x5a, 0xbd, 0x36, 0xfd, 0x6f, 0x73, 0xaf, 0x13, 0xaa, 0x62, 0xf4, 0xde, 0xf4, 0x98, 0xff, 0xb4, + 0xf0, 0x4d, 0x6e, 0x75, 0xda, 0x79, 0x85, 0xf6, 0x65, 0x19, 0x86, 0x6a, 0x05, 0x86, 0xec, 0x95, + 0xf3, 0xbb, 0x25, 0x72, 0x89, 0x5f, 0x2a, 0x2e, 0x3e, 0x92, 0x42, 0x86, 0x67, 0x5d, 0x12, 0xd5, + 0xe4, 0x30, 0x78, 0x70, 0xf5, 0x75, 0x31, 0xc9, 0x97, 0xea, 0xc3, 0xb5, 0x0a, 0xc3, 0x76, 0xd3, + 0xfd, 0x57, 0x15, 0xba, 0x7e, 0xe9, 0x7c, 0xea, 0x4b, 0x96, 0xaf, 0x59, 0x6c, 0xf2, 0x74, 0x8a, + 0x4d, 0xce, 0x58, 0xc8, 0x0f, 0xe6, 0x7e, 0x65, 0x42, 0xce, 0xe0, 0x89, 0xe2, 0x35, 0xdf, 0x8b, + 0x92, 0x1d, 0xdf, 0x63, 0x47, 0x8b, 0x62, 0x11, 0x0c, 0x75, 0x5c, 0xa9, 0x22, 0x68, 0xb6, 0xd2, + 0xd4, 0xa0, 0xbf, 0x01, 0xe7, 0x1e, 0x71, 0xd8, 0x39, 0x66, 0xe4, 0x51, 0xa5, 0x8b, 0x0d, 0x26, + 0x10, 0x2e, 0xd7, 0x21, 0x9b, 0x5d, 0x12, 0xcd, 0x3a, 0x5b, 0x7d, 0xe4, 0x20, 0xa3, 0x09, 0xe3, + 0xb0, 0x7a, 0xbc, 0xe8, 0x61, 0xf5, 0x44, 0x4e, 0x20, 0xed, 0xcf, 0x94, 0xc8, 0x59, 0xfc, 0x30, + 0x76, 0xd0, 0x65, 0xec, 0x84, 0x64, 0x1e, 0x47, 0xd0, 0xf6, 0x13, 0x59, 0x26, 0x56, 0x58, 0x8e, + 0x2e, 0x6d, 0xd3, 0xd1, 0x1a, 0xdb, 0x75, 0x9b, 0x18, 0xa4, 0xa9, 0xbb, 0xbf, 0x52, 0x22, 0x2c, + 0x4e, 0xec, 0x34, 0xf6, 0xb1, 0xab, 0xf6, 0x3e, 0xe6, 0xe6, 0x0b, 0x8d, 0x01, 0x5b, 0xd8, 0xab, + 0x64, 0x01, 0xa1, 0xf5, 0x28, 0xbc, 0x7f, 0x24, 0x95, 0xeb, 0x7c, 0xef, 0xeb, 0x5f, 0x2c, 0x71, + 0x71, 0xa7, 0xb4, 0xe2, 0x7b, 0x18, 0x0a, 0xa6, 0x7f, 0xe3, 0x42, 0x96, 0x4a, 0xe0, 0x72, 0x71, + 0x81, 0xc6, 0xd6, 0xbf, 0x11, 0x0b, 0x96, 0x22, 0x08, 0xfd, 0x6d, 0xb8, 0x7f, 0xb7, 0x44, 0x1e, + 0x35, 0x11, 0x8d, 0xeb, 0x5b, 0x79, 0x2e, 0xcf, 0x1a, 0x99, 0x0a, 0xbb, 0x98, 0x42, 0x44, 0x59, + 0x00, 0xcf, 0xcb, 0x19, 0xbf, 0x25, 0xca, 0xe9, 0xca, 0x3d, 0x67, 0x52, 0x97, 0xe5, 0xa0, 0x6a, + 0x3a, 0x2e, 0x99, 0x60, 0x96, 0x68, 0x2c, 0x2e, 0xde, 0x11, 0xe4, 0x66, 0xe6, 0xe8, 0xa7, 0x8b, + 0x9c, 0x43, 0xdc, 0xbf, 0x52, 0xe2, 0xb3, 0x6c, 0x76, 0xdd, 0xf9, 0x26, 0x59, 0x38, 0x40, 0x63, + 0x61, 0xfd, 0x7e, 0x17, 0xb7, 0x10, 0x76, 0x50, 0x59, 0x2a, 0x22, 0x38, 0x07, 0x0c, 0x77, 0x75, + 0x51, 0xf4, 0x7e, 0xe1, 0x46, 0x8a, 0x2c, 0xf4, 0x35, 0xe4, 0xfe, 0x9e, 0xe0, 0x55, 0xa6, 0xb5, + 0xd0, 0xc5, 0xd6, 0x0d, 0x5b, 0x6b, 0x9b, 0x35, 0x10, 0x73, 0xa5, 0x16, 0x5b, 0x9d, 0x17, 0x83, + 0x84, 0xe3, 0xc9, 0x9b, 0x4f, 0x4d, 0xb5, 0x88, 0x2a, 0x2c, 0x9b, 0xb5, 0x74, 0x1e, 0x8c, 0x75, + 0x05, 0x01, 0x03, 0x0b, 0xeb, 0x74, 0xa3, 0xf0, 0x30, 0x68, 0xb1, 0x30, 0xea, 0x8a, 0x5d, 0xa7, + 0xae, 0x20, 0x60, 0x60, 0xa1, 0x89, 0xd6, 0xeb, 0xc4, 0x5c, 0x80, 0x7b, 0x3b, 0x22, 0xcb, 0xc0, + 0x94, 0x36, 0xd1, 0xde, 0x31, 0x81, 0x60, 0xe3, 0xba, 0xbf, 0x5d, 0x25, 0x44, 0xab, 0x08, 0xe8, 0x21, 0x9c, 0x6a, 0x7a, 0x54, 0x41, 0xe2, 0xe9, 0x52, 0x2a, 0xf9, 0xf7, 0x4d, 0x74, 0xe5, 0xe5, 0x35, 0x51, 0x91, 0xfb, 0xb6, 0x5e, 0x96, 0x0c, 0x22, 0x8b, 0x73, 0xfd, 0x59, 0xaa, 0x65, 0xe7, 0x5b, 0x25, 0x32, 0xed, 0xb5, 0xf1, 0x82, 0x69, 0xc2, 0x46, 0x54, 0x2e, 0xe2, 0xac, 0x34, 0x7a, @@ -37845,31 +37881,31 @@ var fileDescriptorGenerated = []byte{ 0x81, 0xdb, 0x78, 0x78, 0x0f, 0x05, 0xa6, 0x74, 0xba, 0xc7, 0x8b, 0xb3, 0x45, 0xb6, 0xf1, 0x5b, 0x56, 0x25, 0x43, 0x82, 0xd9, 0xc4, 0x20, 0x4d, 0x1d, 0x03, 0x6a, 0x0d, 0x3f, 0xea, 0x9c, 0x0e, 0xa8, 0xd5, 0x7e, 0x54, 0xd3, 0x6d, 0xba, 0xf4, 0x26, 0x99, 0x36, 0x66, 0x6e, 0x98, 0x10, 0xcc, - 0xa5, 0x2f, 0xd1, 0x6d, 0x3c, 0x35, 0x23, 0x43, 0x85, 0x70, 0xfe, 0x8f, 0x32, 0x99, 0xcf, 0x38, + 0xa5, 0x2f, 0xd1, 0x6d, 0x3c, 0x35, 0x23, 0x43, 0x85, 0x70, 0xfe, 0xcf, 0x32, 0x99, 0xcf, 0x38, 0x92, 0xb8, 0x1b, 0xb0, 0x20, 0x65, 0x4b, 0x76, 0x5d, 0xa7, 0x65, 0xc0, 0x20, 0xb6, 0x04, 0x2a, 0x17, 0x90, 0x40, 0x52, 0x1c, 0x56, 0x06, 0x8a, 0x43, 0x21, 0x75, 0xc6, 0x4e, 0x2e, 0x75, 0x6c, 0x31, 0x3f, 0x5e, 0x48, 0xcc, 0x3f, 0x00, 0x49, 0x65, 0xed, 0x14, 0x93, 0x05, 0x76, 0x8a, 0x8f, 0x4b, 0x64, 0xce, 0x66, 0xa1, 0x02, 0x33, 0xfe, 0xb0, 0x4e, 0xe0, 0x32, 0xb3, 0xa8, 0x92, 0x28, - 0x6c, 0xb7, 0xfd, 0x48, 0x04, 0x75, 0xcd, 0x09, 0x03, 0x49, 0x94, 0x82, 0x81, 0xe1, 0xfe, 0x52, + 0x6c, 0xb7, 0xfd, 0x48, 0x04, 0x75, 0xcd, 0x09, 0x03, 0x49, 0x94, 0x82, 0x81, 0xe1, 0xfe, 0x62, 0x99, 0x2c, 0xe8, 0x08, 0x5f, 0x91, 0xd4, 0x72, 0x74, 0x3e, 0xfe, 0x6d, 0xcb, 0xc7, 0x9f, 0x97, 0xab, 0x32, 0xd5, 0xaf, 0x81, 0xfe, 0xfe, 0x77, 0x53, 0xfe, 0xfe, 0x57, 0x87, 0xa4, 0x7b, 0xbc, - 0xef, 0xff, 0x1f, 0x97, 0xc9, 0xf9, 0x74, 0x95, 0xb5, 0xb6, 0x17, 0x1c, 0x8c, 0x70, 0x9e, 0xbe, + 0xef, 0xff, 0x9f, 0x94, 0xc9, 0xf9, 0x74, 0x95, 0xb5, 0xb6, 0x17, 0x1c, 0x8c, 0x70, 0x9e, 0xbe, 0x6a, 0xcd, 0xd3, 0xeb, 0xc3, 0x8d, 0x87, 0x75, 0x6e, 0xe0, 0x64, 0x79, 0xa9, 0xc9, 0x7a, 0xf3, - 0x24, 0xc4, 0x8f, 0x9f, 0xb1, 0x7f, 0x5f, 0x22, 0x8f, 0x65, 0xd6, 0x3b, 0x0d, 0x5f, 0xe6, 0x57, - 0x6c, 0x5f, 0xe6, 0x2b, 0x27, 0x18, 0xde, 0x00, 0xe7, 0xe6, 0x7f, 0x29, 0x0f, 0x18, 0x16, 0x73, + 0x24, 0xc4, 0x8f, 0x9f, 0xb1, 0xff, 0x50, 0x22, 0x8f, 0x65, 0xd6, 0x3b, 0x0d, 0x5f, 0xe6, 0x57, + 0x6c, 0x5f, 0xe6, 0x2b, 0x27, 0x18, 0xde, 0x00, 0xe7, 0xe6, 0x7f, 0x2d, 0x0f, 0x18, 0x16, 0x73, 0x7b, 0xdd, 0xa2, 0xfb, 0x68, 0x93, 0xee, 0x36, 0xf1, 0x0d, 0x6a, 0x57, 0xc9, 0xd3, 0xba, 0x8b, 0x6c, 0x23, 0xd4, 0xc5, 0x74, 0xed, 0x2f, 0xa5, 0x49, 0x68, 0x30, 0x98, 0x14, 0xec, 0xa4, 0x53, 0xe5, 0x11, 0x25, 0x9d, 0xa2, 0x32, 0xe6, 0x50, 0x99, 0xdb, 0x69, 0x6f, 0x9a, 0x61, 0x88, 0x1b, 0x58, 0x54, 0xdf, 0x41, 0xe5, 0x94, 0xc7, 0x3a, 0x8c, 0xe5, 0x2e, 0x38, 0xeb, 0x03, 0x9a, 0x81, 0x13, 0xfc, 0x9a, 0xa2, 0x72, 0x3d, 0x2a, 0x9a, 0xee, 0x77, 0x2a, 0xe4, 0xd3, 0xc7, 0xb0, 0x1d, 0xdd, 0x24, 0xac, 0x23, 0xcc, 0x17, 0xd3, 0x7e, 0xa6, 0xa5, 0xcc, 0xca, 0x96, 0xe3, 0x29, 0xf5, - 0xb1, 0xca, 0x9f, 0xf8, 0x63, 0xfd, 0xa2, 0xe9, 0x15, 0xe4, 0x31, 0x8b, 0x57, 0x4f, 0xbc, 0xb0, + 0xb1, 0xca, 0x9f, 0xf8, 0x63, 0xfd, 0x82, 0xe9, 0x15, 0xe4, 0x31, 0x8b, 0x57, 0x4f, 0xbc, 0xb0, 0x1e, 0x9c, 0x9b, 0xf0, 0x14, 0x3d, 0x18, 0x98, 0xa0, 0xf8, 0xe9, 0xcc, 0x41, 0x59, 0x91, 0x12, 0x78, 0xab, 0x0b, 0x0b, 0x8d, 0x6b, 0x23, 0xfa, 0x56, 0x97, 0x04, 0x80, 0xc6, 0xb1, 0x02, 0x22, - 0xca, 0xb9, 0x01, 0x11, 0xff, 0xba, 0x44, 0xce, 0xa5, 0x3b, 0x71, 0x1a, 0x52, 0xa7, 0x61, 0x4b, - 0x9d, 0xe5, 0xe1, 0xbe, 0xfd, 0x00, 0x81, 0xf3, 0x1f, 0x08, 0x79, 0xa4, 0x6f, 0xb3, 0xe2, 0xd3, - 0xf8, 0xd3, 0x25, 0x72, 0x66, 0x8f, 0x19, 0x0a, 0xc6, 0xe5, 0x1c, 0x31, 0xb0, 0x9c, 0x9b, 0x49, - 0xc7, 0xde, 0xe9, 0xe1, 0x66, 0x4f, 0x1f, 0x0a, 0xf4, 0x37, 0xe6, 0xfc, 0x3c, 0x9d, 0x6a, 0xef, + 0xca, 0xb9, 0x01, 0x11, 0xff, 0xa6, 0x44, 0xce, 0xa5, 0x3b, 0x71, 0x1a, 0x52, 0xa7, 0x61, 0x4b, + 0x9d, 0xe5, 0xe1, 0xbe, 0xfd, 0x00, 0x81, 0xf3, 0x1f, 0x09, 0x79, 0xa4, 0x6f, 0xb3, 0xe2, 0xd3, + 0xf8, 0x93, 0x25, 0x72, 0x66, 0x8f, 0x19, 0x0a, 0xc6, 0xe5, 0x1c, 0x31, 0xb0, 0x9c, 0x9b, 0x49, + 0xc7, 0xde, 0xe9, 0xe1, 0x66, 0x4f, 0x1f, 0x0a, 0xf4, 0x37, 0xe6, 0xfc, 0x1c, 0x9d, 0x6a, 0xef, 0x5e, 0xdc, 0x97, 0x21, 0x5d, 0xf0, 0xd1, 0x97, 0x72, 0x7c, 0x72, 0x39, 0xb9, 0xd5, 0x57, 0x17, 0x31, 0xe8, 0x33, 0x0b, 0x0b, 0x32, 0x5b, 0xa5, 0x4a, 0x00, 0x4f, 0xbf, 0x85, 0x6a, 0x5f, 0xa1, 0xeb, 0x62, 0x59, 0x57, 0x05, 0xb8, 0x4c, 0x92, 0x10, 0x50, 0x14, 0x9d, 0xf7, 0x48, 0x75, 0x4f, @@ -37888,167 +37924,167 @@ var fileDescriptorGenerated = []byte{ 0xe7, 0x33, 0x53, 0xc3, 0x73, 0x9e, 0x57, 0x20, 0xd0, 0x44, 0x9d, 0x1e, 0x99, 0x3d, 0x8c, 0xbb, 0xfb, 0xbe, 0x5c, 0xfa, 0x2c, 0x3d, 0xe2, 0xf4, 0x95, 0x2f, 0xe6, 0xe4, 0xbc, 0x14, 0x55, 0x82, 0x28, 0xe9, 0x79, 0xed, 0x3e, 0x09, 0xc6, 0xf2, 0x0c, 0xdd, 0x36, 0xc9, 0x82, 0xdd, 0x8a, 0xfb, - 0x7b, 0xe3, 0xfd, 0x9b, 0x04, 0xd3, 0xe1, 0x7e, 0xa1, 0xff, 0x6c, 0xef, 0xad, 0xe1, 0x6d, 0x94, + 0x7b, 0xe3, 0xfd, 0x9b, 0x04, 0xd3, 0xe1, 0x7e, 0xbe, 0xff, 0x6c, 0xef, 0xad, 0xe1, 0x6d, 0x94, 0x07, 0x78, 0xca, 0x47, 0x65, 0xec, 0x23, 0xdd, 0xcc, 0x1d, 0x40, 0x48, 0xd9, 0x61, 0x4d, 0x1d, 0x3e, 0x45, 0x2a, 0xa1, 0x65, 0x36, 0x1c, 0x06, 0xb4, 0x99, 0x56, 0x9b, 0x2a, 0x9f, 0x58, 0x6d, 0xba, 0x43, 0xe7, 0x1b, 0x77, 0x7a, 0x9d, 0xa3, 0x61, 0xc8, 0xb4, 0x06, 0x4c, 0x5e, 0xaf, 0x09, 0x12, 0xa0, 0x88, 0xe1, 0xc4, 0x3d, 0x9e, 0x1e, 0x04, 0xf8, 0x0c, 0x2c, 0x32, 0x71, 0x72, 0x7b, 0x7a, 0x43, 0xcc, 0xc4, 0xe3, 0xf5, 0xe3, 0x90, 0x3f, 0xce, 0x43, 0x80, 0xe3, 0x1b, 0x3b, 0x4d, - 0x35, 0xec, 0xef, 0x97, 0x32, 0x94, 0x06, 0xae, 0x38, 0x7f, 0xd1, 0x56, 0x9c, 0x9f, 0x4b, 0x2b, - 0xce, 0x7d, 0x66, 0xae, 0xa5, 0x33, 0x17, 0xcf, 0x46, 0x57, 0x34, 0x89, 0x84, 0xfb, 0xbf, 0x4a, + 0x35, 0xec, 0x1f, 0x94, 0x32, 0x94, 0x06, 0xae, 0x38, 0x7f, 0xd1, 0x56, 0x9c, 0x9f, 0x4b, 0x2b, + 0xce, 0x7d, 0x66, 0xae, 0xa5, 0x33, 0x17, 0xcf, 0x46, 0x57, 0x34, 0x89, 0x84, 0xfb, 0xbf, 0x4b, 0xa4, 0x52, 0x0f, 0x5b, 0x23, 0x34, 0xa4, 0xaf, 0x5a, 0x86, 0xf4, 0xb3, 0xb9, 0x8f, 0x82, 0x0c, 0x34, 0x9b, 0x6f, 0xa5, 0xcc, 0xe6, 0xcf, 0xe5, 0x93, 0x3a, 0xde, 0x48, 0xfe, 0xb0, 0x42, 0xcc, - 0x67, 0x4d, 0x9c, 0xdf, 0x3e, 0x49, 0x88, 0x5f, 0xa5, 0xd8, 0x4b, 0x27, 0xa2, 0x0d, 0x16, 0x10, + 0x67, 0x4d, 0x9c, 0xdf, 0x3a, 0x49, 0x88, 0x5f, 0xa5, 0xd8, 0x4b, 0x27, 0xa2, 0x0d, 0x16, 0x10, 0x23, 0xef, 0xff, 0xfc, 0xb1, 0x8d, 0xf4, 0xbb, 0xe3, 0x07, 0x7b, 0xfb, 0x89, 0xdf, 0x4a, 0x0f, - 0xec, 0xf4, 0x22, 0xfd, 0xfe, 0x6b, 0x89, 0xcc, 0xa7, 0x5a, 0x77, 0x0e, 0xb2, 0xae, 0x10, 0x9c, + 0xec, 0xf4, 0x22, 0xfd, 0xfe, 0x5b, 0x89, 0xcc, 0xa7, 0x5a, 0x77, 0x0e, 0xb2, 0xae, 0x10, 0x9c, 0xd4, 0x32, 0x3e, 0x93, 0x7b, 0xe9, 0x60, 0x99, 0x10, 0xe5, 0xcd, 0x95, 0xf6, 0x2b, 0xdb, 0xcb, 0x95, 0xbb, 0x37, 0x06, 0x03, 0x03, 0x73, 0x00, 0x24, 0x61, 0x37, 0x6c, 0x87, 0x7b, 0x47, 0xd7, 0x7d, 0x79, 0x07, 0x5d, 0xb9, 0xea, 0xb7, 0x35, 0x08, 0x4c, 0x3c, 0xcc, 0x4f, 0x94, 0x7e, 0x15, - 0xe7, 0xff, 0x33, 0xea, 0x1f, 0x1f, 0x46, 0xfd, 0x9d, 0x12, 0x59, 0xc0, 0xd6, 0x59, 0x3c, 0x83, - 0x8c, 0xc7, 0x53, 0x69, 0x9d, 0x4b, 0xc7, 0xa4, 0x75, 0xc6, 0x0b, 0x0d, 0x49, 0x2b, 0xec, 0xc9, - 0xe4, 0x25, 0x86, 0x14, 0xc3, 0x52, 0x10, 0x50, 0x81, 0x47, 0xfb, 0x24, 0x2e, 0x2b, 0x98, 0x78, - 0xb4, 0x14, 0x04, 0x54, 0x66, 0x7d, 0x1e, 0xcb, 0xce, 0xfa, 0xcc, 0x73, 0xbd, 0x88, 0x73, 0x74, - 0xb1, 0x33, 0x1b, 0xb9, 0x5e, 0xe4, 0x01, 0xbb, 0xc6, 0x71, 0xff, 0x69, 0x85, 0xcc, 0x60, 0x38, - 0x99, 0x8a, 0xb5, 0x7d, 0xd5, 0x8a, 0xb5, 0x7d, 0x2a, 0x15, 0x6b, 0xbb, 0x60, 0xe2, 0x3e, 0x98, - 0x50, 0x5b, 0x91, 0x15, 0x88, 0xe5, 0x25, 0x3f, 0x69, 0x98, 0xad, 0x95, 0x15, 0x48, 0x51, 0x02, - 0x9b, 0xf0, 0x9f, 0xa8, 0xf0, 0xda, 0x3f, 0x2a, 0x91, 0x39, 0xfa, 0x2d, 0x90, 0x45, 0xff, 0x24, - 0xf1, 0xa3, 0x99, 0x4b, 0x68, 0xe2, 0x98, 0x5c, 0x42, 0xbf, 0x52, 0x22, 0x18, 0x05, 0x79, 0x1a, - 0x1e, 0xa9, 0x0d, 0xdb, 0x23, 0xf5, 0x74, 0xae, 0xf0, 0x1d, 0xe0, 0x84, 0xfa, 0xf5, 0x0a, 0x99, - 0xc5, 0x2e, 0x87, 0x7b, 0xf2, 0x83, 0x59, 0x93, 0x53, 0x2a, 0x30, 0x39, 0x98, 0x8f, 0x20, 0x6c, - 0xb7, 0xc3, 0x7b, 0xe9, 0x8f, 0xb7, 0xc1, 0x4a, 0x41, 0x40, 0xd1, 0xd5, 0xd7, 0xc5, 0x9c, 0x29, - 0x61, 0x2f, 0x4e, 0xdf, 0x7d, 0xaa, 0x8b, 0x72, 0x50, 0x18, 0x74, 0xc5, 0xcf, 0xc4, 0x01, 0xb5, - 0x01, 0xe4, 0x41, 0xfb, 0x18, 0x3b, 0x68, 0xe7, 0x29, 0xdb, 0x8c, 0x72, 0xb0, 0xb0, 0xa8, 0xaa, - 0x59, 0x65, 0xbf, 0xd9, 0x1a, 0x3a, 0x41, 0x2a, 0x6a, 0x9e, 0x4f, 0x48, 0x52, 0x00, 0x4d, 0x0c, - 0x5d, 0xe9, 0x89, 0x8c, 0x09, 0x88, 0xc5, 0xd1, 0x9b, 0x52, 0x4e, 0x55, 0xb4, 0x00, 0xa6, 0x6e, - 0x52, 0xff, 0x3b, 0x2f, 0x62, 0xa6, 0xd2, 0xa0, 0xbd, 0x85, 0x4f, 0x1c, 0x88, 0xa8, 0x0a, 0x91, - 0x7a, 0x54, 0x14, 0x82, 0x86, 0xe3, 0x9e, 0xcf, 0x6e, 0x5e, 0xf2, 0x44, 0xf7, 0x53, 0x0c, 0x9b, - 0xed, 0xf9, 0x5b, 0xaa, 0x14, 0x0c, 0x0c, 0xf7, 0x15, 0xb6, 0x77, 0x0f, 0x19, 0x8b, 0xfd, 0x51, - 0x99, 0x38, 0x75, 0x16, 0x7b, 0x60, 0xbd, 0x05, 0xb0, 0x4f, 0xe6, 0x62, 0x6a, 0xac, 0x76, 0x7a, - 0xf7, 0x05, 0xa9, 0x62, 0xd1, 0xef, 0x8d, 0x75, 0xb3, 0x0e, 0xbf, 0x6d, 0x68, 0x97, 0x41, 0x8a, - 0x2e, 0x4e, 0x49, 0xd4, 0xeb, 0xac, 0xc4, 0xf8, 0x42, 0x98, 0xc8, 0xe6, 0xcf, 0xa6, 0x04, 0x64, - 0x21, 0x68, 0x38, 0xf2, 0x00, 0xfb, 0x71, 0x93, 0x4a, 0xa3, 0x30, 0x4c, 0x24, 0xd7, 0xb0, 0xd4, - 0xce, 0x46, 0x39, 0x58, 0x58, 0x98, 0x15, 0x39, 0xee, 0x75, 0xbb, 0x6d, 0x76, 0x42, 0xe2, 0xb5, - 0xaf, 0x46, 0x61, 0xaf, 0xcb, 0xc3, 0x4f, 0x45, 0x56, 0xe4, 0x46, 0x1f, 0x14, 0x32, 0x6a, 0xe0, - 0xa2, 0xdf, 0x8d, 0xd9, 0xff, 0xe2, 0x36, 0x25, 0xf7, 0xd3, 0x34, 0x58, 0x11, 0x48, 0x98, 0xdb, - 0x63, 0x5b, 0x15, 0xcb, 0xb2, 0x8e, 0x61, 0x51, 0x8e, 0x4f, 0x66, 0xbb, 0x6c, 0x3b, 0x92, 0xc7, - 0xb4, 0x85, 0xa6, 0x32, 0x15, 0xfd, 0xc0, 0xb3, 0x29, 0x9b, 0x64, 0xc0, 0xa6, 0xea, 0xfe, 0x5b, - 0xc2, 0x64, 0x8d, 0x38, 0x9c, 0x9a, 0x14, 0xb1, 0x8d, 0x42, 0x17, 0x7b, 0xa6, 0xc8, 0xb3, 0x22, - 0x5a, 0x8e, 0x8b, 0x48, 0x49, 0x90, 0x54, 0x9c, 0xaf, 0xf1, 0x73, 0x66, 0xb6, 0xbe, 0x8b, 0x3f, - 0xdc, 0xc3, 0xf1, 0xad, 0xa8, 0x5d, 0x41, 0x02, 0x0c, 0x72, 0xce, 0x16, 0x99, 0x15, 0xa9, 0xb8, - 0x85, 0xad, 0x5e, 0xb1, 0xec, 0xd5, 0x59, 0x30, 0x81, 0x1f, 0xa7, 0x0b, 0xc0, 0xae, 0xec, 0xec, - 0x91, 0xc7, 0x8d, 0xf7, 0x39, 0x32, 0x22, 0x74, 0xb8, 0xe0, 0x78, 0x1a, 0xbd, 0x00, 0xdb, 0xc7, - 0x21, 0xc2, 0xf1, 0x74, 0xe8, 0x24, 0x9f, 0xf7, 0x9a, 0x49, 0x70, 0xe8, 0xd7, 0x7c, 0xaf, 0x45, - 0xb5, 0x32, 0xdf, 0xbe, 0x6a, 0xfb, 0x18, 0x6d, 0xe0, 0xfc, 0x4a, 0x16, 0x02, 0x64, 0xd7, 0xa3, - 0xf6, 0x7a, 0xb5, 0xd5, 0x89, 0xc5, 0x1c, 0x4c, 0x58, 0x4f, 0x91, 0x54, 0x6b, 0x37, 0x1b, 0x6a, - 0xfc, 0xfa, 0x07, 0xe8, 0x0a, 0xce, 0xfb, 0xfc, 0x69, 0x4f, 0x65, 0x90, 0xf0, 0x27, 0x70, 0x5e, - 0x2f, 0x64, 0x02, 0x5b, 0xb7, 0x02, 0xb8, 0x1b, 0x4b, 0x45, 0xc2, 0x59, 0x17, 0x06, 0xac, 0x26, - 0x9c, 0x1f, 0xa7, 0x0b, 0xcb, 0x8f, 0xf0, 0xc9, 0xca, 0x95, 0x26, 0x4b, 0x56, 0xc8, 0x4e, 0x79, - 0xa6, 0xac, 0x70, 0x70, 0xa7, 0xd1, 0x87, 0x01, 0x19, 0xb5, 0x9c, 0x6b, 0x28, 0x71, 0xcc, 0x52, - 0x11, 0xb8, 0x28, 0x55, 0xbb, 0xc5, 0x9a, 0x8f, 0xd9, 0xc3, 0xf1, 0x21, 0x04, 0x9b, 0x22, 0xa4, - 0xea, 0xe1, 0xb6, 0xa2, 0x92, 0x30, 0x13, 0x3b, 0xdc, 0xae, 0x3f, 0x11, 0x33, 0x5a, 0x4a, 0xe8, - 0xf5, 0xbf, 0xe9, 0x27, 0xf8, 0x2e, 0x11, 0xf3, 0xd9, 0x4e, 0x19, 0x49, 0x9d, 0x34, 0x08, 0x4c, - 0x3c, 0xd4, 0x81, 0xd8, 0x61, 0xc1, 0x66, 0x8d, 0x79, 0x62, 0xa7, 0xf4, 0xda, 0xb9, 0xc6, 0x8b, - 0x41, 0xc2, 0x25, 0xea, 0x66, 0x7d, 0x8d, 0x79, 0x55, 0x53, 0xa8, 0xb4, 0x18, 0x24, 0x1c, 0x43, - 0xa5, 0xd2, 0x0f, 0xbe, 0xcc, 0x15, 0xf1, 0x70, 0xf7, 0x4b, 0xf0, 0x82, 0x6f, 0xbe, 0xdc, 0x27, - 0x0b, 0xea, 0xd1, 0x19, 0x9e, 0x35, 0x2f, 0x5e, 0x9c, 0x2f, 0xf2, 0xb0, 0x68, 0x66, 0xf2, 0x3d, - 0x15, 0xa9, 0xba, 0x99, 0xa2, 0x09, 0x7d, 0xad, 0x58, 0x57, 0xc6, 0x17, 0x72, 0x13, 0x6b, 0xe3, - 0x9b, 0x2f, 0xbd, 0x9d, 0x56, 0x78, 0x40, 0x45, 0x06, 0x7b, 0x76, 0xc6, 0x7c, 0x3a, 0x54, 0x02, - 0x40, 0xe3, 0x2c, 0x7d, 0x99, 0x9c, 0xe9, 0xe3, 0xe9, 0xa1, 0x22, 0xb3, 0x7e, 0x61, 0x8c, 0x54, - 0x95, 0x57, 0x87, 0xb6, 0x6f, 0xb9, 0xd2, 0x1e, 0x4b, 0xbb, 0xd2, 0xa6, 0x70, 0xe7, 0x35, 0xbd, - 0x67, 0x5f, 0xcf, 0x78, 0x3b, 0xf0, 0x42, 0xee, 0x47, 0x2c, 0x7e, 0xd3, 0x61, 0x88, 0x97, 0x15, - 0xb5, 0x5a, 0x3f, 0x76, 0xac, 0x5a, 0x5f, 0xf0, 0x35, 0x19, 0x54, 0xe0, 0xe9, 0xce, 0x43, 0xd1, - 0x52, 0x2f, 0x25, 0xd4, 0xb1, 0x10, 0x38, 0x8c, 0xe9, 0x5d, 0x28, 0x94, 0x99, 0xde, 0x35, 0x79, - 0x52, 0xbd, 0x4b, 0x52, 0x00, 0x4d, 0x0c, 0xf3, 0x86, 0x37, 0xed, 0x97, 0x2f, 0xd4, 0x05, 0x86, - 0x8b, 0x43, 0xbc, 0x3c, 0xd1, 0x33, 0xf2, 0x86, 0xaf, 0xa5, 0xe9, 0x41, 0x7f, 0x13, 0x78, 0xdb, - 0x7c, 0x5e, 0x31, 0x04, 0xdd, 0x81, 0x30, 0x6f, 0xcf, 0xe8, 0x1c, 0x99, 0xb7, 0x2c, 0x4b, 0xf5, - 0x01, 0xf8, 0x1f, 0x7f, 0xab, 0xc4, 0xfc, 0x8f, 0xdb, 0xfe, 0x41, 0xb7, 0x8d, 0xcf, 0x69, 0x8c, - 0xae, 0xeb, 0x5f, 0x23, 0x53, 0x89, 0x68, 0xa5, 0x58, 0xee, 0x62, 0xa3, 0x5b, 0xcc, 0x1f, 0xab, - 0x04, 0x81, 0x2c, 0x05, 0x45, 0xd0, 0xfd, 0x17, 0xfc, 0x2b, 0x48, 0xc8, 0x69, 0x58, 0x56, 0x37, - 0x6d, 0xcb, 0xea, 0x85, 0xc2, 0x83, 0x19, 0x60, 0x61, 0x7d, 0xc7, 0x1e, 0x02, 0x53, 0xd8, 0x1e, - 0x7e, 0x8f, 0xb8, 0x7b, 0x83, 0xd8, 0xaf, 0x79, 0x50, 0x75, 0x85, 0x45, 0x3c, 0x72, 0x89, 0x78, - 0x61, 0xc8, 0x68, 0x47, 0xf7, 0xd7, 0xca, 0xe4, 0x5c, 0xd6, 0xeb, 0xd4, 0x4e, 0x8b, 0xcc, 0x74, - 0x0d, 0xf5, 0xb9, 0xd8, 0xc5, 0x76, 0x53, 0xe1, 0xd6, 0xaa, 0x8b, 0x59, 0x0a, 0x16, 0x55, 0xcc, - 0x18, 0x8e, 0x6f, 0x6d, 0x2b, 0xf7, 0x4a, 0x79, 0x78, 0x11, 0xa5, 0x9a, 0x59, 0x37, 0x08, 0x81, - 0x45, 0x76, 0x04, 0xe9, 0xb5, 0xdd, 0xbf, 0x5b, 0x22, 0x8f, 0x0e, 0xb8, 0xfd, 0x8e, 0xcd, 0xdd, - 0x63, 0x5e, 0x48, 0xf1, 0x5a, 0x8c, 0x6a, 0x8e, 0xfb, 0x26, 0x41, 0x40, 0x9d, 0x1d, 0xbc, 0x54, - 0xa9, 0xde, 0xc3, 0x2c, 0x17, 0x39, 0x4a, 0xee, 0xbb, 0x69, 0x6b, 0x5c, 0xc2, 0x54, 0x2f, 0x60, - 0x1a, 0x54, 0xdd, 0x6f, 0x57, 0xc8, 0x38, 0x7f, 0xc5, 0xaf, 0x4e, 0x15, 0x20, 0x9e, 0x6c, 0x6f, - 0xb8, 0x5c, 0x7f, 0x5a, 0x4f, 0xe2, 0x05, 0x20, 0xc9, 0x38, 0x37, 0xc8, 0x59, 0xf4, 0xaf, 0x06, - 0x5e, 0xbb, 0xe6, 0xb7, 0xbd, 0x23, 0xa9, 0x78, 0xf3, 0x94, 0xc8, 0x32, 0xeb, 0xe7, 0xd9, 0xcd, - 0x7e, 0x14, 0xc8, 0xaa, 0x87, 0x77, 0x77, 0x52, 0xd9, 0x72, 0x78, 0xaa, 0x46, 0x75, 0x77, 0xe7, - 0xf8, 0x8c, 0x39, 0x78, 0x7d, 0xa9, 0xdb, 0x67, 0x62, 0x18, 0xcf, 0xbf, 0xd9, 0x66, 0x85, 0x8d, - 0x8b, 0x17, 0x7f, 0xe2, 0x1e, 0x3b, 0x23, 0xdd, 0xde, 0xa7, 0x96, 0xcc, 0x7e, 0xd8, 0x6e, 0x89, - 0x67, 0x8b, 0x94, 0x3a, 0xd5, 0x48, 0xc1, 0xa1, 0xaf, 0x06, 0x52, 0xd9, 0xf5, 0x82, 0x36, 0x65, - 0x6d, 0x4d, 0x65, 0xc2, 0xa6, 0xb2, 0x91, 0x82, 0x43, 0x5f, 0x0d, 0xcc, 0xf4, 0x3c, 0x9f, 0x0a, - 0x11, 0x41, 0x45, 0x2d, 0xf5, 0x3a, 0x38, 0xb3, 0xb7, 0x31, 0x78, 0x22, 0xe3, 0x85, 0xf0, 0xe7, - 0xec, 0xf7, 0x46, 0x75, 0xec, 0xd6, 0x6a, 0xcd, 0x7a, 0x49, 0xa9, 0x68, 0xa6, 0xea, 0xcf, 0x62, - 0x1a, 0x59, 0xf5, 0x30, 0x9e, 0xe2, 0x08, 0x4a, 0xae, 0x4e, 0x8b, 0x81, 0x01, 0xa9, 0x61, 0xce, - 0x1f, 0x1d, 0x4f, 0x79, 0xee, 0xc0, 0x6b, 0x85, 0xb1, 0xf1, 0xf2, 0x38, 0x5d, 0x64, 0x54, 0xe7, - 0x43, 0x97, 0x79, 0xda, 0x6f, 0x79, 0x9d, 0x17, 0x83, 0x84, 0xdb, 0xd9, 0xa8, 0x27, 0x47, 0x9c, - 0x8d, 0x7a, 0x2a, 0x37, 0xcc, 0xed, 0x97, 0xe9, 0x96, 0xc1, 0x12, 0x74, 0x89, 0x3b, 0x83, 0xe8, - 0x01, 0x1f, 0xdd, 0x96, 0x81, 0x2f, 0x6d, 0x61, 0x63, 0xe9, 0x04, 0xb4, 0xac, 0x07, 0xc0, 0x61, - 0xf8, 0x18, 0x2c, 0x6b, 0x1a, 0x3f, 0xdf, 0x0c, 0x4f, 0x25, 0xab, 0x1f, 0x53, 0x66, 0x41, 0xd4, - 0xe0, 0x77, 0xa9, 0x61, 0xca, 0x3a, 0xab, 0xdd, 0x14, 0x0f, 0x4b, 0x10, 0x75, 0x66, 0xe7, 0x1e, - 0x54, 0x10, 0x75, 0x36, 0xf1, 0xfc, 0x20, 0xea, 0xcc, 0x7a, 0x0f, 0x5f, 0x10, 0x75, 0x66, 0x37, - 0x07, 0x28, 0x3b, 0x1f, 0x95, 0x07, 0x0c, 0x8b, 0xa9, 0x3d, 0xcf, 0xe3, 0x2a, 0x60, 0xc0, 0x58, - 0xec, 0x58, 0x33, 0x7c, 0x05, 0xf0, 0x32, 0x50, 0x50, 0x27, 0x36, 0x82, 0x90, 0x79, 0x27, 0xd7, - 0x4f, 0xf8, 0x81, 0x97, 0x6d, 0x3f, 0x87, 0x79, 0x15, 0x2f, 0x15, 0x99, 0x8c, 0xe1, 0x2a, 0x4a, - 0x93, 0xad, 0x9c, 0x44, 0x93, 0x9d, 0xc9, 0xd6, 0x62, 0x97, 0xe8, 0x86, 0x71, 0x72, 0xcb, 0xf4, - 0xbf, 0x95, 0xc8, 0xa7, 0x8f, 0xe1, 0x30, 0x2e, 0x5a, 0xac, 0x49, 0x35, 0x44, 0x4b, 0xdf, 0xc4, - 0xd6, 0xc9, 0xb9, 0x5d, 0x6a, 0x96, 0x1f, 0xb1, 0xe3, 0x67, 0xbf, 0x25, 0x31, 0xc4, 0x5e, 0xaa, - 0x5e, 0xe7, 0xdb, 0xc8, 0xc0, 0x81, 0xcc, 0x9a, 0xe8, 0x15, 0x0a, 0x77, 0x58, 0x02, 0xb4, 0x96, - 0xbe, 0x29, 0xc8, 0xe6, 0xaf, 0xa2, 0xbd, 0x42, 0xb7, 0xfa, 0x30, 0x20, 0xa3, 0x96, 0xfb, 0xfb, - 0x25, 0x94, 0x23, 0x19, 0xaf, 0xd1, 0x58, 0x4f, 0xae, 0x1a, 0xc1, 0xc5, 0xfd, 0x4f, 0xae, 0x32, - 0x7f, 0x8f, 0x8d, 0xcb, 0xa7, 0x28, 0xd6, 0x81, 0x55, 0x56, 0x3a, 0x77, 0x11, 0x54, 0xaf, 0x30, - 0xf0, 0xe1, 0xa5, 0x56, 0x70, 0x18, 0xc4, 0x61, 0x54, 0xe0, 0x85, 0xc3, 0xbe, 0x60, 0x1d, 0xbd, - 0xcb, 0xd4, 0x38, 0x11, 0x90, 0xd4, 0xdc, 0xbf, 0x56, 0x26, 0xb3, 0xb2, 0xbd, 0xb7, 0x7b, 0x21, - 0x5b, 0x88, 0xa3, 0x92, 0x8e, 0x6f, 0x5b, 0xd2, 0xf1, 0x52, 0xb1, 0x9b, 0x05, 0xac, 0x53, 0x03, - 0xa5, 0xe2, 0x57, 0x53, 0x52, 0xf1, 0xf2, 0x30, 0x44, 0x73, 0xad, 0xd5, 0x33, 0x16, 0xfe, 0x43, - 0x94, 0x78, 0x32, 0x6b, 0x38, 0x03, 0xa4, 0xdf, 0xb7, 0xcb, 0xa9, 0x61, 0x30, 0xa9, 0xf7, 0x4d, - 0x32, 0xb6, 0xef, 0x45, 0x2d, 0xe1, 0x9a, 0x7f, 0x73, 0xc8, 0x4f, 0x41, 0xd5, 0xe3, 0xa8, 0xc5, - 0x65, 0xd7, 0x4b, 0x2a, 0x07, 0x3e, 0x2d, 0xca, 0x0d, 0x33, 0x64, 0x8d, 0x3a, 0x6f, 0x60, 0x8e, - 0xfc, 0xb0, 0xab, 0xa2, 0x48, 0x9e, 0xe2, 0xf9, 0xf1, 0xb1, 0x84, 0x52, 0x70, 0xec, 0xe6, 0xb0, - 0x18, 0x04, 0xfe, 0x92, 0x4f, 0xaa, 0xaa, 0xe9, 0x11, 0x06, 0xb4, 0xfd, 0xa8, 0x42, 0xce, 0x66, - 0xb0, 0x8a, 0xf3, 0x53, 0xd6, 0xac, 0x7d, 0x61, 0x68, 0x5e, 0xfb, 0x84, 0xf3, 0xf6, 0x53, 0x4c, - 0xc7, 0x6c, 0x09, 0xde, 0x38, 0x41, 0xf3, 0x54, 0x11, 0x4d, 0x37, 0x8f, 0x45, 0xf9, 0xcd, 0x63, - 0xb3, 0xa7, 0x34, 0xf9, 0xd8, 0x8c, 0xea, 0xe7, 0x08, 0xbf, 0xf1, 0xcf, 0x8e, 0x91, 0x73, 0x59, - 0xb7, 0x97, 0x9c, 0x9f, 0x2b, 0xa5, 0x52, 0xd7, 0x7e, 0x69, 0xf8, 0x2b, 0x50, 0x3c, 0x9f, 0xad, - 0xb8, 0x9e, 0xbc, 0x6c, 0x27, 0xb3, 0xcd, 0x9d, 0x6d, 0xd1, 0x3a, 0x0b, 0x0d, 0x8e, 0x78, 0x16, - 0x62, 0x29, 0x0f, 0xde, 0x3a, 0x41, 0x57, 0x44, 0x22, 0xe3, 0x38, 0x15, 0x1a, 0x2c, 0x8b, 0xf3, - 0x43, 0x83, 0x65, 0x1f, 0x96, 0xf6, 0x30, 0x85, 0xad, 0x1a, 0xd7, 0x08, 0x59, 0x20, 0xc0, 0x3d, - 0xc9, 0xe8, 0xf5, 0x08, 0xd9, 0xe0, 0x6f, 0x94, 0x48, 0xea, 0x78, 0x18, 0x4f, 0xac, 0x99, 0x29, - 0x97, 0x3a, 0xb1, 0x36, 0xac, 0x38, 0x8a, 0x41, 0xd5, 0x1d, 0x3f, 0x9d, 0x53, 0x15, 0x68, 0x19, - 0x30, 0x88, 0x7a, 0x31, 0xab, 0x32, 0xe8, 0xc5, 0x2c, 0xb4, 0x70, 0xda, 0xfe, 0xa1, 0x2f, 0xcd, - 0x4a, 0x25, 0xbc, 0xb7, 0xb0, 0x10, 0x38, 0xcc, 0xfd, 0x5e, 0x85, 0x4c, 0x70, 0xdb, 0x6d, 0x84, - 0xdb, 0x72, 0x5d, 0x98, 0x51, 0x85, 0xee, 0x11, 0xf1, 0xde, 0x2c, 0xa3, 0x9d, 0xc5, 0x19, 0x4a, - 0x8d, 0x4d, 0x9b, 0x5e, 0xce, 0xb2, 0x35, 0xfa, 0xa5, 0x54, 0x64, 0x14, 0xe1, 0x34, 0x8c, 0xb9, - 0xd8, 0x27, 0x24, 0x66, 0x8f, 0xae, 0x20, 0x0d, 0x91, 0x94, 0xe9, 0xd5, 0x42, 0xfd, 0x68, 0xa8, - 0x6a, 0xbc, 0x37, 0x3a, 0x1b, 0x8c, 0x02, 0x80, 0x41, 0x7b, 0xe9, 0x75, 0x52, 0x55, 0xc8, 0x79, - 0x1a, 0xef, 0x8c, 0xc9, 0x92, 0x7f, 0x8a, 0xcc, 0xa7, 0xda, 0x1a, 0x4a, 0x61, 0xfe, 0x2e, 0x55, - 0x26, 0xfa, 0x1e, 0xfb, 0xc3, 0xc4, 0x5e, 0xe7, 0xda, 0x19, 0x46, 0xbb, 0xf8, 0xc0, 0x27, 0x31, - 0xf7, 0xf5, 0x5b, 0xd6, 0x19, 0x50, 0xc8, 0x6c, 0x4d, 0xa6, 0x99, 0x2b, 0x67, 0xa7, 0x99, 0x63, - 0xef, 0x50, 0xf0, 0xbe, 0x9f, 0x86, 0x06, 0xb4, 0x69, 0x6b, 0x40, 0xcf, 0x14, 0x61, 0x83, 0x01, - 0xaa, 0xcf, 0x5f, 0x2d, 0x11, 0x87, 0x23, 0xa4, 0x1f, 0x5f, 0xe2, 0x4e, 0x10, 0x43, 0x67, 0xd7, - 0x7c, 0xa3, 0x20, 0x60, 0x60, 0x0d, 0x99, 0x76, 0x57, 0x3d, 0x5a, 0x32, 0xa0, 0x63, 0xbf, 0x55, - 0x21, 0xe9, 0x73, 0x51, 0xe7, 0x3d, 0x32, 0x83, 0x77, 0x30, 0x76, 0x82, 0x76, 0x90, 0x04, 0x7e, - 0x5c, 0xcc, 0xe7, 0xbc, 0x66, 0xd4, 0x10, 0x3e, 0x31, 0xa3, 0x04, 0x2c, 0x8a, 0x18, 0xcc, 0xd3, - 0x8d, 0xa8, 0xda, 0xdf, 0xf6, 0xf7, 0x98, 0x12, 0xa1, 0x2e, 0xea, 0xd7, 0x55, 0x29, 0x18, 0x18, - 0x19, 0x01, 0x38, 0x95, 0xd3, 0x08, 0xc0, 0x19, 0x1b, 0x32, 0x00, 0x67, 0xbc, 0x50, 0x00, 0x0e, - 0x90, 0x47, 0xa4, 0x2b, 0x0b, 0x7f, 0xe3, 0x5d, 0x20, 0x9e, 0x24, 0x4a, 0x84, 0x4d, 0x2d, 0xe1, - 0xdd, 0x14, 0xc8, 0xc4, 0x80, 0x01, 0x35, 0xdd, 0x1e, 0x39, 0xdb, 0xf0, 0xa3, 0x80, 0xe5, 0xf0, - 0x68, 0xe9, 0xe5, 0xf4, 0x75, 0xbc, 0x45, 0x6d, 0xaf, 0xe4, 0x21, 0xaf, 0x98, 0x18, 0x17, 0xa8, - 0xe5, 0xca, 0xd5, 0x24, 0xdd, 0x3f, 0x57, 0x26, 0x93, 0x22, 0xfe, 0x60, 0x84, 0xbb, 0xc2, 0x75, - 0xcb, 0x58, 0x7b, 0x21, 0x6f, 0x19, 0xb2, 0xee, 0x0c, 0x34, 0xd3, 0x1a, 0x29, 0x33, 0xed, 0xc5, - 0x62, 0xe4, 0x8e, 0x37, 0xd0, 0x7e, 0xb3, 0x4c, 0xb7, 0x6e, 0x3b, 0xee, 0x62, 0x74, 0xd3, 0xf1, - 0x15, 0x32, 0x19, 0x8b, 0xe0, 0x84, 0x42, 0x0f, 0x44, 0xa7, 0x3f, 0xa9, 0x7e, 0xfa, 0x58, 0x84, - 0x23, 0x48, 0x72, 0x99, 0xf1, 0x0f, 0x95, 0xd3, 0x88, 0x7f, 0x70, 0xbf, 0xc7, 0xe4, 0xa3, 0x39, - 0x81, 0xa7, 0x21, 0xe0, 0xdf, 0xb6, 0x45, 0xe9, 0x4b, 0x85, 0x58, 0x41, 0xf4, 0x6f, 0x80, 0x3c, - 0xfd, 0xb0, 0x44, 0xa6, 0x05, 0xe2, 0x69, 0x8c, 0xe0, 0xc7, 0xed, 0x11, 0x3c, 0x5b, 0x68, 0x04, - 0x03, 0xba, 0xfe, 0xb7, 0xca, 0xaa, 0xeb, 0x05, 0xdf, 0x60, 0x37, 0x5f, 0x58, 0x2f, 0x0f, 0xf3, - 0xc2, 0xba, 0x7a, 0xbd, 0xbd, 0x32, 0xf0, 0xf5, 0xf6, 0x1d, 0xf9, 0x0e, 0x28, 0x96, 0x89, 0x78, - 0xef, 0x61, 0xdf, 0xcd, 0xd3, 0x01, 0xa8, 0x8a, 0x12, 0x18, 0x54, 0x65, 0x6c, 0x14, 0x6b, 0x61, - 0xdc, 0xf6, 0x0d, 0xde, 0x14, 0xe5, 0xa0, 0x30, 0xdc, 0xd7, 0x99, 0x8c, 0x65, 0xd3, 0x33, 0x5c, - 0x54, 0xe9, 0x0f, 0xc6, 0xd5, 0xc4, 0x32, 0x8f, 0xc7, 0x4d, 0xf9, 0xe6, 0x7a, 0xa9, 0xc8, 0x11, + 0xe7, 0x4f, 0x19, 0xf5, 0x8f, 0x0f, 0xa3, 0xfe, 0x4e, 0x89, 0x2c, 0x60, 0xeb, 0x2c, 0x9e, 0x41, + 0xc6, 0xe3, 0xa9, 0xb4, 0xce, 0xa5, 0x63, 0xd2, 0x3a, 0xe3, 0x85, 0x86, 0xa4, 0x15, 0xf6, 0x64, + 0xf2, 0x12, 0x43, 0x8a, 0x61, 0x29, 0x08, 0xa8, 0xc0, 0xa3, 0x7d, 0x12, 0x97, 0x15, 0x4c, 0x3c, + 0x5a, 0x0a, 0x02, 0x2a, 0xb3, 0x3e, 0x8f, 0x65, 0x67, 0x7d, 0xe6, 0xb9, 0x5e, 0xc4, 0x39, 0xba, + 0xd8, 0x99, 0x8d, 0x5c, 0x2f, 0xf2, 0x80, 0x5d, 0xe3, 0xb8, 0xff, 0xac, 0x42, 0x66, 0x30, 0x9c, + 0x4c, 0xc5, 0xda, 0xbe, 0x6a, 0xc5, 0xda, 0x3e, 0x95, 0x8a, 0xb5, 0x5d, 0x30, 0x71, 0x1f, 0x4c, + 0xa8, 0xad, 0xc8, 0x0a, 0xc4, 0xf2, 0x92, 0x9f, 0x34, 0xcc, 0xd6, 0xca, 0x0a, 0xa4, 0x28, 0x81, + 0x4d, 0xf8, 0x4f, 0x54, 0x78, 0xed, 0x1f, 0x95, 0xc8, 0x1c, 0xfd, 0x16, 0xc8, 0xa2, 0x7f, 0x92, + 0xf8, 0xd1, 0xcc, 0x25, 0x34, 0x71, 0x4c, 0x2e, 0xa1, 0x5f, 0x2e, 0x11, 0x8c, 0x82, 0x3c, 0x0d, + 0x8f, 0xd4, 0x86, 0xed, 0x91, 0x7a, 0x3a, 0x57, 0xf8, 0x0e, 0x70, 0x42, 0xfd, 0x5a, 0x85, 0xcc, + 0x62, 0x97, 0xc3, 0x3d, 0xf9, 0xc1, 0xac, 0xc9, 0x29, 0x15, 0x98, 0x1c, 0xcc, 0x47, 0x10, 0xb6, + 0xdb, 0xe1, 0xbd, 0xf4, 0xc7, 0xdb, 0x60, 0xa5, 0x20, 0xa0, 0xe8, 0xea, 0xeb, 0x62, 0xce, 0x94, + 0xb0, 0x17, 0xa7, 0xef, 0x3e, 0xd5, 0x45, 0x39, 0x28, 0x0c, 0xba, 0xe2, 0x67, 0xe2, 0x80, 0xda, + 0x00, 0xf2, 0xa0, 0x7d, 0x8c, 0x1d, 0xb4, 0xf3, 0x94, 0x6d, 0x46, 0x39, 0x58, 0x58, 0x54, 0xd5, + 0xac, 0xb2, 0xdf, 0x6c, 0x0d, 0x9d, 0x20, 0x15, 0x35, 0xcf, 0x27, 0x24, 0x29, 0x80, 0x26, 0x86, + 0xae, 0xf4, 0x44, 0xc6, 0x04, 0xc4, 0xe2, 0xe8, 0x4d, 0x29, 0xa7, 0x2a, 0x5a, 0x00, 0x53, 0x37, + 0xa9, 0xff, 0x9d, 0x17, 0x31, 0x53, 0x69, 0xd0, 0xde, 0xc2, 0x27, 0x0e, 0x44, 0x54, 0x85, 0x48, + 0x3d, 0x2a, 0x0a, 0x41, 0xc3, 0x71, 0xcf, 0x67, 0x37, 0x2f, 0x79, 0xa2, 0xfb, 0x29, 0x86, 0xcd, + 0xf6, 0xfc, 0x2d, 0x55, 0x0a, 0x06, 0x86, 0xfb, 0x0a, 0xdb, 0xbb, 0x87, 0x8c, 0xc5, 0xfe, 0xa8, + 0x4c, 0x9c, 0x3a, 0x8b, 0x3d, 0xb0, 0xde, 0x02, 0xd8, 0x27, 0x73, 0x31, 0x35, 0x56, 0x3b, 0xbd, + 0xfb, 0x82, 0x54, 0xb1, 0xe8, 0xf7, 0xc6, 0xba, 0x59, 0x87, 0xdf, 0x36, 0xb4, 0xcb, 0x20, 0x45, + 0x17, 0xa7, 0x24, 0xea, 0x75, 0x56, 0x62, 0x7c, 0x21, 0x4c, 0x64, 0xf3, 0x67, 0x53, 0x02, 0xb2, + 0x10, 0x34, 0x1c, 0x79, 0x80, 0xfd, 0xb8, 0x49, 0xa5, 0x51, 0x18, 0x26, 0x92, 0x6b, 0x58, 0x6a, + 0x67, 0xa3, 0x1c, 0x2c, 0x2c, 0xcc, 0x8a, 0x1c, 0xf7, 0xba, 0xdd, 0x36, 0x3b, 0x21, 0xf1, 0xda, + 0x57, 0xa3, 0xb0, 0xd7, 0xe5, 0xe1, 0xa7, 0x22, 0x2b, 0x72, 0xa3, 0x0f, 0x0a, 0x19, 0x35, 0x70, + 0xd1, 0xef, 0xc6, 0xec, 0x7f, 0x71, 0x9b, 0x92, 0xfb, 0x69, 0x1a, 0xac, 0x08, 0x24, 0xcc, 0xed, + 0xb1, 0xad, 0x8a, 0x65, 0x59, 0xc7, 0xb0, 0x28, 0xc7, 0x27, 0xb3, 0x5d, 0xb6, 0x1d, 0xc9, 0x63, + 0xda, 0x42, 0x53, 0x99, 0x8a, 0x7e, 0xe0, 0xd9, 0x94, 0x4d, 0x32, 0x60, 0x53, 0x75, 0xff, 0x1d, + 0x61, 0xb2, 0x46, 0x1c, 0x4e, 0x4d, 0x8a, 0xd8, 0x46, 0xa1, 0x8b, 0x3d, 0x53, 0xe4, 0x59, 0x11, + 0x2d, 0xc7, 0x45, 0xa4, 0x24, 0x48, 0x2a, 0xce, 0xd7, 0xf8, 0x39, 0x33, 0x5b, 0xdf, 0xc5, 0x1f, + 0xee, 0xe1, 0xf8, 0x56, 0xd4, 0xae, 0x20, 0x01, 0x06, 0x39, 0x67, 0x8b, 0xcc, 0x8a, 0x54, 0xdc, + 0xc2, 0x56, 0xaf, 0x58, 0xf6, 0xea, 0x2c, 0x98, 0xc0, 0x8f, 0xd3, 0x05, 0x60, 0x57, 0x76, 0xf6, + 0xc8, 0xe3, 0xc6, 0xfb, 0x1c, 0x19, 0x11, 0x3a, 0x5c, 0x70, 0x3c, 0x8d, 0x5e, 0x80, 0xed, 0xe3, + 0x10, 0xe1, 0x78, 0x3a, 0x74, 0x92, 0xcf, 0x7b, 0xcd, 0x24, 0x38, 0xf4, 0x6b, 0xbe, 0xd7, 0xa2, + 0x5a, 0x99, 0x6f, 0x5f, 0xb5, 0x7d, 0x8c, 0x36, 0x70, 0x7e, 0x25, 0x0b, 0x01, 0xb2, 0xeb, 0x51, + 0x7b, 0xbd, 0xda, 0xea, 0xc4, 0x62, 0x0e, 0x26, 0xac, 0xa7, 0x48, 0xaa, 0xb5, 0x9b, 0x0d, 0x35, + 0x7e, 0xfd, 0x03, 0x74, 0x05, 0xe7, 0x7d, 0xfe, 0xb4, 0xa7, 0x32, 0x48, 0xf8, 0x13, 0x38, 0xaf, + 0x17, 0x32, 0x81, 0xad, 0x5b, 0x01, 0xdc, 0x8d, 0xa5, 0x22, 0xe1, 0xac, 0x0b, 0x03, 0x56, 0x13, + 0xce, 0x8f, 0xd2, 0x85, 0xe5, 0x47, 0xf8, 0x64, 0xe5, 0x4a, 0x93, 0x25, 0x2b, 0x64, 0xa7, 0x3c, + 0x53, 0x56, 0x38, 0xb8, 0xd3, 0xe8, 0xc3, 0x80, 0x8c, 0x5a, 0xce, 0x35, 0x94, 0x38, 0x66, 0xa9, + 0x08, 0x5c, 0x94, 0xaa, 0xdd, 0x62, 0xcd, 0xc7, 0xec, 0xe1, 0xf8, 0x10, 0x82, 0x4d, 0x11, 0x52, + 0xf5, 0x70, 0x5b, 0x51, 0x49, 0x98, 0x89, 0x1d, 0x6e, 0xd7, 0x9f, 0x88, 0x19, 0x2d, 0x25, 0xf4, + 0xfa, 0xdf, 0xf4, 0x13, 0x7c, 0x97, 0x88, 0xf9, 0x6c, 0xa7, 0x8c, 0xa4, 0x4e, 0x1a, 0x04, 0x26, + 0x1e, 0xea, 0x40, 0xec, 0xb0, 0x60, 0xb3, 0xc6, 0x3c, 0xb1, 0x53, 0x7a, 0xed, 0x5c, 0xe3, 0xc5, + 0x20, 0xe1, 0x12, 0x75, 0xb3, 0xbe, 0xc6, 0xbc, 0xaa, 0x29, 0x54, 0x5a, 0x0c, 0x12, 0x8e, 0xa1, + 0x52, 0xe9, 0x07, 0x5f, 0xe6, 0x8a, 0x78, 0xb8, 0xfb, 0x25, 0x78, 0xc1, 0x37, 0x5f, 0xee, 0x93, + 0x05, 0xf5, 0xe8, 0x0c, 0xcf, 0x9a, 0x17, 0x2f, 0xce, 0x17, 0x79, 0x58, 0x34, 0x33, 0xf9, 0x9e, + 0x8a, 0x54, 0xdd, 0x4c, 0xd1, 0x84, 0xbe, 0x56, 0xac, 0x2b, 0xe3, 0x0b, 0xb9, 0x89, 0xb5, 0xf1, + 0xcd, 0x97, 0xde, 0x4e, 0x2b, 0x3c, 0xa0, 0x22, 0x83, 0x3d, 0x3b, 0x63, 0x3e, 0x1d, 0x2a, 0x01, + 0xa0, 0x71, 0x96, 0xbe, 0x4c, 0xce, 0xf4, 0xf1, 0xf4, 0x50, 0x91, 0x59, 0x3f, 0x3f, 0x46, 0xaa, + 0xca, 0xab, 0x43, 0xdb, 0xb7, 0x5c, 0x69, 0x8f, 0xa5, 0x5d, 0x69, 0x53, 0xb8, 0xf3, 0x9a, 0xde, + 0xb3, 0xaf, 0x67, 0xbc, 0x1d, 0x78, 0x21, 0xf7, 0x23, 0x16, 0xbf, 0xe9, 0x30, 0xc4, 0xcb, 0x8a, + 0x5a, 0xad, 0x1f, 0x3b, 0x56, 0xad, 0x2f, 0xf8, 0x9a, 0x0c, 0x2a, 0xf0, 0x74, 0xe7, 0xa1, 0x68, + 0xa9, 0x97, 0x12, 0xea, 0x58, 0x08, 0x1c, 0xc6, 0xf4, 0x2e, 0x14, 0xca, 0x4c, 0xef, 0x9a, 0x3c, + 0xa9, 0xde, 0x25, 0x29, 0x80, 0x26, 0x86, 0x79, 0xc3, 0x9b, 0xf6, 0xcb, 0x17, 0xea, 0x02, 0xc3, + 0xc5, 0x21, 0x5e, 0x9e, 0xe8, 0x19, 0x79, 0xc3, 0xd7, 0xd2, 0xf4, 0xa0, 0xbf, 0x09, 0xbc, 0x6d, + 0x3e, 0xaf, 0x18, 0x82, 0xee, 0x40, 0x98, 0xb7, 0x67, 0x74, 0x8e, 0xcc, 0x5b, 0x96, 0xa5, 0xfa, + 0x00, 0xfc, 0x8f, 0xbf, 0x59, 0x62, 0xfe, 0xc7, 0x6d, 0xff, 0xa0, 0xdb, 0xc6, 0xe7, 0x34, 0x46, + 0xd7, 0xf5, 0xaf, 0x91, 0xa9, 0x44, 0xb4, 0x52, 0x2c, 0x77, 0xb1, 0xd1, 0x2d, 0xe6, 0x8f, 0x55, + 0x82, 0x40, 0x96, 0x82, 0x22, 0xe8, 0xfe, 0x4b, 0xfe, 0x15, 0x24, 0xe4, 0x34, 0x2c, 0xab, 0x9b, + 0xb6, 0x65, 0xf5, 0x42, 0xe1, 0xc1, 0x0c, 0xb0, 0xb0, 0xbe, 0x63, 0x0f, 0x81, 0x29, 0x6c, 0x0f, + 0xbf, 0x47, 0xdc, 0xbd, 0x41, 0xec, 0xd7, 0x3c, 0xa8, 0xba, 0xc2, 0x22, 0x1e, 0xb9, 0x44, 0xbc, + 0x30, 0x64, 0xb4, 0xa3, 0xfb, 0xab, 0x65, 0x72, 0x2e, 0xeb, 0x75, 0x6a, 0xa7, 0x45, 0x66, 0xba, + 0x86, 0xfa, 0x5c, 0xec, 0x62, 0xbb, 0xa9, 0x70, 0x6b, 0xd5, 0xc5, 0x2c, 0x05, 0x8b, 0x2a, 0x66, + 0x0c, 0xc7, 0xb7, 0xb6, 0x95, 0x7b, 0xa5, 0x3c, 0xbc, 0x88, 0x52, 0xcd, 0xac, 0x1b, 0x84, 0xc0, + 0x22, 0x3b, 0x82, 0xf4, 0xda, 0xee, 0xdf, 0x2b, 0x91, 0x47, 0x07, 0xdc, 0x7e, 0xc7, 0xe6, 0xee, + 0x31, 0x2f, 0xa4, 0x78, 0x2d, 0x46, 0x35, 0xc7, 0x7d, 0x93, 0x20, 0xa0, 0xce, 0x0e, 0x5e, 0xaa, + 0x54, 0xef, 0x61, 0x96, 0x8b, 0x1c, 0x25, 0xf7, 0xdd, 0xb4, 0x35, 0x2e, 0x61, 0xaa, 0x17, 0x30, + 0x0d, 0xaa, 0xee, 0xb7, 0x2b, 0x64, 0x9c, 0xbf, 0xe2, 0x57, 0xa7, 0x0a, 0x10, 0x4f, 0xb6, 0x37, + 0x5c, 0xae, 0x3f, 0xad, 0x27, 0xf1, 0x02, 0x90, 0x64, 0x9c, 0x1b, 0xe4, 0x2c, 0xfa, 0x57, 0x03, + 0xaf, 0x5d, 0xf3, 0xdb, 0xde, 0x91, 0x54, 0xbc, 0x79, 0x4a, 0x64, 0x99, 0xf5, 0xf3, 0xec, 0x66, + 0x3f, 0x0a, 0x64, 0xd5, 0xc3, 0xbb, 0x3b, 0xa9, 0x6c, 0x39, 0x3c, 0x55, 0xa3, 0xba, 0xbb, 0x73, + 0x7c, 0xc6, 0x1c, 0xbc, 0xbe, 0xd4, 0xed, 0x33, 0x31, 0x8c, 0xe7, 0xdf, 0x6c, 0xb3, 0xc2, 0xc6, + 0xc5, 0x8b, 0x3f, 0x71, 0x8f, 0x9d, 0x91, 0x6e, 0xef, 0x53, 0x4b, 0x66, 0x3f, 0x6c, 0xb7, 0xc4, + 0xb3, 0x45, 0x4a, 0x9d, 0x6a, 0xa4, 0xe0, 0xd0, 0x57, 0x03, 0xa9, 0xec, 0x7a, 0x41, 0x9b, 0xb2, + 0xb6, 0xa6, 0x32, 0x61, 0x53, 0xd9, 0x48, 0xc1, 0xa1, 0xaf, 0x06, 0x66, 0x7a, 0x9e, 0x4f, 0x85, + 0x88, 0xa0, 0xa2, 0x96, 0x7a, 0x1d, 0x9c, 0xd9, 0xdb, 0x18, 0x3c, 0x91, 0xf1, 0x42, 0xf8, 0x73, + 0xf6, 0x7b, 0xa3, 0x3a, 0x76, 0x6b, 0xb5, 0x66, 0xbd, 0xa4, 0x54, 0x34, 0x53, 0xf5, 0x67, 0x31, + 0x8d, 0xac, 0x7a, 0x18, 0x4f, 0x71, 0x04, 0x25, 0x57, 0xa7, 0xc5, 0xc0, 0x80, 0xd4, 0x30, 0xe7, + 0x8f, 0x8e, 0xa7, 0x3c, 0x77, 0xe0, 0xb5, 0xc2, 0xd8, 0x78, 0x79, 0x9c, 0x2e, 0x32, 0xaa, 0xf3, + 0xa1, 0xcb, 0x3c, 0xed, 0xb7, 0xbc, 0xce, 0x8b, 0x41, 0xc2, 0xed, 0x6c, 0xd4, 0x93, 0x23, 0xce, + 0x46, 0x3d, 0x95, 0x1b, 0xe6, 0xf6, 0x4b, 0x74, 0xcb, 0x60, 0x09, 0xba, 0xc4, 0x9d, 0x41, 0xf4, + 0x80, 0x8f, 0x6e, 0xcb, 0xc0, 0x97, 0xb6, 0xb0, 0xb1, 0x74, 0x02, 0x5a, 0xd6, 0x03, 0xe0, 0x30, + 0x7c, 0x0c, 0x96, 0x35, 0x8d, 0x9f, 0x6f, 0x86, 0xa7, 0x92, 0xd5, 0x8f, 0x29, 0xb3, 0x20, 0x6a, + 0xf0, 0xbb, 0xd4, 0x30, 0x65, 0x9d, 0xd5, 0x6e, 0x8a, 0x87, 0x25, 0x88, 0x3a, 0xb3, 0x73, 0x0f, + 0x2a, 0x88, 0x3a, 0x9b, 0x78, 0x7e, 0x10, 0x75, 0x66, 0xbd, 0x87, 0x2f, 0x88, 0x3a, 0xb3, 0x9b, + 0x03, 0x94, 0x9d, 0x8f, 0xca, 0x03, 0x86, 0xc5, 0xd4, 0x9e, 0xe7, 0x71, 0x15, 0x30, 0x60, 0x2c, + 0x76, 0xac, 0x19, 0xbe, 0x02, 0x78, 0x19, 0x28, 0xa8, 0x13, 0x1b, 0x41, 0xc8, 0xbc, 0x93, 0xeb, + 0x27, 0xfc, 0xc0, 0xcb, 0xb6, 0x9f, 0xc3, 0xbc, 0x8a, 0x97, 0x8a, 0x4c, 0xc6, 0x70, 0x15, 0xa5, + 0xc9, 0x56, 0x4e, 0xa2, 0xc9, 0xce, 0x64, 0x6b, 0xb1, 0x4b, 0x74, 0xc3, 0x38, 0xb9, 0x65, 0xfa, + 0xdf, 0x4b, 0xe4, 0xd3, 0xc7, 0x70, 0x18, 0x17, 0x2d, 0xd6, 0xa4, 0x1a, 0xa2, 0xa5, 0x6f, 0x62, + 0xeb, 0xe4, 0xdc, 0x2e, 0x35, 0xcb, 0x8f, 0xd8, 0xf1, 0xb3, 0xdf, 0x92, 0x18, 0x62, 0x2f, 0x55, + 0xaf, 0xf3, 0x6d, 0x64, 0xe0, 0x40, 0x66, 0x4d, 0xf4, 0x0a, 0x85, 0x3b, 0x2c, 0x01, 0x5a, 0x4b, + 0xdf, 0x14, 0x64, 0xf3, 0x57, 0xd1, 0x5e, 0xa1, 0x5b, 0x7d, 0x18, 0x90, 0x51, 0xcb, 0xfd, 0xfd, + 0x12, 0xca, 0x91, 0x8c, 0xd7, 0x68, 0xac, 0x27, 0x57, 0x8d, 0xe0, 0xe2, 0xfe, 0x27, 0x57, 0x99, + 0xbf, 0xc7, 0xc6, 0xe5, 0x53, 0x14, 0xeb, 0xc0, 0x2a, 0x2b, 0x9d, 0xbb, 0x08, 0xaa, 0x57, 0x18, + 0xf8, 0xf0, 0x52, 0x2b, 0x38, 0x0c, 0xe2, 0x30, 0x2a, 0xf0, 0xc2, 0x61, 0x5f, 0xb0, 0x8e, 0xde, + 0x65, 0x6a, 0x9c, 0x08, 0x48, 0x6a, 0xee, 0x5f, 0x2f, 0x93, 0x59, 0xd9, 0xde, 0xdb, 0xbd, 0x90, + 0x2d, 0xc4, 0x51, 0x49, 0xc7, 0xb7, 0x2d, 0xe9, 0x78, 0xa9, 0xd8, 0xcd, 0x02, 0xd6, 0xa9, 0x81, + 0x52, 0xf1, 0xab, 0x29, 0xa9, 0x78, 0x79, 0x18, 0xa2, 0xb9, 0xd6, 0xea, 0x19, 0x0b, 0xff, 0x21, + 0x4a, 0x3c, 0x99, 0x35, 0x9c, 0x01, 0xd2, 0xef, 0xdb, 0xe5, 0xd4, 0x30, 0x98, 0xd4, 0xfb, 0x26, + 0x19, 0xdb, 0xf7, 0xa2, 0x96, 0x70, 0xcd, 0xbf, 0x39, 0xe4, 0xa7, 0xa0, 0xea, 0x71, 0xd4, 0xe2, + 0xb2, 0xeb, 0x25, 0x95, 0x03, 0x9f, 0x16, 0xe5, 0x86, 0x19, 0xb2, 0x46, 0x9d, 0x37, 0x30, 0x47, + 0x7e, 0xd8, 0x55, 0x51, 0x24, 0x4f, 0xf1, 0xfc, 0xf8, 0x58, 0x42, 0x29, 0x38, 0x76, 0x73, 0x58, + 0x0c, 0x02, 0x7f, 0xc9, 0x27, 0x55, 0xd5, 0xf4, 0x08, 0x03, 0xda, 0x7e, 0x58, 0x21, 0x67, 0x33, + 0x58, 0xc5, 0xf9, 0x09, 0x6b, 0xd6, 0xbe, 0x30, 0x34, 0xaf, 0x7d, 0xc2, 0x79, 0xfb, 0x09, 0xa6, + 0x63, 0xb6, 0x04, 0x6f, 0x9c, 0xa0, 0x79, 0xaa, 0x88, 0xa6, 0x9b, 0xc7, 0xa2, 0xfc, 0xe6, 0xb1, + 0xd9, 0x53, 0x9a, 0x7c, 0x6c, 0x46, 0xf5, 0x73, 0x84, 0xdf, 0xf8, 0xa7, 0xc7, 0xc8, 0xb9, 0xac, + 0xdb, 0x4b, 0xce, 0xcf, 0x94, 0x52, 0xa9, 0x6b, 0xbf, 0x34, 0xfc, 0x15, 0x28, 0x9e, 0xcf, 0x56, + 0x5c, 0x4f, 0x5e, 0xb6, 0x93, 0xd9, 0xe6, 0xce, 0xb6, 0x68, 0x9d, 0x85, 0x06, 0x47, 0x3c, 0x0b, + 0xb1, 0x94, 0x07, 0x6f, 0x9d, 0xa0, 0x2b, 0x22, 0x91, 0x71, 0x9c, 0x0a, 0x0d, 0x96, 0xc5, 0xf9, + 0xa1, 0xc1, 0xb2, 0x0f, 0x4b, 0x7b, 0x98, 0xc2, 0x56, 0x8d, 0x6b, 0x84, 0x2c, 0x10, 0xe0, 0x9e, + 0x64, 0xf4, 0x7a, 0x84, 0x6c, 0xf0, 0x37, 0x4b, 0x24, 0x75, 0x3c, 0x8c, 0x27, 0xd6, 0xcc, 0x94, + 0x4b, 0x9d, 0x58, 0x1b, 0x56, 0x1c, 0xc5, 0xa0, 0xea, 0x8e, 0x9f, 0xce, 0xa9, 0x0a, 0xb4, 0x0c, + 0x18, 0x44, 0xbd, 0x98, 0x55, 0x19, 0xf4, 0x62, 0x16, 0x5a, 0x38, 0x6d, 0xff, 0xd0, 0x97, 0x66, + 0xa5, 0x12, 0xde, 0x5b, 0x58, 0x08, 0x1c, 0xe6, 0x7e, 0xaf, 0x42, 0x26, 0xb8, 0xed, 0x36, 0xc2, + 0x6d, 0xb9, 0x2e, 0xcc, 0xa8, 0x42, 0xf7, 0x88, 0x78, 0x6f, 0x96, 0xd1, 0xce, 0xe2, 0x0c, 0xa5, + 0xc6, 0xa6, 0x4d, 0x2f, 0x67, 0xd9, 0x1a, 0xfd, 0x52, 0x2a, 0x32, 0x8a, 0x70, 0x1a, 0xc6, 0x5c, + 0xec, 0x13, 0x12, 0xb3, 0x47, 0x57, 0x90, 0x86, 0x48, 0xca, 0xf4, 0x6a, 0xa1, 0x7e, 0x34, 0x54, + 0x35, 0xde, 0x1b, 0x9d, 0x0d, 0x46, 0x01, 0xc0, 0xa0, 0xbd, 0xf4, 0x3a, 0xa9, 0x2a, 0xe4, 0x3c, + 0x8d, 0x77, 0xc6, 0x64, 0xc9, 0x3f, 0x43, 0xe6, 0x53, 0x6d, 0x0d, 0xa5, 0x30, 0x7f, 0x97, 0x2a, + 0x13, 0x7d, 0x8f, 0xfd, 0x61, 0x62, 0xaf, 0x73, 0xed, 0x0c, 0xa3, 0x5d, 0x7c, 0xe0, 0x93, 0x98, + 0xfb, 0xfa, 0x2d, 0xeb, 0x0c, 0x28, 0x64, 0xb6, 0x26, 0xd3, 0xcc, 0x95, 0xb3, 0xd3, 0xcc, 0xb1, + 0x77, 0x28, 0x78, 0xdf, 0x4f, 0x43, 0x03, 0xda, 0xb4, 0x35, 0xa0, 0x67, 0x8a, 0xb0, 0xc1, 0x00, + 0xd5, 0xe7, 0xaf, 0x95, 0x88, 0xc3, 0x11, 0xd2, 0x8f, 0x2f, 0x71, 0x27, 0x88, 0xa1, 0xb3, 0x6b, + 0xbe, 0x51, 0x10, 0x30, 0xb0, 0x86, 0x4c, 0xbb, 0xab, 0x1e, 0x2d, 0x19, 0xd0, 0xb1, 0xdf, 0xac, + 0x90, 0xf4, 0xb9, 0xa8, 0xf3, 0x1e, 0x99, 0xc1, 0x3b, 0x18, 0x3b, 0x41, 0x3b, 0x48, 0x02, 0x3f, + 0x2e, 0xe6, 0x73, 0x5e, 0x33, 0x6a, 0x08, 0x9f, 0x98, 0x51, 0x02, 0x16, 0x45, 0x0c, 0xe6, 0xe9, + 0x46, 0x54, 0xed, 0x6f, 0xfb, 0x7b, 0x4c, 0x89, 0x50, 0x17, 0xf5, 0xeb, 0xaa, 0x14, 0x0c, 0x8c, + 0x8c, 0x00, 0x9c, 0xca, 0x69, 0x04, 0xe0, 0x8c, 0x0d, 0x19, 0x80, 0x33, 0x5e, 0x28, 0x00, 0x07, + 0xc8, 0x23, 0xd2, 0x95, 0x85, 0xbf, 0xf1, 0x2e, 0x10, 0x4f, 0x12, 0x25, 0xc2, 0xa6, 0x96, 0xf0, + 0x6e, 0x0a, 0x64, 0x62, 0xc0, 0x80, 0x9a, 0x6e, 0x8f, 0x9c, 0x6d, 0xf8, 0x51, 0xc0, 0x72, 0x78, + 0xb4, 0xf4, 0x72, 0xfa, 0x3a, 0xde, 0xa2, 0xb6, 0x57, 0xf2, 0x90, 0x57, 0x4c, 0x8c, 0x0b, 0xd4, + 0x72, 0xe5, 0x6a, 0x92, 0xee, 0x5f, 0x28, 0x93, 0x49, 0x11, 0x7f, 0x30, 0xc2, 0x5d, 0xe1, 0xba, + 0x65, 0xac, 0xbd, 0x90, 0xb7, 0x0c, 0x59, 0x77, 0x06, 0x9a, 0x69, 0x8d, 0x94, 0x99, 0xf6, 0x62, + 0x31, 0x72, 0xc7, 0x1b, 0x68, 0xbf, 0x51, 0xa6, 0x5b, 0xb7, 0x1d, 0x77, 0x31, 0xba, 0xe9, 0xf8, + 0x0a, 0x99, 0x8c, 0x45, 0x70, 0x42, 0xa1, 0x07, 0xa2, 0xd3, 0x9f, 0x54, 0x3f, 0x7d, 0x2c, 0xc2, + 0x11, 0x24, 0xb9, 0xcc, 0xf8, 0x87, 0xca, 0x69, 0xc4, 0x3f, 0xb8, 0xdf, 0x63, 0xf2, 0xd1, 0x9c, + 0xc0, 0xd3, 0x10, 0xf0, 0x6f, 0xdb, 0xa2, 0xf4, 0xa5, 0x42, 0xac, 0x20, 0xfa, 0x37, 0x40, 0x9e, + 0x7e, 0x58, 0x22, 0xd3, 0x02, 0xf1, 0x34, 0x46, 0xf0, 0xa3, 0xf6, 0x08, 0x9e, 0x2d, 0x34, 0x82, + 0x01, 0x5d, 0xff, 0xdb, 0x65, 0xd5, 0xf5, 0x82, 0x6f, 0xb0, 0x9b, 0x2f, 0xac, 0x97, 0x87, 0x79, + 0x61, 0x5d, 0xbd, 0xde, 0x5e, 0x19, 0xf8, 0x7a, 0xfb, 0x8e, 0x7c, 0x07, 0x14, 0xcb, 0x44, 0xbc, + 0xf7, 0xb0, 0xef, 0xe6, 0xe9, 0x00, 0x54, 0x45, 0x09, 0x0c, 0xaa, 0x32, 0x36, 0x8a, 0xb5, 0x30, + 0x6e, 0xfb, 0x06, 0x6f, 0x8a, 0x72, 0x50, 0x18, 0xee, 0xeb, 0x4c, 0xc6, 0xb2, 0xe9, 0x19, 0x2e, + 0xaa, 0xf4, 0x67, 0x27, 0xd4, 0xc4, 0x32, 0x8f, 0xc7, 0x4d, 0xf9, 0xe6, 0x7a, 0xa9, 0xc8, 0x11, 0xba, 0xf1, 0x49, 0xb2, 0x9f, 0x5c, 0x77, 0xfc, 0x3e, 0x6f, 0xf0, 0xeb, 0x85, 0x65, 0xe4, 0x10, 0xfe, 0x5f, 0x96, 0xbc, 0x80, 0x5d, 0xd8, 0xde, 0xac, 0xa7, 0x33, 0xbd, 0xad, 0x49, 0x00, 0x68, 0x1c, 0x5a, 0x81, 0xeb, 0xde, 0xf6, 0xf3, 0x83, 0x52, 0xf7, 0x96, 0x53, 0x62, 0x28, 0xdf, 0x97, @@ -38059,38 +38095,39 @@ var fileDescriptorGenerated = []byte{ 0x59, 0x11, 0x17, 0x0a, 0xa2, 0x08, 0xd2, 0x24, 0xf0, 0x34, 0xb5, 0x6d, 0xbe, 0xcd, 0x51, 0x17, 0x11, 0x81, 0xea, 0x34, 0xd5, 0x7a, 0xb9, 0xa3, 0x0e, 0x29, 0x6c, 0x2a, 0xed, 0x17, 0xcd, 0x12, 0x71, 0x47, 0x15, 0x0f, 0x9d, 0x62, 0x91, 0x4c, 0xf4, 0x33, 0x18, 0x0f, 0xb8, 0x35, 0x00, 0x07, - 0x06, 0xd6, 0xfe, 0x64, 0x6e, 0xf7, 0x6f, 0x62, 0x65, 0x63, 0x6b, 0x74, 0xbe, 0x41, 0x66, 0xcc, - 0x96, 0x84, 0xb0, 0x7b, 0xb9, 0xf8, 0xab, 0x25, 0x62, 0x8b, 0x55, 0x71, 0x04, 0x26, 0x0c, 0x2c, - 0xda, 0x6e, 0x93, 0xcc, 0xa7, 0xde, 0x45, 0x54, 0x0f, 0x6c, 0x96, 0x1e, 0xd4, 0x03, 0x9b, 0x98, - 0xd1, 0x63, 0x7c, 0xdb, 0x0b, 0xf2, 0x73, 0x5f, 0x17, 0x7a, 0x44, 0xff, 0x35, 0x32, 0xe1, 0xef, - 0xee, 0xe2, 0x03, 0xe6, 0x7c, 0xe5, 0x3c, 0xae, 0x9e, 0x4d, 0x66, 0xa5, 0xb8, 0x1e, 0x58, 0x63, - 0xfc, 0x27, 0x08, 0x64, 0xf7, 0xdf, 0x50, 0x83, 0x67, 0x9b, 0x5a, 0xf1, 0x22, 0xa9, 0x60, 0x4e, - 0x4f, 0x56, 0xfb, 0xb2, 0x70, 0x3f, 0x97, 0x91, 0x85, 0xdb, 0xd1, 0x04, 0x33, 0x72, 0x70, 0xab, - 0xd1, 0x54, 0x0a, 0x8d, 0x66, 0x6c, 0x98, 0xd1, 0x7c, 0xab, 0x44, 0x26, 0xc4, 0xf5, 0xfa, 0xfc, - 0xcd, 0xa5, 0x25, 0x33, 0xe7, 0x5a, 0x57, 0xbe, 0x2f, 0x14, 0x09, 0xdd, 0x16, 0x17, 0xbd, 0x15, - 0x2b, 0x59, 0xd7, 0xbb, 0x2d, 0xaa, 0x68, 0x0d, 0x4f, 0x73, 0xf0, 0x0d, 0xf9, 0xbe, 0x78, 0x4e, - 0xbf, 0x86, 0x4a, 0xc9, 0xc2, 0x12, 0xcb, 0x22, 0x61, 0x95, 0x99, 0xc3, 0x4c, 0x2c, 0x2b, 0x01, - 0xa0, 0x71, 0xf0, 0x58, 0x3e, 0xee, 0xed, 0x30, 0xf4, 0xd4, 0x29, 0x7f, 0x83, 0x17, 0x83, 0x84, - 0xbb, 0x1f, 0xce, 0x13, 0x6b, 0x68, 0x56, 0x16, 0x90, 0xd2, 0x03, 0xcf, 0x02, 0x42, 0xa9, 0xfb, - 0x07, 0xdd, 0xe4, 0xa8, 0x16, 0x44, 0xc5, 0x32, 0x32, 0xad, 0x0b, 0xec, 0x7e, 0xea, 0x12, 0x02, - 0x8a, 0xe2, 0x80, 0x9c, 0x2e, 0x95, 0x87, 0x22, 0xa7, 0xcb, 0xd8, 0xff, 0x93, 0x9c, 0x2e, 0x54, - 0xcf, 0xdf, 0xe3, 0x0f, 0x36, 0x8b, 0xab, 0x3a, 0x39, 0x27, 0x4a, 0x19, 0xaf, 0x3b, 0xf3, 0x3b, - 0x19, 0x02, 0x00, 0x92, 0x1c, 0x66, 0x0c, 0xe1, 0x2a, 0xbf, 0x48, 0x93, 0xf2, 0x72, 0x11, 0xcf, - 0x46, 0x7f, 0xc6, 0x10, 0x11, 0xca, 0x21, 0x68, 0xc9, 0x1c, 0x2e, 0x93, 0x9f, 0x3c, 0x87, 0x8b, - 0xca, 0xbc, 0x32, 0xf5, 0xa0, 0x32, 0xaf, 0x58, 0x19, 0x6c, 0xaa, 0xa3, 0xc8, 0x60, 0x43, 0x65, - 0xdb, 0xf9, 0x6e, 0x56, 0x02, 0x28, 0x91, 0x43, 0xe5, 0xcb, 0x27, 0x48, 0x88, 0x65, 0x35, 0xcd, - 0x6e, 0x50, 0x64, 0xa2, 0x41, 0x76, 0xc3, 0x32, 0x15, 0xce, 0xf4, 0x27, 0x4f, 0x85, 0x33, 0xea, - 0x64, 0x2b, 0x3a, 0x31, 0xce, 0xec, 0x48, 0x12, 0xe3, 0xcc, 0x3d, 0xc0, 0xc4, 0x38, 0x46, 0x4a, - 0x9b, 0xf9, 0x07, 0x9b, 0xd2, 0x66, 0x9f, 0x4c, 0xb7, 0xc2, 0x7b, 0x9d, 0x7b, 0x5e, 0xd4, 0x5a, - 0xa9, 0x6f, 0xb2, 0x7b, 0x00, 0xb9, 0xd7, 0xac, 0x6b, 0xba, 0x82, 0xd5, 0x02, 0xd3, 0x9a, 0x0d, - 0x20, 0x98, 0xa4, 0x45, 0x72, 0x9f, 0x33, 0x9f, 0x30, 0xb9, 0x8f, 0x95, 0x22, 0xc7, 0x19, 0x45, - 0x8a, 0x9c, 0xf7, 0xd8, 0x65, 0xcb, 0xdd, 0x60, 0xef, 0x86, 0xd7, 0x5d, 0x3c, 0x5b, 0xa4, 0x85, - 0x35, 0x89, 0xde, 0xdf, 0x82, 0x02, 0x81, 0x26, 0xda, 0x9f, 0x84, 0xe7, 0xdc, 0xa9, 0x24, 0xe1, - 0xf9, 0x33, 0xe4, 0x89, 0xe3, 0x69, 0xe8, 0xdc, 0x84, 0x75, 0x6d, 0x5c, 0xa6, 0x72, 0x13, 0xb2, - 0xfd, 0xd9, 0xc0, 0x32, 0xc2, 0x08, 0xcb, 0xc7, 0x85, 0x11, 0xba, 0xff, 0xa4, 0x44, 0x1e, 0x1d, - 0x70, 0x3f, 0xbf, 0x70, 0xd0, 0x6c, 0x97, 0xcc, 0x77, 0xed, 0xaa, 0x85, 0xc3, 0xdb, 0xad, 0x7c, - 0x00, 0x2a, 0xb7, 0x6d, 0x0a, 0x00, 0x69, 0xf2, 0xab, 0xcf, 0x7c, 0xff, 0x47, 0x4f, 0x7c, 0xea, - 0x23, 0xfa, 0xf7, 0xbb, 0xf4, 0xef, 0xa7, 0xff, 0xe0, 0x89, 0xd2, 0xf7, 0xe9, 0xdf, 0x47, 0xf4, - 0xef, 0x3f, 0xd3, 0xbf, 0x6f, 0xfd, 0xe1, 0x13, 0x9f, 0xfa, 0x89, 0xf2, 0xe1, 0xe5, 0xff, 0x1b, - 0x00, 0x00, 0xff, 0xff, 0xfe, 0xa5, 0x80, 0xea, 0x03, 0xac, 0x00, 0x00, + 0x06, 0xd6, 0xc6, 0x9c, 0x7f, 0x72, 0x26, 0x8d, 0xe8, 0x40, 0x7d, 0x8e, 0x6f, 0xc0, 0xc0, 0xc2, + 0xfc, 0x64, 0x0e, 0xfb, 0x6f, 0x62, 0x65, 0x63, 0x53, 0x75, 0xbe, 0x41, 0x66, 0xcc, 0x3e, 0x0a, + 0x31, 0xf9, 0x72, 0xf1, 0xf7, 0x4e, 0xc4, 0xe6, 0xac, 0x7a, 0x6e, 0xc2, 0xc0, 0xa2, 0xed, 0x36, + 0xc9, 0x7c, 0xea, 0x45, 0x45, 0xf5, 0x34, 0x67, 0xe9, 0x41, 0x3d, 0xcd, 0x89, 0xb9, 0x40, 0xc6, + 0xb7, 0xbd, 0x20, 0x3f, 0x6b, 0x76, 0xa1, 0xe7, 0xf7, 0x5f, 0x23, 0x13, 0xfe, 0xee, 0x2e, 0x3e, + 0x7d, 0xce, 0xd7, 0xdc, 0xe3, 0xea, 0xc1, 0x65, 0x56, 0x8a, 0x2b, 0x89, 0x35, 0xc6, 0x7f, 0x82, + 0x40, 0x76, 0xff, 0x2d, 0x35, 0x95, 0xb6, 0xa9, 0xfd, 0x2f, 0xd2, 0x11, 0xe6, 0xf4, 0x64, 0xb5, + 0x2f, 0x7f, 0xf7, 0x73, 0x19, 0xf9, 0xbb, 0x1d, 0x4d, 0x30, 0x23, 0x7b, 0xb7, 0x1a, 0x4d, 0xa5, + 0xd0, 0x68, 0xc6, 0x86, 0x19, 0xcd, 0xb7, 0x4a, 0x64, 0x42, 0x5c, 0xcc, 0xcf, 0xdf, 0x96, 0x5a, + 0x32, 0xe7, 0xae, 0x75, 0x59, 0xfc, 0x42, 0x91, 0xa0, 0x6f, 0x71, 0x45, 0x5c, 0xb1, 0x92, 0x75, + 0x31, 0xdc, 0xa2, 0x8a, 0x76, 0xf4, 0x34, 0x07, 0xdf, 0x90, 0x2f, 0x93, 0xe7, 0xf4, 0x6b, 0xa8, + 0x64, 0x2e, 0x2c, 0x25, 0x2d, 0x12, 0x56, 0x39, 0x3d, 0xcc, 0x94, 0xb4, 0x12, 0x00, 0x1a, 0x07, + 0x0f, 0xf4, 0xe3, 0xde, 0x0e, 0x43, 0x4f, 0xc5, 0x07, 0x34, 0x78, 0x31, 0x48, 0xb8, 0xfb, 0xe1, + 0x3c, 0xb1, 0x86, 0x66, 0xe5, 0x0f, 0x29, 0x3d, 0xf0, 0xfc, 0x21, 0x94, 0xba, 0x7f, 0xd0, 0x4d, + 0x8e, 0x6a, 0x41, 0x54, 0x2c, 0x97, 0xd3, 0xba, 0xc0, 0xee, 0xa7, 0x2e, 0x21, 0xa0, 0x28, 0x0e, + 0xc8, 0x06, 0x53, 0x79, 0x28, 0xb2, 0xc1, 0x8c, 0xfd, 0x7f, 0xc9, 0x06, 0x43, 0x2d, 0x84, 0x3d, + 0xfe, 0xd4, 0xb3, 0xb8, 0xe4, 0x93, 0x73, 0x16, 0x95, 0xf1, 0x2e, 0x34, 0xbf, 0xcd, 0x21, 0x00, + 0x20, 0xc9, 0x61, 0xae, 0x11, 0x6e, 0x2c, 0x88, 0x04, 0x2b, 0x2f, 0x17, 0xf1, 0x89, 0xf4, 0xe7, + 0x1a, 0x11, 0x41, 0x20, 0x82, 0x96, 0xcc, 0xfe, 0x32, 0xf9, 0xc9, 0xb3, 0xbf, 0xa8, 0x9c, 0x2d, + 0x53, 0x0f, 0x2a, 0x67, 0x8b, 0x95, 0xfb, 0xa6, 0x3a, 0x8a, 0xdc, 0x37, 0x54, 0xb6, 0x9d, 0xef, + 0x66, 0xa5, 0x8e, 0x12, 0xd9, 0x57, 0xbe, 0x7c, 0x82, 0x54, 0x5a, 0x56, 0xd3, 0xec, 0xee, 0x45, + 0x26, 0x1a, 0x64, 0x37, 0x2c, 0x93, 0xe8, 0x4c, 0x7f, 0xf2, 0x24, 0x3a, 0xa3, 0x4e, 0xd3, 0xa2, + 0x53, 0xea, 0xcc, 0x8e, 0x24, 0xa5, 0xce, 0xdc, 0x03, 0x4c, 0xa9, 0x63, 0x24, 0xc3, 0x99, 0x7f, + 0xb0, 0xc9, 0x70, 0xf6, 0xc9, 0x74, 0x2b, 0xbc, 0xd7, 0xb9, 0xe7, 0x45, 0xad, 0x95, 0xfa, 0x26, + 0xbb, 0x41, 0x90, 0x7b, 0x41, 0xbb, 0xa6, 0x2b, 0x58, 0x2d, 0x30, 0x7d, 0xdb, 0x00, 0x82, 0x49, + 0x5a, 0xa4, 0x05, 0x3a, 0xf3, 0x09, 0xd3, 0x02, 0x59, 0xc9, 0x75, 0x9c, 0x51, 0x24, 0xd7, 0x79, + 0x8f, 0x5d, 0xd3, 0xdc, 0x0d, 0xf6, 0x6e, 0x78, 0xdd, 0xc5, 0xb3, 0x45, 0x5a, 0x58, 0x93, 0xe8, + 0xfd, 0x2d, 0x28, 0x10, 0x68, 0xa2, 0xfd, 0xe9, 0x7b, 0xce, 0x9d, 0x4a, 0xfa, 0x9e, 0x3f, 0x47, + 0x9e, 0x38, 0x9e, 0x86, 0xce, 0x6a, 0x58, 0xd7, 0x66, 0x69, 0x2a, 0xab, 0x21, 0xdb, 0x9f, 0x0d, + 0x2c, 0x23, 0x00, 0xb1, 0x7c, 0x5c, 0x00, 0xa2, 0xfb, 0x4f, 0x4b, 0xe4, 0xd1, 0x01, 0x37, 0xfb, + 0x0b, 0x87, 0xdb, 0x76, 0xc9, 0x7c, 0xd7, 0xae, 0x5a, 0x38, 0x30, 0xde, 0xca, 0x24, 0xa0, 0xb2, + 0xe2, 0xa6, 0x00, 0x90, 0x26, 0xbf, 0xfa, 0xcc, 0xf7, 0x7f, 0xf8, 0xc4, 0xa7, 0x3e, 0xa2, 0x7f, + 0xbf, 0x4b, 0xff, 0x7e, 0xf2, 0x0f, 0x9e, 0x28, 0x7d, 0x9f, 0xfe, 0x7d, 0x44, 0xff, 0xfe, 0x0b, + 0xfd, 0xfb, 0xd6, 0x1f, 0x3e, 0xf1, 0xa9, 0x1f, 0x2b, 0x1f, 0x5e, 0xfe, 0x7f, 0x01, 0x00, 0x00, + 0xff, 0xff, 0xd0, 0x8c, 0x57, 0xf8, 0x3d, 0xac, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index 4b82d68dce03b..4c5586ecf3cb2 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -2720,24 +2720,29 @@ message ServiceSpec { // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies repeated ServicePort ports = 1; - // This service will route traffic to pods having labels matching this selector. - // Label keys and values that must match in order to receive traffic for this service. - // If not specified, endpoints must be manually specified and the system will not automatically manage them. + // Route service traffic to pods with label keys and values matching this + // selector. If empty or not present, the service is assumed to have an + // external process managing its endpoints, which Kubernetes will not + // modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + // Ignored if type is ExternalName. // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview map selector = 2; - // ClusterIP is usually assigned by the master and is the IP address of the service. - // If specified, it will be allocated to the service if it is unused - // or else creation of the service will fail. - // Valid values are None, empty string (""), or a valid IP address. - // 'None' can be specified for a headless service when proxying is not required. - // Cannot be updated. + // clusterIP is the IP address of the service and is usually assigned + // randomly by the master. If an address is specified manually and is not in + // use by others, it will be allocated to the service; otherwise, creation + // of the service will fail. This field can not be changed through updates. + // Valid values are "None", empty string (""), or a valid IP address. "None" + // can be specified for headless services when proxying is not required. + // Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if + // type is ExternalName. // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies optional string clusterIP = 3; - // Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. - // Defaults to ClusterIP. - // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services + // type determines how to expose the service. Defaults to ClusterIP and only + // applies if clusterIP != "None". Valid options are ClusterIP, NodePort, + // LoadBalancer, ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview optional string type = 4; // externalIPs is a list of IP addresses for which nodes in the cluster @@ -2776,6 +2781,11 @@ message ServiceSpec { // cloud-provider does not support the feature." // More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md repeated string loadBalancerSourceRanges = 9; + + // externalName is the external reference that kubedns or equivalent will + // return as a CNAME record for this service. No proxying will be involved. + // Must be a valid DNS name and requires Type to be ExternalName. + optional string externalName = 10; } // ServiceStatus represents the current status of a service. diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index c272a3d0de713..6ddfc09a22129 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -31236,7 +31236,7 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2372 := !z.EncBinary() yy2arr2372 := z.EncBasicHandle().StructToArray - var yyq2372 [9]bool + var yyq2372 [10]bool _, _, _ = yysep2372, yyq2372, yy2arr2372 const yyr2372 bool = false yyq2372[1] = len(x.Selector) != 0 @@ -31247,9 +31247,10 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { yyq2372[6] = x.SessionAffinity != "" yyq2372[7] = x.LoadBalancerIP != "" yyq2372[8] = len(x.LoadBalancerSourceRanges) != 0 + yyq2372[9] = x.ExternalName != "" var yynn2372 int if yyr2372 || yy2arr2372 { - r.EncodeArrayStart(9) + r.EncodeArrayStart(10) } else { yynn2372 = 1 for _, b := range yyq2372 { @@ -31499,6 +31500,31 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr2372 || yy2arr2372 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2372[9] { + yym2397 := z.EncBinary() + _ = yym2397 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2372[9] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("externalName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2398 := z.EncBinary() + _ = yym2398 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } + } if yyr2372 || yy2arr2372 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -31512,25 +31538,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2396 := z.DecBinary() - _ = yym2396 + yym2399 := z.DecBinary() + _ = yym2399 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2397 := r.ContainerType() - if yyct2397 == codecSelferValueTypeMap1234 { - yyl2397 := r.ReadMapStart() - if yyl2397 == 0 { + yyct2400 := r.ContainerType() + if yyct2400 == codecSelferValueTypeMap1234 { + yyl2400 := r.ReadMapStart() + if yyl2400 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2397, d) + x.codecDecodeSelfFromMap(yyl2400, d) } - } else if yyct2397 == codecSelferValueTypeArray1234 { - yyl2397 := r.ReadArrayStart() - if yyl2397 == 0 { + } else if yyct2400 == codecSelferValueTypeArray1234 { + yyl2400 := r.ReadArrayStart() + if yyl2400 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2397, d) + x.codecDecodeSelfFromArray(yyl2400, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31542,12 +31568,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2398Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2398Slc - var yyhl2398 bool = l >= 0 - for yyj2398 := 0; ; yyj2398++ { - if yyhl2398 { - if yyj2398 >= l { + var yys2401Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2401Slc + var yyhl2401 bool = l >= 0 + for yyj2401 := 0; ; yyj2401++ { + if yyhl2401 { + if yyj2401 >= l { break } } else { @@ -31556,32 +31582,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2398Slc = r.DecodeBytes(yys2398Slc, true, true) - yys2398 := string(yys2398Slc) + yys2401Slc = r.DecodeBytes(yys2401Slc, true, true) + yys2401 := string(yys2401Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2398 { + switch yys2401 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2399 := &x.Ports - yym2400 := z.DecBinary() - _ = yym2400 + yyv2402 := &x.Ports + yym2403 := z.DecBinary() + _ = yym2403 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2399), d) + h.decSliceServicePort((*[]ServicePort)(yyv2402), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2401 := &x.Selector - yym2402 := z.DecBinary() - _ = yym2402 + yyv2404 := &x.Selector + yym2405 := z.DecBinary() + _ = yym2405 if false { } else { - z.F.DecMapStringStringX(yyv2401, false, d) + z.F.DecMapStringStringX(yyv2404, false, d) } } case "clusterIP": @@ -31600,24 +31626,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2405 := &x.ExternalIPs - yym2406 := z.DecBinary() - _ = yym2406 + yyv2408 := &x.ExternalIPs + yym2409 := z.DecBinary() + _ = yym2409 if false { } else { - z.F.DecSliceStringX(yyv2405, false, d) + z.F.DecSliceStringX(yyv2408, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2407 := &x.DeprecatedPublicIPs - yym2408 := z.DecBinary() - _ = yym2408 + yyv2410 := &x.DeprecatedPublicIPs + yym2411 := z.DecBinary() + _ = yym2411 if false { } else { - z.F.DecSliceStringX(yyv2407, false, d) + z.F.DecSliceStringX(yyv2410, false, d) } } case "sessionAffinity": @@ -31636,18 +31662,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2411 := &x.LoadBalancerSourceRanges - yym2412 := z.DecBinary() - _ = yym2412 + yyv2414 := &x.LoadBalancerSourceRanges + yym2415 := z.DecBinary() + _ = yym2415 if false { } else { - z.F.DecSliceStringX(yyv2411, false, d) + z.F.DecSliceStringX(yyv2414, false, d) } } + case "externalName": + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } default: - z.DecStructFieldNotFound(-1, yys2398) - } // end switch yys2398 - } // end for yyj2398 + z.DecStructFieldNotFound(-1, yys2401) + } // end switch yys2401 + } // end for yyj2401 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31655,16 +31687,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2413 int - var yyb2413 bool - var yyhl2413 bool = l >= 0 - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + var yyj2417 int + var yyb2417 bool + var yyhl2417 bool = l >= 0 + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31672,21 +31704,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2414 := &x.Ports - yym2415 := z.DecBinary() - _ = yym2415 + yyv2418 := &x.Ports + yym2419 := z.DecBinary() + _ = yym2419 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2414), d) + h.decSliceServicePort((*[]ServicePort)(yyv2418), d) } } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31694,21 +31726,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2416 := &x.Selector - yym2417 := z.DecBinary() - _ = yym2417 + yyv2420 := &x.Selector + yym2421 := z.DecBinary() + _ = yym2421 if false { } else { - z.F.DecMapStringStringX(yyv2416, false, d) + z.F.DecMapStringStringX(yyv2420, false, d) } } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31718,13 +31750,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31734,13 +31766,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31748,21 +31780,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2420 := &x.ExternalIPs - yym2421 := z.DecBinary() - _ = yym2421 + yyv2424 := &x.ExternalIPs + yym2425 := z.DecBinary() + _ = yym2425 if false { } else { - z.F.DecSliceStringX(yyv2420, false, d) + z.F.DecSliceStringX(yyv2424, false, d) } } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31770,21 +31802,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2422 := &x.DeprecatedPublicIPs - yym2423 := z.DecBinary() - _ = yym2423 + yyv2426 := &x.DeprecatedPublicIPs + yym2427 := z.DecBinary() + _ = yym2427 if false { } else { - z.F.DecSliceStringX(yyv2422, false, d) + z.F.DecSliceStringX(yyv2426, false, d) } } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31794,13 +31826,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31810,13 +31842,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31824,26 +31856,42 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2426 := &x.LoadBalancerSourceRanges - yym2427 := z.DecBinary() - _ = yym2427 + yyv2430 := &x.LoadBalancerSourceRanges + yym2431 := z.DecBinary() + _ = yym2431 if false { } else { - z.F.DecSliceStringX(yyv2426, false, d) + z.F.DecSliceStringX(yyv2430, false, d) } } + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l + } else { + yyb2417 = r.CheckBreak() + } + if yyb2417 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } for { - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2413-1, "") + z.DecStructFieldNotFound(yyj2417-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31855,38 +31903,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2428 := z.EncBinary() - _ = yym2428 + yym2433 := z.EncBinary() + _ = yym2433 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2429 := !z.EncBinary() - yy2arr2429 := z.EncBasicHandle().StructToArray - var yyq2429 [5]bool - _, _, _ = yysep2429, yyq2429, yy2arr2429 - const yyr2429 bool = false - yyq2429[0] = x.Name != "" - yyq2429[1] = x.Protocol != "" - yyq2429[3] = true - yyq2429[4] = x.NodePort != 0 - var yynn2429 int - if yyr2429 || yy2arr2429 { + yysep2434 := !z.EncBinary() + yy2arr2434 := z.EncBasicHandle().StructToArray + var yyq2434 [5]bool + _, _, _ = yysep2434, yyq2434, yy2arr2434 + const yyr2434 bool = false + yyq2434[0] = x.Name != "" + yyq2434[1] = x.Protocol != "" + yyq2434[3] = true + yyq2434[4] = x.NodePort != 0 + var yynn2434 int + if yyr2434 || yy2arr2434 { r.EncodeArrayStart(5) } else { - yynn2429 = 1 - for _, b := range yyq2429 { + yynn2434 = 1 + for _, b := range yyq2434 { if b { - yynn2429++ + yynn2434++ } } - r.EncodeMapStart(yynn2429) - yynn2429 = 0 + r.EncodeMapStart(yynn2434) + yynn2434 = 0 } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2429[0] { - yym2431 := z.EncBinary() - _ = yym2431 + if yyq2434[0] { + yym2436 := z.EncBinary() + _ = yym2436 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -31895,37 +31943,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2429[0] { + if yyq2434[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2432 := z.EncBinary() - _ = yym2432 + yym2437 := z.EncBinary() + _ = yym2437 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2429[1] { + if yyq2434[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2429[1] { + if yyq2434[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2435 := z.EncBinary() - _ = yym2435 + yym2440 := z.EncBinary() + _ = yym2440 if false { } else { r.EncodeInt(int64(x.Port)) @@ -31934,51 +31982,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2436 := z.EncBinary() - _ = yym2436 + yym2441 := z.EncBinary() + _ = yym2441 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2429[3] { - yy2438 := &x.TargetPort - yym2439 := z.EncBinary() - _ = yym2439 + if yyq2434[3] { + yy2443 := &x.TargetPort + yym2444 := z.EncBinary() + _ = yym2444 if false { - } else if z.HasExtensions() && z.EncExt(yy2438) { - } else if !yym2439 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2438) + } else if z.HasExtensions() && z.EncExt(yy2443) { + } else if !yym2444 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2443) } else { - z.EncFallback(yy2438) + z.EncFallback(yy2443) } } else { r.EncodeNil() } } else { - if yyq2429[3] { + if yyq2434[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2440 := &x.TargetPort - yym2441 := z.EncBinary() - _ = yym2441 + yy2445 := &x.TargetPort + yym2446 := z.EncBinary() + _ = yym2446 if false { - } else if z.HasExtensions() && z.EncExt(yy2440) { - } else if !yym2441 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2440) + } else if z.HasExtensions() && z.EncExt(yy2445) { + } else if !yym2446 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2445) } else { - z.EncFallback(yy2440) + z.EncFallback(yy2445) } } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2429[4] { - yym2443 := z.EncBinary() - _ = yym2443 + if yyq2434[4] { + yym2448 := z.EncBinary() + _ = yym2448 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -31987,19 +32035,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2429[4] { + if yyq2434[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2444 := z.EncBinary() - _ = yym2444 + yym2449 := z.EncBinary() + _ = yym2449 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32012,25 +32060,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2445 := z.DecBinary() - _ = yym2445 + yym2450 := z.DecBinary() + _ = yym2450 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2446 := r.ContainerType() - if yyct2446 == codecSelferValueTypeMap1234 { - yyl2446 := r.ReadMapStart() - if yyl2446 == 0 { + yyct2451 := r.ContainerType() + if yyct2451 == codecSelferValueTypeMap1234 { + yyl2451 := r.ReadMapStart() + if yyl2451 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2446, d) + x.codecDecodeSelfFromMap(yyl2451, d) } - } else if yyct2446 == codecSelferValueTypeArray1234 { - yyl2446 := r.ReadArrayStart() - if yyl2446 == 0 { + } else if yyct2451 == codecSelferValueTypeArray1234 { + yyl2451 := r.ReadArrayStart() + if yyl2451 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2446, d) + x.codecDecodeSelfFromArray(yyl2451, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32042,12 +32090,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2447Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2447Slc - var yyhl2447 bool = l >= 0 - for yyj2447 := 0; ; yyj2447++ { - if yyhl2447 { - if yyj2447 >= l { + var yys2452Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2452Slc + var yyhl2452 bool = l >= 0 + for yyj2452 := 0; ; yyj2452++ { + if yyhl2452 { + if yyj2452 >= l { break } } else { @@ -32056,10 +32104,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2447Slc = r.DecodeBytes(yys2447Slc, true, true) - yys2447 := string(yys2447Slc) + yys2452Slc = r.DecodeBytes(yys2452Slc, true, true) + yys2452 := string(yys2452Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2447 { + switch yys2452 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -32082,15 +32130,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2451 := &x.TargetPort - yym2452 := z.DecBinary() - _ = yym2452 + yyv2456 := &x.TargetPort + yym2457 := z.DecBinary() + _ = yym2457 if false { - } else if z.HasExtensions() && z.DecExt(yyv2451) { - } else if !yym2452 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2451) + } else if z.HasExtensions() && z.DecExt(yyv2456) { + } else if !yym2457 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2456) } else { - z.DecFallback(yyv2451, false) + z.DecFallback(yyv2456, false) } } case "nodePort": @@ -32100,9 +32148,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2447) - } // end switch yys2447 - } // end for yyj2447 + z.DecStructFieldNotFound(-1, yys2452) + } // end switch yys2452 + } // end for yyj2452 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32110,16 +32158,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2454 int - var yyb2454 bool - var yyhl2454 bool = l >= 0 - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + var yyj2459 int + var yyb2459 bool + var yyhl2459 bool = l >= 0 + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32129,13 +32177,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32145,13 +32193,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32161,13 +32209,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32175,24 +32223,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2458 := &x.TargetPort - yym2459 := z.DecBinary() - _ = yym2459 + yyv2463 := &x.TargetPort + yym2464 := z.DecBinary() + _ = yym2464 if false { - } else if z.HasExtensions() && z.DecExt(yyv2458) { - } else if !yym2459 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2458) + } else if z.HasExtensions() && z.DecExt(yyv2463) { + } else if !yym2464 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2463) } else { - z.DecFallback(yyv2458, false) + z.DecFallback(yyv2463, false) } } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32203,17 +32251,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2454-1, "") + z.DecStructFieldNotFound(yyj2459-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32225,39 +32273,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2461 := z.EncBinary() - _ = yym2461 + yym2466 := z.EncBinary() + _ = yym2466 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2462 := !z.EncBinary() - yy2arr2462 := z.EncBasicHandle().StructToArray - var yyq2462 [5]bool - _, _, _ = yysep2462, yyq2462, yy2arr2462 - const yyr2462 bool = false - yyq2462[0] = x.Kind != "" - yyq2462[1] = x.APIVersion != "" - yyq2462[2] = true - yyq2462[3] = true - yyq2462[4] = true - var yynn2462 int - if yyr2462 || yy2arr2462 { + yysep2467 := !z.EncBinary() + yy2arr2467 := z.EncBasicHandle().StructToArray + var yyq2467 [5]bool + _, _, _ = yysep2467, yyq2467, yy2arr2467 + const yyr2467 bool = false + yyq2467[0] = x.Kind != "" + yyq2467[1] = x.APIVersion != "" + yyq2467[2] = true + yyq2467[3] = true + yyq2467[4] = true + var yynn2467 int + if yyr2467 || yy2arr2467 { r.EncodeArrayStart(5) } else { - yynn2462 = 0 - for _, b := range yyq2462 { + yynn2467 = 0 + for _, b := range yyq2467 { if b { - yynn2462++ + yynn2467++ } } - r.EncodeMapStart(yynn2462) - yynn2462 = 0 + r.EncodeMapStart(yynn2467) + yynn2467 = 0 } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[0] { - yym2464 := z.EncBinary() - _ = yym2464 + if yyq2467[0] { + yym2469 := z.EncBinary() + _ = yym2469 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32266,23 +32314,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2462[0] { + if yyq2467[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2465 := z.EncBinary() - _ = yym2465 + yym2470 := z.EncBinary() + _ = yym2470 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[1] { - yym2467 := z.EncBinary() - _ = yym2467 + if yyq2467[1] { + yym2472 := z.EncBinary() + _ = yym2472 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32291,70 +32339,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2462[1] { + if yyq2467[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2468 := z.EncBinary() - _ = yym2468 + yym2473 := z.EncBinary() + _ = yym2473 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[2] { - yy2470 := &x.ObjectMeta - yy2470.CodecEncodeSelf(e) + if yyq2467[2] { + yy2475 := &x.ObjectMeta + yy2475.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[2] { + if yyq2467[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2471 := &x.ObjectMeta - yy2471.CodecEncodeSelf(e) + yy2476 := &x.ObjectMeta + yy2476.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[3] { - yy2473 := &x.Spec - yy2473.CodecEncodeSelf(e) + if yyq2467[3] { + yy2478 := &x.Spec + yy2478.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[3] { + if yyq2467[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2474 := &x.Spec - yy2474.CodecEncodeSelf(e) + yy2479 := &x.Spec + yy2479.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[4] { - yy2476 := &x.Status - yy2476.CodecEncodeSelf(e) + if yyq2467[4] { + yy2481 := &x.Status + yy2481.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[4] { + if yyq2467[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2477 := &x.Status - yy2477.CodecEncodeSelf(e) + yy2482 := &x.Status + yy2482.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32367,25 +32415,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2478 := z.DecBinary() - _ = yym2478 + yym2483 := z.DecBinary() + _ = yym2483 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2479 := r.ContainerType() - if yyct2479 == codecSelferValueTypeMap1234 { - yyl2479 := r.ReadMapStart() - if yyl2479 == 0 { + yyct2484 := r.ContainerType() + if yyct2484 == codecSelferValueTypeMap1234 { + yyl2484 := r.ReadMapStart() + if yyl2484 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2479, d) + x.codecDecodeSelfFromMap(yyl2484, d) } - } else if yyct2479 == codecSelferValueTypeArray1234 { - yyl2479 := r.ReadArrayStart() - if yyl2479 == 0 { + } else if yyct2484 == codecSelferValueTypeArray1234 { + yyl2484 := r.ReadArrayStart() + if yyl2484 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2479, d) + x.codecDecodeSelfFromArray(yyl2484, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32397,12 +32445,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2480Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2480Slc - var yyhl2480 bool = l >= 0 - for yyj2480 := 0; ; yyj2480++ { - if yyhl2480 { - if yyj2480 >= l { + var yys2485Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2485Slc + var yyhl2485 bool = l >= 0 + for yyj2485 := 0; ; yyj2485++ { + if yyhl2485 { + if yyj2485 >= l { break } } else { @@ -32411,10 +32459,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2480Slc = r.DecodeBytes(yys2480Slc, true, true) - yys2480 := string(yys2480Slc) + yys2485Slc = r.DecodeBytes(yys2485Slc, true, true) + yys2485 := string(yys2485Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2480 { + switch yys2485 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32431,27 +32479,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2483 := &x.ObjectMeta - yyv2483.CodecDecodeSelf(d) + yyv2488 := &x.ObjectMeta + yyv2488.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2484 := &x.Spec - yyv2484.CodecDecodeSelf(d) + yyv2489 := &x.Spec + yyv2489.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2485 := &x.Status - yyv2485.CodecDecodeSelf(d) + yyv2490 := &x.Status + yyv2490.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2480) - } // end switch yys2480 - } // end for yyj2480 + z.DecStructFieldNotFound(-1, yys2485) + } // end switch yys2485 + } // end for yyj2485 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32459,16 +32507,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2486 int - var yyb2486 bool - var yyhl2486 bool = l >= 0 - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + var yyj2491 int + var yyb2491 bool + var yyhl2491 bool = l >= 0 + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32478,13 +32526,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32494,13 +32542,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32508,16 +32556,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2489 := &x.ObjectMeta - yyv2489.CodecDecodeSelf(d) + yyv2494 := &x.ObjectMeta + yyv2494.CodecDecodeSelf(d) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32525,16 +32573,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2490 := &x.Spec - yyv2490.CodecDecodeSelf(d) + yyv2495 := &x.Spec + yyv2495.CodecDecodeSelf(d) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32542,21 +32590,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2491 := &x.Status - yyv2491.CodecDecodeSelf(d) + yyv2496 := &x.Status + yyv2496.CodecDecodeSelf(d) } for { - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2486-1, "") + z.DecStructFieldNotFound(yyj2491-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32568,37 +32616,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2492 := z.EncBinary() - _ = yym2492 + yym2497 := z.EncBinary() + _ = yym2497 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2493 := !z.EncBinary() - yy2arr2493 := z.EncBasicHandle().StructToArray - var yyq2493 [4]bool - _, _, _ = yysep2493, yyq2493, yy2arr2493 - const yyr2493 bool = false - yyq2493[0] = x.Kind != "" - yyq2493[1] = x.APIVersion != "" - yyq2493[2] = true - var yynn2493 int - if yyr2493 || yy2arr2493 { + yysep2498 := !z.EncBinary() + yy2arr2498 := z.EncBasicHandle().StructToArray + var yyq2498 [4]bool + _, _, _ = yysep2498, yyq2498, yy2arr2498 + const yyr2498 bool = false + yyq2498[0] = x.Kind != "" + yyq2498[1] = x.APIVersion != "" + yyq2498[2] = true + var yynn2498 int + if yyr2498 || yy2arr2498 { r.EncodeArrayStart(4) } else { - yynn2493 = 1 - for _, b := range yyq2493 { + yynn2498 = 1 + for _, b := range yyq2498 { if b { - yynn2493++ + yynn2498++ } } - r.EncodeMapStart(yynn2493) - yynn2493 = 0 + r.EncodeMapStart(yynn2498) + yynn2498 = 0 } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[0] { - yym2495 := z.EncBinary() - _ = yym2495 + if yyq2498[0] { + yym2500 := z.EncBinary() + _ = yym2500 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32607,23 +32655,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2493[0] { + if yyq2498[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2496 := z.EncBinary() - _ = yym2496 + yym2501 := z.EncBinary() + _ = yym2501 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[1] { - yym2498 := z.EncBinary() - _ = yym2498 + if yyq2498[1] { + yym2503 := z.EncBinary() + _ = yym2503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32632,54 +32680,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2493[1] { + if yyq2498[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2499 := z.EncBinary() - _ = yym2499 + yym2504 := z.EncBinary() + _ = yym2504 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[2] { - yy2501 := &x.ListMeta - yym2502 := z.EncBinary() - _ = yym2502 + if yyq2498[2] { + yy2506 := &x.ListMeta + yym2507 := z.EncBinary() + _ = yym2507 if false { - } else if z.HasExtensions() && z.EncExt(yy2501) { + } else if z.HasExtensions() && z.EncExt(yy2506) { } else { - z.EncFallback(yy2501) + z.EncFallback(yy2506) } } else { r.EncodeNil() } } else { - if yyq2493[2] { + if yyq2498[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2503 := &x.ListMeta - yym2504 := z.EncBinary() - _ = yym2504 + yy2508 := &x.ListMeta + yym2509 := z.EncBinary() + _ = yym2509 if false { - } else if z.HasExtensions() && z.EncExt(yy2503) { + } else if z.HasExtensions() && z.EncExt(yy2508) { } else { - z.EncFallback(yy2503) + z.EncFallback(yy2508) } } } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2506 := z.EncBinary() - _ = yym2506 + yym2511 := z.EncBinary() + _ = yym2511 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -32692,15 +32740,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2507 := z.EncBinary() - _ = yym2507 + yym2512 := z.EncBinary() + _ = yym2512 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32713,25 +32761,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2508 := z.DecBinary() - _ = yym2508 + yym2513 := z.DecBinary() + _ = yym2513 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2509 := r.ContainerType() - if yyct2509 == codecSelferValueTypeMap1234 { - yyl2509 := r.ReadMapStart() - if yyl2509 == 0 { + yyct2514 := r.ContainerType() + if yyct2514 == codecSelferValueTypeMap1234 { + yyl2514 := r.ReadMapStart() + if yyl2514 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2509, d) + x.codecDecodeSelfFromMap(yyl2514, d) } - } else if yyct2509 == codecSelferValueTypeArray1234 { - yyl2509 := r.ReadArrayStart() - if yyl2509 == 0 { + } else if yyct2514 == codecSelferValueTypeArray1234 { + yyl2514 := r.ReadArrayStart() + if yyl2514 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2509, d) + x.codecDecodeSelfFromArray(yyl2514, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32743,12 +32791,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2510Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2510Slc - var yyhl2510 bool = l >= 0 - for yyj2510 := 0; ; yyj2510++ { - if yyhl2510 { - if yyj2510 >= l { + var yys2515Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2515Slc + var yyhl2515 bool = l >= 0 + for yyj2515 := 0; ; yyj2515++ { + if yyhl2515 { + if yyj2515 >= l { break } } else { @@ -32757,10 +32805,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2510Slc = r.DecodeBytes(yys2510Slc, true, true) - yys2510 := string(yys2510Slc) + yys2515Slc = r.DecodeBytes(yys2515Slc, true, true) + yys2515 := string(yys2515Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2510 { + switch yys2515 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32777,31 +32825,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2513 := &x.ListMeta - yym2514 := z.DecBinary() - _ = yym2514 + yyv2518 := &x.ListMeta + yym2519 := z.DecBinary() + _ = yym2519 if false { - } else if z.HasExtensions() && z.DecExt(yyv2513) { + } else if z.HasExtensions() && z.DecExt(yyv2518) { } else { - z.DecFallback(yyv2513, false) + z.DecFallback(yyv2518, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2515 := &x.Items - yym2516 := z.DecBinary() - _ = yym2516 + yyv2520 := &x.Items + yym2521 := z.DecBinary() + _ = yym2521 if false { } else { - h.decSliceService((*[]Service)(yyv2515), d) + h.decSliceService((*[]Service)(yyv2520), d) } } default: - z.DecStructFieldNotFound(-1, yys2510) - } // end switch yys2510 - } // end for yyj2510 + z.DecStructFieldNotFound(-1, yys2515) + } // end switch yys2515 + } // end for yyj2515 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32809,16 +32857,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2517 int - var yyb2517 bool - var yyhl2517 bool = l >= 0 - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + var yyj2522 int + var yyb2522 bool + var yyhl2522 bool = l >= 0 + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32828,13 +32876,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32844,13 +32892,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32858,22 +32906,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2520 := &x.ListMeta - yym2521 := z.DecBinary() - _ = yym2521 + yyv2525 := &x.ListMeta + yym2526 := z.DecBinary() + _ = yym2526 if false { - } else if z.HasExtensions() && z.DecExt(yyv2520) { + } else if z.HasExtensions() && z.DecExt(yyv2525) { } else { - z.DecFallback(yyv2520, false) + z.DecFallback(yyv2525, false) } } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32881,26 +32929,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2522 := &x.Items - yym2523 := z.DecBinary() - _ = yym2523 + yyv2527 := &x.Items + yym2528 := z.DecBinary() + _ = yym2528 if false { } else { - h.decSliceService((*[]Service)(yyv2522), d) + h.decSliceService((*[]Service)(yyv2527), d) } } for { - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2517-1, "") + z.DecStructFieldNotFound(yyj2522-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32912,39 +32960,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2524 := z.EncBinary() - _ = yym2524 + yym2529 := z.EncBinary() + _ = yym2529 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2525 := !z.EncBinary() - yy2arr2525 := z.EncBasicHandle().StructToArray - var yyq2525 [5]bool - _, _, _ = yysep2525, yyq2525, yy2arr2525 - const yyr2525 bool = false - yyq2525[0] = x.Kind != "" - yyq2525[1] = x.APIVersion != "" - yyq2525[2] = true - yyq2525[3] = len(x.Secrets) != 0 - yyq2525[4] = len(x.ImagePullSecrets) != 0 - var yynn2525 int - if yyr2525 || yy2arr2525 { + yysep2530 := !z.EncBinary() + yy2arr2530 := z.EncBasicHandle().StructToArray + var yyq2530 [5]bool + _, _, _ = yysep2530, yyq2530, yy2arr2530 + const yyr2530 bool = false + yyq2530[0] = x.Kind != "" + yyq2530[1] = x.APIVersion != "" + yyq2530[2] = true + yyq2530[3] = len(x.Secrets) != 0 + yyq2530[4] = len(x.ImagePullSecrets) != 0 + var yynn2530 int + if yyr2530 || yy2arr2530 { r.EncodeArrayStart(5) } else { - yynn2525 = 0 - for _, b := range yyq2525 { + yynn2530 = 0 + for _, b := range yyq2530 { if b { - yynn2525++ + yynn2530++ } } - r.EncodeMapStart(yynn2525) - yynn2525 = 0 + r.EncodeMapStart(yynn2530) + yynn2530 = 0 } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[0] { - yym2527 := z.EncBinary() - _ = yym2527 + if yyq2530[0] { + yym2532 := z.EncBinary() + _ = yym2532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32953,23 +33001,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2525[0] { + if yyq2530[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2528 := z.EncBinary() - _ = yym2528 + yym2533 := z.EncBinary() + _ = yym2533 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[1] { - yym2530 := z.EncBinary() - _ = yym2530 + if yyq2530[1] { + yym2535 := z.EncBinary() + _ = yym2535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32978,43 +33026,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2525[1] { + if yyq2530[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2531 := z.EncBinary() - _ = yym2531 + yym2536 := z.EncBinary() + _ = yym2536 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[2] { - yy2533 := &x.ObjectMeta - yy2533.CodecEncodeSelf(e) + if yyq2530[2] { + yy2538 := &x.ObjectMeta + yy2538.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2525[2] { + if yyq2530[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2534 := &x.ObjectMeta - yy2534.CodecEncodeSelf(e) + yy2539 := &x.ObjectMeta + yy2539.CodecEncodeSelf(e) } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[3] { + if yyq2530[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2536 := z.EncBinary() - _ = yym2536 + yym2541 := z.EncBinary() + _ = yym2541 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33024,15 +33072,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2525[3] { + if yyq2530[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2537 := z.EncBinary() - _ = yym2537 + yym2542 := z.EncBinary() + _ = yym2542 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33040,14 +33088,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[4] { + if yyq2530[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2539 := z.EncBinary() - _ = yym2539 + yym2544 := z.EncBinary() + _ = yym2544 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33057,15 +33105,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2525[4] { + if yyq2530[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2540 := z.EncBinary() - _ = yym2540 + yym2545 := z.EncBinary() + _ = yym2545 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33073,7 +33121,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33086,25 +33134,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2541 := z.DecBinary() - _ = yym2541 + yym2546 := z.DecBinary() + _ = yym2546 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2542 := r.ContainerType() - if yyct2542 == codecSelferValueTypeMap1234 { - yyl2542 := r.ReadMapStart() - if yyl2542 == 0 { + yyct2547 := r.ContainerType() + if yyct2547 == codecSelferValueTypeMap1234 { + yyl2547 := r.ReadMapStart() + if yyl2547 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2542, d) + x.codecDecodeSelfFromMap(yyl2547, d) } - } else if yyct2542 == codecSelferValueTypeArray1234 { - yyl2542 := r.ReadArrayStart() - if yyl2542 == 0 { + } else if yyct2547 == codecSelferValueTypeArray1234 { + yyl2547 := r.ReadArrayStart() + if yyl2547 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2542, d) + x.codecDecodeSelfFromArray(yyl2547, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33116,12 +33164,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2543Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2543Slc - var yyhl2543 bool = l >= 0 - for yyj2543 := 0; ; yyj2543++ { - if yyhl2543 { - if yyj2543 >= l { + var yys2548Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2548Slc + var yyhl2548 bool = l >= 0 + for yyj2548 := 0; ; yyj2548++ { + if yyhl2548 { + if yyj2548 >= l { break } } else { @@ -33130,10 +33178,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2543Slc = r.DecodeBytes(yys2543Slc, true, true) - yys2543 := string(yys2543Slc) + yys2548Slc = r.DecodeBytes(yys2548Slc, true, true) + yys2548 := string(yys2548Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2543 { + switch yys2548 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33150,37 +33198,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2546 := &x.ObjectMeta - yyv2546.CodecDecodeSelf(d) + yyv2551 := &x.ObjectMeta + yyv2551.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2547 := &x.Secrets - yym2548 := z.DecBinary() - _ = yym2548 + yyv2552 := &x.Secrets + yym2553 := z.DecBinary() + _ = yym2553 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2547), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2552), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2549 := &x.ImagePullSecrets - yym2550 := z.DecBinary() - _ = yym2550 + yyv2554 := &x.ImagePullSecrets + yym2555 := z.DecBinary() + _ = yym2555 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2549), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2554), d) } } default: - z.DecStructFieldNotFound(-1, yys2543) - } // end switch yys2543 - } // end for yyj2543 + z.DecStructFieldNotFound(-1, yys2548) + } // end switch yys2548 + } // end for yyj2548 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33188,16 +33236,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2551 int - var yyb2551 bool - var yyhl2551 bool = l >= 0 - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + var yyj2556 int + var yyb2556 bool + var yyhl2556 bool = l >= 0 + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33207,13 +33255,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33223,13 +33271,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33237,16 +33285,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2554 := &x.ObjectMeta - yyv2554.CodecDecodeSelf(d) + yyv2559 := &x.ObjectMeta + yyv2559.CodecDecodeSelf(d) } - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33254,21 +33302,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2555 := &x.Secrets - yym2556 := z.DecBinary() - _ = yym2556 + yyv2560 := &x.Secrets + yym2561 := z.DecBinary() + _ = yym2561 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2555), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2560), d) } } - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33276,26 +33324,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2557 := &x.ImagePullSecrets - yym2558 := z.DecBinary() - _ = yym2558 + yyv2562 := &x.ImagePullSecrets + yym2563 := z.DecBinary() + _ = yym2563 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2557), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2562), d) } } for { - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2551-1, "") + z.DecStructFieldNotFound(yyj2556-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33307,37 +33355,37 @@ func (x *ServiceAccountList) 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)) @@ -33346,23 +33394,23 @@ func (x *ServiceAccountList) 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)) @@ -33371,54 +33419,54 @@ func (x *ServiceAccountList) 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.ListMeta - yym2569 := z.EncBinary() - _ = yym2569 + if yyq2565[2] { + yy2573 := &x.ListMeta + yym2574 := z.EncBinary() + _ = yym2574 if false { - } else if z.HasExtensions() && z.EncExt(yy2568) { + } else if z.HasExtensions() && z.EncExt(yy2573) { } else { - z.EncFallback(yy2568) + z.EncFallback(yy2573) } } else { r.EncodeNil() } } else { - if yyq2560[2] { + if yyq2565[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2570 := &x.ListMeta - yym2571 := z.EncBinary() - _ = yym2571 + yy2575 := &x.ListMeta + yym2576 := z.EncBinary() + _ = yym2576 if false { - } else if z.HasExtensions() && z.EncExt(yy2570) { + } else if z.HasExtensions() && z.EncExt(yy2575) { } else { - z.EncFallback(yy2570) + z.EncFallback(yy2575) } } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2573 := z.EncBinary() - _ = yym2573 + yym2578 := z.EncBinary() + _ = yym2578 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -33431,15 +33479,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2574 := z.EncBinary() - _ = yym2574 + yym2579 := z.EncBinary() + _ = yym2579 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33452,25 +33500,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2575 := z.DecBinary() - _ = yym2575 + yym2580 := z.DecBinary() + _ = yym2580 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2576 := r.ContainerType() - if yyct2576 == codecSelferValueTypeMap1234 { - yyl2576 := r.ReadMapStart() - if yyl2576 == 0 { + yyct2581 := r.ContainerType() + if yyct2581 == codecSelferValueTypeMap1234 { + yyl2581 := r.ReadMapStart() + if yyl2581 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2576, d) + x.codecDecodeSelfFromMap(yyl2581, d) } - } else if yyct2576 == codecSelferValueTypeArray1234 { - yyl2576 := r.ReadArrayStart() - if yyl2576 == 0 { + } else if yyct2581 == codecSelferValueTypeArray1234 { + yyl2581 := r.ReadArrayStart() + if yyl2581 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2576, d) + x.codecDecodeSelfFromArray(yyl2581, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33482,12 +33530,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2577Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2577Slc - var yyhl2577 bool = l >= 0 - for yyj2577 := 0; ; yyj2577++ { - if yyhl2577 { - if yyj2577 >= l { + var yys2582Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2582Slc + var yyhl2582 bool = l >= 0 + for yyj2582 := 0; ; yyj2582++ { + if yyhl2582 { + if yyj2582 >= l { break } } else { @@ -33496,10 +33544,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2577Slc = r.DecodeBytes(yys2577Slc, true, true) - yys2577 := string(yys2577Slc) + yys2582Slc = r.DecodeBytes(yys2582Slc, true, true) + yys2582 := string(yys2582Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2577 { + switch yys2582 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33516,31 +33564,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2580 := &x.ListMeta - yym2581 := z.DecBinary() - _ = yym2581 + yyv2585 := &x.ListMeta + yym2586 := z.DecBinary() + _ = yym2586 if false { - } else if z.HasExtensions() && z.DecExt(yyv2580) { + } else if z.HasExtensions() && z.DecExt(yyv2585) { } else { - z.DecFallback(yyv2580, false) + z.DecFallback(yyv2585, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2582 := &x.Items - yym2583 := z.DecBinary() - _ = yym2583 + yyv2587 := &x.Items + yym2588 := z.DecBinary() + _ = yym2588 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2582), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2587), d) } } default: - z.DecStructFieldNotFound(-1, yys2577) - } // end switch yys2577 - } // end for yyj2577 + z.DecStructFieldNotFound(-1, yys2582) + } // end switch yys2582 + } // end for yyj2582 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33548,16 +33596,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2584 int - var yyb2584 bool - var yyhl2584 bool = l >= 0 - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + var yyj2589 int + var yyb2589 bool + var yyhl2589 bool = l >= 0 + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33567,13 +33615,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33583,13 +33631,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33597,22 +33645,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2587 := &x.ListMeta - yym2588 := z.DecBinary() - _ = yym2588 + yyv2592 := &x.ListMeta + yym2593 := z.DecBinary() + _ = yym2593 if false { - } else if z.HasExtensions() && z.DecExt(yyv2587) { + } else if z.HasExtensions() && z.DecExt(yyv2592) { } else { - z.DecFallback(yyv2587, false) + z.DecFallback(yyv2592, false) } } - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33620,26 +33668,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2589 := &x.Items - yym2590 := z.DecBinary() - _ = yym2590 + yyv2594 := &x.Items + yym2595 := z.DecBinary() + _ = yym2595 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2589), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2594), d) } } for { - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2584-1, "") + z.DecStructFieldNotFound(yyj2589-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33651,37 +33699,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2591 := z.EncBinary() - _ = yym2591 + yym2596 := z.EncBinary() + _ = yym2596 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2592 := !z.EncBinary() - yy2arr2592 := z.EncBasicHandle().StructToArray - var yyq2592 [4]bool - _, _, _ = yysep2592, yyq2592, yy2arr2592 - const yyr2592 bool = false - yyq2592[0] = x.Kind != "" - yyq2592[1] = x.APIVersion != "" - yyq2592[2] = true - var yynn2592 int - if yyr2592 || yy2arr2592 { + yysep2597 := !z.EncBinary() + yy2arr2597 := z.EncBasicHandle().StructToArray + var yyq2597 [4]bool + _, _, _ = yysep2597, yyq2597, yy2arr2597 + const yyr2597 bool = false + yyq2597[0] = x.Kind != "" + yyq2597[1] = x.APIVersion != "" + yyq2597[2] = true + var yynn2597 int + if yyr2597 || yy2arr2597 { r.EncodeArrayStart(4) } else { - yynn2592 = 1 - for _, b := range yyq2592 { + yynn2597 = 1 + for _, b := range yyq2597 { if b { - yynn2592++ + yynn2597++ } } - r.EncodeMapStart(yynn2592) - yynn2592 = 0 + r.EncodeMapStart(yynn2597) + yynn2597 = 0 } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2592[0] { - yym2594 := z.EncBinary() - _ = yym2594 + if yyq2597[0] { + yym2599 := z.EncBinary() + _ = yym2599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33690,23 +33738,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2592[0] { + if yyq2597[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2595 := z.EncBinary() - _ = yym2595 + yym2600 := z.EncBinary() + _ = yym2600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2592[1] { - yym2597 := z.EncBinary() - _ = yym2597 + if yyq2597[1] { + yym2602 := z.EncBinary() + _ = yym2602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33715,42 +33763,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2592[1] { + if yyq2597[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2598 := z.EncBinary() - _ = yym2598 + yym2603 := z.EncBinary() + _ = yym2603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2592[2] { - yy2600 := &x.ObjectMeta - yy2600.CodecEncodeSelf(e) + if yyq2597[2] { + yy2605 := &x.ObjectMeta + yy2605.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2592[2] { + if yyq2597[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2601 := &x.ObjectMeta - yy2601.CodecEncodeSelf(e) + yy2606 := &x.ObjectMeta + yy2606.CodecEncodeSelf(e) } } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2603 := z.EncBinary() - _ = yym2603 + yym2608 := z.EncBinary() + _ = yym2608 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -33763,15 +33811,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2604 := z.EncBinary() - _ = yym2604 + yym2609 := z.EncBinary() + _ = yym2609 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33784,25 +33832,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2605 := z.DecBinary() - _ = yym2605 + yym2610 := z.DecBinary() + _ = yym2610 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2606 := r.ContainerType() - if yyct2606 == codecSelferValueTypeMap1234 { - yyl2606 := r.ReadMapStart() - if yyl2606 == 0 { + yyct2611 := r.ContainerType() + if yyct2611 == codecSelferValueTypeMap1234 { + yyl2611 := r.ReadMapStart() + if yyl2611 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2606, d) + x.codecDecodeSelfFromMap(yyl2611, d) } - } else if yyct2606 == codecSelferValueTypeArray1234 { - yyl2606 := r.ReadArrayStart() - if yyl2606 == 0 { + } else if yyct2611 == codecSelferValueTypeArray1234 { + yyl2611 := r.ReadArrayStart() + if yyl2611 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2606, d) + x.codecDecodeSelfFromArray(yyl2611, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33814,12 +33862,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2607Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2607Slc - var yyhl2607 bool = l >= 0 - for yyj2607 := 0; ; yyj2607++ { - if yyhl2607 { - if yyj2607 >= l { + var yys2612Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2612Slc + var yyhl2612 bool = l >= 0 + for yyj2612 := 0; ; yyj2612++ { + if yyhl2612 { + if yyj2612 >= l { break } } else { @@ -33828,10 +33876,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2607Slc = r.DecodeBytes(yys2607Slc, true, true) - yys2607 := string(yys2607Slc) + yys2612Slc = r.DecodeBytes(yys2612Slc, true, true) + yys2612 := string(yys2612Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2607 { + switch yys2612 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33848,25 +33896,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2610 := &x.ObjectMeta - yyv2610.CodecDecodeSelf(d) + yyv2615 := &x.ObjectMeta + yyv2615.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2611 := &x.Subsets - yym2612 := z.DecBinary() - _ = yym2612 + yyv2616 := &x.Subsets + yym2617 := z.DecBinary() + _ = yym2617 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2611), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2616), d) } } default: - z.DecStructFieldNotFound(-1, yys2607) - } // end switch yys2607 - } // end for yyj2607 + z.DecStructFieldNotFound(-1, yys2612) + } // end switch yys2612 + } // end for yyj2612 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33874,16 +33922,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2613 int - var yyb2613 bool - var yyhl2613 bool = l >= 0 - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + var yyj2618 int + var yyb2618 bool + var yyhl2618 bool = l >= 0 + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33893,13 +33941,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33909,13 +33957,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33923,16 +33971,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2616 := &x.ObjectMeta - yyv2616.CodecDecodeSelf(d) + yyv2621 := &x.ObjectMeta + yyv2621.CodecDecodeSelf(d) } - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33940,26 +33988,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2617 := &x.Subsets - yym2618 := z.DecBinary() - _ = yym2618 + yyv2622 := &x.Subsets + yym2623 := z.DecBinary() + _ = yym2623 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2617), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2622), d) } } for { - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2613-1, "") + z.DecStructFieldNotFound(yyj2618-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33971,40 +34019,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2619 := z.EncBinary() - _ = yym2619 + yym2624 := z.EncBinary() + _ = yym2624 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2620 := !z.EncBinary() - yy2arr2620 := z.EncBasicHandle().StructToArray - var yyq2620 [3]bool - _, _, _ = yysep2620, yyq2620, yy2arr2620 - const yyr2620 bool = false - yyq2620[0] = len(x.Addresses) != 0 - yyq2620[1] = len(x.NotReadyAddresses) != 0 - yyq2620[2] = len(x.Ports) != 0 - var yynn2620 int - if yyr2620 || yy2arr2620 { + yysep2625 := !z.EncBinary() + yy2arr2625 := z.EncBasicHandle().StructToArray + var yyq2625 [3]bool + _, _, _ = yysep2625, yyq2625, yy2arr2625 + const yyr2625 bool = false + yyq2625[0] = len(x.Addresses) != 0 + yyq2625[1] = len(x.NotReadyAddresses) != 0 + yyq2625[2] = len(x.Ports) != 0 + var yynn2625 int + if yyr2625 || yy2arr2625 { r.EncodeArrayStart(3) } else { - yynn2620 = 0 - for _, b := range yyq2620 { + yynn2625 = 0 + for _, b := range yyq2625 { if b { - yynn2620++ + yynn2625++ } } - r.EncodeMapStart(yynn2620) - yynn2620 = 0 + r.EncodeMapStart(yynn2625) + yynn2625 = 0 } - if yyr2620 || yy2arr2620 { + if yyr2625 || yy2arr2625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[0] { + if yyq2625[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2622 := z.EncBinary() - _ = yym2622 + yym2627 := z.EncBinary() + _ = yym2627 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34014,15 +34062,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2620[0] { + if yyq2625[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2623 := z.EncBinary() - _ = yym2623 + yym2628 := z.EncBinary() + _ = yym2628 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34030,14 +34078,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2620 || yy2arr2620 { + if yyr2625 || yy2arr2625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[1] { + if yyq2625[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2625 := z.EncBinary() - _ = yym2625 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34047,15 +34095,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2620[1] { + if yyq2625[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2626 := z.EncBinary() - _ = yym2626 + yym2631 := z.EncBinary() + _ = yym2631 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34063,14 +34111,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2620 || yy2arr2620 { + if yyr2625 || yy2arr2625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[2] { + if yyq2625[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2628 := z.EncBinary() - _ = yym2628 + yym2633 := z.EncBinary() + _ = yym2633 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34080,15 +34128,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2620[2] { + if yyq2625[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2629 := z.EncBinary() - _ = yym2629 + yym2634 := z.EncBinary() + _ = yym2634 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34096,7 +34144,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2620 || yy2arr2620 { + if yyr2625 || yy2arr2625 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34109,25 +34157,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2630 := z.DecBinary() - _ = yym2630 + yym2635 := z.DecBinary() + _ = yym2635 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2631 := r.ContainerType() - if yyct2631 == codecSelferValueTypeMap1234 { - yyl2631 := r.ReadMapStart() - if yyl2631 == 0 { + yyct2636 := r.ContainerType() + if yyct2636 == codecSelferValueTypeMap1234 { + yyl2636 := r.ReadMapStart() + if yyl2636 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2631, d) + x.codecDecodeSelfFromMap(yyl2636, d) } - } else if yyct2631 == codecSelferValueTypeArray1234 { - yyl2631 := r.ReadArrayStart() - if yyl2631 == 0 { + } else if yyct2636 == codecSelferValueTypeArray1234 { + yyl2636 := r.ReadArrayStart() + if yyl2636 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2631, d) + x.codecDecodeSelfFromArray(yyl2636, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34139,12 +34187,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2632Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2632Slc - var yyhl2632 bool = l >= 0 - for yyj2632 := 0; ; yyj2632++ { - if yyhl2632 { - if yyj2632 >= l { + var yys2637Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2637Slc + var yyhl2637 bool = l >= 0 + for yyj2637 := 0; ; yyj2637++ { + if yyhl2637 { + if yyj2637 >= l { break } } else { @@ -34153,50 +34201,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2632Slc = r.DecodeBytes(yys2632Slc, true, true) - yys2632 := string(yys2632Slc) + yys2637Slc = r.DecodeBytes(yys2637Slc, true, true) + yys2637 := string(yys2637Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2632 { + switch yys2637 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2633 := &x.Addresses - yym2634 := z.DecBinary() - _ = yym2634 + yyv2638 := &x.Addresses + yym2639 := z.DecBinary() + _ = yym2639 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2633), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2638), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2635 := &x.NotReadyAddresses - yym2636 := z.DecBinary() - _ = yym2636 + yyv2640 := &x.NotReadyAddresses + yym2641 := z.DecBinary() + _ = yym2641 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2635), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2640), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2637 := &x.Ports - yym2638 := z.DecBinary() - _ = yym2638 + yyv2642 := &x.Ports + yym2643 := z.DecBinary() + _ = yym2643 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2637), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2642), d) } } default: - z.DecStructFieldNotFound(-1, yys2632) - } // end switch yys2632 - } // end for yyj2632 + z.DecStructFieldNotFound(-1, yys2637) + } // end switch yys2637 + } // end for yyj2637 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34204,16 +34252,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2639 int - var yyb2639 bool - var yyhl2639 bool = l >= 0 - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + var yyj2644 int + var yyb2644 bool + var yyhl2644 bool = l >= 0 + yyj2644++ + if yyhl2644 { + yyb2644 = yyj2644 > l } else { - yyb2639 = r.CheckBreak() + yyb2644 = r.CheckBreak() } - if yyb2639 { + if yyb2644 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34221,21 +34269,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2640 := &x.Addresses - yym2641 := z.DecBinary() - _ = yym2641 + yyv2645 := &x.Addresses + yym2646 := z.DecBinary() + _ = yym2646 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2640), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2645), d) } } - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2644++ + if yyhl2644 { + yyb2644 = yyj2644 > l } else { - yyb2639 = r.CheckBreak() + yyb2644 = r.CheckBreak() } - if yyb2639 { + if yyb2644 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34243,21 +34291,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2642 := &x.NotReadyAddresses - yym2643 := z.DecBinary() - _ = yym2643 + yyv2647 := &x.NotReadyAddresses + yym2648 := z.DecBinary() + _ = yym2648 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2642), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2647), d) } } - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2644++ + if yyhl2644 { + yyb2644 = yyj2644 > l } else { - yyb2639 = r.CheckBreak() + yyb2644 = r.CheckBreak() } - if yyb2639 { + if yyb2644 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34265,26 +34313,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2644 := &x.Ports - yym2645 := z.DecBinary() - _ = yym2645 + yyv2649 := &x.Ports + yym2650 := z.DecBinary() + _ = yym2650 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2644), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2649), d) } } for { - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2644++ + if yyhl2644 { + yyb2644 = yyj2644 > l } else { - yyb2639 = r.CheckBreak() + yyb2644 = r.CheckBreak() } - if yyb2639 { + if yyb2644 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2639-1, "") + z.DecStructFieldNotFound(yyj2644-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34296,36 +34344,36 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2646 := z.EncBinary() - _ = yym2646 + yym2651 := z.EncBinary() + _ = yym2651 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2647 := !z.EncBinary() - yy2arr2647 := z.EncBasicHandle().StructToArray - var yyq2647 [4]bool - _, _, _ = yysep2647, yyq2647, yy2arr2647 - const yyr2647 bool = false - yyq2647[1] = x.Hostname != "" - yyq2647[2] = x.NodeName != nil - yyq2647[3] = x.TargetRef != nil - var yynn2647 int - if yyr2647 || yy2arr2647 { + yysep2652 := !z.EncBinary() + yy2arr2652 := z.EncBasicHandle().StructToArray + var yyq2652 [4]bool + _, _, _ = yysep2652, yyq2652, yy2arr2652 + const yyr2652 bool = false + yyq2652[1] = x.Hostname != "" + yyq2652[2] = x.NodeName != nil + yyq2652[3] = x.TargetRef != nil + var yynn2652 int + if yyr2652 || yy2arr2652 { r.EncodeArrayStart(4) } else { - yynn2647 = 1 - for _, b := range yyq2647 { + yynn2652 = 1 + for _, b := range yyq2652 { if b { - yynn2647++ + yynn2652++ } } - r.EncodeMapStart(yynn2647) - yynn2647 = 0 + r.EncodeMapStart(yynn2652) + yynn2652 = 0 } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2649 := z.EncBinary() - _ = yym2649 + yym2654 := z.EncBinary() + _ = yym2654 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -34334,18 +34382,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2650 := z.EncBinary() - _ = yym2650 + yym2655 := z.EncBinary() + _ = yym2655 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2647[1] { - yym2652 := z.EncBinary() - _ = yym2652 + if yyq2652[1] { + yym2657 := z.EncBinary() + _ = yym2657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -34354,56 +34402,56 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2647[1] { + if yyq2652[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2653 := z.EncBinary() - _ = yym2653 + yym2658 := z.EncBinary() + _ = yym2658 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2647[2] { + if yyq2652[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2655 := *x.NodeName - yym2656 := z.EncBinary() - _ = yym2656 + yy2660 := *x.NodeName + yym2661 := z.EncBinary() + _ = yym2661 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2655)) + r.EncodeString(codecSelferC_UTF81234, string(yy2660)) } } } else { r.EncodeNil() } } else { - if yyq2647[2] { + if yyq2652[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2657 := *x.NodeName - yym2658 := z.EncBinary() - _ = yym2658 + yy2662 := *x.NodeName + yym2663 := z.EncBinary() + _ = yym2663 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2657)) + r.EncodeString(codecSelferC_UTF81234, string(yy2662)) } } } } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2647[3] { + if yyq2652[3] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -34413,7 +34461,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2647[3] { + if yyq2652[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -34424,7 +34472,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34437,25 +34485,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2660 := z.DecBinary() - _ = yym2660 + yym2665 := z.DecBinary() + _ = yym2665 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2661 := r.ContainerType() - if yyct2661 == codecSelferValueTypeMap1234 { - yyl2661 := r.ReadMapStart() - if yyl2661 == 0 { + yyct2666 := r.ContainerType() + if yyct2666 == codecSelferValueTypeMap1234 { + yyl2666 := r.ReadMapStart() + if yyl2666 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2661, d) + x.codecDecodeSelfFromMap(yyl2666, d) } - } else if yyct2661 == codecSelferValueTypeArray1234 { - yyl2661 := r.ReadArrayStart() - if yyl2661 == 0 { + } else if yyct2666 == codecSelferValueTypeArray1234 { + yyl2666 := r.ReadArrayStart() + if yyl2666 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2661, d) + x.codecDecodeSelfFromArray(yyl2666, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34467,12 +34515,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2662Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2662Slc - var yyhl2662 bool = l >= 0 - for yyj2662 := 0; ; yyj2662++ { - if yyhl2662 { - if yyj2662 >= l { + var yys2667Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2667Slc + var yyhl2667 bool = l >= 0 + for yyj2667 := 0; ; yyj2667++ { + if yyhl2667 { + if yyj2667 >= l { break } } else { @@ -34481,10 +34529,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2662Slc = r.DecodeBytes(yys2662Slc, true, true) - yys2662 := string(yys2662Slc) + yys2667Slc = r.DecodeBytes(yys2667Slc, true, true) + yys2667 := string(yys2667Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2662 { + switch yys2667 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -34506,8 +34554,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2666 := z.DecBinary() - _ = yym2666 + yym2671 := z.DecBinary() + _ = yym2671 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -34525,9 +34573,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2662) - } // end switch yys2662 - } // end for yyj2662 + z.DecStructFieldNotFound(-1, yys2667) + } // end switch yys2667 + } // end for yyj2667 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34535,16 +34583,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2668 int - var yyb2668 bool - var yyhl2668 bool = l >= 0 - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + var yyj2673 int + var yyb2673 bool + var yyhl2673 bool = l >= 0 + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2668 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2668 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34554,13 +34602,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2668 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2668 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34570,13 +34618,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2668 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2668 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34589,20 +34637,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2672 := z.DecBinary() - _ = yym2672 + yym2677 := z.DecBinary() + _ = yym2677 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2668 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2668 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34618,17 +34666,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2668 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2668 { + if yyb2673 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2668-1, "") + z.DecStructFieldNotFound(yyj2673-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34640,36 +34688,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2674 := z.EncBinary() - _ = yym2674 + yym2679 := z.EncBinary() + _ = yym2679 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2675 := !z.EncBinary() - yy2arr2675 := z.EncBasicHandle().StructToArray - var yyq2675 [3]bool - _, _, _ = yysep2675, yyq2675, yy2arr2675 - const yyr2675 bool = false - yyq2675[0] = x.Name != "" - yyq2675[2] = x.Protocol != "" - var yynn2675 int - if yyr2675 || yy2arr2675 { + yysep2680 := !z.EncBinary() + yy2arr2680 := z.EncBasicHandle().StructToArray + var yyq2680 [3]bool + _, _, _ = yysep2680, yyq2680, yy2arr2680 + const yyr2680 bool = false + yyq2680[0] = x.Name != "" + yyq2680[2] = x.Protocol != "" + var yynn2680 int + if yyr2680 || yy2arr2680 { r.EncodeArrayStart(3) } else { - yynn2675 = 1 - for _, b := range yyq2675 { + yynn2680 = 1 + for _, b := range yyq2680 { if b { - yynn2675++ + yynn2680++ } } - r.EncodeMapStart(yynn2675) - yynn2675 = 0 + r.EncodeMapStart(yynn2680) + yynn2680 = 0 } - if yyr2675 || yy2arr2675 { + if yyr2680 || yy2arr2680 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2675[0] { - yym2677 := z.EncBinary() - _ = yym2677 + if yyq2680[0] { + yym2682 := z.EncBinary() + _ = yym2682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34678,22 +34726,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2675[0] { + if yyq2680[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2678 := z.EncBinary() - _ = yym2678 + yym2683 := z.EncBinary() + _ = yym2683 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2675 || yy2arr2675 { + if yyr2680 || yy2arr2680 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2680 := z.EncBinary() - _ = yym2680 + yym2685 := z.EncBinary() + _ = yym2685 if false { } else { r.EncodeInt(int64(x.Port)) @@ -34702,29 +34750,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2681 := z.EncBinary() - _ = yym2681 + yym2686 := z.EncBinary() + _ = yym2686 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2675 || yy2arr2675 { + if yyr2680 || yy2arr2680 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2675[2] { + if yyq2680[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2675[2] { + if yyq2680[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2675 || yy2arr2675 { + if yyr2680 || yy2arr2680 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34737,25 +34785,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2683 := z.DecBinary() - _ = yym2683 + yym2688 := z.DecBinary() + _ = yym2688 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2684 := r.ContainerType() - if yyct2684 == codecSelferValueTypeMap1234 { - yyl2684 := r.ReadMapStart() - if yyl2684 == 0 { + yyct2689 := r.ContainerType() + if yyct2689 == codecSelferValueTypeMap1234 { + yyl2689 := r.ReadMapStart() + if yyl2689 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2684, d) + x.codecDecodeSelfFromMap(yyl2689, d) } - } else if yyct2684 == codecSelferValueTypeArray1234 { - yyl2684 := r.ReadArrayStart() - if yyl2684 == 0 { + } else if yyct2689 == codecSelferValueTypeArray1234 { + yyl2689 := r.ReadArrayStart() + if yyl2689 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2684, d) + x.codecDecodeSelfFromArray(yyl2689, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34767,12 +34815,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2685Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2685Slc - var yyhl2685 bool = l >= 0 - for yyj2685 := 0; ; yyj2685++ { - if yyhl2685 { - if yyj2685 >= l { + var yys2690Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2690Slc + var yyhl2690 bool = l >= 0 + for yyj2690 := 0; ; yyj2690++ { + if yyhl2690 { + if yyj2690 >= l { break } } else { @@ -34781,10 +34829,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2685Slc = r.DecodeBytes(yys2685Slc, true, true) - yys2685 := string(yys2685Slc) + yys2690Slc = r.DecodeBytes(yys2690Slc, true, true) + yys2690 := string(yys2690Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2685 { + switch yys2690 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -34804,9 +34852,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2685) - } // end switch yys2685 - } // end for yyj2685 + z.DecStructFieldNotFound(-1, yys2690) + } // end switch yys2690 + } // end for yyj2690 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34814,16 +34862,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2689 int - var yyb2689 bool - var yyhl2689 bool = l >= 0 - yyj2689++ - if yyhl2689 { - yyb2689 = yyj2689 > l + var yyj2694 int + var yyb2694 bool + var yyhl2694 bool = l >= 0 + yyj2694++ + if yyhl2694 { + yyb2694 = yyj2694 > l } else { - yyb2689 = r.CheckBreak() + yyb2694 = r.CheckBreak() } - if yyb2689 { + if yyb2694 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34833,13 +34881,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2689++ - if yyhl2689 { - yyb2689 = yyj2689 > l + yyj2694++ + if yyhl2694 { + yyb2694 = yyj2694 > l } else { - yyb2689 = r.CheckBreak() + yyb2694 = r.CheckBreak() } - if yyb2689 { + if yyb2694 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34849,13 +34897,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2689++ - if yyhl2689 { - yyb2689 = yyj2689 > l + yyj2694++ + if yyhl2694 { + yyb2694 = yyj2694 > l } else { - yyb2689 = r.CheckBreak() + yyb2694 = r.CheckBreak() } - if yyb2689 { + if yyb2694 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34866,17 +34914,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2689++ - if yyhl2689 { - yyb2689 = yyj2689 > l + yyj2694++ + if yyhl2694 { + yyb2694 = yyj2694 > l } else { - yyb2689 = r.CheckBreak() + yyb2694 = r.CheckBreak() } - if yyb2689 { + if yyb2694 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2689-1, "") + z.DecStructFieldNotFound(yyj2694-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34888,37 +34936,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2693 := z.EncBinary() - _ = yym2693 + yym2698 := z.EncBinary() + _ = yym2698 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2694 := !z.EncBinary() - yy2arr2694 := z.EncBasicHandle().StructToArray - var yyq2694 [4]bool - _, _, _ = yysep2694, yyq2694, yy2arr2694 - const yyr2694 bool = false - yyq2694[0] = x.Kind != "" - yyq2694[1] = x.APIVersion != "" - yyq2694[2] = true - var yynn2694 int - if yyr2694 || yy2arr2694 { + yysep2699 := !z.EncBinary() + yy2arr2699 := z.EncBasicHandle().StructToArray + var yyq2699 [4]bool + _, _, _ = yysep2699, yyq2699, yy2arr2699 + const yyr2699 bool = false + yyq2699[0] = x.Kind != "" + yyq2699[1] = x.APIVersion != "" + yyq2699[2] = true + var yynn2699 int + if yyr2699 || yy2arr2699 { r.EncodeArrayStart(4) } else { - yynn2694 = 1 - for _, b := range yyq2694 { + yynn2699 = 1 + for _, b := range yyq2699 { if b { - yynn2694++ + yynn2699++ } } - r.EncodeMapStart(yynn2694) - yynn2694 = 0 + r.EncodeMapStart(yynn2699) + yynn2699 = 0 } - if yyr2694 || yy2arr2694 { + if yyr2699 || yy2arr2699 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2694[0] { - yym2696 := z.EncBinary() - _ = yym2696 + if yyq2699[0] { + yym2701 := z.EncBinary() + _ = yym2701 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34927,23 +34975,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2694[0] { + if yyq2699[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2697 := z.EncBinary() - _ = yym2697 + yym2702 := z.EncBinary() + _ = yym2702 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2694 || yy2arr2694 { + if yyr2699 || yy2arr2699 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2694[1] { - yym2699 := z.EncBinary() - _ = yym2699 + if yyq2699[1] { + yym2704 := z.EncBinary() + _ = yym2704 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34952,54 +35000,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2694[1] { + if yyq2699[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2700 := z.EncBinary() - _ = yym2700 + yym2705 := z.EncBinary() + _ = yym2705 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2694 || yy2arr2694 { + if yyr2699 || yy2arr2699 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2694[2] { - yy2702 := &x.ListMeta - yym2703 := z.EncBinary() - _ = yym2703 + if yyq2699[2] { + yy2707 := &x.ListMeta + yym2708 := z.EncBinary() + _ = yym2708 if false { - } else if z.HasExtensions() && z.EncExt(yy2702) { + } else if z.HasExtensions() && z.EncExt(yy2707) { } else { - z.EncFallback(yy2702) + z.EncFallback(yy2707) } } else { r.EncodeNil() } } else { - if yyq2694[2] { + if yyq2699[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2704 := &x.ListMeta - yym2705 := z.EncBinary() - _ = yym2705 + yy2709 := &x.ListMeta + yym2710 := z.EncBinary() + _ = yym2710 if false { - } else if z.HasExtensions() && z.EncExt(yy2704) { + } else if z.HasExtensions() && z.EncExt(yy2709) { } else { - z.EncFallback(yy2704) + z.EncFallback(yy2709) } } } - if yyr2694 || yy2arr2694 { + if yyr2699 || yy2arr2699 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2707 := z.EncBinary() - _ = yym2707 + yym2712 := z.EncBinary() + _ = yym2712 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -35012,15 +35060,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2708 := z.EncBinary() - _ = yym2708 + yym2713 := z.EncBinary() + _ = yym2713 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2694 || yy2arr2694 { + if yyr2699 || yy2arr2699 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35033,25 +35081,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2709 := z.DecBinary() - _ = yym2709 + yym2714 := z.DecBinary() + _ = yym2714 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2710 := r.ContainerType() - if yyct2710 == codecSelferValueTypeMap1234 { - yyl2710 := r.ReadMapStart() - if yyl2710 == 0 { + yyct2715 := r.ContainerType() + if yyct2715 == codecSelferValueTypeMap1234 { + yyl2715 := r.ReadMapStart() + if yyl2715 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2710, d) + x.codecDecodeSelfFromMap(yyl2715, d) } - } else if yyct2710 == codecSelferValueTypeArray1234 { - yyl2710 := r.ReadArrayStart() - if yyl2710 == 0 { + } else if yyct2715 == codecSelferValueTypeArray1234 { + yyl2715 := r.ReadArrayStart() + if yyl2715 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2710, d) + x.codecDecodeSelfFromArray(yyl2715, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35063,12 +35111,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2711Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2711Slc - var yyhl2711 bool = l >= 0 - for yyj2711 := 0; ; yyj2711++ { - if yyhl2711 { - if yyj2711 >= l { + var yys2716Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2716Slc + var yyhl2716 bool = l >= 0 + for yyj2716 := 0; ; yyj2716++ { + if yyhl2716 { + if yyj2716 >= l { break } } else { @@ -35077,10 +35125,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2711Slc = r.DecodeBytes(yys2711Slc, true, true) - yys2711 := string(yys2711Slc) + yys2716Slc = r.DecodeBytes(yys2716Slc, true, true) + yys2716 := string(yys2716Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2711 { + switch yys2716 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35097,31 +35145,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2714 := &x.ListMeta - yym2715 := z.DecBinary() - _ = yym2715 + yyv2719 := &x.ListMeta + yym2720 := z.DecBinary() + _ = yym2720 if false { - } else if z.HasExtensions() && z.DecExt(yyv2714) { + } else if z.HasExtensions() && z.DecExt(yyv2719) { } else { - z.DecFallback(yyv2714, false) + z.DecFallback(yyv2719, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2716 := &x.Items - yym2717 := z.DecBinary() - _ = yym2717 + yyv2721 := &x.Items + yym2722 := z.DecBinary() + _ = yym2722 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2716), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2721), d) } } default: - z.DecStructFieldNotFound(-1, yys2711) - } // end switch yys2711 - } // end for yyj2711 + z.DecStructFieldNotFound(-1, yys2716) + } // end switch yys2716 + } // end for yyj2716 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35129,16 +35177,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2718 int - var yyb2718 bool - var yyhl2718 bool = l >= 0 - yyj2718++ - if yyhl2718 { - yyb2718 = yyj2718 > l + var yyj2723 int + var yyb2723 bool + var yyhl2723 bool = l >= 0 + yyj2723++ + if yyhl2723 { + yyb2723 = yyj2723 > l } else { - yyb2718 = r.CheckBreak() + yyb2723 = r.CheckBreak() } - if yyb2718 { + if yyb2723 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35148,13 +35196,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2718++ - if yyhl2718 { - yyb2718 = yyj2718 > l + yyj2723++ + if yyhl2723 { + yyb2723 = yyj2723 > l } else { - yyb2718 = r.CheckBreak() + yyb2723 = r.CheckBreak() } - if yyb2718 { + if yyb2723 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35164,13 +35212,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2718++ - if yyhl2718 { - yyb2718 = yyj2718 > l + yyj2723++ + if yyhl2723 { + yyb2723 = yyj2723 > l } else { - yyb2718 = r.CheckBreak() + yyb2723 = r.CheckBreak() } - if yyb2718 { + if yyb2723 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35178,22 +35226,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2721 := &x.ListMeta - yym2722 := z.DecBinary() - _ = yym2722 + yyv2726 := &x.ListMeta + yym2727 := z.DecBinary() + _ = yym2727 if false { - } else if z.HasExtensions() && z.DecExt(yyv2721) { + } else if z.HasExtensions() && z.DecExt(yyv2726) { } else { - z.DecFallback(yyv2721, false) + z.DecFallback(yyv2726, false) } } - yyj2718++ - if yyhl2718 { - yyb2718 = yyj2718 > l + yyj2723++ + if yyhl2723 { + yyb2723 = yyj2723 > l } else { - yyb2718 = r.CheckBreak() + yyb2723 = r.CheckBreak() } - if yyb2718 { + if yyb2723 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35201,26 +35249,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2723 := &x.Items - yym2724 := z.DecBinary() - _ = yym2724 + yyv2728 := &x.Items + yym2729 := z.DecBinary() + _ = yym2729 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2723), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2728), d) } } for { - yyj2718++ - if yyhl2718 { - yyb2718 = yyj2718 > l + yyj2723++ + if yyhl2723 { + yyb2723 = yyj2723 > l } else { - yyb2718 = r.CheckBreak() + yyb2723 = r.CheckBreak() } - if yyb2718 { + if yyb2723 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2718-1, "") + z.DecStructFieldNotFound(yyj2723-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35232,38 +35280,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2725 := z.EncBinary() - _ = yym2725 + yym2730 := z.EncBinary() + _ = yym2730 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2726 := !z.EncBinary() - yy2arr2726 := z.EncBasicHandle().StructToArray - var yyq2726 [4]bool - _, _, _ = yysep2726, yyq2726, yy2arr2726 - const yyr2726 bool = false - yyq2726[0] = x.PodCIDR != "" - yyq2726[1] = x.ExternalID != "" - yyq2726[2] = x.ProviderID != "" - yyq2726[3] = x.Unschedulable != false - var yynn2726 int - if yyr2726 || yy2arr2726 { + yysep2731 := !z.EncBinary() + yy2arr2731 := z.EncBasicHandle().StructToArray + var yyq2731 [4]bool + _, _, _ = yysep2731, yyq2731, yy2arr2731 + const yyr2731 bool = false + yyq2731[0] = x.PodCIDR != "" + yyq2731[1] = x.ExternalID != "" + yyq2731[2] = x.ProviderID != "" + yyq2731[3] = x.Unschedulable != false + var yynn2731 int + if yyr2731 || yy2arr2731 { r.EncodeArrayStart(4) } else { - yynn2726 = 0 - for _, b := range yyq2726 { + yynn2731 = 0 + for _, b := range yyq2731 { if b { - yynn2726++ + yynn2731++ } } - r.EncodeMapStart(yynn2726) - yynn2726 = 0 + r.EncodeMapStart(yynn2731) + yynn2731 = 0 } - if yyr2726 || yy2arr2726 { + if yyr2731 || yy2arr2731 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2726[0] { - yym2728 := z.EncBinary() - _ = yym2728 + if yyq2731[0] { + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -35272,23 +35320,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2726[0] { + if yyq2731[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2729 := z.EncBinary() - _ = yym2729 + yym2734 := z.EncBinary() + _ = yym2734 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2726 || yy2arr2726 { + if yyr2731 || yy2arr2731 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2726[1] { - yym2731 := z.EncBinary() - _ = yym2731 + if yyq2731[1] { + yym2736 := z.EncBinary() + _ = yym2736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -35297,23 +35345,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2726[1] { + if yyq2731[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2732 := z.EncBinary() - _ = yym2732 + yym2737 := z.EncBinary() + _ = yym2737 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2726 || yy2arr2726 { + if yyr2731 || yy2arr2731 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2726[2] { - yym2734 := z.EncBinary() - _ = yym2734 + if yyq2731[2] { + yym2739 := z.EncBinary() + _ = yym2739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -35322,23 +35370,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2726[2] { + if yyq2731[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2735 := z.EncBinary() - _ = yym2735 + yym2740 := z.EncBinary() + _ = yym2740 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2726 || yy2arr2726 { + if yyr2731 || yy2arr2731 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2726[3] { - yym2737 := z.EncBinary() - _ = yym2737 + if yyq2731[3] { + yym2742 := z.EncBinary() + _ = yym2742 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -35347,19 +35395,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2726[3] { + if yyq2731[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2738 := z.EncBinary() - _ = yym2738 + yym2743 := z.EncBinary() + _ = yym2743 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2726 || yy2arr2726 { + if yyr2731 || yy2arr2731 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35372,25 +35420,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2739 := z.DecBinary() - _ = yym2739 + yym2744 := z.DecBinary() + _ = yym2744 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2740 := r.ContainerType() - if yyct2740 == codecSelferValueTypeMap1234 { - yyl2740 := r.ReadMapStart() - if yyl2740 == 0 { + yyct2745 := r.ContainerType() + if yyct2745 == codecSelferValueTypeMap1234 { + yyl2745 := r.ReadMapStart() + if yyl2745 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2740, d) + x.codecDecodeSelfFromMap(yyl2745, d) } - } else if yyct2740 == codecSelferValueTypeArray1234 { - yyl2740 := r.ReadArrayStart() - if yyl2740 == 0 { + } else if yyct2745 == codecSelferValueTypeArray1234 { + yyl2745 := r.ReadArrayStart() + if yyl2745 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2740, d) + x.codecDecodeSelfFromArray(yyl2745, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35402,12 +35450,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2741Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2741Slc - var yyhl2741 bool = l >= 0 - for yyj2741 := 0; ; yyj2741++ { - if yyhl2741 { - if yyj2741 >= l { + var yys2746Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2746Slc + var yyhl2746 bool = l >= 0 + for yyj2746 := 0; ; yyj2746++ { + if yyhl2746 { + if yyj2746 >= l { break } } else { @@ -35416,10 +35464,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2741Slc = r.DecodeBytes(yys2741Slc, true, true) - yys2741 := string(yys2741Slc) + yys2746Slc = r.DecodeBytes(yys2746Slc, true, true) + yys2746 := string(yys2746Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2741 { + switch yys2746 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -35445,9 +35493,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2741) - } // end switch yys2741 - } // end for yyj2741 + z.DecStructFieldNotFound(-1, yys2746) + } // end switch yys2746 + } // end for yyj2746 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35455,16 +35503,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2746 int - var yyb2746 bool - var yyhl2746 bool = l >= 0 - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + var yyj2751 int + var yyb2751 bool + var yyhl2751 bool = l >= 0 + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2746 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2746 { + if yyb2751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35474,13 +35522,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2746 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2746 { + if yyb2751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35490,13 +35538,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2746 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2746 { + if yyb2751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35506,13 +35554,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2746 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2746 { + if yyb2751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35523,17 +35571,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2746 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2746 { + if yyb2751 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2746-1, "") + z.DecStructFieldNotFound(yyj2751-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35545,33 +35593,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2751 := z.EncBinary() - _ = yym2751 + yym2756 := z.EncBinary() + _ = yym2756 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2752 := !z.EncBinary() - yy2arr2752 := z.EncBasicHandle().StructToArray - var yyq2752 [1]bool - _, _, _ = yysep2752, yyq2752, yy2arr2752 - const yyr2752 bool = false - var yynn2752 int - if yyr2752 || yy2arr2752 { + yysep2757 := !z.EncBinary() + yy2arr2757 := z.EncBasicHandle().StructToArray + var yyq2757 [1]bool + _, _, _ = yysep2757, yyq2757, yy2arr2757 + const yyr2757 bool = false + var yynn2757 int + if yyr2757 || yy2arr2757 { r.EncodeArrayStart(1) } else { - yynn2752 = 1 - for _, b := range yyq2752 { + yynn2757 = 1 + for _, b := range yyq2757 { if b { - yynn2752++ + yynn2757++ } } - r.EncodeMapStart(yynn2752) - yynn2752 = 0 + r.EncodeMapStart(yynn2757) + yynn2757 = 0 } - if yyr2752 || yy2arr2752 { + if yyr2757 || yy2arr2757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2754 := z.EncBinary() - _ = yym2754 + yym2759 := z.EncBinary() + _ = yym2759 if false { } else { r.EncodeInt(int64(x.Port)) @@ -35580,14 +35628,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2755 := z.EncBinary() - _ = yym2755 + yym2760 := z.EncBinary() + _ = yym2760 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2752 || yy2arr2752 { + if yyr2757 || yy2arr2757 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35600,25 +35648,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2756 := z.DecBinary() - _ = yym2756 + yym2761 := z.DecBinary() + _ = yym2761 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2757 := r.ContainerType() - if yyct2757 == codecSelferValueTypeMap1234 { - yyl2757 := r.ReadMapStart() - if yyl2757 == 0 { + yyct2762 := r.ContainerType() + if yyct2762 == codecSelferValueTypeMap1234 { + yyl2762 := r.ReadMapStart() + if yyl2762 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2757, d) + x.codecDecodeSelfFromMap(yyl2762, d) } - } else if yyct2757 == codecSelferValueTypeArray1234 { - yyl2757 := r.ReadArrayStart() - if yyl2757 == 0 { + } else if yyct2762 == codecSelferValueTypeArray1234 { + yyl2762 := r.ReadArrayStart() + if yyl2762 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2757, d) + x.codecDecodeSelfFromArray(yyl2762, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35630,12 +35678,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2758Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2758Slc - var yyhl2758 bool = l >= 0 - for yyj2758 := 0; ; yyj2758++ { - if yyhl2758 { - if yyj2758 >= l { + var yys2763Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2763Slc + var yyhl2763 bool = l >= 0 + for yyj2763 := 0; ; yyj2763++ { + if yyhl2763 { + if yyj2763 >= l { break } } else { @@ -35644,10 +35692,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2758Slc = r.DecodeBytes(yys2758Slc, true, true) - yys2758 := string(yys2758Slc) + yys2763Slc = r.DecodeBytes(yys2763Slc, true, true) + yys2763 := string(yys2763Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2758 { + switch yys2763 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -35655,9 +35703,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2758) - } // end switch yys2758 - } // end for yyj2758 + z.DecStructFieldNotFound(-1, yys2763) + } // end switch yys2763 + } // end for yyj2763 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35665,16 +35713,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2760 int - var yyb2760 bool - var yyhl2760 bool = l >= 0 - yyj2760++ - if yyhl2760 { - yyb2760 = yyj2760 > l + var yyj2765 int + var yyb2765 bool + var yyhl2765 bool = l >= 0 + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l } else { - yyb2760 = r.CheckBreak() + yyb2765 = r.CheckBreak() } - if yyb2760 { + if yyb2765 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35685,17 +35733,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2760++ - if yyhl2760 { - yyb2760 = yyj2760 > l + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l } else { - yyb2760 = r.CheckBreak() + yyb2765 = r.CheckBreak() } - if yyb2760 { + if yyb2765 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2760-1, "") + z.DecStructFieldNotFound(yyj2765-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35707,48 +35755,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2762 := z.EncBinary() - _ = yym2762 + yym2767 := z.EncBinary() + _ = yym2767 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2763 := !z.EncBinary() - yy2arr2763 := z.EncBasicHandle().StructToArray - var yyq2763 [1]bool - _, _, _ = yysep2763, yyq2763, yy2arr2763 - const yyr2763 bool = false - yyq2763[0] = true - var yynn2763 int - if yyr2763 || yy2arr2763 { + yysep2768 := !z.EncBinary() + yy2arr2768 := z.EncBasicHandle().StructToArray + var yyq2768 [1]bool + _, _, _ = yysep2768, yyq2768, yy2arr2768 + const yyr2768 bool = false + yyq2768[0] = true + var yynn2768 int + if yyr2768 || yy2arr2768 { r.EncodeArrayStart(1) } else { - yynn2763 = 0 - for _, b := range yyq2763 { + yynn2768 = 0 + for _, b := range yyq2768 { if b { - yynn2763++ + yynn2768++ } } - r.EncodeMapStart(yynn2763) - yynn2763 = 0 + r.EncodeMapStart(yynn2768) + yynn2768 = 0 } - if yyr2763 || yy2arr2763 { + if yyr2768 || yy2arr2768 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2763[0] { - yy2765 := &x.KubeletEndpoint - yy2765.CodecEncodeSelf(e) + if yyq2768[0] { + yy2770 := &x.KubeletEndpoint + yy2770.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2763[0] { + if yyq2768[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2766 := &x.KubeletEndpoint - yy2766.CodecEncodeSelf(e) + yy2771 := &x.KubeletEndpoint + yy2771.CodecEncodeSelf(e) } } - if yyr2763 || yy2arr2763 { + if yyr2768 || yy2arr2768 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35761,25 +35809,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2767 := z.DecBinary() - _ = yym2767 + yym2772 := z.DecBinary() + _ = yym2772 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2768 := r.ContainerType() - if yyct2768 == codecSelferValueTypeMap1234 { - yyl2768 := r.ReadMapStart() - if yyl2768 == 0 { + yyct2773 := r.ContainerType() + if yyct2773 == codecSelferValueTypeMap1234 { + yyl2773 := r.ReadMapStart() + if yyl2773 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2768, d) + x.codecDecodeSelfFromMap(yyl2773, d) } - } else if yyct2768 == codecSelferValueTypeArray1234 { - yyl2768 := r.ReadArrayStart() - if yyl2768 == 0 { + } else if yyct2773 == codecSelferValueTypeArray1234 { + yyl2773 := r.ReadArrayStart() + if yyl2773 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2768, d) + x.codecDecodeSelfFromArray(yyl2773, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35791,12 +35839,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2769Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2769Slc - var yyhl2769 bool = l >= 0 - for yyj2769 := 0; ; yyj2769++ { - if yyhl2769 { - if yyj2769 >= l { + var yys2774Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2774Slc + var yyhl2774 bool = l >= 0 + for yyj2774 := 0; ; yyj2774++ { + if yyhl2774 { + if yyj2774 >= l { break } } else { @@ -35805,21 +35853,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2769Slc = r.DecodeBytes(yys2769Slc, true, true) - yys2769 := string(yys2769Slc) + yys2774Slc = r.DecodeBytes(yys2774Slc, true, true) + yys2774 := string(yys2774Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2769 { + switch yys2774 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2770 := &x.KubeletEndpoint - yyv2770.CodecDecodeSelf(d) + yyv2775 := &x.KubeletEndpoint + yyv2775.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2769) - } // end switch yys2769 - } // end for yyj2769 + z.DecStructFieldNotFound(-1, yys2774) + } // end switch yys2774 + } // end for yyj2774 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35827,16 +35875,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2771 int - var yyb2771 bool - var yyhl2771 bool = l >= 0 - yyj2771++ - if yyhl2771 { - yyb2771 = yyj2771 > l + var yyj2776 int + var yyb2776 bool + var yyhl2776 bool = l >= 0 + yyj2776++ + if yyhl2776 { + yyb2776 = yyj2776 > l } else { - yyb2771 = r.CheckBreak() + yyb2776 = r.CheckBreak() } - if yyb2771 { + if yyb2776 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35844,21 +35892,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2772 := &x.KubeletEndpoint - yyv2772.CodecDecodeSelf(d) + yyv2777 := &x.KubeletEndpoint + yyv2777.CodecDecodeSelf(d) } for { - yyj2771++ - if yyhl2771 { - yyb2771 = yyj2771 > l + yyj2776++ + if yyhl2776 { + yyb2776 = yyj2776 > l } else { - yyb2771 = r.CheckBreak() + yyb2776 = r.CheckBreak() } - if yyb2771 { + if yyb2776 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2771-1, "") + z.DecStructFieldNotFound(yyj2776-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35870,33 +35918,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2773 := z.EncBinary() - _ = yym2773 + yym2778 := z.EncBinary() + _ = yym2778 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2774 := !z.EncBinary() - yy2arr2774 := z.EncBasicHandle().StructToArray - var yyq2774 [10]bool - _, _, _ = yysep2774, yyq2774, yy2arr2774 - const yyr2774 bool = false - var yynn2774 int - if yyr2774 || yy2arr2774 { + yysep2779 := !z.EncBinary() + yy2arr2779 := z.EncBasicHandle().StructToArray + var yyq2779 [10]bool + _, _, _ = yysep2779, yyq2779, yy2arr2779 + const yyr2779 bool = false + var yynn2779 int + if yyr2779 || yy2arr2779 { r.EncodeArrayStart(10) } else { - yynn2774 = 10 - for _, b := range yyq2774 { + yynn2779 = 10 + for _, b := range yyq2779 { if b { - yynn2774++ + yynn2779++ } } - r.EncodeMapStart(yynn2774) - yynn2774 = 0 + r.EncodeMapStart(yynn2779) + yynn2779 = 0 } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2776 := z.EncBinary() - _ = yym2776 + yym2781 := z.EncBinary() + _ = yym2781 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -35905,17 +35953,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2777 := z.EncBinary() - _ = yym2777 + yym2782 := z.EncBinary() + _ = yym2782 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2779 := z.EncBinary() - _ = yym2779 + yym2784 := z.EncBinary() + _ = yym2784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -35924,17 +35972,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2780 := z.EncBinary() - _ = yym2780 + yym2785 := z.EncBinary() + _ = yym2785 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2782 := z.EncBinary() - _ = yym2782 + yym2787 := z.EncBinary() + _ = yym2787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -35943,17 +35991,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2783 := z.EncBinary() - _ = yym2783 + yym2788 := z.EncBinary() + _ = yym2788 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2785 := z.EncBinary() - _ = yym2785 + yym2790 := z.EncBinary() + _ = yym2790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -35962,17 +36010,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2786 := z.EncBinary() - _ = yym2786 + yym2791 := z.EncBinary() + _ = yym2791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2788 := z.EncBinary() - _ = yym2788 + yym2793 := z.EncBinary() + _ = yym2793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -35981,17 +36029,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2789 := z.EncBinary() - _ = yym2789 + yym2794 := z.EncBinary() + _ = yym2794 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2791 := z.EncBinary() - _ = yym2791 + yym2796 := z.EncBinary() + _ = yym2796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -36000,17 +36048,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2792 := z.EncBinary() - _ = yym2792 + yym2797 := z.EncBinary() + _ = yym2797 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2794 := z.EncBinary() - _ = yym2794 + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -36019,17 +36067,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2795 := z.EncBinary() - _ = yym2795 + yym2800 := z.EncBinary() + _ = yym2800 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2797 := z.EncBinary() - _ = yym2797 + yym2802 := z.EncBinary() + _ = yym2802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -36038,17 +36086,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2798 := z.EncBinary() - _ = yym2798 + yym2803 := z.EncBinary() + _ = yym2803 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2800 := z.EncBinary() - _ = yym2800 + yym2805 := z.EncBinary() + _ = yym2805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -36057,17 +36105,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2801 := z.EncBinary() - _ = yym2801 + yym2806 := z.EncBinary() + _ = yym2806 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2803 := z.EncBinary() - _ = yym2803 + yym2808 := z.EncBinary() + _ = yym2808 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -36076,14 +36124,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2804 := z.EncBinary() - _ = yym2804 + yym2809 := z.EncBinary() + _ = yym2809 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2774 || yy2arr2774 { + if yyr2779 || yy2arr2779 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36096,25 +36144,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2805 := z.DecBinary() - _ = yym2805 + yym2810 := z.DecBinary() + _ = yym2810 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2806 := r.ContainerType() - if yyct2806 == codecSelferValueTypeMap1234 { - yyl2806 := r.ReadMapStart() - if yyl2806 == 0 { + yyct2811 := r.ContainerType() + if yyct2811 == codecSelferValueTypeMap1234 { + yyl2811 := r.ReadMapStart() + if yyl2811 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2806, d) + x.codecDecodeSelfFromMap(yyl2811, d) } - } else if yyct2806 == codecSelferValueTypeArray1234 { - yyl2806 := r.ReadArrayStart() - if yyl2806 == 0 { + } else if yyct2811 == codecSelferValueTypeArray1234 { + yyl2811 := r.ReadArrayStart() + if yyl2811 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2806, d) + x.codecDecodeSelfFromArray(yyl2811, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36126,12 +36174,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2807Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2807Slc - var yyhl2807 bool = l >= 0 - for yyj2807 := 0; ; yyj2807++ { - if yyhl2807 { - if yyj2807 >= l { + var yys2812Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2812Slc + var yyhl2812 bool = l >= 0 + for yyj2812 := 0; ; yyj2812++ { + if yyhl2812 { + if yyj2812 >= l { break } } else { @@ -36140,10 +36188,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2807Slc = r.DecodeBytes(yys2807Slc, true, true) - yys2807 := string(yys2807Slc) + yys2812Slc = r.DecodeBytes(yys2812Slc, true, true) + yys2812 := string(yys2812Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2807 { + switch yys2812 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -36205,9 +36253,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2807) - } // end switch yys2807 - } // end for yyj2807 + z.DecStructFieldNotFound(-1, yys2812) + } // end switch yys2812 + } // end for yyj2812 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36215,16 +36263,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2818 int - var yyb2818 bool - var yyhl2818 bool = l >= 0 - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + var yyj2823 int + var yyb2823 bool + var yyhl2823 bool = l >= 0 + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36234,13 +36282,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36250,13 +36298,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36266,13 +36314,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36282,13 +36330,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36298,13 +36346,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36314,13 +36362,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36330,13 +36378,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36346,13 +36394,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36362,13 +36410,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36379,17 +36427,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2818++ - if yyhl2818 { - yyb2818 = yyj2818 > l + yyj2823++ + if yyhl2823 { + yyb2823 = yyj2823 > l } else { - yyb2818 = r.CheckBreak() + yyb2823 = r.CheckBreak() } - if yyb2818 { + if yyb2823 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2818-1, "") + z.DecStructFieldNotFound(yyj2823-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36401,42 +36449,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2829 := z.EncBinary() - _ = yym2829 + yym2834 := z.EncBinary() + _ = yym2834 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2830 := !z.EncBinary() - yy2arr2830 := z.EncBasicHandle().StructToArray - var yyq2830 [10]bool - _, _, _ = yysep2830, yyq2830, yy2arr2830 - const yyr2830 bool = false - yyq2830[0] = len(x.Capacity) != 0 - yyq2830[1] = len(x.Allocatable) != 0 - yyq2830[2] = x.Phase != "" - yyq2830[3] = len(x.Conditions) != 0 - yyq2830[4] = len(x.Addresses) != 0 - yyq2830[5] = true - yyq2830[6] = true - yyq2830[7] = len(x.Images) != 0 - yyq2830[8] = len(x.VolumesInUse) != 0 - yyq2830[9] = len(x.VolumesAttached) != 0 - var yynn2830 int - if yyr2830 || yy2arr2830 { + yysep2835 := !z.EncBinary() + yy2arr2835 := z.EncBasicHandle().StructToArray + var yyq2835 [10]bool + _, _, _ = yysep2835, yyq2835, yy2arr2835 + const yyr2835 bool = false + yyq2835[0] = len(x.Capacity) != 0 + yyq2835[1] = len(x.Allocatable) != 0 + yyq2835[2] = x.Phase != "" + yyq2835[3] = len(x.Conditions) != 0 + yyq2835[4] = len(x.Addresses) != 0 + yyq2835[5] = true + yyq2835[6] = true + yyq2835[7] = len(x.Images) != 0 + yyq2835[8] = len(x.VolumesInUse) != 0 + yyq2835[9] = len(x.VolumesAttached) != 0 + var yynn2835 int + if yyr2835 || yy2arr2835 { r.EncodeArrayStart(10) } else { - yynn2830 = 0 - for _, b := range yyq2830 { + yynn2835 = 0 + for _, b := range yyq2835 { if b { - yynn2830++ + yynn2835++ } } - r.EncodeMapStart(yynn2830) - yynn2830 = 0 + r.EncodeMapStart(yynn2835) + yynn2835 = 0 } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[0] { + if yyq2835[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -36446,7 +36494,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2830[0] { + if yyq2835[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36457,9 +36505,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[1] { + if yyq2835[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -36469,7 +36517,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2830[1] { + if yyq2835[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36480,29 +36528,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[2] { + if yyq2835[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2830[2] { + if yyq2835[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[3] { + if yyq2835[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2835 := z.EncBinary() - _ = yym2835 + yym2840 := z.EncBinary() + _ = yym2840 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36512,15 +36560,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2830[3] { + if yyq2835[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2836 := z.EncBinary() - _ = yym2836 + yym2841 := z.EncBinary() + _ = yym2841 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36528,14 +36576,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[4] { + if yyq2835[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2838 := z.EncBinary() - _ = yym2838 + yym2843 := z.EncBinary() + _ = yym2843 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36545,15 +36593,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2830[4] { + if yyq2835[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2839 := z.EncBinary() - _ = yym2839 + yym2844 := z.EncBinary() + _ = yym2844 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36561,48 +36609,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[5] { - yy2841 := &x.DaemonEndpoints - yy2841.CodecEncodeSelf(e) + if yyq2835[5] { + yy2846 := &x.DaemonEndpoints + yy2846.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2830[5] { + if yyq2835[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2842 := &x.DaemonEndpoints - yy2842.CodecEncodeSelf(e) + yy2847 := &x.DaemonEndpoints + yy2847.CodecEncodeSelf(e) } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[6] { - yy2844 := &x.NodeInfo - yy2844.CodecEncodeSelf(e) + if yyq2835[6] { + yy2849 := &x.NodeInfo + yy2849.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2830[6] { + if yyq2835[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2845 := &x.NodeInfo - yy2845.CodecEncodeSelf(e) + yy2850 := &x.NodeInfo + yy2850.CodecEncodeSelf(e) } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[7] { + if yyq2835[7] { if x.Images == nil { r.EncodeNil() } else { - yym2847 := z.EncBinary() - _ = yym2847 + yym2852 := z.EncBinary() + _ = yym2852 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36612,15 +36660,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2830[7] { + if yyq2835[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2848 := z.EncBinary() - _ = yym2848 + yym2853 := z.EncBinary() + _ = yym2853 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36628,14 +36676,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[8] { + if yyq2835[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2850 := z.EncBinary() - _ = yym2850 + yym2855 := z.EncBinary() + _ = yym2855 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36645,15 +36693,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2830[8] { + if yyq2835[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2851 := z.EncBinary() - _ = yym2851 + yym2856 := z.EncBinary() + _ = yym2856 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36661,14 +36709,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2830[9] { + if yyq2835[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2853 := z.EncBinary() - _ = yym2853 + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36678,15 +36726,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2830[9] { + if yyq2835[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2854 := z.EncBinary() - _ = yym2854 + yym2859 := z.EncBinary() + _ = yym2859 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36694,7 +36742,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2830 || yy2arr2830 { + if yyr2835 || yy2arr2835 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36707,25 +36755,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2855 := z.DecBinary() - _ = yym2855 + yym2860 := z.DecBinary() + _ = yym2860 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2856 := r.ContainerType() - if yyct2856 == codecSelferValueTypeMap1234 { - yyl2856 := r.ReadMapStart() - if yyl2856 == 0 { + yyct2861 := r.ContainerType() + if yyct2861 == codecSelferValueTypeMap1234 { + yyl2861 := r.ReadMapStart() + if yyl2861 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2856, d) + x.codecDecodeSelfFromMap(yyl2861, d) } - } else if yyct2856 == codecSelferValueTypeArray1234 { - yyl2856 := r.ReadArrayStart() - if yyl2856 == 0 { + } else if yyct2861 == codecSelferValueTypeArray1234 { + yyl2861 := r.ReadArrayStart() + if yyl2861 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2856, d) + x.codecDecodeSelfFromArray(yyl2861, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36737,12 +36785,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2857Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2857Slc - var yyhl2857 bool = l >= 0 - for yyj2857 := 0; ; yyj2857++ { - if yyhl2857 { - if yyj2857 >= l { + var yys2862Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2862Slc + var yyhl2862 bool = l >= 0 + for yyj2862 := 0; ; yyj2862++ { + if yyhl2862 { + if yyj2862 >= l { break } } else { @@ -36751,23 +36799,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2857Slc = r.DecodeBytes(yys2857Slc, true, true) - yys2857 := string(yys2857Slc) + yys2862Slc = r.DecodeBytes(yys2862Slc, true, true) + yys2862 := string(yys2862Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2857 { + switch yys2862 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2858 := &x.Capacity - yyv2858.CodecDecodeSelf(d) + yyv2863 := &x.Capacity + yyv2863.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2859 := &x.Allocatable - yyv2859.CodecDecodeSelf(d) + yyv2864 := &x.Allocatable + yyv2864.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -36779,80 +36827,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2861 := &x.Conditions - yym2862 := z.DecBinary() - _ = yym2862 + yyv2866 := &x.Conditions + yym2867 := z.DecBinary() + _ = yym2867 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2861), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2866), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2863 := &x.Addresses - yym2864 := z.DecBinary() - _ = yym2864 + yyv2868 := &x.Addresses + yym2869 := z.DecBinary() + _ = yym2869 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2863), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2868), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2865 := &x.DaemonEndpoints - yyv2865.CodecDecodeSelf(d) + yyv2870 := &x.DaemonEndpoints + yyv2870.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2866 := &x.NodeInfo - yyv2866.CodecDecodeSelf(d) + yyv2871 := &x.NodeInfo + yyv2871.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2867 := &x.Images - yym2868 := z.DecBinary() - _ = yym2868 + yyv2872 := &x.Images + yym2873 := z.DecBinary() + _ = yym2873 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2867), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2872), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2869 := &x.VolumesInUse - yym2870 := z.DecBinary() - _ = yym2870 + yyv2874 := &x.VolumesInUse + yym2875 := z.DecBinary() + _ = yym2875 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2869), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2874), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2871 := &x.VolumesAttached - yym2872 := z.DecBinary() - _ = yym2872 + yyv2876 := &x.VolumesAttached + yym2877 := z.DecBinary() + _ = yym2877 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2871), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2876), d) } } default: - z.DecStructFieldNotFound(-1, yys2857) - } // end switch yys2857 - } // end for yyj2857 + z.DecStructFieldNotFound(-1, yys2862) + } // end switch yys2862 + } // end for yyj2862 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36860,16 +36908,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2873 int - var yyb2873 bool - var yyhl2873 bool = l >= 0 - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + var yyj2878 int + var yyb2878 bool + var yyhl2878 bool = l >= 0 + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36877,16 +36925,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2874 := &x.Capacity - yyv2874.CodecDecodeSelf(d) + yyv2879 := &x.Capacity + yyv2879.CodecDecodeSelf(d) } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36894,16 +36942,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2875 := &x.Allocatable - yyv2875.CodecDecodeSelf(d) + yyv2880 := &x.Allocatable + yyv2880.CodecDecodeSelf(d) } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36913,13 +36961,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36927,21 +36975,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2877 := &x.Conditions - yym2878 := z.DecBinary() - _ = yym2878 + yyv2882 := &x.Conditions + yym2883 := z.DecBinary() + _ = yym2883 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2877), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2882), d) } } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36949,21 +36997,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2879 := &x.Addresses - yym2880 := z.DecBinary() - _ = yym2880 + yyv2884 := &x.Addresses + yym2885 := z.DecBinary() + _ = yym2885 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2879), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2884), d) } } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36971,16 +37019,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2881 := &x.DaemonEndpoints - yyv2881.CodecDecodeSelf(d) + yyv2886 := &x.DaemonEndpoints + yyv2886.CodecDecodeSelf(d) } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36988,16 +37036,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2882 := &x.NodeInfo - yyv2882.CodecDecodeSelf(d) + yyv2887 := &x.NodeInfo + yyv2887.CodecDecodeSelf(d) } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37005,21 +37053,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2883 := &x.Images - yym2884 := z.DecBinary() - _ = yym2884 + yyv2888 := &x.Images + yym2889 := z.DecBinary() + _ = yym2889 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2883), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2888), d) } } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37027,21 +37075,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2885 := &x.VolumesInUse - yym2886 := z.DecBinary() - _ = yym2886 + yyv2890 := &x.VolumesInUse + yym2891 := z.DecBinary() + _ = yym2891 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2885), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2890), d) } } - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37049,26 +37097,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2887 := &x.VolumesAttached - yym2888 := z.DecBinary() - _ = yym2888 + yyv2892 := &x.VolumesAttached + yym2893 := z.DecBinary() + _ = yym2893 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2887), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2892), d) } } for { - yyj2873++ - if yyhl2873 { - yyb2873 = yyj2873 > l + yyj2878++ + if yyhl2878 { + yyb2878 = yyj2878 > l } else { - yyb2873 = r.CheckBreak() + yyb2878 = r.CheckBreak() } - if yyb2873 { + if yyb2878 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2873-1, "") + z.DecStructFieldNotFound(yyj2878-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37077,8 +37125,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2889 := z.EncBinary() - _ = yym2889 + yym2894 := z.EncBinary() + _ = yym2894 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37090,8 +37138,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2890 := z.DecBinary() - _ = yym2890 + yym2895 := z.DecBinary() + _ = yym2895 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37106,30 +37154,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2891 := z.EncBinary() - _ = yym2891 + yym2896 := z.EncBinary() + _ = yym2896 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2892 := !z.EncBinary() - yy2arr2892 := z.EncBasicHandle().StructToArray - var yyq2892 [2]bool - _, _, _ = yysep2892, yyq2892, yy2arr2892 - const yyr2892 bool = false - var yynn2892 int - if yyr2892 || yy2arr2892 { + yysep2897 := !z.EncBinary() + yy2arr2897 := z.EncBasicHandle().StructToArray + var yyq2897 [2]bool + _, _, _ = yysep2897, yyq2897, yy2arr2897 + const yyr2897 bool = false + var yynn2897 int + if yyr2897 || yy2arr2897 { r.EncodeArrayStart(2) } else { - yynn2892 = 2 - for _, b := range yyq2892 { + yynn2897 = 2 + for _, b := range yyq2897 { if b { - yynn2892++ + yynn2897++ } } - r.EncodeMapStart(yynn2892) - yynn2892 = 0 + r.EncodeMapStart(yynn2897) + yynn2897 = 0 } - if yyr2892 || yy2arr2892 { + if yyr2897 || yy2arr2897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -37138,10 +37186,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2892 || yy2arr2892 { + if yyr2897 || yy2arr2897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2895 := z.EncBinary() - _ = yym2895 + yym2900 := z.EncBinary() + _ = yym2900 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -37150,14 +37198,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2896 := z.EncBinary() - _ = yym2896 + yym2901 := z.EncBinary() + _ = yym2901 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2892 || yy2arr2892 { + if yyr2897 || yy2arr2897 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37170,25 +37218,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2897 := z.DecBinary() - _ = yym2897 + yym2902 := z.DecBinary() + _ = yym2902 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2898 := r.ContainerType() - if yyct2898 == codecSelferValueTypeMap1234 { - yyl2898 := r.ReadMapStart() - if yyl2898 == 0 { + yyct2903 := r.ContainerType() + if yyct2903 == codecSelferValueTypeMap1234 { + yyl2903 := r.ReadMapStart() + if yyl2903 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2898, d) + x.codecDecodeSelfFromMap(yyl2903, d) } - } else if yyct2898 == codecSelferValueTypeArray1234 { - yyl2898 := r.ReadArrayStart() - if yyl2898 == 0 { + } else if yyct2903 == codecSelferValueTypeArray1234 { + yyl2903 := r.ReadArrayStart() + if yyl2903 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2898, d) + x.codecDecodeSelfFromArray(yyl2903, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37200,12 +37248,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2899Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2899Slc - var yyhl2899 bool = l >= 0 - for yyj2899 := 0; ; yyj2899++ { - if yyhl2899 { - if yyj2899 >= l { + var yys2904Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2904Slc + var yyhl2904 bool = l >= 0 + for yyj2904 := 0; ; yyj2904++ { + if yyhl2904 { + if yyj2904 >= l { break } } else { @@ -37214,10 +37262,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2899Slc = r.DecodeBytes(yys2899Slc, true, true) - yys2899 := string(yys2899Slc) + yys2904Slc = r.DecodeBytes(yys2904Slc, true, true) + yys2904 := string(yys2904Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2899 { + switch yys2904 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37231,9 +37279,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2899) - } // end switch yys2899 - } // end for yyj2899 + z.DecStructFieldNotFound(-1, yys2904) + } // end switch yys2904 + } // end for yyj2904 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37241,16 +37289,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2902 int - var yyb2902 bool - var yyhl2902 bool = l >= 0 - yyj2902++ - if yyhl2902 { - yyb2902 = yyj2902 > l + var yyj2907 int + var yyb2907 bool + var yyhl2907 bool = l >= 0 + yyj2907++ + if yyhl2907 { + yyb2907 = yyj2907 > l } else { - yyb2902 = r.CheckBreak() + yyb2907 = r.CheckBreak() } - if yyb2902 { + if yyb2907 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37260,13 +37308,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj2902++ - if yyhl2902 { - yyb2902 = yyj2902 > l + yyj2907++ + if yyhl2907 { + yyb2907 = yyj2907 > l } else { - yyb2902 = r.CheckBreak() + yyb2907 = r.CheckBreak() } - if yyb2902 { + if yyb2907 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37277,17 +37325,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj2902++ - if yyhl2902 { - yyb2902 = yyj2902 > l + yyj2907++ + if yyhl2907 { + yyb2907 = yyj2907 > l } else { - yyb2902 = r.CheckBreak() + yyb2907 = r.CheckBreak() } - if yyb2902 { + if yyb2907 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2902-1, "") + z.DecStructFieldNotFound(yyj2907-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37299,38 +37347,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2905 := z.EncBinary() - _ = yym2905 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2906 := !z.EncBinary() - yy2arr2906 := z.EncBasicHandle().StructToArray - var yyq2906 [1]bool - _, _, _ = yysep2906, yyq2906, yy2arr2906 - const yyr2906 bool = false - yyq2906[0] = len(x.PreferAvoidPods) != 0 - var yynn2906 int - if yyr2906 || yy2arr2906 { + yysep2911 := !z.EncBinary() + yy2arr2911 := z.EncBasicHandle().StructToArray + var yyq2911 [1]bool + _, _, _ = yysep2911, yyq2911, yy2arr2911 + const yyr2911 bool = false + yyq2911[0] = len(x.PreferAvoidPods) != 0 + var yynn2911 int + if yyr2911 || yy2arr2911 { r.EncodeArrayStart(1) } else { - yynn2906 = 0 - for _, b := range yyq2906 { + yynn2911 = 0 + for _, b := range yyq2911 { if b { - yynn2906++ + yynn2911++ } } - r.EncodeMapStart(yynn2906) - yynn2906 = 0 + r.EncodeMapStart(yynn2911) + yynn2911 = 0 } - if yyr2906 || yy2arr2906 { + if yyr2911 || yy2arr2911 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2906[0] { + if yyq2911[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2908 := z.EncBinary() - _ = yym2908 + yym2913 := z.EncBinary() + _ = yym2913 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37340,15 +37388,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2906[0] { + if yyq2911[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2909 := z.EncBinary() - _ = yym2909 + yym2914 := z.EncBinary() + _ = yym2914 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37356,7 +37404,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2906 || yy2arr2906 { + if yyr2911 || yy2arr2911 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37369,25 +37417,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2910 := z.DecBinary() - _ = yym2910 + yym2915 := z.DecBinary() + _ = yym2915 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2911 := r.ContainerType() - if yyct2911 == codecSelferValueTypeMap1234 { - yyl2911 := r.ReadMapStart() - if yyl2911 == 0 { + yyct2916 := r.ContainerType() + if yyct2916 == codecSelferValueTypeMap1234 { + yyl2916 := r.ReadMapStart() + if yyl2916 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2911, d) + x.codecDecodeSelfFromMap(yyl2916, d) } - } else if yyct2911 == codecSelferValueTypeArray1234 { - yyl2911 := r.ReadArrayStart() - if yyl2911 == 0 { + } else if yyct2916 == codecSelferValueTypeArray1234 { + yyl2916 := r.ReadArrayStart() + if yyl2916 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2911, d) + x.codecDecodeSelfFromArray(yyl2916, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37399,12 +37447,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2912Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2912Slc - var yyhl2912 bool = l >= 0 - for yyj2912 := 0; ; yyj2912++ { - if yyhl2912 { - if yyj2912 >= l { + var yys2917Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2917Slc + var yyhl2917 bool = l >= 0 + for yyj2917 := 0; ; yyj2917++ { + if yyhl2917 { + if yyj2917 >= l { break } } else { @@ -37413,26 +37461,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2912Slc = r.DecodeBytes(yys2912Slc, true, true) - yys2912 := string(yys2912Slc) + yys2917Slc = r.DecodeBytes(yys2917Slc, true, true) + yys2917 := string(yys2917Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2912 { + switch yys2917 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2913 := &x.PreferAvoidPods - yym2914 := z.DecBinary() - _ = yym2914 + yyv2918 := &x.PreferAvoidPods + yym2919 := z.DecBinary() + _ = yym2919 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2913), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2918), d) } } default: - z.DecStructFieldNotFound(-1, yys2912) - } // end switch yys2912 - } // end for yyj2912 + z.DecStructFieldNotFound(-1, yys2917) + } // end switch yys2917 + } // end for yyj2917 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37440,16 +37488,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2915 int - var yyb2915 bool - var yyhl2915 bool = l >= 0 - yyj2915++ - if yyhl2915 { - yyb2915 = yyj2915 > l + var yyj2920 int + var yyb2920 bool + var yyhl2920 bool = l >= 0 + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2915 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2915 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37457,26 +37505,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2916 := &x.PreferAvoidPods - yym2917 := z.DecBinary() - _ = yym2917 + yyv2921 := &x.PreferAvoidPods + yym2922 := z.DecBinary() + _ = yym2922 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2916), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2921), d) } } for { - yyj2915++ - if yyhl2915 { - yyb2915 = yyj2915 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2915 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2915 { + if yyb2920 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2915-1, "") + z.DecStructFieldNotFound(yyj2920-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37488,85 +37536,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2918 := z.EncBinary() - _ = yym2918 + yym2923 := z.EncBinary() + _ = yym2923 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2919 := !z.EncBinary() - yy2arr2919 := z.EncBasicHandle().StructToArray - var yyq2919 [4]bool - _, _, _ = yysep2919, yyq2919, yy2arr2919 - const yyr2919 bool = false - yyq2919[1] = true - yyq2919[2] = x.Reason != "" - yyq2919[3] = x.Message != "" - var yynn2919 int - if yyr2919 || yy2arr2919 { + yysep2924 := !z.EncBinary() + yy2arr2924 := z.EncBasicHandle().StructToArray + var yyq2924 [4]bool + _, _, _ = yysep2924, yyq2924, yy2arr2924 + const yyr2924 bool = false + yyq2924[1] = true + yyq2924[2] = x.Reason != "" + yyq2924[3] = x.Message != "" + var yynn2924 int + if yyr2924 || yy2arr2924 { r.EncodeArrayStart(4) } else { - yynn2919 = 1 - for _, b := range yyq2919 { + yynn2924 = 1 + for _, b := range yyq2924 { if b { - yynn2919++ + yynn2924++ } } - r.EncodeMapStart(yynn2919) - yynn2919 = 0 + r.EncodeMapStart(yynn2924) + yynn2924 = 0 } - if yyr2919 || yy2arr2919 { + if yyr2924 || yy2arr2924 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2921 := &x.PodSignature - yy2921.CodecEncodeSelf(e) + yy2926 := &x.PodSignature + yy2926.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2922 := &x.PodSignature - yy2922.CodecEncodeSelf(e) + yy2927 := &x.PodSignature + yy2927.CodecEncodeSelf(e) } - if yyr2919 || yy2arr2919 { + if yyr2924 || yy2arr2924 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2919[1] { - yy2924 := &x.EvictionTime - yym2925 := z.EncBinary() - _ = yym2925 + if yyq2924[1] { + yy2929 := &x.EvictionTime + yym2930 := z.EncBinary() + _ = yym2930 if false { - } else if z.HasExtensions() && z.EncExt(yy2924) { - } else if yym2925 { - z.EncBinaryMarshal(yy2924) - } else if !yym2925 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2924) + } else if z.HasExtensions() && z.EncExt(yy2929) { + } else if yym2930 { + z.EncBinaryMarshal(yy2929) + } else if !yym2930 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2929) } else { - z.EncFallback(yy2924) + z.EncFallback(yy2929) } } else { r.EncodeNil() } } else { - if yyq2919[1] { + if yyq2924[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2926 := &x.EvictionTime - yym2927 := z.EncBinary() - _ = yym2927 + yy2931 := &x.EvictionTime + 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) } } } - if yyr2919 || yy2arr2919 { + if yyr2924 || yy2arr2924 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2919[2] { - yym2929 := z.EncBinary() - _ = yym2929 + if yyq2924[2] { + yym2934 := z.EncBinary() + _ = yym2934 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -37575,23 +37623,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2919[2] { + if yyq2924[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2930 := z.EncBinary() - _ = yym2930 + yym2935 := z.EncBinary() + _ = yym2935 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2919 || yy2arr2919 { + if yyr2924 || yy2arr2924 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2919[3] { - yym2932 := z.EncBinary() - _ = yym2932 + if yyq2924[3] { + yym2937 := z.EncBinary() + _ = yym2937 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -37600,19 +37648,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2919[3] { + if yyq2924[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2933 := z.EncBinary() - _ = yym2933 + yym2938 := z.EncBinary() + _ = yym2938 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2919 || yy2arr2919 { + if yyr2924 || yy2arr2924 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37625,25 +37673,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2934 := z.DecBinary() - _ = yym2934 + yym2939 := z.DecBinary() + _ = yym2939 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2935 := r.ContainerType() - if yyct2935 == codecSelferValueTypeMap1234 { - yyl2935 := r.ReadMapStart() - if yyl2935 == 0 { + yyct2940 := r.ContainerType() + if yyct2940 == codecSelferValueTypeMap1234 { + yyl2940 := r.ReadMapStart() + if yyl2940 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2935, d) + x.codecDecodeSelfFromMap(yyl2940, d) } - } else if yyct2935 == codecSelferValueTypeArray1234 { - yyl2935 := r.ReadArrayStart() - if yyl2935 == 0 { + } else if yyct2940 == codecSelferValueTypeArray1234 { + yyl2940 := r.ReadArrayStart() + if yyl2940 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2935, d) + x.codecDecodeSelfFromArray(yyl2940, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37655,12 +37703,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2936Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2936Slc - var yyhl2936 bool = l >= 0 - for yyj2936 := 0; ; yyj2936++ { - if yyhl2936 { - if yyj2936 >= l { + var yys2941Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2941Slc + var yyhl2941 bool = l >= 0 + for yyj2941 := 0; ; yyj2941++ { + if yyhl2941 { + if yyj2941 >= l { break } } else { @@ -37669,32 +37717,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2936Slc = r.DecodeBytes(yys2936Slc, true, true) - yys2936 := string(yys2936Slc) + yys2941Slc = r.DecodeBytes(yys2941Slc, true, true) + yys2941 := string(yys2941Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2936 { + switch yys2941 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2937 := &x.PodSignature - yyv2937.CodecDecodeSelf(d) + yyv2942 := &x.PodSignature + yyv2942.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2938 := &x.EvictionTime - yym2939 := z.DecBinary() - _ = yym2939 + yyv2943 := &x.EvictionTime + yym2944 := z.DecBinary() + _ = yym2944 if false { - } else if z.HasExtensions() && z.DecExt(yyv2938) { - } else if yym2939 { - z.DecBinaryUnmarshal(yyv2938) - } else if !yym2939 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2938) + } else if z.HasExtensions() && z.DecExt(yyv2943) { + } else if yym2944 { + z.DecBinaryUnmarshal(yyv2943) + } else if !yym2944 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2943) } else { - z.DecFallback(yyv2938, false) + z.DecFallback(yyv2943, false) } } case "reason": @@ -37710,9 +37758,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2936) - } // end switch yys2936 - } // end for yyj2936 + z.DecStructFieldNotFound(-1, yys2941) + } // end switch yys2941 + } // end for yyj2941 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37720,16 +37768,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2942 int - var yyb2942 bool - var yyhl2942 bool = l >= 0 - yyj2942++ - if yyhl2942 { - yyb2942 = yyj2942 > l + var yyj2947 int + var yyb2947 bool + var yyhl2947 bool = l >= 0 + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2942 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2942 { + if yyb2947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37737,16 +37785,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2943 := &x.PodSignature - yyv2943.CodecDecodeSelf(d) + yyv2948 := &x.PodSignature + yyv2948.CodecDecodeSelf(d) } - yyj2942++ - if yyhl2942 { - yyb2942 = yyj2942 > l + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2942 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2942 { + if yyb2947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37754,26 +37802,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2944 := &x.EvictionTime - yym2945 := z.DecBinary() - _ = yym2945 + yyv2949 := &x.EvictionTime + 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) } } - yyj2942++ - if yyhl2942 { - yyb2942 = yyj2942 > l + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2942 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2942 { + if yyb2947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37783,13 +37831,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj2942++ - if yyhl2942 { - yyb2942 = yyj2942 > l + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2942 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2942 { + if yyb2947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37800,17 +37848,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj2942++ - if yyhl2942 { - yyb2942 = yyj2942 > l + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2942 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2942 { + if yyb2947 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2942-1, "") + z.DecStructFieldNotFound(yyj2947-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37822,33 +37870,33 @@ func (x *PodSignature) 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 [1]bool - _, _, _ = yysep2949, yyq2949, yy2arr2949 - const yyr2949 bool = false - yyq2949[0] = x.PodController != nil - var yynn2949 int - if yyr2949 || yy2arr2949 { + yysep2954 := !z.EncBinary() + yy2arr2954 := z.EncBasicHandle().StructToArray + var yyq2954 [1]bool + _, _, _ = yysep2954, yyq2954, yy2arr2954 + const yyr2954 bool = false + yyq2954[0] = x.PodController != nil + var yynn2954 int + if yyr2954 || yy2arr2954 { r.EncodeArrayStart(1) } else { - yynn2949 = 0 - for _, b := range yyq2949 { + yynn2954 = 0 + 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] { + if yyq2954[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -37858,7 +37906,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2949[0] { + if yyq2954[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37869,7 +37917,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37882,25 +37930,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2951 := z.DecBinary() - _ = yym2951 + yym2956 := z.DecBinary() + _ = yym2956 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2952 := r.ContainerType() - if yyct2952 == codecSelferValueTypeMap1234 { - yyl2952 := r.ReadMapStart() - if yyl2952 == 0 { + yyct2957 := r.ContainerType() + if yyct2957 == codecSelferValueTypeMap1234 { + yyl2957 := r.ReadMapStart() + if yyl2957 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2952, d) + x.codecDecodeSelfFromMap(yyl2957, d) } - } else if yyct2952 == codecSelferValueTypeArray1234 { - yyl2952 := r.ReadArrayStart() - if yyl2952 == 0 { + } else if yyct2957 == codecSelferValueTypeArray1234 { + yyl2957 := r.ReadArrayStart() + if yyl2957 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2952, d) + x.codecDecodeSelfFromArray(yyl2957, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37912,12 +37960,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2953Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2953Slc - var yyhl2953 bool = l >= 0 - for yyj2953 := 0; ; yyj2953++ { - if yyhl2953 { - if yyj2953 >= l { + var yys2958Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2958Slc + var yyhl2958 bool = l >= 0 + for yyj2958 := 0; ; yyj2958++ { + if yyhl2958 { + if yyj2958 >= l { break } } else { @@ -37926,10 +37974,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2953Slc = r.DecodeBytes(yys2953Slc, true, true) - yys2953 := string(yys2953Slc) + yys2958Slc = r.DecodeBytes(yys2958Slc, true, true) + yys2958 := string(yys2958Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2953 { + switch yys2958 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -37942,9 +37990,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2953) - } // end switch yys2953 - } // end for yyj2953 + z.DecStructFieldNotFound(-1, yys2958) + } // end switch yys2958 + } // end for yyj2958 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37952,16 +38000,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2955 int - var yyb2955 bool - var yyhl2955 bool = l >= 0 - yyj2955++ - if yyhl2955 { - yyb2955 = yyj2955 > l + var yyj2960 int + var yyb2960 bool + var yyhl2960 bool = l >= 0 + yyj2960++ + if yyhl2960 { + yyb2960 = yyj2960 > l } else { - yyb2955 = r.CheckBreak() + yyb2960 = r.CheckBreak() } - if yyb2955 { + if yyb2960 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37977,17 +38025,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj2955++ - if yyhl2955 { - yyb2955 = yyj2955 > l + yyj2960++ + if yyhl2960 { + yyb2960 = yyj2960 > l } else { - yyb2955 = r.CheckBreak() + yyb2960 = r.CheckBreak() } - if yyb2955 { + if yyb2960 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2955-1, "") + z.DecStructFieldNotFound(yyj2960-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37999,37 +38047,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2957 := z.EncBinary() - _ = yym2957 + yym2962 := z.EncBinary() + _ = yym2962 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2958 := !z.EncBinary() - yy2arr2958 := z.EncBasicHandle().StructToArray - var yyq2958 [2]bool - _, _, _ = yysep2958, yyq2958, yy2arr2958 - const yyr2958 bool = false - yyq2958[1] = x.SizeBytes != 0 - var yynn2958 int - if yyr2958 || yy2arr2958 { + yysep2963 := !z.EncBinary() + yy2arr2963 := z.EncBasicHandle().StructToArray + var yyq2963 [2]bool + _, _, _ = yysep2963, yyq2963, yy2arr2963 + const yyr2963 bool = false + yyq2963[1] = x.SizeBytes != 0 + var yynn2963 int + if yyr2963 || yy2arr2963 { r.EncodeArrayStart(2) } else { - yynn2958 = 1 - for _, b := range yyq2958 { + yynn2963 = 1 + for _, b := range yyq2963 { if b { - yynn2958++ + yynn2963++ } } - r.EncodeMapStart(yynn2958) - yynn2958 = 0 + r.EncodeMapStart(yynn2963) + yynn2963 = 0 } - if yyr2958 || yy2arr2958 { + if yyr2963 || yy2arr2963 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym2960 := z.EncBinary() - _ = yym2960 + yym2965 := z.EncBinary() + _ = yym2965 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -38042,19 +38090,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym2961 := z.EncBinary() - _ = yym2961 + yym2966 := z.EncBinary() + _ = yym2966 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr2958 || yy2arr2958 { + if yyr2963 || yy2arr2963 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2958[1] { - yym2963 := z.EncBinary() - _ = yym2963 + if yyq2963[1] { + yym2968 := z.EncBinary() + _ = yym2968 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -38063,19 +38111,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2958[1] { + if yyq2963[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2964 := z.EncBinary() - _ = yym2964 + yym2969 := z.EncBinary() + _ = yym2969 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr2958 || yy2arr2958 { + if yyr2963 || yy2arr2963 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38088,25 +38136,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2965 := z.DecBinary() - _ = yym2965 + yym2970 := z.DecBinary() + _ = yym2970 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2966 := r.ContainerType() - if yyct2966 == codecSelferValueTypeMap1234 { - yyl2966 := r.ReadMapStart() - if yyl2966 == 0 { + yyct2971 := r.ContainerType() + if yyct2971 == codecSelferValueTypeMap1234 { + yyl2971 := r.ReadMapStart() + if yyl2971 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2966, d) + x.codecDecodeSelfFromMap(yyl2971, d) } - } else if yyct2966 == codecSelferValueTypeArray1234 { - yyl2966 := r.ReadArrayStart() - if yyl2966 == 0 { + } else if yyct2971 == codecSelferValueTypeArray1234 { + yyl2971 := r.ReadArrayStart() + if yyl2971 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2966, d) + x.codecDecodeSelfFromArray(yyl2971, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38118,12 +38166,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2967Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2967Slc - var yyhl2967 bool = l >= 0 - for yyj2967 := 0; ; yyj2967++ { - if yyhl2967 { - if yyj2967 >= l { + var yys2972Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2972Slc + var yyhl2972 bool = l >= 0 + for yyj2972 := 0; ; yyj2972++ { + if yyhl2972 { + if yyj2972 >= l { break } } else { @@ -38132,20 +38180,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2967Slc = r.DecodeBytes(yys2967Slc, true, true) - yys2967 := string(yys2967Slc) + yys2972Slc = r.DecodeBytes(yys2972Slc, true, true) + yys2972 := string(yys2972Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2967 { + switch yys2972 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2968 := &x.Names - yym2969 := z.DecBinary() - _ = yym2969 + yyv2973 := &x.Names + yym2974 := z.DecBinary() + _ = yym2974 if false { } else { - z.F.DecSliceStringX(yyv2968, false, d) + z.F.DecSliceStringX(yyv2973, false, d) } } case "sizeBytes": @@ -38155,9 +38203,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2967) - } // end switch yys2967 - } // end for yyj2967 + z.DecStructFieldNotFound(-1, yys2972) + } // end switch yys2972 + } // end for yyj2972 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38165,16 +38213,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2971 int - var yyb2971 bool - var yyhl2971 bool = l >= 0 - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + var yyj2976 int + var yyb2976 bool + var yyhl2976 bool = l >= 0 + yyj2976++ + if yyhl2976 { + yyb2976 = yyj2976 > l } else { - yyb2971 = r.CheckBreak() + yyb2976 = r.CheckBreak() } - if yyb2971 { + if yyb2976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38182,21 +38230,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2972 := &x.Names - yym2973 := z.DecBinary() - _ = yym2973 + yyv2977 := &x.Names + yym2978 := z.DecBinary() + _ = yym2978 if false { } else { - z.F.DecSliceStringX(yyv2972, false, d) + z.F.DecSliceStringX(yyv2977, false, d) } } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj2976++ + if yyhl2976 { + yyb2976 = yyj2976 > l } else { - yyb2971 = r.CheckBreak() + yyb2976 = r.CheckBreak() } - if yyb2971 { + if yyb2976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38207,17 +38255,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj2976++ + if yyhl2976 { + yyb2976 = yyj2976 > l } else { - yyb2971 = r.CheckBreak() + yyb2976 = r.CheckBreak() } - if yyb2971 { + if yyb2976 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2971-1, "") + z.DecStructFieldNotFound(yyj2976-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38226,8 +38274,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2975 := z.EncBinary() - _ = yym2975 + yym2980 := z.EncBinary() + _ = yym2980 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38239,8 +38287,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2976 := z.DecBinary() - _ = yym2976 + yym2981 := z.DecBinary() + _ = yym2981 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38252,8 +38300,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2977 := z.EncBinary() - _ = yym2977 + yym2982 := z.EncBinary() + _ = yym2982 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38265,8 +38313,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2978 := z.DecBinary() - _ = yym2978 + yym2983 := z.DecBinary() + _ = yym2983 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38281,34 +38329,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2979 := z.EncBinary() - _ = yym2979 + yym2984 := z.EncBinary() + _ = yym2984 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2980 := !z.EncBinary() - yy2arr2980 := z.EncBasicHandle().StructToArray - var yyq2980 [6]bool - _, _, _ = yysep2980, yyq2980, yy2arr2980 - const yyr2980 bool = false - yyq2980[2] = true - yyq2980[3] = true - yyq2980[4] = x.Reason != "" - yyq2980[5] = x.Message != "" - var yynn2980 int - if yyr2980 || yy2arr2980 { + yysep2985 := !z.EncBinary() + yy2arr2985 := z.EncBasicHandle().StructToArray + var yyq2985 [6]bool + _, _, _ = yysep2985, yyq2985, yy2arr2985 + const yyr2985 bool = false + yyq2985[2] = true + yyq2985[3] = true + yyq2985[4] = x.Reason != "" + yyq2985[5] = x.Message != "" + var yynn2985 int + if yyr2985 || yy2arr2985 { r.EncodeArrayStart(6) } else { - yynn2980 = 2 - for _, b := range yyq2980 { + yynn2985 = 2 + for _, b := range yyq2985 { if b { - yynn2980++ + yynn2985++ } } - r.EncodeMapStart(yynn2980) - yynn2980 = 0 + r.EncodeMapStart(yynn2985) + yynn2985 = 0 } - if yyr2980 || yy2arr2980 { + if yyr2985 || yy2arr2985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38317,7 +38365,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2980 || yy2arr2980 { + if yyr2985 || yy2arr2985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -38326,85 +38374,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2980 || yy2arr2980 { + if yyr2985 || yy2arr2985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2980[2] { - yy2984 := &x.LastHeartbeatTime - yym2985 := z.EncBinary() - _ = yym2985 + if yyq2985[2] { + yy2989 := &x.LastHeartbeatTime + yym2990 := z.EncBinary() + _ = yym2990 if false { - } else if z.HasExtensions() && z.EncExt(yy2984) { - } else if yym2985 { - z.EncBinaryMarshal(yy2984) - } else if !yym2985 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2984) + } else if z.HasExtensions() && z.EncExt(yy2989) { + } else if yym2990 { + z.EncBinaryMarshal(yy2989) + } else if !yym2990 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2989) } else { - z.EncFallback(yy2984) + z.EncFallback(yy2989) } } else { r.EncodeNil() } } else { - if yyq2980[2] { + if yyq2985[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2986 := &x.LastHeartbeatTime - yym2987 := z.EncBinary() - _ = yym2987 + yy2991 := &x.LastHeartbeatTime + yym2992 := z.EncBinary() + _ = yym2992 if false { - } else if z.HasExtensions() && z.EncExt(yy2986) { - } else if yym2987 { - z.EncBinaryMarshal(yy2986) - } else if !yym2987 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2986) + } else if z.HasExtensions() && z.EncExt(yy2991) { + } else if yym2992 { + z.EncBinaryMarshal(yy2991) + } else if !yym2992 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2991) } else { - z.EncFallback(yy2986) + z.EncFallback(yy2991) } } } - if yyr2980 || yy2arr2980 { + if yyr2985 || yy2arr2985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2980[3] { - yy2989 := &x.LastTransitionTime - yym2990 := z.EncBinary() - _ = yym2990 + if yyq2985[3] { + yy2994 := &x.LastTransitionTime + yym2995 := z.EncBinary() + _ = yym2995 if false { - } else if z.HasExtensions() && z.EncExt(yy2989) { - } else if yym2990 { - z.EncBinaryMarshal(yy2989) - } else if !yym2990 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2989) + } else if z.HasExtensions() && z.EncExt(yy2994) { + } else if yym2995 { + z.EncBinaryMarshal(yy2994) + } else if !yym2995 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2994) } else { - z.EncFallback(yy2989) + z.EncFallback(yy2994) } } else { r.EncodeNil() } } else { - if yyq2980[3] { + if yyq2985[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2991 := &x.LastTransitionTime - yym2992 := z.EncBinary() - _ = yym2992 + yy2996 := &x.LastTransitionTime + yym2997 := z.EncBinary() + _ = yym2997 if false { - } else if z.HasExtensions() && z.EncExt(yy2991) { - } else if yym2992 { - z.EncBinaryMarshal(yy2991) - } else if !yym2992 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2991) + } else if z.HasExtensions() && z.EncExt(yy2996) { + } else if yym2997 { + z.EncBinaryMarshal(yy2996) + } else if !yym2997 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2996) } else { - z.EncFallback(yy2991) + z.EncFallback(yy2996) } } } - if yyr2980 || yy2arr2980 { + if yyr2985 || yy2arr2985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2980[4] { - yym2994 := z.EncBinary() - _ = yym2994 + if yyq2985[4] { + yym2999 := z.EncBinary() + _ = yym2999 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38413,23 +38461,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2980[4] { + if yyq2985[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2995 := z.EncBinary() - _ = yym2995 + yym3000 := z.EncBinary() + _ = yym3000 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2980 || yy2arr2980 { + if yyr2985 || yy2arr2985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2980[5] { - yym2997 := z.EncBinary() - _ = yym2997 + if yyq2985[5] { + yym3002 := z.EncBinary() + _ = yym3002 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -38438,19 +38486,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2980[5] { + if yyq2985[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2998 := z.EncBinary() - _ = yym2998 + yym3003 := z.EncBinary() + _ = yym3003 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2980 || yy2arr2980 { + if yyr2985 || yy2arr2985 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38463,25 +38511,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2999 := z.DecBinary() - _ = yym2999 + yym3004 := z.DecBinary() + _ = yym3004 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3000 := r.ContainerType() - if yyct3000 == codecSelferValueTypeMap1234 { - yyl3000 := r.ReadMapStart() - if yyl3000 == 0 { + yyct3005 := r.ContainerType() + if yyct3005 == codecSelferValueTypeMap1234 { + yyl3005 := r.ReadMapStart() + if yyl3005 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3000, d) + x.codecDecodeSelfFromMap(yyl3005, d) } - } else if yyct3000 == codecSelferValueTypeArray1234 { - yyl3000 := r.ReadArrayStart() - if yyl3000 == 0 { + } else if yyct3005 == codecSelferValueTypeArray1234 { + yyl3005 := r.ReadArrayStart() + if yyl3005 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3000, d) + x.codecDecodeSelfFromArray(yyl3005, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38493,12 +38541,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3001Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3001Slc - var yyhl3001 bool = l >= 0 - for yyj3001 := 0; ; yyj3001++ { - if yyhl3001 { - if yyj3001 >= l { + var yys3006Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3006Slc + var yyhl3006 bool = l >= 0 + for yyj3006 := 0; ; yyj3006++ { + if yyhl3006 { + if yyj3006 >= l { break } } else { @@ -38507,10 +38555,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3001Slc = r.DecodeBytes(yys3001Slc, true, true) - yys3001 := string(yys3001Slc) + yys3006Slc = r.DecodeBytes(yys3006Slc, true, true) + yys3006 := string(yys3006Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3001 { + switch yys3006 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -38527,34 +38575,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3004 := &x.LastHeartbeatTime - yym3005 := z.DecBinary() - _ = yym3005 + yyv3009 := &x.LastHeartbeatTime + yym3010 := z.DecBinary() + _ = yym3010 if false { - } else if z.HasExtensions() && z.DecExt(yyv3004) { - } else if yym3005 { - z.DecBinaryUnmarshal(yyv3004) - } else if !yym3005 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3004) + } else if z.HasExtensions() && z.DecExt(yyv3009) { + } else if yym3010 { + z.DecBinaryUnmarshal(yyv3009) + } else if !yym3010 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3009) } else { - z.DecFallback(yyv3004, false) + z.DecFallback(yyv3009, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3006 := &x.LastTransitionTime - yym3007 := z.DecBinary() - _ = yym3007 + yyv3011 := &x.LastTransitionTime + yym3012 := z.DecBinary() + _ = yym3012 if false { - } else if z.HasExtensions() && z.DecExt(yyv3006) { - } else if yym3007 { - z.DecBinaryUnmarshal(yyv3006) - } else if !yym3007 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3006) + } else if z.HasExtensions() && z.DecExt(yyv3011) { + } else if yym3012 { + z.DecBinaryUnmarshal(yyv3011) + } else if !yym3012 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3011) } else { - z.DecFallback(yyv3006, false) + z.DecFallback(yyv3011, false) } } case "reason": @@ -38570,9 +38618,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3001) - } // end switch yys3001 - } // end for yyj3001 + z.DecStructFieldNotFound(-1, yys3006) + } // end switch yys3006 + } // end for yyj3006 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38580,16 +38628,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3010 int - var yyb3010 bool - var yyhl3010 bool = l >= 0 - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l + var yyj3015 int + var yyb3015 bool + var yyhl3015 bool = l >= 0 + yyj3015++ + if yyhl3015 { + yyb3015 = yyj3015 > l } else { - yyb3010 = r.CheckBreak() + yyb3015 = r.CheckBreak() } - if yyb3010 { + if yyb3015 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38599,13 +38647,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l + yyj3015++ + if yyhl3015 { + yyb3015 = yyj3015 > l } else { - yyb3010 = r.CheckBreak() + yyb3015 = r.CheckBreak() } - if yyb3010 { + if yyb3015 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38615,13 +38663,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l + yyj3015++ + if yyhl3015 { + yyb3015 = yyj3015 > l } else { - yyb3010 = r.CheckBreak() + yyb3015 = r.CheckBreak() } - if yyb3010 { + if yyb3015 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38629,26 +38677,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3013 := &x.LastHeartbeatTime - yym3014 := z.DecBinary() - _ = yym3014 + yyv3018 := &x.LastHeartbeatTime + yym3019 := z.DecBinary() + _ = yym3019 if false { - } else if z.HasExtensions() && z.DecExt(yyv3013) { - } else if yym3014 { - z.DecBinaryUnmarshal(yyv3013) - } else if !yym3014 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3013) + } else if z.HasExtensions() && z.DecExt(yyv3018) { + } else if yym3019 { + z.DecBinaryUnmarshal(yyv3018) + } else if !yym3019 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3018) } else { - z.DecFallback(yyv3013, false) + z.DecFallback(yyv3018, false) } } - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l + yyj3015++ + if yyhl3015 { + yyb3015 = yyj3015 > l } else { - yyb3010 = r.CheckBreak() + yyb3015 = r.CheckBreak() } - if yyb3010 { + if yyb3015 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38656,26 +38704,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3015 := &x.LastTransitionTime - yym3016 := z.DecBinary() - _ = yym3016 + yyv3020 := &x.LastTransitionTime + yym3021 := z.DecBinary() + _ = yym3021 if false { - } else if z.HasExtensions() && z.DecExt(yyv3015) { - } else if yym3016 { - z.DecBinaryUnmarshal(yyv3015) - } else if !yym3016 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3015) + } else if z.HasExtensions() && z.DecExt(yyv3020) { + } else if yym3021 { + z.DecBinaryUnmarshal(yyv3020) + } else if !yym3021 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3020) } else { - z.DecFallback(yyv3015, false) + z.DecFallback(yyv3020, false) } } - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l + yyj3015++ + if yyhl3015 { + yyb3015 = yyj3015 > l } else { - yyb3010 = r.CheckBreak() + yyb3015 = r.CheckBreak() } - if yyb3010 { + if yyb3015 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38685,13 +38733,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l + yyj3015++ + if yyhl3015 { + yyb3015 = yyj3015 > l } else { - yyb3010 = r.CheckBreak() + yyb3015 = r.CheckBreak() } - if yyb3010 { + if yyb3015 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38702,17 +38750,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l + yyj3015++ + if yyhl3015 { + yyb3015 = yyj3015 > l } else { - yyb3010 = r.CheckBreak() + yyb3015 = r.CheckBreak() } - if yyb3010 { + if yyb3015 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3010-1, "") + z.DecStructFieldNotFound(yyj3015-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38721,8 +38769,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3019 := z.EncBinary() - _ = yym3019 + yym3024 := z.EncBinary() + _ = yym3024 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38734,8 +38782,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3020 := z.DecBinary() - _ = yym3020 + yym3025 := z.DecBinary() + _ = yym3025 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38750,30 +38798,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3021 := z.EncBinary() - _ = yym3021 + yym3026 := z.EncBinary() + _ = yym3026 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3022 := !z.EncBinary() - yy2arr3022 := z.EncBasicHandle().StructToArray - var yyq3022 [2]bool - _, _, _ = yysep3022, yyq3022, yy2arr3022 - const yyr3022 bool = false - var yynn3022 int - if yyr3022 || yy2arr3022 { + yysep3027 := !z.EncBinary() + yy2arr3027 := z.EncBasicHandle().StructToArray + var yyq3027 [2]bool + _, _, _ = yysep3027, yyq3027, yy2arr3027 + const yyr3027 bool = false + var yynn3027 int + if yyr3027 || yy2arr3027 { r.EncodeArrayStart(2) } else { - yynn3022 = 2 - for _, b := range yyq3022 { + yynn3027 = 2 + for _, b := range yyq3027 { if b { - yynn3022++ + yynn3027++ } } - r.EncodeMapStart(yynn3022) - yynn3022 = 0 + r.EncodeMapStart(yynn3027) + yynn3027 = 0 } - if yyr3022 || yy2arr3022 { + if yyr3027 || yy2arr3027 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38782,10 +38830,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3022 || yy2arr3022 { + if yyr3027 || yy2arr3027 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3025 := z.EncBinary() - _ = yym3025 + yym3030 := z.EncBinary() + _ = yym3030 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -38794,14 +38842,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3026 := z.EncBinary() - _ = yym3026 + yym3031 := z.EncBinary() + _ = yym3031 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3022 || yy2arr3022 { + if yyr3027 || yy2arr3027 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38814,25 +38862,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3027 := z.DecBinary() - _ = yym3027 + yym3032 := z.DecBinary() + _ = yym3032 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3028 := r.ContainerType() - if yyct3028 == codecSelferValueTypeMap1234 { - yyl3028 := r.ReadMapStart() - if yyl3028 == 0 { + yyct3033 := r.ContainerType() + if yyct3033 == codecSelferValueTypeMap1234 { + yyl3033 := r.ReadMapStart() + if yyl3033 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3028, d) + x.codecDecodeSelfFromMap(yyl3033, d) } - } else if yyct3028 == codecSelferValueTypeArray1234 { - yyl3028 := r.ReadArrayStart() - if yyl3028 == 0 { + } else if yyct3033 == codecSelferValueTypeArray1234 { + yyl3033 := r.ReadArrayStart() + if yyl3033 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3028, d) + x.codecDecodeSelfFromArray(yyl3033, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38844,12 +38892,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3029Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3029Slc - var yyhl3029 bool = l >= 0 - for yyj3029 := 0; ; yyj3029++ { - if yyhl3029 { - if yyj3029 >= l { + var yys3034Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3034Slc + var yyhl3034 bool = l >= 0 + for yyj3034 := 0; ; yyj3034++ { + if yyhl3034 { + if yyj3034 >= l { break } } else { @@ -38858,10 +38906,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3029Slc = r.DecodeBytes(yys3029Slc, true, true) - yys3029 := string(yys3029Slc) + yys3034Slc = r.DecodeBytes(yys3034Slc, true, true) + yys3034 := string(yys3034Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3029 { + switch yys3034 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -38875,9 +38923,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3029) - } // end switch yys3029 - } // end for yyj3029 + z.DecStructFieldNotFound(-1, yys3034) + } // end switch yys3034 + } // end for yyj3034 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38885,16 +38933,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3032 int - var yyb3032 bool - var yyhl3032 bool = l >= 0 - yyj3032++ - if yyhl3032 { - yyb3032 = yyj3032 > l + var yyj3037 int + var yyb3037 bool + var yyhl3037 bool = l >= 0 + yyj3037++ + if yyhl3037 { + yyb3037 = yyj3037 > l } else { - yyb3032 = r.CheckBreak() + yyb3037 = r.CheckBreak() } - if yyb3032 { + if yyb3037 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38904,13 +38952,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3032++ - if yyhl3032 { - yyb3032 = yyj3032 > l + yyj3037++ + if yyhl3037 { + yyb3037 = yyj3037 > l } else { - yyb3032 = r.CheckBreak() + yyb3037 = r.CheckBreak() } - if yyb3032 { + if yyb3037 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38921,17 +38969,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3032++ - if yyhl3032 { - yyb3032 = yyj3032 > l + yyj3037++ + if yyhl3037 { + yyb3037 = yyj3037 > l } else { - yyb3032 = r.CheckBreak() + yyb3037 = r.CheckBreak() } - if yyb3032 { + if yyb3037 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3032-1, "") + z.DecStructFieldNotFound(yyj3037-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38940,8 +38988,8 @@ func (x ResourceName) 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 { @@ -38953,8 +39001,8 @@ func (x *ResourceName) 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 { @@ -38969,8 +39017,8 @@ func (x ResourceList) 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 { @@ -38983,8 +39031,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3038 := z.DecBinary() - _ = yym3038 + yym3043 := z.DecBinary() + _ = yym3043 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38999,39 +39047,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3039 := z.EncBinary() - _ = yym3039 + yym3044 := z.EncBinary() + _ = yym3044 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3040 := !z.EncBinary() - yy2arr3040 := z.EncBasicHandle().StructToArray - var yyq3040 [5]bool - _, _, _ = yysep3040, yyq3040, yy2arr3040 - const yyr3040 bool = false - yyq3040[0] = x.Kind != "" - yyq3040[1] = x.APIVersion != "" - yyq3040[2] = true - yyq3040[3] = true - yyq3040[4] = true - var yynn3040 int - if yyr3040 || yy2arr3040 { + yysep3045 := !z.EncBinary() + yy2arr3045 := z.EncBasicHandle().StructToArray + var yyq3045 [5]bool + _, _, _ = yysep3045, yyq3045, yy2arr3045 + const yyr3045 bool = false + yyq3045[0] = x.Kind != "" + yyq3045[1] = x.APIVersion != "" + yyq3045[2] = true + yyq3045[3] = true + yyq3045[4] = true + var yynn3045 int + if yyr3045 || yy2arr3045 { r.EncodeArrayStart(5) } else { - yynn3040 = 0 - for _, b := range yyq3040 { + yynn3045 = 0 + for _, b := range yyq3045 { if b { - yynn3040++ + yynn3045++ } } - r.EncodeMapStart(yynn3040) - yynn3040 = 0 + r.EncodeMapStart(yynn3045) + yynn3045 = 0 } - if yyr3040 || yy2arr3040 { + if yyr3045 || yy2arr3045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3040[0] { - yym3042 := z.EncBinary() - _ = yym3042 + if yyq3045[0] { + yym3047 := z.EncBinary() + _ = yym3047 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39040,23 +39088,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3040[0] { + if yyq3045[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3043 := z.EncBinary() - _ = yym3043 + yym3048 := z.EncBinary() + _ = yym3048 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3040 || yy2arr3040 { + if yyr3045 || yy2arr3045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3040[1] { - yym3045 := z.EncBinary() - _ = yym3045 + if yyq3045[1] { + yym3050 := z.EncBinary() + _ = yym3050 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39065,70 +39113,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3040[1] { + if yyq3045[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3046 := z.EncBinary() - _ = yym3046 + yym3051 := z.EncBinary() + _ = yym3051 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3040 || yy2arr3040 { + if yyr3045 || yy2arr3045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3040[2] { - yy3048 := &x.ObjectMeta - yy3048.CodecEncodeSelf(e) + if yyq3045[2] { + yy3053 := &x.ObjectMeta + yy3053.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3040[2] { + if yyq3045[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3049 := &x.ObjectMeta - yy3049.CodecEncodeSelf(e) + yy3054 := &x.ObjectMeta + yy3054.CodecEncodeSelf(e) } } - if yyr3040 || yy2arr3040 { + if yyr3045 || yy2arr3045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3040[3] { - yy3051 := &x.Spec - yy3051.CodecEncodeSelf(e) + if yyq3045[3] { + yy3056 := &x.Spec + yy3056.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3040[3] { + if yyq3045[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3052 := &x.Spec - yy3052.CodecEncodeSelf(e) + yy3057 := &x.Spec + yy3057.CodecEncodeSelf(e) } } - if yyr3040 || yy2arr3040 { + if yyr3045 || yy2arr3045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3040[4] { - yy3054 := &x.Status - yy3054.CodecEncodeSelf(e) + if yyq3045[4] { + yy3059 := &x.Status + yy3059.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3040[4] { + if yyq3045[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3055 := &x.Status - yy3055.CodecEncodeSelf(e) + yy3060 := &x.Status + yy3060.CodecEncodeSelf(e) } } - if yyr3040 || yy2arr3040 { + if yyr3045 || yy2arr3045 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39141,25 +39189,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3056 := z.DecBinary() - _ = yym3056 + yym3061 := z.DecBinary() + _ = yym3061 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3057 := r.ContainerType() - if yyct3057 == codecSelferValueTypeMap1234 { - yyl3057 := r.ReadMapStart() - if yyl3057 == 0 { + yyct3062 := r.ContainerType() + if yyct3062 == codecSelferValueTypeMap1234 { + yyl3062 := r.ReadMapStart() + if yyl3062 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3057, d) + x.codecDecodeSelfFromMap(yyl3062, d) } - } else if yyct3057 == codecSelferValueTypeArray1234 { - yyl3057 := r.ReadArrayStart() - if yyl3057 == 0 { + } else if yyct3062 == codecSelferValueTypeArray1234 { + yyl3062 := r.ReadArrayStart() + if yyl3062 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3057, d) + x.codecDecodeSelfFromArray(yyl3062, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39171,12 +39219,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3058Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3058Slc - var yyhl3058 bool = l >= 0 - for yyj3058 := 0; ; yyj3058++ { - if yyhl3058 { - if yyj3058 >= l { + var yys3063Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3063Slc + var yyhl3063 bool = l >= 0 + for yyj3063 := 0; ; yyj3063++ { + if yyhl3063 { + if yyj3063 >= l { break } } else { @@ -39185,10 +39233,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3058Slc = r.DecodeBytes(yys3058Slc, true, true) - yys3058 := string(yys3058Slc) + yys3063Slc = r.DecodeBytes(yys3063Slc, true, true) + yys3063 := string(yys3063Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3058 { + switch yys3063 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39205,27 +39253,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3061 := &x.ObjectMeta - yyv3061.CodecDecodeSelf(d) + yyv3066 := &x.ObjectMeta + yyv3066.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3062 := &x.Spec - yyv3062.CodecDecodeSelf(d) + yyv3067 := &x.Spec + yyv3067.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3063 := &x.Status - yyv3063.CodecDecodeSelf(d) + yyv3068 := &x.Status + yyv3068.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3058) - } // end switch yys3058 - } // end for yyj3058 + z.DecStructFieldNotFound(-1, yys3063) + } // end switch yys3063 + } // end for yyj3063 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39233,16 +39281,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3064 int - var yyb3064 bool - var yyhl3064 bool = l >= 0 - yyj3064++ - if yyhl3064 { - yyb3064 = yyj3064 > l + var yyj3069 int + var yyb3069 bool + var yyhl3069 bool = l >= 0 + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3064 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3064 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39252,13 +39300,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3064++ - if yyhl3064 { - yyb3064 = yyj3064 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3064 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3064 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39268,13 +39316,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3064++ - if yyhl3064 { - yyb3064 = yyj3064 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3064 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3064 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39282,16 +39330,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3067 := &x.ObjectMeta - yyv3067.CodecDecodeSelf(d) + yyv3072 := &x.ObjectMeta + yyv3072.CodecDecodeSelf(d) } - yyj3064++ - if yyhl3064 { - yyb3064 = yyj3064 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3064 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3064 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39299,16 +39347,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3068 := &x.Spec - yyv3068.CodecDecodeSelf(d) + yyv3073 := &x.Spec + yyv3073.CodecDecodeSelf(d) } - yyj3064++ - if yyhl3064 { - yyb3064 = yyj3064 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3064 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3064 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39316,21 +39364,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3069 := &x.Status - yyv3069.CodecDecodeSelf(d) + yyv3074 := &x.Status + yyv3074.CodecDecodeSelf(d) } for { - yyj3064++ - if yyhl3064 { - yyb3064 = yyj3064 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3064 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3064 { + if yyb3069 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3064-1, "") + z.DecStructFieldNotFound(yyj3069-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39342,37 +39390,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3070 := z.EncBinary() - _ = yym3070 + yym3075 := z.EncBinary() + _ = yym3075 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3071 := !z.EncBinary() - yy2arr3071 := z.EncBasicHandle().StructToArray - var yyq3071 [4]bool - _, _, _ = yysep3071, yyq3071, yy2arr3071 - const yyr3071 bool = false - yyq3071[0] = x.Kind != "" - yyq3071[1] = x.APIVersion != "" - yyq3071[2] = true - var yynn3071 int - if yyr3071 || yy2arr3071 { + yysep3076 := !z.EncBinary() + yy2arr3076 := z.EncBasicHandle().StructToArray + var yyq3076 [4]bool + _, _, _ = yysep3076, yyq3076, yy2arr3076 + const yyr3076 bool = false + yyq3076[0] = x.Kind != "" + yyq3076[1] = x.APIVersion != "" + yyq3076[2] = true + var yynn3076 int + if yyr3076 || yy2arr3076 { r.EncodeArrayStart(4) } else { - yynn3071 = 1 - for _, b := range yyq3071 { + yynn3076 = 1 + for _, b := range yyq3076 { if b { - yynn3071++ + yynn3076++ } } - r.EncodeMapStart(yynn3071) - yynn3071 = 0 + r.EncodeMapStart(yynn3076) + yynn3076 = 0 } - if yyr3071 || yy2arr3071 { + if yyr3076 || yy2arr3076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3071[0] { - yym3073 := z.EncBinary() - _ = yym3073 + if yyq3076[0] { + yym3078 := z.EncBinary() + _ = yym3078 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39381,23 +39429,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3071[0] { + if yyq3076[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3074 := z.EncBinary() - _ = yym3074 + yym3079 := z.EncBinary() + _ = yym3079 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3071 || yy2arr3071 { + if yyr3076 || yy2arr3076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3071[1] { - yym3076 := z.EncBinary() - _ = yym3076 + if yyq3076[1] { + yym3081 := z.EncBinary() + _ = yym3081 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39406,54 +39454,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3071[1] { + if yyq3076[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3077 := z.EncBinary() - _ = yym3077 + yym3082 := z.EncBinary() + _ = yym3082 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3071 || yy2arr3071 { + if yyr3076 || yy2arr3076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3071[2] { - yy3079 := &x.ListMeta - yym3080 := z.EncBinary() - _ = yym3080 + if yyq3076[2] { + yy3084 := &x.ListMeta + yym3085 := z.EncBinary() + _ = yym3085 if false { - } else if z.HasExtensions() && z.EncExt(yy3079) { + } else if z.HasExtensions() && z.EncExt(yy3084) { } else { - z.EncFallback(yy3079) + z.EncFallback(yy3084) } } else { r.EncodeNil() } } else { - if yyq3071[2] { + if yyq3076[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3081 := &x.ListMeta - yym3082 := z.EncBinary() - _ = yym3082 + yy3086 := &x.ListMeta + yym3087 := z.EncBinary() + _ = yym3087 if false { - } else if z.HasExtensions() && z.EncExt(yy3081) { + } else if z.HasExtensions() && z.EncExt(yy3086) { } else { - z.EncFallback(yy3081) + z.EncFallback(yy3086) } } } - if yyr3071 || yy2arr3071 { + if yyr3076 || yy2arr3076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3084 := z.EncBinary() - _ = yym3084 + yym3089 := z.EncBinary() + _ = yym3089 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -39466,15 +39514,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3085 := z.EncBinary() - _ = yym3085 + yym3090 := z.EncBinary() + _ = yym3090 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3071 || yy2arr3071 { + if yyr3076 || yy2arr3076 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39487,25 +39535,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3086 := z.DecBinary() - _ = yym3086 + yym3091 := z.DecBinary() + _ = yym3091 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3087 := r.ContainerType() - if yyct3087 == codecSelferValueTypeMap1234 { - yyl3087 := r.ReadMapStart() - if yyl3087 == 0 { + yyct3092 := r.ContainerType() + if yyct3092 == codecSelferValueTypeMap1234 { + yyl3092 := r.ReadMapStart() + if yyl3092 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3087, d) + x.codecDecodeSelfFromMap(yyl3092, d) } - } else if yyct3087 == codecSelferValueTypeArray1234 { - yyl3087 := r.ReadArrayStart() - if yyl3087 == 0 { + } else if yyct3092 == codecSelferValueTypeArray1234 { + yyl3092 := r.ReadArrayStart() + if yyl3092 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3087, d) + x.codecDecodeSelfFromArray(yyl3092, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39517,12 +39565,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3088Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3088Slc - var yyhl3088 bool = l >= 0 - for yyj3088 := 0; ; yyj3088++ { - if yyhl3088 { - if yyj3088 >= l { + var yys3093Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3093Slc + var yyhl3093 bool = l >= 0 + for yyj3093 := 0; ; yyj3093++ { + if yyhl3093 { + if yyj3093 >= l { break } } else { @@ -39531,10 +39579,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3088Slc = r.DecodeBytes(yys3088Slc, true, true) - yys3088 := string(yys3088Slc) + yys3093Slc = r.DecodeBytes(yys3093Slc, true, true) + yys3093 := string(yys3093Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3088 { + switch yys3093 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39551,31 +39599,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3091 := &x.ListMeta - yym3092 := z.DecBinary() - _ = yym3092 + yyv3096 := &x.ListMeta + yym3097 := z.DecBinary() + _ = yym3097 if false { - } else if z.HasExtensions() && z.DecExt(yyv3091) { + } else if z.HasExtensions() && z.DecExt(yyv3096) { } else { - z.DecFallback(yyv3091, false) + z.DecFallback(yyv3096, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3093 := &x.Items - yym3094 := z.DecBinary() - _ = yym3094 + yyv3098 := &x.Items + yym3099 := z.DecBinary() + _ = yym3099 if false { } else { - h.decSliceNode((*[]Node)(yyv3093), d) + h.decSliceNode((*[]Node)(yyv3098), d) } } default: - z.DecStructFieldNotFound(-1, yys3088) - } // end switch yys3088 - } // end for yyj3088 + z.DecStructFieldNotFound(-1, yys3093) + } // end switch yys3093 + } // end for yyj3093 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39583,16 +39631,16 @@ func (x *NodeList) 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 } @@ -39602,13 +39650,13 @@ func (x *NodeList) 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 } @@ -39618,13 +39666,13 @@ func (x *NodeList) 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 } @@ -39632,22 +39680,22 @@ func (x *NodeList) codecDecodeSelfFromArray(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) } } - 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 } @@ -39655,26 +39703,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { 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.decSliceNode((*[]Node)(yyv3100), d) + h.decSliceNode((*[]Node)(yyv3105), 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) } @@ -39683,8 +39731,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3102 := z.EncBinary() - _ = yym3102 + yym3107 := z.EncBinary() + _ = yym3107 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39696,8 +39744,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3103 := z.DecBinary() - _ = yym3103 + yym3108 := z.DecBinary() + _ = yym3108 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39712,38 +39760,38 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3104 := z.EncBinary() - _ = yym3104 + yym3109 := z.EncBinary() + _ = yym3109 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3105 := !z.EncBinary() - yy2arr3105 := z.EncBasicHandle().StructToArray - var yyq3105 [1]bool - _, _, _ = yysep3105, yyq3105, yy2arr3105 - const yyr3105 bool = false - yyq3105[0] = len(x.Finalizers) != 0 - var yynn3105 int - if yyr3105 || yy2arr3105 { + yysep3110 := !z.EncBinary() + yy2arr3110 := z.EncBasicHandle().StructToArray + var yyq3110 [1]bool + _, _, _ = yysep3110, yyq3110, yy2arr3110 + const yyr3110 bool = false + yyq3110[0] = len(x.Finalizers) != 0 + var yynn3110 int + if yyr3110 || yy2arr3110 { r.EncodeArrayStart(1) } else { - yynn3105 = 0 - for _, b := range yyq3105 { + yynn3110 = 0 + for _, b := range yyq3110 { if b { - yynn3105++ + yynn3110++ } } - r.EncodeMapStart(yynn3105) - yynn3105 = 0 + r.EncodeMapStart(yynn3110) + yynn3110 = 0 } - if yyr3105 || yy2arr3105 { + if yyr3110 || yy2arr3110 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3105[0] { + if yyq3110[0] { if x.Finalizers == nil { r.EncodeNil() } else { - yym3107 := z.EncBinary() - _ = yym3107 + yym3112 := z.EncBinary() + _ = yym3112 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -39753,15 +39801,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3105[0] { + if yyq3110[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3108 := z.EncBinary() - _ = yym3108 + yym3113 := z.EncBinary() + _ = yym3113 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -39769,7 +39817,7 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3105 || yy2arr3105 { + if yyr3110 || yy2arr3110 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39782,25 +39830,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3109 := z.DecBinary() - _ = yym3109 + yym3114 := z.DecBinary() + _ = yym3114 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3110 := r.ContainerType() - if yyct3110 == codecSelferValueTypeMap1234 { - yyl3110 := r.ReadMapStart() - if yyl3110 == 0 { + yyct3115 := r.ContainerType() + if yyct3115 == codecSelferValueTypeMap1234 { + yyl3115 := r.ReadMapStart() + if yyl3115 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3110, d) + x.codecDecodeSelfFromMap(yyl3115, d) } - } else if yyct3110 == codecSelferValueTypeArray1234 { - yyl3110 := r.ReadArrayStart() - if yyl3110 == 0 { + } else if yyct3115 == codecSelferValueTypeArray1234 { + yyl3115 := r.ReadArrayStart() + if yyl3115 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3110, d) + x.codecDecodeSelfFromArray(yyl3115, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39812,12 +39860,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3111Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3111Slc - var yyhl3111 bool = l >= 0 - for yyj3111 := 0; ; yyj3111++ { - if yyhl3111 { - if yyj3111 >= l { + var yys3116Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3116Slc + var yyhl3116 bool = l >= 0 + for yyj3116 := 0; ; yyj3116++ { + if yyhl3116 { + if yyj3116 >= l { break } } else { @@ -39826,26 +39874,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3111Slc = r.DecodeBytes(yys3111Slc, true, true) - yys3111 := string(yys3111Slc) + yys3116Slc = r.DecodeBytes(yys3116Slc, true, true) + yys3116 := string(yys3116Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3111 { + switch yys3116 { case "finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3112 := &x.Finalizers - yym3113 := z.DecBinary() - _ = yym3113 + yyv3117 := &x.Finalizers + yym3118 := z.DecBinary() + _ = yym3118 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3112), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3117), d) } } default: - z.DecStructFieldNotFound(-1, yys3111) - } // end switch yys3111 - } // end for yyj3111 + z.DecStructFieldNotFound(-1, yys3116) + } // end switch yys3116 + } // end for yyj3116 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39853,16 +39901,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3114 int - var yyb3114 bool - var yyhl3114 bool = l >= 0 - yyj3114++ - if yyhl3114 { - yyb3114 = yyj3114 > l + var yyj3119 int + var yyb3119 bool + var yyhl3119 bool = l >= 0 + yyj3119++ + if yyhl3119 { + yyb3119 = yyj3119 > l } else { - yyb3114 = r.CheckBreak() + yyb3119 = r.CheckBreak() } - if yyb3114 { + if yyb3119 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39870,26 +39918,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3115 := &x.Finalizers - yym3116 := z.DecBinary() - _ = yym3116 + yyv3120 := &x.Finalizers + yym3121 := z.DecBinary() + _ = yym3121 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3115), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3120), d) } } for { - yyj3114++ - if yyhl3114 { - yyb3114 = yyj3114 > l + yyj3119++ + if yyhl3119 { + yyb3119 = yyj3119 > l } else { - yyb3114 = r.CheckBreak() + yyb3119 = r.CheckBreak() } - if yyb3114 { + if yyb3119 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3114-1, "") + z.DecStructFieldNotFound(yyj3119-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39901,46 +39949,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3117 := z.EncBinary() - _ = yym3117 + yym3122 := z.EncBinary() + _ = yym3122 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3118 := !z.EncBinary() - yy2arr3118 := z.EncBasicHandle().StructToArray - var yyq3118 [1]bool - _, _, _ = yysep3118, yyq3118, yy2arr3118 - const yyr3118 bool = false - yyq3118[0] = x.Phase != "" - var yynn3118 int - if yyr3118 || yy2arr3118 { + yysep3123 := !z.EncBinary() + yy2arr3123 := z.EncBasicHandle().StructToArray + var yyq3123 [1]bool + _, _, _ = yysep3123, yyq3123, yy2arr3123 + const yyr3123 bool = false + yyq3123[0] = x.Phase != "" + var yynn3123 int + if yyr3123 || yy2arr3123 { r.EncodeArrayStart(1) } else { - yynn3118 = 0 - for _, b := range yyq3118 { + yynn3123 = 0 + for _, b := range yyq3123 { if b { - yynn3118++ + yynn3123++ } } - r.EncodeMapStart(yynn3118) - yynn3118 = 0 + r.EncodeMapStart(yynn3123) + yynn3123 = 0 } - if yyr3118 || yy2arr3118 { + if yyr3123 || yy2arr3123 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3118[0] { + if yyq3123[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3118[0] { + if yyq3123[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3118 || yy2arr3118 { + if yyr3123 || yy2arr3123 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39953,25 +40001,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3120 := z.DecBinary() - _ = yym3120 + yym3125 := z.DecBinary() + _ = yym3125 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3121 := r.ContainerType() - if yyct3121 == codecSelferValueTypeMap1234 { - yyl3121 := r.ReadMapStart() - if yyl3121 == 0 { + yyct3126 := r.ContainerType() + if yyct3126 == codecSelferValueTypeMap1234 { + yyl3126 := r.ReadMapStart() + if yyl3126 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3121, d) + x.codecDecodeSelfFromMap(yyl3126, d) } - } else if yyct3121 == codecSelferValueTypeArray1234 { - yyl3121 := r.ReadArrayStart() - if yyl3121 == 0 { + } else if yyct3126 == codecSelferValueTypeArray1234 { + yyl3126 := r.ReadArrayStart() + if yyl3126 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3121, d) + x.codecDecodeSelfFromArray(yyl3126, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39983,12 +40031,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3122Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3122Slc - var yyhl3122 bool = l >= 0 - for yyj3122 := 0; ; yyj3122++ { - if yyhl3122 { - if yyj3122 >= l { + var yys3127Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3127Slc + var yyhl3127 bool = l >= 0 + for yyj3127 := 0; ; yyj3127++ { + if yyhl3127 { + if yyj3127 >= l { break } } else { @@ -39997,10 +40045,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3122Slc = r.DecodeBytes(yys3122Slc, true, true) - yys3122 := string(yys3122Slc) + yys3127Slc = r.DecodeBytes(yys3127Slc, true, true) + yys3127 := string(yys3127Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3122 { + switch yys3127 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -40008,9 +40056,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3122) - } // end switch yys3122 - } // end for yyj3122 + z.DecStructFieldNotFound(-1, yys3127) + } // end switch yys3127 + } // end for yyj3127 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40018,16 +40066,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3124 int - var yyb3124 bool - var yyhl3124 bool = l >= 0 - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + var yyj3129 int + var yyb3129 bool + var yyhl3129 bool = l >= 0 + yyj3129++ + if yyhl3129 { + yyb3129 = yyj3129 > l } else { - yyb3124 = r.CheckBreak() + yyb3129 = r.CheckBreak() } - if yyb3124 { + if yyb3129 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40038,17 +40086,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + yyj3129++ + if yyhl3129 { + yyb3129 = yyj3129 > l } else { - yyb3124 = r.CheckBreak() + yyb3129 = r.CheckBreak() } - if yyb3124 { + if yyb3129 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3124-1, "") + z.DecStructFieldNotFound(yyj3129-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40057,8 +40105,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3126 := z.EncBinary() - _ = yym3126 + yym3131 := z.EncBinary() + _ = yym3131 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40070,8 +40118,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3127 := z.DecBinary() - _ = yym3127 + yym3132 := z.DecBinary() + _ = yym3132 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40086,39 +40134,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3128 := z.EncBinary() - _ = yym3128 + yym3133 := z.EncBinary() + _ = yym3133 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3129 := !z.EncBinary() - yy2arr3129 := z.EncBasicHandle().StructToArray - var yyq3129 [5]bool - _, _, _ = yysep3129, yyq3129, yy2arr3129 - const yyr3129 bool = false - yyq3129[0] = x.Kind != "" - yyq3129[1] = x.APIVersion != "" - yyq3129[2] = true - yyq3129[3] = true - yyq3129[4] = true - var yynn3129 int - if yyr3129 || yy2arr3129 { + yysep3134 := !z.EncBinary() + yy2arr3134 := z.EncBasicHandle().StructToArray + var yyq3134 [5]bool + _, _, _ = yysep3134, yyq3134, yy2arr3134 + const yyr3134 bool = false + yyq3134[0] = x.Kind != "" + yyq3134[1] = x.APIVersion != "" + yyq3134[2] = true + yyq3134[3] = true + yyq3134[4] = true + var yynn3134 int + if yyr3134 || yy2arr3134 { r.EncodeArrayStart(5) } else { - yynn3129 = 0 - for _, b := range yyq3129 { + yynn3134 = 0 + for _, b := range yyq3134 { if b { - yynn3129++ + yynn3134++ } } - r.EncodeMapStart(yynn3129) - yynn3129 = 0 + r.EncodeMapStart(yynn3134) + yynn3134 = 0 } - if yyr3129 || yy2arr3129 { + if yyr3134 || yy2arr3134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3129[0] { - yym3131 := z.EncBinary() - _ = yym3131 + if yyq3134[0] { + yym3136 := z.EncBinary() + _ = yym3136 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40127,23 +40175,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3129[0] { + if yyq3134[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3132 := z.EncBinary() - _ = yym3132 + yym3137 := z.EncBinary() + _ = yym3137 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3129 || yy2arr3129 { + if yyr3134 || yy2arr3134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3129[1] { - yym3134 := z.EncBinary() - _ = yym3134 + if yyq3134[1] { + yym3139 := z.EncBinary() + _ = yym3139 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40152,70 +40200,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3129[1] { + if yyq3134[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3135 := z.EncBinary() - _ = yym3135 + yym3140 := z.EncBinary() + _ = yym3140 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3129 || yy2arr3129 { + if yyr3134 || yy2arr3134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3129[2] { - yy3137 := &x.ObjectMeta - yy3137.CodecEncodeSelf(e) + if yyq3134[2] { + yy3142 := &x.ObjectMeta + yy3142.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3129[2] { + if yyq3134[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3138 := &x.ObjectMeta - yy3138.CodecEncodeSelf(e) + yy3143 := &x.ObjectMeta + yy3143.CodecEncodeSelf(e) } } - if yyr3129 || yy2arr3129 { + if yyr3134 || yy2arr3134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3129[3] { - yy3140 := &x.Spec - yy3140.CodecEncodeSelf(e) + if yyq3134[3] { + yy3145 := &x.Spec + yy3145.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3129[3] { + if yyq3134[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3141 := &x.Spec - yy3141.CodecEncodeSelf(e) + yy3146 := &x.Spec + yy3146.CodecEncodeSelf(e) } } - if yyr3129 || yy2arr3129 { + if yyr3134 || yy2arr3134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3129[4] { - yy3143 := &x.Status - yy3143.CodecEncodeSelf(e) + if yyq3134[4] { + yy3148 := &x.Status + yy3148.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3129[4] { + if yyq3134[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3144 := &x.Status - yy3144.CodecEncodeSelf(e) + yy3149 := &x.Status + yy3149.CodecEncodeSelf(e) } } - if yyr3129 || yy2arr3129 { + if yyr3134 || yy2arr3134 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40228,25 +40276,25 @@ func (x *Namespace) 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) @@ -40258,12 +40306,12 @@ func (x *Namespace) 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 { @@ -40272,10 +40320,10 @@ func (x *Namespace) 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 "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40292,27 +40340,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3150 := &x.ObjectMeta - yyv3150.CodecDecodeSelf(d) + yyv3155 := &x.ObjectMeta + yyv3155.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3151 := &x.Spec - yyv3151.CodecDecodeSelf(d) + yyv3156 := &x.Spec + yyv3156.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3152 := &x.Status - yyv3152.CodecDecodeSelf(d) + yyv3157 := &x.Status + yyv3157.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) } @@ -40320,16 +40368,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3153 int - var yyb3153 bool - var yyhl3153 bool = l >= 0 - yyj3153++ - if yyhl3153 { - yyb3153 = yyj3153 > l + var yyj3158 int + var yyb3158 bool + var yyhl3158 bool = l >= 0 + yyj3158++ + if yyhl3158 { + yyb3158 = yyj3158 > l } else { - yyb3153 = r.CheckBreak() + yyb3158 = r.CheckBreak() } - if yyb3153 { + if yyb3158 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40339,13 +40387,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3153++ - if yyhl3153 { - yyb3153 = yyj3153 > l + yyj3158++ + if yyhl3158 { + yyb3158 = yyj3158 > l } else { - yyb3153 = r.CheckBreak() + yyb3158 = r.CheckBreak() } - if yyb3153 { + if yyb3158 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40355,13 +40403,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3153++ - if yyhl3153 { - yyb3153 = yyj3153 > l + yyj3158++ + if yyhl3158 { + yyb3158 = yyj3158 > l } else { - yyb3153 = r.CheckBreak() + yyb3158 = r.CheckBreak() } - if yyb3153 { + if yyb3158 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40369,16 +40417,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3156 := &x.ObjectMeta - yyv3156.CodecDecodeSelf(d) + yyv3161 := &x.ObjectMeta + yyv3161.CodecDecodeSelf(d) } - yyj3153++ - if yyhl3153 { - yyb3153 = yyj3153 > l + yyj3158++ + if yyhl3158 { + yyb3158 = yyj3158 > l } else { - yyb3153 = r.CheckBreak() + yyb3158 = r.CheckBreak() } - if yyb3153 { + if yyb3158 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40386,16 +40434,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3157 := &x.Spec - yyv3157.CodecDecodeSelf(d) + yyv3162 := &x.Spec + yyv3162.CodecDecodeSelf(d) } - yyj3153++ - if yyhl3153 { - yyb3153 = yyj3153 > l + yyj3158++ + if yyhl3158 { + yyb3158 = yyj3158 > l } else { - yyb3153 = r.CheckBreak() + yyb3158 = r.CheckBreak() } - if yyb3153 { + if yyb3158 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40403,21 +40451,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3158 := &x.Status - yyv3158.CodecDecodeSelf(d) + yyv3163 := &x.Status + yyv3163.CodecDecodeSelf(d) } for { - yyj3153++ - if yyhl3153 { - yyb3153 = yyj3153 > l + yyj3158++ + if yyhl3158 { + yyb3158 = yyj3158 > l } else { - yyb3153 = r.CheckBreak() + yyb3158 = r.CheckBreak() } - if yyb3153 { + if yyb3158 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3153-1, "") + z.DecStructFieldNotFound(yyj3158-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40429,37 +40477,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3159 := z.EncBinary() - _ = yym3159 + yym3164 := z.EncBinary() + _ = yym3164 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3160 := !z.EncBinary() - yy2arr3160 := z.EncBasicHandle().StructToArray - var yyq3160 [4]bool - _, _, _ = yysep3160, yyq3160, yy2arr3160 - const yyr3160 bool = false - yyq3160[0] = x.Kind != "" - yyq3160[1] = x.APIVersion != "" - yyq3160[2] = true - var yynn3160 int - if yyr3160 || yy2arr3160 { + yysep3165 := !z.EncBinary() + yy2arr3165 := z.EncBasicHandle().StructToArray + var yyq3165 [4]bool + _, _, _ = yysep3165, yyq3165, yy2arr3165 + const yyr3165 bool = false + yyq3165[0] = x.Kind != "" + yyq3165[1] = x.APIVersion != "" + yyq3165[2] = true + var yynn3165 int + if yyr3165 || yy2arr3165 { r.EncodeArrayStart(4) } else { - yynn3160 = 1 - for _, b := range yyq3160 { + yynn3165 = 1 + for _, b := range yyq3165 { if b { - yynn3160++ + yynn3165++ } } - r.EncodeMapStart(yynn3160) - yynn3160 = 0 + r.EncodeMapStart(yynn3165) + yynn3165 = 0 } - if yyr3160 || yy2arr3160 { + if yyr3165 || yy2arr3165 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3160[0] { - yym3162 := z.EncBinary() - _ = yym3162 + if yyq3165[0] { + yym3167 := z.EncBinary() + _ = yym3167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40468,23 +40516,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3160[0] { + if yyq3165[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3163 := z.EncBinary() - _ = yym3163 + yym3168 := z.EncBinary() + _ = yym3168 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3160 || yy2arr3160 { + if yyr3165 || yy2arr3165 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3160[1] { - yym3165 := z.EncBinary() - _ = yym3165 + if yyq3165[1] { + yym3170 := z.EncBinary() + _ = yym3170 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40493,54 +40541,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3160[1] { + if yyq3165[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3166 := z.EncBinary() - _ = yym3166 + yym3171 := z.EncBinary() + _ = yym3171 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3160 || yy2arr3160 { + if yyr3165 || yy2arr3165 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3160[2] { - yy3168 := &x.ListMeta - yym3169 := z.EncBinary() - _ = yym3169 + if yyq3165[2] { + yy3173 := &x.ListMeta + yym3174 := z.EncBinary() + _ = yym3174 if false { - } else if z.HasExtensions() && z.EncExt(yy3168) { + } else if z.HasExtensions() && z.EncExt(yy3173) { } else { - z.EncFallback(yy3168) + z.EncFallback(yy3173) } } else { r.EncodeNil() } } else { - if yyq3160[2] { + if yyq3165[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3170 := &x.ListMeta - yym3171 := z.EncBinary() - _ = yym3171 + 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) } } } - if yyr3160 || yy2arr3160 { + if yyr3165 || yy2arr3165 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3173 := z.EncBinary() - _ = yym3173 + yym3178 := z.EncBinary() + _ = yym3178 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -40553,15 +40601,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3174 := z.EncBinary() - _ = yym3174 + yym3179 := z.EncBinary() + _ = yym3179 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3160 || yy2arr3160 { + if yyr3165 || yy2arr3165 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40574,25 +40622,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3175 := z.DecBinary() - _ = yym3175 + yym3180 := z.DecBinary() + _ = yym3180 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3176 := r.ContainerType() - if yyct3176 == codecSelferValueTypeMap1234 { - yyl3176 := r.ReadMapStart() - if yyl3176 == 0 { + yyct3181 := r.ContainerType() + if yyct3181 == codecSelferValueTypeMap1234 { + yyl3181 := r.ReadMapStart() + if yyl3181 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3176, d) + x.codecDecodeSelfFromMap(yyl3181, d) } - } else if yyct3176 == codecSelferValueTypeArray1234 { - yyl3176 := r.ReadArrayStart() - if yyl3176 == 0 { + } else if yyct3181 == codecSelferValueTypeArray1234 { + yyl3181 := r.ReadArrayStart() + if yyl3181 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3176, d) + x.codecDecodeSelfFromArray(yyl3181, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40604,12 +40652,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3177Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3177Slc - var yyhl3177 bool = l >= 0 - for yyj3177 := 0; ; yyj3177++ { - if yyhl3177 { - if yyj3177 >= l { + var yys3182Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3182Slc + var yyhl3182 bool = l >= 0 + for yyj3182 := 0; ; yyj3182++ { + if yyhl3182 { + if yyj3182 >= l { break } } else { @@ -40618,10 +40666,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3177Slc = r.DecodeBytes(yys3177Slc, true, true) - yys3177 := string(yys3177Slc) + yys3182Slc = r.DecodeBytes(yys3182Slc, true, true) + yys3182 := string(yys3182Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3177 { + switch yys3182 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40638,31 +40686,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3180 := &x.ListMeta - yym3181 := z.DecBinary() - _ = yym3181 + yyv3185 := &x.ListMeta + yym3186 := z.DecBinary() + _ = yym3186 if false { - } else if z.HasExtensions() && z.DecExt(yyv3180) { + } else if z.HasExtensions() && z.DecExt(yyv3185) { } else { - z.DecFallback(yyv3180, false) + z.DecFallback(yyv3185, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3182 := &x.Items - yym3183 := z.DecBinary() - _ = yym3183 + yyv3187 := &x.Items + yym3188 := z.DecBinary() + _ = yym3188 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3182), d) + h.decSliceNamespace((*[]Namespace)(yyv3187), d) } } default: - z.DecStructFieldNotFound(-1, yys3177) - } // end switch yys3177 - } // end for yyj3177 + z.DecStructFieldNotFound(-1, yys3182) + } // end switch yys3182 + } // end for yyj3182 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40670,16 +40718,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3184 int - var yyb3184 bool - var yyhl3184 bool = l >= 0 - yyj3184++ - if yyhl3184 { - yyb3184 = yyj3184 > l + var yyj3189 int + var yyb3189 bool + var yyhl3189 bool = l >= 0 + yyj3189++ + if yyhl3189 { + yyb3189 = yyj3189 > l } else { - yyb3184 = r.CheckBreak() + yyb3189 = r.CheckBreak() } - if yyb3184 { + if yyb3189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40689,13 +40737,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3184++ - if yyhl3184 { - yyb3184 = yyj3184 > l + yyj3189++ + if yyhl3189 { + yyb3189 = yyj3189 > l } else { - yyb3184 = r.CheckBreak() + yyb3189 = r.CheckBreak() } - if yyb3184 { + if yyb3189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40705,13 +40753,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3184++ - if yyhl3184 { - yyb3184 = yyj3184 > l + yyj3189++ + if yyhl3189 { + yyb3189 = yyj3189 > l } else { - yyb3184 = r.CheckBreak() + yyb3189 = r.CheckBreak() } - if yyb3184 { + if yyb3189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40719,22 +40767,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3187 := &x.ListMeta - yym3188 := z.DecBinary() - _ = yym3188 + yyv3192 := &x.ListMeta + yym3193 := z.DecBinary() + _ = yym3193 if false { - } else if z.HasExtensions() && z.DecExt(yyv3187) { + } else if z.HasExtensions() && z.DecExt(yyv3192) { } else { - z.DecFallback(yyv3187, false) + z.DecFallback(yyv3192, false) } } - yyj3184++ - if yyhl3184 { - yyb3184 = yyj3184 > l + yyj3189++ + if yyhl3189 { + yyb3189 = yyj3189 > l } else { - yyb3184 = r.CheckBreak() + yyb3189 = r.CheckBreak() } - if yyb3184 { + if yyb3189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40742,26 +40790,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3189 := &x.Items - yym3190 := z.DecBinary() - _ = yym3190 + yyv3194 := &x.Items + yym3195 := z.DecBinary() + _ = yym3195 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3189), d) + h.decSliceNamespace((*[]Namespace)(yyv3194), d) } } for { - yyj3184++ - if yyhl3184 { - yyb3184 = yyj3184 > l + yyj3189++ + if yyhl3189 { + yyb3189 = yyj3189 > l } else { - yyb3184 = r.CheckBreak() + yyb3189 = r.CheckBreak() } - if yyb3184 { + if yyb3189 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3184-1, "") + z.DecStructFieldNotFound(yyj3189-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40773,37 +40821,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3191 := z.EncBinary() - _ = yym3191 + yym3196 := z.EncBinary() + _ = yym3196 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3192 := !z.EncBinary() - yy2arr3192 := z.EncBasicHandle().StructToArray - var yyq3192 [4]bool - _, _, _ = yysep3192, yyq3192, yy2arr3192 - const yyr3192 bool = false - yyq3192[0] = x.Kind != "" - yyq3192[1] = x.APIVersion != "" - yyq3192[2] = true - var yynn3192 int - if yyr3192 || yy2arr3192 { + yysep3197 := !z.EncBinary() + yy2arr3197 := z.EncBasicHandle().StructToArray + var yyq3197 [4]bool + _, _, _ = yysep3197, yyq3197, yy2arr3197 + const yyr3197 bool = false + yyq3197[0] = x.Kind != "" + yyq3197[1] = x.APIVersion != "" + yyq3197[2] = true + var yynn3197 int + if yyr3197 || yy2arr3197 { r.EncodeArrayStart(4) } else { - yynn3192 = 1 - for _, b := range yyq3192 { + yynn3197 = 1 + for _, b := range yyq3197 { if b { - yynn3192++ + yynn3197++ } } - r.EncodeMapStart(yynn3192) - yynn3192 = 0 + r.EncodeMapStart(yynn3197) + yynn3197 = 0 } - if yyr3192 || yy2arr3192 { + if yyr3197 || yy2arr3197 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3192[0] { - yym3194 := z.EncBinary() - _ = yym3194 + if yyq3197[0] { + yym3199 := z.EncBinary() + _ = yym3199 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40812,23 +40860,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3192[0] { + if yyq3197[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3195 := z.EncBinary() - _ = yym3195 + yym3200 := z.EncBinary() + _ = yym3200 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3192 || yy2arr3192 { + if yyr3197 || yy2arr3197 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3192[1] { - yym3197 := z.EncBinary() - _ = yym3197 + if yyq3197[1] { + yym3202 := z.EncBinary() + _ = yym3202 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40837,47 +40885,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3192[1] { + if yyq3197[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3198 := z.EncBinary() - _ = yym3198 + yym3203 := z.EncBinary() + _ = yym3203 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3192 || yy2arr3192 { + if yyr3197 || yy2arr3197 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3192[2] { - yy3200 := &x.ObjectMeta - yy3200.CodecEncodeSelf(e) + if yyq3197[2] { + yy3205 := &x.ObjectMeta + yy3205.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3192[2] { + if yyq3197[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3201 := &x.ObjectMeta - yy3201.CodecEncodeSelf(e) + yy3206 := &x.ObjectMeta + yy3206.CodecEncodeSelf(e) } } - if yyr3192 || yy2arr3192 { + if yyr3197 || yy2arr3197 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3203 := &x.Target - yy3203.CodecEncodeSelf(e) + yy3208 := &x.Target + yy3208.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3204 := &x.Target - yy3204.CodecEncodeSelf(e) + yy3209 := &x.Target + yy3209.CodecEncodeSelf(e) } - if yyr3192 || yy2arr3192 { + if yyr3197 || yy2arr3197 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40890,25 +40938,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3205 := z.DecBinary() - _ = yym3205 + yym3210 := z.DecBinary() + _ = yym3210 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3206 := r.ContainerType() - if yyct3206 == codecSelferValueTypeMap1234 { - yyl3206 := r.ReadMapStart() - if yyl3206 == 0 { + yyct3211 := r.ContainerType() + if yyct3211 == codecSelferValueTypeMap1234 { + yyl3211 := r.ReadMapStart() + if yyl3211 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3206, d) + x.codecDecodeSelfFromMap(yyl3211, d) } - } else if yyct3206 == codecSelferValueTypeArray1234 { - yyl3206 := r.ReadArrayStart() - if yyl3206 == 0 { + } else if yyct3211 == codecSelferValueTypeArray1234 { + yyl3211 := r.ReadArrayStart() + if yyl3211 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3206, d) + x.codecDecodeSelfFromArray(yyl3211, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40920,12 +40968,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3207Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3207Slc - var yyhl3207 bool = l >= 0 - for yyj3207 := 0; ; yyj3207++ { - if yyhl3207 { - if yyj3207 >= l { + var yys3212Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3212Slc + var yyhl3212 bool = l >= 0 + for yyj3212 := 0; ; yyj3212++ { + if yyhl3212 { + if yyj3212 >= l { break } } else { @@ -40934,10 +40982,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3207Slc = r.DecodeBytes(yys3207Slc, true, true) - yys3207 := string(yys3207Slc) + yys3212Slc = r.DecodeBytes(yys3212Slc, true, true) + yys3212 := string(yys3212Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3207 { + switch yys3212 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40954,20 +41002,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3210 := &x.ObjectMeta - yyv3210.CodecDecodeSelf(d) + yyv3215 := &x.ObjectMeta + yyv3215.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3211 := &x.Target - yyv3211.CodecDecodeSelf(d) + yyv3216 := &x.Target + yyv3216.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3207) - } // end switch yys3207 - } // end for yyj3207 + z.DecStructFieldNotFound(-1, yys3212) + } // end switch yys3212 + } // end for yyj3212 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40975,16 +41023,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3212 int - var yyb3212 bool - var yyhl3212 bool = l >= 0 - yyj3212++ - if yyhl3212 { - yyb3212 = yyj3212 > l + var yyj3217 int + var yyb3217 bool + var yyhl3217 bool = l >= 0 + yyj3217++ + if yyhl3217 { + yyb3217 = yyj3217 > l } else { - yyb3212 = r.CheckBreak() + yyb3217 = r.CheckBreak() } - if yyb3212 { + if yyb3217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40994,13 +41042,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3212++ - if yyhl3212 { - yyb3212 = yyj3212 > l + yyj3217++ + if yyhl3217 { + yyb3217 = yyj3217 > l } else { - yyb3212 = r.CheckBreak() + yyb3217 = r.CheckBreak() } - if yyb3212 { + if yyb3217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41010,13 +41058,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3212++ - if yyhl3212 { - yyb3212 = yyj3212 > l + yyj3217++ + if yyhl3217 { + yyb3217 = yyj3217 > l } else { - yyb3212 = r.CheckBreak() + yyb3217 = r.CheckBreak() } - if yyb3212 { + if yyb3217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41024,16 +41072,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3215 := &x.ObjectMeta - yyv3215.CodecDecodeSelf(d) + yyv3220 := &x.ObjectMeta + yyv3220.CodecDecodeSelf(d) } - yyj3212++ - if yyhl3212 { - yyb3212 = yyj3212 > l + yyj3217++ + if yyhl3217 { + yyb3217 = yyj3217 > l } else { - yyb3212 = r.CheckBreak() + yyb3217 = r.CheckBreak() } - if yyb3212 { + if yyb3217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41041,21 +41089,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3216 := &x.Target - yyv3216.CodecDecodeSelf(d) + yyv3221 := &x.Target + yyv3221.CodecDecodeSelf(d) } for { - yyj3212++ - if yyhl3212 { - yyb3212 = yyj3212 > l + yyj3217++ + if yyhl3217 { + yyb3217 = yyj3217 > l } else { - yyb3212 = r.CheckBreak() + yyb3217 = r.CheckBreak() } - if yyb3212 { + if yyb3217 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3212-1, "") + z.DecStructFieldNotFound(yyj3217-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41067,68 +41115,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3217 := z.EncBinary() - _ = yym3217 + yym3222 := z.EncBinary() + _ = yym3222 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3218 := !z.EncBinary() - yy2arr3218 := z.EncBasicHandle().StructToArray - var yyq3218 [1]bool - _, _, _ = yysep3218, yyq3218, yy2arr3218 - const yyr3218 bool = false - yyq3218[0] = x.UID != nil - var yynn3218 int - if yyr3218 || yy2arr3218 { + yysep3223 := !z.EncBinary() + yy2arr3223 := z.EncBasicHandle().StructToArray + var yyq3223 [1]bool + _, _, _ = yysep3223, yyq3223, yy2arr3223 + const yyr3223 bool = false + yyq3223[0] = x.UID != nil + var yynn3223 int + if yyr3223 || yy2arr3223 { r.EncodeArrayStart(1) } else { - yynn3218 = 0 - for _, b := range yyq3218 { + yynn3223 = 0 + for _, b := range yyq3223 { if b { - yynn3218++ + yynn3223++ } } - r.EncodeMapStart(yynn3218) - yynn3218 = 0 + r.EncodeMapStart(yynn3223) + yynn3223 = 0 } - if yyr3218 || yy2arr3218 { + if yyr3223 || yy2arr3223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3218[0] { + if yyq3223[0] { if x.UID == nil { r.EncodeNil() } else { - yy3220 := *x.UID - yym3221 := z.EncBinary() - _ = yym3221 + yy3225 := *x.UID + yym3226 := z.EncBinary() + _ = yym3226 if false { - } else if z.HasExtensions() && z.EncExt(yy3220) { + } else if z.HasExtensions() && z.EncExt(yy3225) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3220)) + r.EncodeString(codecSelferC_UTF81234, string(yy3225)) } } } else { r.EncodeNil() } } else { - if yyq3218[0] { + if yyq3223[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3222 := *x.UID - yym3223 := z.EncBinary() - _ = yym3223 + yy3227 := *x.UID + yym3228 := z.EncBinary() + _ = yym3228 if false { - } else if z.HasExtensions() && z.EncExt(yy3222) { + } else if z.HasExtensions() && z.EncExt(yy3227) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3222)) + r.EncodeString(codecSelferC_UTF81234, string(yy3227)) } } } } - if yyr3218 || yy2arr3218 { + if yyr3223 || yy2arr3223 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41141,25 +41189,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3224 := z.DecBinary() - _ = yym3224 + yym3229 := z.DecBinary() + _ = yym3229 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3225 := r.ContainerType() - if yyct3225 == codecSelferValueTypeMap1234 { - yyl3225 := r.ReadMapStart() - if yyl3225 == 0 { + yyct3230 := r.ContainerType() + if yyct3230 == codecSelferValueTypeMap1234 { + yyl3230 := r.ReadMapStart() + if yyl3230 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3225, d) + x.codecDecodeSelfFromMap(yyl3230, d) } - } else if yyct3225 == codecSelferValueTypeArray1234 { - yyl3225 := r.ReadArrayStart() - if yyl3225 == 0 { + } else if yyct3230 == codecSelferValueTypeArray1234 { + yyl3230 := r.ReadArrayStart() + if yyl3230 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3225, d) + x.codecDecodeSelfFromArray(yyl3230, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41171,12 +41219,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3226Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3226Slc - var yyhl3226 bool = l >= 0 - for yyj3226 := 0; ; yyj3226++ { - if yyhl3226 { - if yyj3226 >= l { + var yys3231Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3231Slc + var yyhl3231 bool = l >= 0 + for yyj3231 := 0; ; yyj3231++ { + if yyhl3231 { + if yyj3231 >= l { break } } else { @@ -41185,10 +41233,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3226Slc = r.DecodeBytes(yys3226Slc, true, true) - yys3226 := string(yys3226Slc) + yys3231Slc = r.DecodeBytes(yys3231Slc, true, true) + yys3231 := string(yys3231Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3226 { + switch yys3231 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -41198,8 +41246,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3228 := z.DecBinary() - _ = yym3228 + yym3233 := z.DecBinary() + _ = yym3233 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41207,9 +41255,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3226) - } // end switch yys3226 - } // end for yyj3226 + z.DecStructFieldNotFound(-1, yys3231) + } // end switch yys3231 + } // end for yyj3231 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41217,16 +41265,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3229 int - var yyb3229 bool - var yyhl3229 bool = l >= 0 - yyj3229++ - if yyhl3229 { - yyb3229 = yyj3229 > l + var yyj3234 int + var yyb3234 bool + var yyhl3234 bool = l >= 0 + yyj3234++ + if yyhl3234 { + yyb3234 = yyj3234 > l } else { - yyb3229 = r.CheckBreak() + yyb3234 = r.CheckBreak() } - if yyb3229 { + if yyb3234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41239,8 +41287,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3231 := z.DecBinary() - _ = yym3231 + yym3236 := z.DecBinary() + _ = yym3236 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41248,17 +41296,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3229++ - if yyhl3229 { - yyb3229 = yyj3229 > l + yyj3234++ + if yyhl3234 { + yyb3234 = yyj3234 > l } else { - yyb3229 = r.CheckBreak() + yyb3234 = r.CheckBreak() } - if yyb3229 { + if yyb3234 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3229-1, "") + z.DecStructFieldNotFound(yyj3234-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41270,39 +41318,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3232 := z.EncBinary() - _ = yym3232 + yym3237 := z.EncBinary() + _ = yym3237 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3233 := !z.EncBinary() - yy2arr3233 := z.EncBasicHandle().StructToArray - var yyq3233 [5]bool - _, _, _ = yysep3233, yyq3233, yy2arr3233 - const yyr3233 bool = false - yyq3233[0] = x.Kind != "" - yyq3233[1] = x.APIVersion != "" - yyq3233[2] = x.GracePeriodSeconds != nil - yyq3233[3] = x.Preconditions != nil - yyq3233[4] = x.OrphanDependents != nil - var yynn3233 int - if yyr3233 || yy2arr3233 { + yysep3238 := !z.EncBinary() + yy2arr3238 := z.EncBasicHandle().StructToArray + var yyq3238 [5]bool + _, _, _ = yysep3238, yyq3238, yy2arr3238 + const yyr3238 bool = false + yyq3238[0] = x.Kind != "" + yyq3238[1] = x.APIVersion != "" + yyq3238[2] = x.GracePeriodSeconds != nil + yyq3238[3] = x.Preconditions != nil + yyq3238[4] = x.OrphanDependents != nil + var yynn3238 int + if yyr3238 || yy2arr3238 { r.EncodeArrayStart(5) } else { - yynn3233 = 0 - for _, b := range yyq3233 { + yynn3238 = 0 + for _, b := range yyq3238 { if b { - yynn3233++ + yynn3238++ } } - r.EncodeMapStart(yynn3233) - yynn3233 = 0 + r.EncodeMapStart(yynn3238) + yynn3238 = 0 } - if yyr3233 || yy2arr3233 { + if yyr3238 || yy2arr3238 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3233[0] { - yym3235 := z.EncBinary() - _ = yym3235 + if yyq3238[0] { + yym3240 := z.EncBinary() + _ = yym3240 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41311,23 +41359,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3233[0] { + if yyq3238[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3236 := z.EncBinary() - _ = yym3236 + yym3241 := z.EncBinary() + _ = yym3241 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3233 || yy2arr3233 { + if yyr3238 || yy2arr3238 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3233[1] { - yym3238 := z.EncBinary() - _ = yym3238 + if yyq3238[1] { + yym3243 := z.EncBinary() + _ = yym3243 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41336,56 +41384,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3233[1] { + if yyq3238[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3239 := z.EncBinary() - _ = yym3239 + yym3244 := z.EncBinary() + _ = yym3244 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3233 || yy2arr3233 { + if yyr3238 || yy2arr3238 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3233[2] { + if yyq3238[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3241 := *x.GracePeriodSeconds - yym3242 := z.EncBinary() - _ = yym3242 + yy3246 := *x.GracePeriodSeconds + yym3247 := z.EncBinary() + _ = yym3247 if false { } else { - r.EncodeInt(int64(yy3241)) + r.EncodeInt(int64(yy3246)) } } } else { r.EncodeNil() } } else { - if yyq3233[2] { + if yyq3238[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3243 := *x.GracePeriodSeconds - yym3244 := z.EncBinary() - _ = yym3244 + yy3248 := *x.GracePeriodSeconds + yym3249 := z.EncBinary() + _ = yym3249 if false { } else { - r.EncodeInt(int64(yy3243)) + r.EncodeInt(int64(yy3248)) } } } } - if yyr3233 || yy2arr3233 { + if yyr3238 || yy2arr3238 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3233[3] { + if yyq3238[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -41395,7 +41443,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3233[3] { + if yyq3238[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41406,42 +41454,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3233 || yy2arr3233 { + if yyr3238 || yy2arr3238 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3233[4] { + if yyq3238[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3247 := *x.OrphanDependents - yym3248 := z.EncBinary() - _ = yym3248 + yy3252 := *x.OrphanDependents + yym3253 := z.EncBinary() + _ = yym3253 if false { } else { - r.EncodeBool(bool(yy3247)) + r.EncodeBool(bool(yy3252)) } } } else { r.EncodeNil() } } else { - if yyq3233[4] { + if yyq3238[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3249 := *x.OrphanDependents - yym3250 := z.EncBinary() - _ = yym3250 + yy3254 := *x.OrphanDependents + yym3255 := z.EncBinary() + _ = yym3255 if false { } else { - r.EncodeBool(bool(yy3249)) + r.EncodeBool(bool(yy3254)) } } } } - if yyr3233 || yy2arr3233 { + if yyr3238 || yy2arr3238 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41454,25 +41502,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3251 := z.DecBinary() - _ = yym3251 + yym3256 := z.DecBinary() + _ = yym3256 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3252 := r.ContainerType() - if yyct3252 == codecSelferValueTypeMap1234 { - yyl3252 := r.ReadMapStart() - if yyl3252 == 0 { + yyct3257 := r.ContainerType() + if yyct3257 == codecSelferValueTypeMap1234 { + yyl3257 := r.ReadMapStart() + if yyl3257 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3252, d) + x.codecDecodeSelfFromMap(yyl3257, d) } - } else if yyct3252 == codecSelferValueTypeArray1234 { - yyl3252 := r.ReadArrayStart() - if yyl3252 == 0 { + } else if yyct3257 == codecSelferValueTypeArray1234 { + yyl3257 := r.ReadArrayStart() + if yyl3257 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3252, d) + x.codecDecodeSelfFromArray(yyl3257, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41484,12 +41532,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3253Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3253Slc - var yyhl3253 bool = l >= 0 - for yyj3253 := 0; ; yyj3253++ { - if yyhl3253 { - if yyj3253 >= l { + var yys3258Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3258Slc + var yyhl3258 bool = l >= 0 + for yyj3258 := 0; ; yyj3258++ { + if yyhl3258 { + if yyj3258 >= l { break } } else { @@ -41498,10 +41546,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3253Slc = r.DecodeBytes(yys3253Slc, true, true) - yys3253 := string(yys3253Slc) + yys3258Slc = r.DecodeBytes(yys3258Slc, true, true) + yys3258 := string(yys3258Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3253 { + switch yys3258 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41523,8 +41571,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3257 := z.DecBinary() - _ = yym3257 + yym3262 := z.DecBinary() + _ = yym3262 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -41550,17 +41598,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3260 := z.DecBinary() - _ = yym3260 + yym3265 := z.DecBinary() + _ = yym3265 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3253) - } // end switch yys3253 - } // end for yyj3253 + z.DecStructFieldNotFound(-1, yys3258) + } // end switch yys3258 + } // end for yyj3258 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41568,16 +41616,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3261 int - var yyb3261 bool - var yyhl3261 bool = l >= 0 - yyj3261++ - if yyhl3261 { - yyb3261 = yyj3261 > l + var yyj3266 int + var yyb3266 bool + var yyhl3266 bool = l >= 0 + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3261 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3261 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41587,13 +41635,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3261++ - if yyhl3261 { - yyb3261 = yyj3261 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3261 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3261 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41603,13 +41651,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3261++ - if yyhl3261 { - yyb3261 = yyj3261 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3261 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3261 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41622,20 +41670,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3265 := z.DecBinary() - _ = yym3265 + yym3270 := z.DecBinary() + _ = yym3270 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3261++ - if yyhl3261 { - yyb3261 = yyj3261 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3261 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3261 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41650,13 +41698,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3261++ - if yyhl3261 { - yyb3261 = yyj3261 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3261 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3261 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41669,25 +41717,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3268 := z.DecBinary() - _ = yym3268 + yym3273 := z.DecBinary() + _ = yym3273 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3261++ - if yyhl3261 { - yyb3261 = yyj3261 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3261 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3261 { + if yyb3266 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3261-1, "") + z.DecStructFieldNotFound(yyj3266-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41699,36 +41747,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3269 := z.EncBinary() - _ = yym3269 + yym3274 := z.EncBinary() + _ = yym3274 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3270 := !z.EncBinary() - yy2arr3270 := z.EncBasicHandle().StructToArray - var yyq3270 [4]bool - _, _, _ = yysep3270, yyq3270, yy2arr3270 - const yyr3270 bool = false - yyq3270[0] = x.Kind != "" - yyq3270[1] = x.APIVersion != "" - var yynn3270 int - if yyr3270 || yy2arr3270 { + yysep3275 := !z.EncBinary() + yy2arr3275 := z.EncBasicHandle().StructToArray + var yyq3275 [4]bool + _, _, _ = yysep3275, yyq3275, yy2arr3275 + const yyr3275 bool = false + yyq3275[0] = x.Kind != "" + yyq3275[1] = x.APIVersion != "" + var yynn3275 int + if yyr3275 || yy2arr3275 { r.EncodeArrayStart(4) } else { - yynn3270 = 2 - for _, b := range yyq3270 { + yynn3275 = 2 + for _, b := range yyq3275 { if b { - yynn3270++ + yynn3275++ } } - r.EncodeMapStart(yynn3270) - yynn3270 = 0 + r.EncodeMapStart(yynn3275) + yynn3275 = 0 } - if yyr3270 || yy2arr3270 { + if yyr3275 || yy2arr3275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[0] { - yym3272 := z.EncBinary() - _ = yym3272 + if yyq3275[0] { + yym3277 := z.EncBinary() + _ = yym3277 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41737,23 +41785,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3270[0] { + if yyq3275[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3273 := z.EncBinary() - _ = yym3273 + yym3278 := z.EncBinary() + _ = yym3278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3270 || yy2arr3270 { + if yyr3275 || yy2arr3275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[1] { - yym3275 := z.EncBinary() - _ = yym3275 + if yyq3275[1] { + yym3280 := z.EncBinary() + _ = yym3280 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41762,22 +41810,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3270[1] { + if yyq3275[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3276 := z.EncBinary() - _ = yym3276 + yym3281 := z.EncBinary() + _ = yym3281 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3270 || yy2arr3270 { + if yyr3275 || yy2arr3275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3278 := z.EncBinary() - _ = yym3278 + yym3283 := z.EncBinary() + _ = yym3283 if false { } else { r.EncodeBool(bool(x.Export)) @@ -41786,17 +41834,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3279 := z.EncBinary() - _ = yym3279 + yym3284 := z.EncBinary() + _ = yym3284 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3270 || yy2arr3270 { + if yyr3275 || yy2arr3275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3281 := z.EncBinary() - _ = yym3281 + yym3286 := z.EncBinary() + _ = yym3286 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -41805,14 +41853,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3282 := z.EncBinary() - _ = yym3282 + yym3287 := z.EncBinary() + _ = yym3287 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3270 || yy2arr3270 { + if yyr3275 || yy2arr3275 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41825,25 +41873,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3283 := z.DecBinary() - _ = yym3283 + yym3288 := z.DecBinary() + _ = yym3288 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3284 := r.ContainerType() - if yyct3284 == codecSelferValueTypeMap1234 { - yyl3284 := r.ReadMapStart() - if yyl3284 == 0 { + yyct3289 := r.ContainerType() + if yyct3289 == codecSelferValueTypeMap1234 { + yyl3289 := r.ReadMapStart() + if yyl3289 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3284, d) + x.codecDecodeSelfFromMap(yyl3289, d) } - } else if yyct3284 == codecSelferValueTypeArray1234 { - yyl3284 := r.ReadArrayStart() - if yyl3284 == 0 { + } else if yyct3289 == codecSelferValueTypeArray1234 { + yyl3289 := r.ReadArrayStart() + if yyl3289 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3284, d) + x.codecDecodeSelfFromArray(yyl3289, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41855,12 +41903,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3285Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3285Slc - var yyhl3285 bool = l >= 0 - for yyj3285 := 0; ; yyj3285++ { - if yyhl3285 { - if yyj3285 >= l { + var yys3290Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3290Slc + var yyhl3290 bool = l >= 0 + for yyj3290 := 0; ; yyj3290++ { + if yyhl3290 { + if yyj3290 >= l { break } } else { @@ -41869,10 +41917,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3285Slc = r.DecodeBytes(yys3285Slc, true, true) - yys3285 := string(yys3285Slc) + yys3290Slc = r.DecodeBytes(yys3290Slc, true, true) + yys3290 := string(yys3290Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3285 { + switch yys3290 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41898,9 +41946,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3285) - } // end switch yys3285 - } // end for yyj3285 + z.DecStructFieldNotFound(-1, yys3290) + } // end switch yys3290 + } // end for yyj3290 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41908,16 +41956,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3290 int - var yyb3290 bool - var yyhl3290 bool = l >= 0 - yyj3290++ - if yyhl3290 { - yyb3290 = yyj3290 > l + var yyj3295 int + var yyb3295 bool + var yyhl3295 bool = l >= 0 + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3290 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3290 { + if yyb3295 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41927,13 +41975,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3290++ - if yyhl3290 { - yyb3290 = yyj3290 > l + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3290 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3290 { + if yyb3295 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41943,13 +41991,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3290++ - if yyhl3290 { - yyb3290 = yyj3290 > l + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3290 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3290 { + if yyb3295 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41959,13 +42007,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3290++ - if yyhl3290 { - yyb3290 = yyj3290 > l + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3290 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3290 { + if yyb3295 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41976,17 +42024,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3290++ - if yyhl3290 { - yyb3290 = yyj3290 > l + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3290 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3290 { + if yyb3295 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3290-1, "") + z.DecStructFieldNotFound(yyj3295-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41998,41 +42046,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3295 := z.EncBinary() - _ = yym3295 + yym3300 := z.EncBinary() + _ = yym3300 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3296 := !z.EncBinary() - yy2arr3296 := z.EncBasicHandle().StructToArray - var yyq3296 [7]bool - _, _, _ = yysep3296, yyq3296, yy2arr3296 - const yyr3296 bool = false - yyq3296[0] = x.Kind != "" - yyq3296[1] = x.APIVersion != "" - yyq3296[2] = x.LabelSelector != "" - yyq3296[3] = x.FieldSelector != "" - yyq3296[4] = x.Watch != false - yyq3296[5] = x.ResourceVersion != "" - yyq3296[6] = x.TimeoutSeconds != nil - var yynn3296 int - if yyr3296 || yy2arr3296 { + yysep3301 := !z.EncBinary() + yy2arr3301 := z.EncBasicHandle().StructToArray + var yyq3301 [7]bool + _, _, _ = yysep3301, yyq3301, yy2arr3301 + const yyr3301 bool = false + yyq3301[0] = x.Kind != "" + yyq3301[1] = x.APIVersion != "" + yyq3301[2] = x.LabelSelector != "" + yyq3301[3] = x.FieldSelector != "" + yyq3301[4] = x.Watch != false + yyq3301[5] = x.ResourceVersion != "" + yyq3301[6] = x.TimeoutSeconds != nil + var yynn3301 int + if yyr3301 || yy2arr3301 { r.EncodeArrayStart(7) } else { - yynn3296 = 0 - for _, b := range yyq3296 { + yynn3301 = 0 + for _, b := range yyq3301 { if b { - yynn3296++ + yynn3301++ } } - r.EncodeMapStart(yynn3296) - yynn3296 = 0 + r.EncodeMapStart(yynn3301) + yynn3301 = 0 } - if yyr3296 || yy2arr3296 { + if yyr3301 || yy2arr3301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3296[0] { - yym3298 := z.EncBinary() - _ = yym3298 + if yyq3301[0] { + yym3303 := z.EncBinary() + _ = yym3303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42041,23 +42089,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3296[0] { + if yyq3301[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3299 := z.EncBinary() - _ = yym3299 + yym3304 := z.EncBinary() + _ = yym3304 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3296 || yy2arr3296 { + if yyr3301 || yy2arr3301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3296[1] { - yym3301 := z.EncBinary() - _ = yym3301 + if yyq3301[1] { + yym3306 := z.EncBinary() + _ = yym3306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42066,23 +42114,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3296[1] { + if yyq3301[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3302 := z.EncBinary() - _ = yym3302 + yym3307 := z.EncBinary() + _ = yym3307 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3296 || yy2arr3296 { + if yyr3301 || yy2arr3301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3296[2] { - yym3304 := z.EncBinary() - _ = yym3304 + if yyq3301[2] { + yym3309 := z.EncBinary() + _ = yym3309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -42091,23 +42139,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3296[2] { + if yyq3301[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3305 := z.EncBinary() - _ = yym3305 + yym3310 := z.EncBinary() + _ = yym3310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3296 || yy2arr3296 { + if yyr3301 || yy2arr3301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3296[3] { - yym3307 := z.EncBinary() - _ = yym3307 + if yyq3301[3] { + yym3312 := z.EncBinary() + _ = yym3312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -42116,23 +42164,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3296[3] { + if yyq3301[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3308 := z.EncBinary() - _ = yym3308 + yym3313 := z.EncBinary() + _ = yym3313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3296 || yy2arr3296 { + if yyr3301 || yy2arr3301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3296[4] { - yym3310 := z.EncBinary() - _ = yym3310 + if yyq3301[4] { + yym3315 := z.EncBinary() + _ = yym3315 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -42141,23 +42189,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3296[4] { + if yyq3301[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3311 := z.EncBinary() - _ = yym3311 + yym3316 := z.EncBinary() + _ = yym3316 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3296 || yy2arr3296 { + if yyr3301 || yy2arr3301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3296[5] { - yym3313 := z.EncBinary() - _ = yym3313 + if yyq3301[5] { + yym3318 := z.EncBinary() + _ = yym3318 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -42166,54 +42214,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3296[5] { + if yyq3301[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3314 := z.EncBinary() - _ = yym3314 + yym3319 := z.EncBinary() + _ = yym3319 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3296 || yy2arr3296 { + if yyr3301 || yy2arr3301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3296[6] { + if yyq3301[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3316 := *x.TimeoutSeconds - yym3317 := z.EncBinary() - _ = yym3317 + yy3321 := *x.TimeoutSeconds + yym3322 := z.EncBinary() + _ = yym3322 if false { } else { - r.EncodeInt(int64(yy3316)) + r.EncodeInt(int64(yy3321)) } } } else { r.EncodeNil() } } else { - if yyq3296[6] { + if yyq3301[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3318 := *x.TimeoutSeconds - yym3319 := z.EncBinary() - _ = yym3319 + yy3323 := *x.TimeoutSeconds + yym3324 := z.EncBinary() + _ = yym3324 if false { } else { - r.EncodeInt(int64(yy3318)) + r.EncodeInt(int64(yy3323)) } } } } - if yyr3296 || yy2arr3296 { + if yyr3301 || yy2arr3301 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42226,25 +42274,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3320 := z.DecBinary() - _ = yym3320 + yym3325 := z.DecBinary() + _ = yym3325 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3321 := r.ContainerType() - if yyct3321 == codecSelferValueTypeMap1234 { - yyl3321 := r.ReadMapStart() - if yyl3321 == 0 { + yyct3326 := r.ContainerType() + if yyct3326 == codecSelferValueTypeMap1234 { + yyl3326 := r.ReadMapStart() + if yyl3326 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3321, d) + x.codecDecodeSelfFromMap(yyl3326, d) } - } else if yyct3321 == codecSelferValueTypeArray1234 { - yyl3321 := r.ReadArrayStart() - if yyl3321 == 0 { + } else if yyct3326 == codecSelferValueTypeArray1234 { + yyl3326 := r.ReadArrayStart() + if yyl3326 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3321, d) + x.codecDecodeSelfFromArray(yyl3326, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42256,12 +42304,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3322Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3322Slc - var yyhl3322 bool = l >= 0 - for yyj3322 := 0; ; yyj3322++ { - if yyhl3322 { - if yyj3322 >= l { + var yys3327Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3327Slc + var yyhl3327 bool = l >= 0 + for yyj3327 := 0; ; yyj3327++ { + if yyhl3327 { + if yyj3327 >= l { break } } else { @@ -42270,10 +42318,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3322Slc = r.DecodeBytes(yys3322Slc, true, true) - yys3322 := string(yys3322Slc) + yys3327Slc = r.DecodeBytes(yys3327Slc, true, true) + yys3327 := string(yys3327Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3322 { + switch yys3327 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42319,17 +42367,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3330 := z.DecBinary() - _ = yym3330 + yym3335 := z.DecBinary() + _ = yym3335 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3322) - } // end switch yys3322 - } // end for yyj3322 + z.DecStructFieldNotFound(-1, yys3327) + } // end switch yys3327 + } // end for yyj3327 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42337,16 +42385,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3331 int - var yyb3331 bool - var yyhl3331 bool = l >= 0 - yyj3331++ - if yyhl3331 { - yyb3331 = yyj3331 > l + var yyj3336 int + var yyb3336 bool + var yyhl3336 bool = l >= 0 + yyj3336++ + if yyhl3336 { + yyb3336 = yyj3336 > l } else { - yyb3331 = r.CheckBreak() + yyb3336 = r.CheckBreak() } - if yyb3331 { + if yyb3336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42356,13 +42404,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3331++ - if yyhl3331 { - yyb3331 = yyj3331 > l + yyj3336++ + if yyhl3336 { + yyb3336 = yyj3336 > l } else { - yyb3331 = r.CheckBreak() + yyb3336 = r.CheckBreak() } - if yyb3331 { + if yyb3336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42372,13 +42420,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3331++ - if yyhl3331 { - yyb3331 = yyj3331 > l + yyj3336++ + if yyhl3336 { + yyb3336 = yyj3336 > l } else { - yyb3331 = r.CheckBreak() + yyb3336 = r.CheckBreak() } - if yyb3331 { + if yyb3336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42388,13 +42436,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3331++ - if yyhl3331 { - yyb3331 = yyj3331 > l + yyj3336++ + if yyhl3336 { + yyb3336 = yyj3336 > l } else { - yyb3331 = r.CheckBreak() + yyb3336 = r.CheckBreak() } - if yyb3331 { + if yyb3336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42404,13 +42452,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3331++ - if yyhl3331 { - yyb3331 = yyj3331 > l + yyj3336++ + if yyhl3336 { + yyb3336 = yyj3336 > l } else { - yyb3331 = r.CheckBreak() + yyb3336 = r.CheckBreak() } - if yyb3331 { + if yyb3336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42420,13 +42468,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3331++ - if yyhl3331 { - yyb3331 = yyj3331 > l + yyj3336++ + if yyhl3336 { + yyb3336 = yyj3336 > l } else { - yyb3331 = r.CheckBreak() + yyb3336 = r.CheckBreak() } - if yyb3331 { + if yyb3336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42436,13 +42484,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3331++ - if yyhl3331 { - yyb3331 = yyj3331 > l + yyj3336++ + if yyhl3336 { + yyb3336 = yyj3336 > l } else { - yyb3331 = r.CheckBreak() + yyb3336 = r.CheckBreak() } - if yyb3331 { + if yyb3336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42455,25 +42503,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3339 := z.DecBinary() - _ = yym3339 + yym3344 := z.DecBinary() + _ = yym3344 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3331++ - if yyhl3331 { - yyb3331 = yyj3331 > l + yyj3336++ + if yyhl3336 { + yyb3336 = yyj3336 > l } else { - yyb3331 = r.CheckBreak() + yyb3336 = r.CheckBreak() } - if yyb3331 { + if yyb3336 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3331-1, "") + z.DecStructFieldNotFound(yyj3336-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42485,44 +42533,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3340 := z.EncBinary() - _ = yym3340 + yym3345 := z.EncBinary() + _ = yym3345 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3341 := !z.EncBinary() - yy2arr3341 := z.EncBasicHandle().StructToArray - var yyq3341 [10]bool - _, _, _ = yysep3341, yyq3341, yy2arr3341 - const yyr3341 bool = false - yyq3341[0] = x.Kind != "" - yyq3341[1] = x.APIVersion != "" - yyq3341[2] = x.Container != "" - yyq3341[3] = x.Follow != false - yyq3341[4] = x.Previous != false - yyq3341[5] = x.SinceSeconds != nil - yyq3341[6] = x.SinceTime != nil - yyq3341[7] = x.Timestamps != false - yyq3341[8] = x.TailLines != nil - yyq3341[9] = x.LimitBytes != nil - var yynn3341 int - if yyr3341 || yy2arr3341 { + yysep3346 := !z.EncBinary() + yy2arr3346 := z.EncBasicHandle().StructToArray + var yyq3346 [10]bool + _, _, _ = yysep3346, yyq3346, yy2arr3346 + const yyr3346 bool = false + yyq3346[0] = x.Kind != "" + yyq3346[1] = x.APIVersion != "" + yyq3346[2] = x.Container != "" + yyq3346[3] = x.Follow != false + yyq3346[4] = x.Previous != false + yyq3346[5] = x.SinceSeconds != nil + yyq3346[6] = x.SinceTime != nil + yyq3346[7] = x.Timestamps != false + yyq3346[8] = x.TailLines != nil + yyq3346[9] = x.LimitBytes != nil + var yynn3346 int + if yyr3346 || yy2arr3346 { r.EncodeArrayStart(10) } else { - yynn3341 = 0 - for _, b := range yyq3341 { + yynn3346 = 0 + for _, b := range yyq3346 { if b { - yynn3341++ + yynn3346++ } } - r.EncodeMapStart(yynn3341) - yynn3341 = 0 + r.EncodeMapStart(yynn3346) + yynn3346 = 0 } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[0] { - yym3343 := z.EncBinary() - _ = yym3343 + if yyq3346[0] { + yym3348 := z.EncBinary() + _ = yym3348 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42531,23 +42579,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3341[0] { + if yyq3346[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3344 := z.EncBinary() - _ = yym3344 + yym3349 := z.EncBinary() + _ = yym3349 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[1] { - yym3346 := z.EncBinary() - _ = yym3346 + if yyq3346[1] { + yym3351 := z.EncBinary() + _ = yym3351 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42556,23 +42604,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3341[1] { + if yyq3346[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3347 := z.EncBinary() - _ = yym3347 + yym3352 := z.EncBinary() + _ = yym3352 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[2] { - yym3349 := z.EncBinary() - _ = yym3349 + if yyq3346[2] { + yym3354 := z.EncBinary() + _ = yym3354 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -42581,23 +42629,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3341[2] { + if yyq3346[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3350 := z.EncBinary() - _ = yym3350 + yym3355 := z.EncBinary() + _ = yym3355 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[3] { - yym3352 := z.EncBinary() - _ = yym3352 + if yyq3346[3] { + yym3357 := z.EncBinary() + _ = yym3357 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -42606,23 +42654,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3341[3] { + if yyq3346[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3353 := z.EncBinary() - _ = yym3353 + yym3358 := z.EncBinary() + _ = yym3358 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[4] { - yym3355 := z.EncBinary() - _ = yym3355 + if yyq3346[4] { + yym3360 := z.EncBinary() + _ = yym3360 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -42631,66 +42679,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3341[4] { + if yyq3346[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3356 := z.EncBinary() - _ = yym3356 + yym3361 := z.EncBinary() + _ = yym3361 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[5] { + if yyq3346[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3358 := *x.SinceSeconds - yym3359 := z.EncBinary() - _ = yym3359 + yy3363 := *x.SinceSeconds + yym3364 := z.EncBinary() + _ = yym3364 if false { } else { - r.EncodeInt(int64(yy3358)) + r.EncodeInt(int64(yy3363)) } } } else { r.EncodeNil() } } else { - if yyq3341[5] { + if yyq3346[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3360 := *x.SinceSeconds - yym3361 := z.EncBinary() - _ = yym3361 + yy3365 := *x.SinceSeconds + yym3366 := z.EncBinary() + _ = yym3366 if false { } else { - r.EncodeInt(int64(yy3360)) + r.EncodeInt(int64(yy3365)) } } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[6] { + if yyq3346[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3363 := z.EncBinary() - _ = yym3363 + yym3368 := z.EncBinary() + _ = yym3368 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3363 { + } else if yym3368 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3363 && z.IsJSONHandle() { + } else if !yym3368 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -42700,20 +42748,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3341[6] { + if yyq3346[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3364 := z.EncBinary() - _ = yym3364 + yym3369 := z.EncBinary() + _ = yym3369 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3364 { + } else if yym3369 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3364 && z.IsJSONHandle() { + } else if !yym3369 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -42721,11 +42769,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[7] { - yym3366 := z.EncBinary() - _ = yym3366 + if yyq3346[7] { + yym3371 := z.EncBinary() + _ = yym3371 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -42734,89 +42782,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3341[7] { + if yyq3346[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3367 := z.EncBinary() - _ = yym3367 + yym3372 := z.EncBinary() + _ = yym3372 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[8] { + if yyq3346[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3369 := *x.TailLines - yym3370 := z.EncBinary() - _ = yym3370 + yy3374 := *x.TailLines + yym3375 := z.EncBinary() + _ = yym3375 if false { } else { - r.EncodeInt(int64(yy3369)) + r.EncodeInt(int64(yy3374)) } } } else { r.EncodeNil() } } else { - if yyq3341[8] { + if yyq3346[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3371 := *x.TailLines - yym3372 := z.EncBinary() - _ = yym3372 + yy3376 := *x.TailLines + yym3377 := z.EncBinary() + _ = yym3377 if false { } else { - r.EncodeInt(int64(yy3371)) + r.EncodeInt(int64(yy3376)) } } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3341[9] { + if yyq3346[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3374 := *x.LimitBytes - yym3375 := z.EncBinary() - _ = yym3375 + yy3379 := *x.LimitBytes + yym3380 := z.EncBinary() + _ = yym3380 if false { } else { - r.EncodeInt(int64(yy3374)) + r.EncodeInt(int64(yy3379)) } } } else { r.EncodeNil() } } else { - if yyq3341[9] { + if yyq3346[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3376 := *x.LimitBytes - yym3377 := z.EncBinary() - _ = yym3377 + yy3381 := *x.LimitBytes + yym3382 := z.EncBinary() + _ = yym3382 if false { } else { - r.EncodeInt(int64(yy3376)) + r.EncodeInt(int64(yy3381)) } } } } - if yyr3341 || yy2arr3341 { + if yyr3346 || yy2arr3346 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42829,25 +42877,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3378 := z.DecBinary() - _ = yym3378 + yym3383 := z.DecBinary() + _ = yym3383 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3379 := r.ContainerType() - if yyct3379 == codecSelferValueTypeMap1234 { - yyl3379 := r.ReadMapStart() - if yyl3379 == 0 { + yyct3384 := r.ContainerType() + if yyct3384 == codecSelferValueTypeMap1234 { + yyl3384 := r.ReadMapStart() + if yyl3384 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3379, d) + x.codecDecodeSelfFromMap(yyl3384, d) } - } else if yyct3379 == codecSelferValueTypeArray1234 { - yyl3379 := r.ReadArrayStart() - if yyl3379 == 0 { + } else if yyct3384 == codecSelferValueTypeArray1234 { + yyl3384 := r.ReadArrayStart() + if yyl3384 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3379, d) + x.codecDecodeSelfFromArray(yyl3384, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42859,12 +42907,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3380Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3380Slc - var yyhl3380 bool = l >= 0 - for yyj3380 := 0; ; yyj3380++ { - if yyhl3380 { - if yyj3380 >= l { + var yys3385Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3385Slc + var yyhl3385 bool = l >= 0 + for yyj3385 := 0; ; yyj3385++ { + if yyhl3385 { + if yyj3385 >= l { break } } else { @@ -42873,10 +42921,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3380Slc = r.DecodeBytes(yys3380Slc, true, true) - yys3380 := string(yys3380Slc) + yys3385Slc = r.DecodeBytes(yys3385Slc, true, true) + yys3385 := string(yys3385Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3380 { + switch yys3385 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42916,8 +42964,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3387 := z.DecBinary() - _ = yym3387 + yym3392 := z.DecBinary() + _ = yym3392 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -42932,13 +42980,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3389 := z.DecBinary() - _ = yym3389 - if false { + yym3394 := z.DecBinary() + _ = yym3394 + if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3389 { + } else if yym3394 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3389 && z.IsJSONHandle() { + } else if !yym3394 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -42959,8 +43007,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3392 := z.DecBinary() - _ = yym3392 + yym3397 := z.DecBinary() + _ = yym3397 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -42975,17 +43023,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3394 := z.DecBinary() - _ = yym3394 + yym3399 := z.DecBinary() + _ = yym3399 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3380) - } // end switch yys3380 - } // end for yyj3380 + z.DecStructFieldNotFound(-1, yys3385) + } // end switch yys3385 + } // end for yyj3385 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42993,16 +43041,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3395 int - var yyb3395 bool - var yyhl3395 bool = l >= 0 - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + var yyj3400 int + var yyb3400 bool + var yyhl3400 bool = l >= 0 + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43012,13 +43060,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43028,13 +43076,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43044,13 +43092,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43060,13 +43108,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43076,13 +43124,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43095,20 +43143,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3402 := z.DecBinary() - _ = yym3402 + yym3407 := z.DecBinary() + _ = yym3407 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43121,25 +43169,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3404 := z.DecBinary() - _ = yym3404 + yym3409 := z.DecBinary() + _ = yym3409 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3404 { + } else if yym3409 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3404 && z.IsJSONHandle() { + } else if !yym3409 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43149,13 +43197,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43168,20 +43216,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3407 := z.DecBinary() - _ = yym3407 + yym3412 := z.DecBinary() + _ = yym3412 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43194,25 +43242,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3409 := z.DecBinary() - _ = yym3409 + yym3414 := z.DecBinary() + _ = yym3414 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3395++ - if yyhl3395 { - yyb3395 = yyj3395 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3395 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3395 { + if yyb3400 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3395-1, "") + z.DecStructFieldNotFound(yyj3400-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43224,41 +43272,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3410 := z.EncBinary() - _ = yym3410 + yym3415 := z.EncBinary() + _ = yym3415 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3411 := !z.EncBinary() - yy2arr3411 := z.EncBasicHandle().StructToArray - var yyq3411 [7]bool - _, _, _ = yysep3411, yyq3411, yy2arr3411 - const yyr3411 bool = false - yyq3411[0] = x.Kind != "" - yyq3411[1] = x.APIVersion != "" - yyq3411[2] = x.Stdin != false - yyq3411[3] = x.Stdout != false - yyq3411[4] = x.Stderr != false - yyq3411[5] = x.TTY != false - yyq3411[6] = x.Container != "" - var yynn3411 int - if yyr3411 || yy2arr3411 { + yysep3416 := !z.EncBinary() + yy2arr3416 := z.EncBasicHandle().StructToArray + var yyq3416 [7]bool + _, _, _ = yysep3416, yyq3416, yy2arr3416 + const yyr3416 bool = false + yyq3416[0] = x.Kind != "" + yyq3416[1] = x.APIVersion != "" + yyq3416[2] = x.Stdin != false + yyq3416[3] = x.Stdout != false + yyq3416[4] = x.Stderr != false + yyq3416[5] = x.TTY != false + yyq3416[6] = x.Container != "" + var yynn3416 int + if yyr3416 || yy2arr3416 { r.EncodeArrayStart(7) } else { - yynn3411 = 0 - for _, b := range yyq3411 { + yynn3416 = 0 + for _, b := range yyq3416 { if b { - yynn3411++ + yynn3416++ } } - r.EncodeMapStart(yynn3411) - yynn3411 = 0 + r.EncodeMapStart(yynn3416) + yynn3416 = 0 } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[0] { - yym3413 := z.EncBinary() - _ = yym3413 + if yyq3416[0] { + yym3418 := z.EncBinary() + _ = yym3418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43267,23 +43315,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3411[0] { + if yyq3416[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3414 := z.EncBinary() - _ = yym3414 + yym3419 := z.EncBinary() + _ = yym3419 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[1] { - yym3416 := z.EncBinary() - _ = yym3416 + if yyq3416[1] { + yym3421 := z.EncBinary() + _ = yym3421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43292,23 +43340,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3411[1] { + if yyq3416[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3417 := z.EncBinary() - _ = yym3417 + yym3422 := z.EncBinary() + _ = yym3422 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[2] { - yym3419 := z.EncBinary() - _ = yym3419 + if yyq3416[2] { + yym3424 := z.EncBinary() + _ = yym3424 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -43317,23 +43365,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3411[2] { + if yyq3416[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3420 := z.EncBinary() - _ = yym3420 + yym3425 := z.EncBinary() + _ = yym3425 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[3] { - yym3422 := z.EncBinary() - _ = yym3422 + if yyq3416[3] { + yym3427 := z.EncBinary() + _ = yym3427 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -43342,23 +43390,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3411[3] { + if yyq3416[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3423 := z.EncBinary() - _ = yym3423 + yym3428 := z.EncBinary() + _ = yym3428 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[4] { - yym3425 := z.EncBinary() - _ = yym3425 + if yyq3416[4] { + yym3430 := z.EncBinary() + _ = yym3430 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -43367,23 +43415,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3411[4] { + if yyq3416[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3426 := z.EncBinary() - _ = yym3426 + yym3431 := z.EncBinary() + _ = yym3431 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[5] { - yym3428 := z.EncBinary() - _ = yym3428 + if yyq3416[5] { + yym3433 := z.EncBinary() + _ = yym3433 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -43392,23 +43440,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3411[5] { + if yyq3416[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3429 := z.EncBinary() - _ = yym3429 + yym3434 := z.EncBinary() + _ = yym3434 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[6] { - yym3431 := z.EncBinary() - _ = yym3431 + if yyq3416[6] { + yym3436 := z.EncBinary() + _ = yym3436 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43417,19 +43465,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3411[6] { + if yyq3416[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3432 := z.EncBinary() - _ = yym3432 + yym3437 := z.EncBinary() + _ = yym3437 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43442,25 +43490,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3433 := z.DecBinary() - _ = yym3433 + yym3438 := z.DecBinary() + _ = yym3438 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3434 := r.ContainerType() - if yyct3434 == codecSelferValueTypeMap1234 { - yyl3434 := r.ReadMapStart() - if yyl3434 == 0 { + yyct3439 := r.ContainerType() + if yyct3439 == codecSelferValueTypeMap1234 { + yyl3439 := r.ReadMapStart() + if yyl3439 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3434, d) + x.codecDecodeSelfFromMap(yyl3439, d) } - } else if yyct3434 == codecSelferValueTypeArray1234 { - yyl3434 := r.ReadArrayStart() - if yyl3434 == 0 { + } else if yyct3439 == codecSelferValueTypeArray1234 { + yyl3439 := r.ReadArrayStart() + if yyl3439 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3434, d) + x.codecDecodeSelfFromArray(yyl3439, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43472,12 +43520,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3435Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3435Slc - var yyhl3435 bool = l >= 0 - for yyj3435 := 0; ; yyj3435++ { - if yyhl3435 { - if yyj3435 >= l { + var yys3440Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3440Slc + var yyhl3440 bool = l >= 0 + for yyj3440 := 0; ; yyj3440++ { + if yyhl3440 { + if yyj3440 >= l { break } } else { @@ -43486,10 +43534,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3435Slc = r.DecodeBytes(yys3435Slc, true, true) - yys3435 := string(yys3435Slc) + yys3440Slc = r.DecodeBytes(yys3440Slc, true, true) + yys3440 := string(yys3440Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3435 { + switch yys3440 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43533,9 +43581,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3435) - } // end switch yys3435 - } // end for yyj3435 + z.DecStructFieldNotFound(-1, yys3440) + } // end switch yys3440 + } // end for yyj3440 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43543,16 +43591,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3443 int - var yyb3443 bool - var yyhl3443 bool = l >= 0 - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + var yyj3448 int + var yyb3448 bool + var yyhl3448 bool = l >= 0 + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3443 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3443 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43562,13 +43610,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3443 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3443 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43578,13 +43626,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3443 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3443 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43594,13 +43642,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3443 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3443 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43610,13 +43658,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3443 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3443 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43626,13 +43674,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3443 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3443 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43642,13 +43690,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3443 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3443 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43659,17 +43707,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3443 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3443 { + if yyb3448 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3443-1, "") + z.DecStructFieldNotFound(yyj3448-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43681,41 +43729,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3451 := z.EncBinary() - _ = yym3451 + yym3456 := z.EncBinary() + _ = yym3456 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3452 := !z.EncBinary() - yy2arr3452 := z.EncBasicHandle().StructToArray - var yyq3452 [8]bool - _, _, _ = yysep3452, yyq3452, yy2arr3452 - const yyr3452 bool = false - yyq3452[0] = x.Kind != "" - yyq3452[1] = x.APIVersion != "" - yyq3452[2] = x.Stdin != false - yyq3452[3] = x.Stdout != false - yyq3452[4] = x.Stderr != false - yyq3452[5] = x.TTY != false - yyq3452[6] = x.Container != "" - var yynn3452 int - if yyr3452 || yy2arr3452 { + yysep3457 := !z.EncBinary() + yy2arr3457 := z.EncBasicHandle().StructToArray + var yyq3457 [8]bool + _, _, _ = yysep3457, yyq3457, yy2arr3457 + const yyr3457 bool = false + yyq3457[0] = x.Kind != "" + yyq3457[1] = x.APIVersion != "" + yyq3457[2] = x.Stdin != false + yyq3457[3] = x.Stdout != false + yyq3457[4] = x.Stderr != false + yyq3457[5] = x.TTY != false + yyq3457[6] = x.Container != "" + var yynn3457 int + if yyr3457 || yy2arr3457 { r.EncodeArrayStart(8) } else { - yynn3452 = 1 - for _, b := range yyq3452 { + yynn3457 = 1 + for _, b := range yyq3457 { if b { - yynn3452++ + yynn3457++ } } - r.EncodeMapStart(yynn3452) - yynn3452 = 0 + r.EncodeMapStart(yynn3457) + yynn3457 = 0 } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3452[0] { - yym3454 := z.EncBinary() - _ = yym3454 + if yyq3457[0] { + yym3459 := z.EncBinary() + _ = yym3459 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43724,23 +43772,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3452[0] { + if yyq3457[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3455 := z.EncBinary() - _ = yym3455 + yym3460 := z.EncBinary() + _ = yym3460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3452[1] { - yym3457 := z.EncBinary() - _ = yym3457 + if yyq3457[1] { + yym3462 := z.EncBinary() + _ = yym3462 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43749,23 +43797,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3452[1] { + if yyq3457[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3458 := z.EncBinary() - _ = yym3458 + yym3463 := z.EncBinary() + _ = yym3463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3452[2] { - yym3460 := z.EncBinary() - _ = yym3460 + if yyq3457[2] { + yym3465 := z.EncBinary() + _ = yym3465 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -43774,23 +43822,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3452[2] { + if yyq3457[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3461 := z.EncBinary() - _ = yym3461 + yym3466 := z.EncBinary() + _ = yym3466 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3452[3] { - yym3463 := z.EncBinary() - _ = yym3463 + if yyq3457[3] { + yym3468 := z.EncBinary() + _ = yym3468 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -43799,23 +43847,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3452[3] { + if yyq3457[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3464 := z.EncBinary() - _ = yym3464 + yym3469 := z.EncBinary() + _ = yym3469 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3452[4] { - yym3466 := z.EncBinary() - _ = yym3466 + if yyq3457[4] { + yym3471 := z.EncBinary() + _ = yym3471 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -43824,23 +43872,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3452[4] { + if yyq3457[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3467 := z.EncBinary() - _ = yym3467 + yym3472 := z.EncBinary() + _ = yym3472 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3452[5] { - yym3469 := z.EncBinary() - _ = yym3469 + if yyq3457[5] { + yym3474 := z.EncBinary() + _ = yym3474 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -43849,23 +43897,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3452[5] { + if yyq3457[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3470 := z.EncBinary() - _ = yym3470 + yym3475 := z.EncBinary() + _ = yym3475 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3452[6] { - yym3472 := z.EncBinary() - _ = yym3472 + if yyq3457[6] { + yym3477 := z.EncBinary() + _ = yym3477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43874,25 +43922,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3452[6] { + if yyq3457[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3473 := z.EncBinary() - _ = yym3473 + yym3478 := z.EncBinary() + _ = yym3478 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3475 := z.EncBinary() - _ = yym3475 + yym3480 := z.EncBinary() + _ = yym3480 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -43905,15 +43953,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3476 := z.EncBinary() - _ = yym3476 + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3452 || yy2arr3452 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43926,25 +43974,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3477 := z.DecBinary() - _ = yym3477 + yym3482 := z.DecBinary() + _ = yym3482 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3478 := r.ContainerType() - if yyct3478 == codecSelferValueTypeMap1234 { - yyl3478 := r.ReadMapStart() - if yyl3478 == 0 { + yyct3483 := r.ContainerType() + if yyct3483 == codecSelferValueTypeMap1234 { + yyl3483 := r.ReadMapStart() + if yyl3483 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3478, d) + x.codecDecodeSelfFromMap(yyl3483, d) } - } else if yyct3478 == codecSelferValueTypeArray1234 { - yyl3478 := r.ReadArrayStart() - if yyl3478 == 0 { + } else if yyct3483 == codecSelferValueTypeArray1234 { + yyl3483 := r.ReadArrayStart() + if yyl3483 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3478, d) + x.codecDecodeSelfFromArray(yyl3483, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43956,12 +44004,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3479Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3479Slc - var yyhl3479 bool = l >= 0 - for yyj3479 := 0; ; yyj3479++ { - if yyhl3479 { - if yyj3479 >= l { + var yys3484Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3484Slc + var yyhl3484 bool = l >= 0 + for yyj3484 := 0; ; yyj3484++ { + if yyhl3484 { + if yyj3484 >= l { break } } else { @@ -43970,10 +44018,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3479Slc = r.DecodeBytes(yys3479Slc, true, true) - yys3479 := string(yys3479Slc) + yys3484Slc = r.DecodeBytes(yys3484Slc, true, true) + yys3484 := string(yys3484Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3479 { + switch yys3484 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44020,18 +44068,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3487 := &x.Command - yym3488 := z.DecBinary() - _ = yym3488 + yyv3492 := &x.Command + yym3493 := z.DecBinary() + _ = yym3493 if false { } else { - z.F.DecSliceStringX(yyv3487, false, d) + z.F.DecSliceStringX(yyv3492, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3479) - } // end switch yys3479 - } // end for yyj3479 + z.DecStructFieldNotFound(-1, yys3484) + } // end switch yys3484 + } // end for yyj3484 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44039,16 +44087,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3489 int - var yyb3489 bool - var yyhl3489 bool = l >= 0 - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + var yyj3494 int + var yyb3494 bool + var yyhl3494 bool = l >= 0 + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44058,13 +44106,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44074,13 +44122,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44090,13 +44138,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44106,13 +44154,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44122,13 +44170,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44138,13 +44186,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44154,13 +44202,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44168,26 +44216,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3497 := &x.Command - yym3498 := z.DecBinary() - _ = yym3498 + yyv3502 := &x.Command + yym3503 := z.DecBinary() + _ = yym3503 if false { } else { - z.F.DecSliceStringX(yyv3497, false, d) + z.F.DecSliceStringX(yyv3502, false, d) } } for { - yyj3489++ - if yyhl3489 { - yyb3489 = yyj3489 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3489 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3489 { + if yyb3494 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3489-1, "") + z.DecStructFieldNotFound(yyj3494-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44199,37 +44247,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3499 := z.EncBinary() - _ = yym3499 + yym3504 := z.EncBinary() + _ = yym3504 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3500 := !z.EncBinary() - yy2arr3500 := z.EncBasicHandle().StructToArray - var yyq3500 [3]bool - _, _, _ = yysep3500, yyq3500, yy2arr3500 - const yyr3500 bool = false - yyq3500[0] = x.Kind != "" - yyq3500[1] = x.APIVersion != "" - yyq3500[2] = x.Path != "" - var yynn3500 int - if yyr3500 || yy2arr3500 { + yysep3505 := !z.EncBinary() + yy2arr3505 := z.EncBasicHandle().StructToArray + var yyq3505 [3]bool + _, _, _ = yysep3505, yyq3505, yy2arr3505 + const yyr3505 bool = false + yyq3505[0] = x.Kind != "" + yyq3505[1] = x.APIVersion != "" + yyq3505[2] = x.Path != "" + var yynn3505 int + if yyr3505 || yy2arr3505 { r.EncodeArrayStart(3) } else { - yynn3500 = 0 - for _, b := range yyq3500 { + yynn3505 = 0 + for _, b := range yyq3505 { if b { - yynn3500++ + yynn3505++ } } - r.EncodeMapStart(yynn3500) - yynn3500 = 0 + r.EncodeMapStart(yynn3505) + yynn3505 = 0 } - if yyr3500 || yy2arr3500 { + if yyr3505 || yy2arr3505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[0] { - yym3502 := z.EncBinary() - _ = yym3502 + if yyq3505[0] { + yym3507 := z.EncBinary() + _ = yym3507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44238,23 +44286,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3500[0] { + if yyq3505[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3503 := z.EncBinary() - _ = yym3503 + yym3508 := z.EncBinary() + _ = yym3508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3500 || yy2arr3500 { + if yyr3505 || yy2arr3505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[1] { - yym3505 := z.EncBinary() - _ = yym3505 + if yyq3505[1] { + yym3510 := z.EncBinary() + _ = yym3510 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44263,23 +44311,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3500[1] { + if yyq3505[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3506 := z.EncBinary() - _ = yym3506 + yym3511 := z.EncBinary() + _ = yym3511 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3500 || yy2arr3500 { + if yyr3505 || yy2arr3505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[2] { - yym3508 := z.EncBinary() - _ = yym3508 + if yyq3505[2] { + yym3513 := z.EncBinary() + _ = yym3513 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44288,19 +44336,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3500[2] { + if yyq3505[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3509 := z.EncBinary() - _ = yym3509 + yym3514 := z.EncBinary() + _ = yym3514 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3500 || yy2arr3500 { + if yyr3505 || yy2arr3505 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44313,25 +44361,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3510 := z.DecBinary() - _ = yym3510 + yym3515 := z.DecBinary() + _ = yym3515 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3511 := r.ContainerType() - if yyct3511 == codecSelferValueTypeMap1234 { - yyl3511 := r.ReadMapStart() - if yyl3511 == 0 { + yyct3516 := r.ContainerType() + if yyct3516 == codecSelferValueTypeMap1234 { + yyl3516 := r.ReadMapStart() + if yyl3516 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3511, d) + x.codecDecodeSelfFromMap(yyl3516, d) } - } else if yyct3511 == codecSelferValueTypeArray1234 { - yyl3511 := r.ReadArrayStart() - if yyl3511 == 0 { + } else if yyct3516 == codecSelferValueTypeArray1234 { + yyl3516 := r.ReadArrayStart() + if yyl3516 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3511, d) + x.codecDecodeSelfFromArray(yyl3516, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44343,12 +44391,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3512Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3512Slc - var yyhl3512 bool = l >= 0 - for yyj3512 := 0; ; yyj3512++ { - if yyhl3512 { - if yyj3512 >= l { + var yys3517Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3517Slc + var yyhl3517 bool = l >= 0 + for yyj3517 := 0; ; yyj3517++ { + if yyhl3517 { + if yyj3517 >= l { break } } else { @@ -44357,10 +44405,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3512Slc = r.DecodeBytes(yys3512Slc, true, true) - yys3512 := string(yys3512Slc) + yys3517Slc = r.DecodeBytes(yys3517Slc, true, true) + yys3517 := string(yys3517Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3512 { + switch yys3517 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44380,9 +44428,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3512) - } // end switch yys3512 - } // end for yyj3512 + z.DecStructFieldNotFound(-1, yys3517) + } // end switch yys3517 + } // end for yyj3517 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44390,16 +44438,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3516 int - var yyb3516 bool - var yyhl3516 bool = l >= 0 - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + var yyj3521 int + var yyb3521 bool + var yyhl3521 bool = l >= 0 + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44409,13 +44457,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44425,13 +44473,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44442,17 +44490,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3521++ + if yyhl3521 { + yyb3521 = yyj3521 > l } else { - yyb3516 = r.CheckBreak() + yyb3521 = r.CheckBreak() } - if yyb3516 { + if yyb3521 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3516-1, "") + z.DecStructFieldNotFound(yyj3521-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44464,37 +44512,37 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3520 := z.EncBinary() - _ = yym3520 + yym3525 := z.EncBinary() + _ = yym3525 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3521 := !z.EncBinary() - yy2arr3521 := z.EncBasicHandle().StructToArray - var yyq3521 [3]bool - _, _, _ = yysep3521, yyq3521, yy2arr3521 - const yyr3521 bool = false - yyq3521[0] = x.Kind != "" - yyq3521[1] = x.APIVersion != "" - yyq3521[2] = x.Path != "" - var yynn3521 int - if yyr3521 || yy2arr3521 { + yysep3526 := !z.EncBinary() + yy2arr3526 := z.EncBasicHandle().StructToArray + var yyq3526 [3]bool + _, _, _ = yysep3526, yyq3526, yy2arr3526 + const yyr3526 bool = false + yyq3526[0] = x.Kind != "" + yyq3526[1] = x.APIVersion != "" + yyq3526[2] = x.Path != "" + var yynn3526 int + if yyr3526 || yy2arr3526 { r.EncodeArrayStart(3) } else { - yynn3521 = 0 - for _, b := range yyq3521 { + yynn3526 = 0 + for _, b := range yyq3526 { if b { - yynn3521++ + yynn3526++ } } - r.EncodeMapStart(yynn3521) - yynn3521 = 0 + r.EncodeMapStart(yynn3526) + yynn3526 = 0 } - if yyr3521 || yy2arr3521 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3521[0] { - yym3523 := z.EncBinary() - _ = yym3523 + if yyq3526[0] { + yym3528 := z.EncBinary() + _ = yym3528 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44503,23 +44551,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3521[0] { + if yyq3526[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3524 := z.EncBinary() - _ = yym3524 + yym3529 := z.EncBinary() + _ = yym3529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3521 || yy2arr3521 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3521[1] { - yym3526 := z.EncBinary() - _ = yym3526 + if yyq3526[1] { + yym3531 := z.EncBinary() + _ = yym3531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44528,23 +44576,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3521[1] { + if yyq3526[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3527 := z.EncBinary() - _ = yym3527 + yym3532 := z.EncBinary() + _ = yym3532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3521 || yy2arr3521 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3521[2] { - yym3529 := z.EncBinary() - _ = yym3529 + if yyq3526[2] { + yym3534 := z.EncBinary() + _ = yym3534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44553,19 +44601,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3521[2] { + if yyq3526[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3530 := z.EncBinary() - _ = yym3530 + yym3535 := z.EncBinary() + _ = yym3535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3521 || yy2arr3521 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44578,25 +44626,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3531 := z.DecBinary() - _ = yym3531 + yym3536 := z.DecBinary() + _ = yym3536 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3532 := r.ContainerType() - if yyct3532 == codecSelferValueTypeMap1234 { - yyl3532 := r.ReadMapStart() - if yyl3532 == 0 { + yyct3537 := r.ContainerType() + if yyct3537 == codecSelferValueTypeMap1234 { + yyl3537 := r.ReadMapStart() + if yyl3537 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3532, d) + x.codecDecodeSelfFromMap(yyl3537, d) } - } else if yyct3532 == codecSelferValueTypeArray1234 { - yyl3532 := r.ReadArrayStart() - if yyl3532 == 0 { + } else if yyct3537 == codecSelferValueTypeArray1234 { + yyl3537 := r.ReadArrayStart() + if yyl3537 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3532, d) + x.codecDecodeSelfFromArray(yyl3537, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44608,12 +44656,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3533Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3533Slc - var yyhl3533 bool = l >= 0 - for yyj3533 := 0; ; yyj3533++ { - if yyhl3533 { - if yyj3533 >= l { + var yys3538Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3538Slc + var yyhl3538 bool = l >= 0 + for yyj3538 := 0; ; yyj3538++ { + if yyhl3538 { + if yyj3538 >= l { break } } else { @@ -44622,10 +44670,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3533Slc = r.DecodeBytes(yys3533Slc, true, true) - yys3533 := string(yys3533Slc) + yys3538Slc = r.DecodeBytes(yys3538Slc, true, true) + yys3538 := string(yys3538Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3533 { + switch yys3538 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44645,9 +44693,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3533) - } // end switch yys3533 - } // end for yyj3533 + z.DecStructFieldNotFound(-1, yys3538) + } // end switch yys3538 + } // end for yyj3538 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44655,16 +44703,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3537 int - var yyb3537 bool - var yyhl3537 bool = l >= 0 - yyj3537++ - if yyhl3537 { - yyb3537 = yyj3537 > l + var yyj3542 int + var yyb3542 bool + var yyhl3542 bool = l >= 0 + yyj3542++ + if yyhl3542 { + yyb3542 = yyj3542 > l } else { - yyb3537 = r.CheckBreak() + yyb3542 = r.CheckBreak() } - if yyb3537 { + if yyb3542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44674,13 +44722,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3537++ - if yyhl3537 { - yyb3537 = yyj3537 > l + yyj3542++ + if yyhl3542 { + yyb3542 = yyj3542 > l } else { - yyb3537 = r.CheckBreak() + yyb3542 = r.CheckBreak() } - if yyb3537 { + if yyb3542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44690,13 +44738,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3537++ - if yyhl3537 { - yyb3537 = yyj3537 > l + yyj3542++ + if yyhl3542 { + yyb3542 = yyj3542 > l } else { - yyb3537 = r.CheckBreak() + yyb3542 = r.CheckBreak() } - if yyb3537 { + if yyb3542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44707,17 +44755,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3537++ - if yyhl3537 { - yyb3537 = yyj3537 > l + yyj3542++ + if yyhl3542 { + yyb3542 = yyj3542 > l } else { - yyb3537 = r.CheckBreak() + yyb3542 = r.CheckBreak() } - if yyb3537 { + if yyb3542 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3537-1, "") + z.DecStructFieldNotFound(yyj3542-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44729,37 +44777,37 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3541 := z.EncBinary() - _ = yym3541 + yym3546 := z.EncBinary() + _ = yym3546 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3542 := !z.EncBinary() - yy2arr3542 := z.EncBasicHandle().StructToArray - var yyq3542 [3]bool - _, _, _ = yysep3542, yyq3542, yy2arr3542 - const yyr3542 bool = false - yyq3542[0] = x.Kind != "" - yyq3542[1] = x.APIVersion != "" - yyq3542[2] = x.Path != "" - var yynn3542 int - if yyr3542 || yy2arr3542 { + yysep3547 := !z.EncBinary() + yy2arr3547 := z.EncBasicHandle().StructToArray + var yyq3547 [3]bool + _, _, _ = yysep3547, yyq3547, yy2arr3547 + const yyr3547 bool = false + yyq3547[0] = x.Kind != "" + yyq3547[1] = x.APIVersion != "" + yyq3547[2] = x.Path != "" + var yynn3547 int + if yyr3547 || yy2arr3547 { r.EncodeArrayStart(3) } else { - yynn3542 = 0 - for _, b := range yyq3542 { + yynn3547 = 0 + for _, b := range yyq3547 { if b { - yynn3542++ + yynn3547++ } } - r.EncodeMapStart(yynn3542) - yynn3542 = 0 + r.EncodeMapStart(yynn3547) + yynn3547 = 0 } - if yyr3542 || yy2arr3542 { + if yyr3547 || yy2arr3547 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3542[0] { - yym3544 := z.EncBinary() - _ = yym3544 + if yyq3547[0] { + yym3549 := z.EncBinary() + _ = yym3549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44768,23 +44816,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3542[0] { + if yyq3547[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3545 := z.EncBinary() - _ = yym3545 + yym3550 := z.EncBinary() + _ = yym3550 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3542 || yy2arr3542 { + if yyr3547 || yy2arr3547 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3542[1] { - yym3547 := z.EncBinary() - _ = yym3547 + if yyq3547[1] { + yym3552 := z.EncBinary() + _ = yym3552 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44793,23 +44841,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3542[1] { + if yyq3547[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3548 := z.EncBinary() - _ = yym3548 + yym3553 := z.EncBinary() + _ = yym3553 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3542 || yy2arr3542 { + if yyr3547 || yy2arr3547 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3542[2] { - yym3550 := z.EncBinary() - _ = yym3550 + if yyq3547[2] { + yym3555 := z.EncBinary() + _ = yym3555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44818,19 +44866,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3542[2] { + if yyq3547[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3551 := z.EncBinary() - _ = yym3551 + yym3556 := z.EncBinary() + _ = yym3556 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3542 || yy2arr3542 { + if yyr3547 || yy2arr3547 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44843,25 +44891,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3552 := z.DecBinary() - _ = yym3552 + yym3557 := z.DecBinary() + _ = yym3557 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3553 := r.ContainerType() - if yyct3553 == codecSelferValueTypeMap1234 { - yyl3553 := r.ReadMapStart() - if yyl3553 == 0 { + yyct3558 := r.ContainerType() + if yyct3558 == codecSelferValueTypeMap1234 { + yyl3558 := r.ReadMapStart() + if yyl3558 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3553, d) + x.codecDecodeSelfFromMap(yyl3558, d) } - } else if yyct3553 == codecSelferValueTypeArray1234 { - yyl3553 := r.ReadArrayStart() - if yyl3553 == 0 { + } else if yyct3558 == codecSelferValueTypeArray1234 { + yyl3558 := r.ReadArrayStart() + if yyl3558 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3553, d) + x.codecDecodeSelfFromArray(yyl3558, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44873,12 +44921,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3554Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3554Slc - var yyhl3554 bool = l >= 0 - for yyj3554 := 0; ; yyj3554++ { - if yyhl3554 { - if yyj3554 >= l { + var yys3559Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3559Slc + var yyhl3559 bool = l >= 0 + for yyj3559 := 0; ; yyj3559++ { + if yyhl3559 { + if yyj3559 >= l { break } } else { @@ -44887,10 +44935,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3554Slc = r.DecodeBytes(yys3554Slc, true, true) - yys3554 := string(yys3554Slc) + yys3559Slc = r.DecodeBytes(yys3559Slc, true, true) + yys3559 := string(yys3559Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3554 { + switch yys3559 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44910,9 +44958,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3554) - } // end switch yys3554 - } // end for yyj3554 + z.DecStructFieldNotFound(-1, yys3559) + } // end switch yys3559 + } // end for yyj3559 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44920,16 +44968,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3558 int - var yyb3558 bool - var yyhl3558 bool = l >= 0 - yyj3558++ - if yyhl3558 { - yyb3558 = yyj3558 > l + var yyj3563 int + var yyb3563 bool + var yyhl3563 bool = l >= 0 + yyj3563++ + if yyhl3563 { + yyb3563 = yyj3563 > l } else { - yyb3558 = r.CheckBreak() + yyb3563 = r.CheckBreak() } - if yyb3558 { + if yyb3563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44939,13 +44987,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3558++ - if yyhl3558 { - yyb3558 = yyj3558 > l + yyj3563++ + if yyhl3563 { + yyb3563 = yyj3563 > l } else { - yyb3558 = r.CheckBreak() + yyb3563 = r.CheckBreak() } - if yyb3558 { + if yyb3563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44955,13 +45003,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3558++ - if yyhl3558 { - yyb3558 = yyj3558 > l + yyj3563++ + if yyhl3563 { + yyb3563 = yyj3563 > l } else { - yyb3558 = r.CheckBreak() + yyb3563 = r.CheckBreak() } - if yyb3558 { + if yyb3563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44972,17 +45020,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3558++ - if yyhl3558 { - yyb3558 = yyj3558 > l + yyj3563++ + if yyhl3563 { + yyb3563 = yyj3563 > l } else { - yyb3558 = r.CheckBreak() + yyb3563 = r.CheckBreak() } - if yyb3558 { + if yyb3563 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3558-1, "") + z.DecStructFieldNotFound(yyj3563-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44994,34 +45042,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3562 := z.EncBinary() - _ = yym3562 + yym3567 := z.EncBinary() + _ = yym3567 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3563 := !z.EncBinary() - yy2arr3563 := z.EncBasicHandle().StructToArray - var yyq3563 [5]bool - _, _, _ = yysep3563, yyq3563, yy2arr3563 - const yyr3563 bool = false - yyq3563[4] = x.Controller != nil - var yynn3563 int - if yyr3563 || yy2arr3563 { + yysep3568 := !z.EncBinary() + yy2arr3568 := z.EncBasicHandle().StructToArray + var yyq3568 [5]bool + _, _, _ = yysep3568, yyq3568, yy2arr3568 + const yyr3568 bool = false + yyq3568[4] = x.Controller != nil + var yynn3568 int + if yyr3568 || yy2arr3568 { r.EncodeArrayStart(5) } else { - yynn3563 = 4 - for _, b := range yyq3563 { + yynn3568 = 4 + for _, b := range yyq3568 { if b { - yynn3563++ + yynn3568++ } } - r.EncodeMapStart(yynn3563) - yynn3563 = 0 + r.EncodeMapStart(yynn3568) + yynn3568 = 0 } - if yyr3563 || yy2arr3563 { + if yyr3568 || yy2arr3568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3565 := z.EncBinary() - _ = yym3565 + yym3570 := z.EncBinary() + _ = yym3570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45030,17 +45078,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3566 := z.EncBinary() - _ = yym3566 + yym3571 := z.EncBinary() + _ = yym3571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3563 || yy2arr3563 { + if yyr3568 || yy2arr3568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3568 := z.EncBinary() - _ = yym3568 + yym3573 := z.EncBinary() + _ = yym3573 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45049,17 +45097,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3569 := z.EncBinary() - _ = yym3569 + yym3574 := z.EncBinary() + _ = yym3574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3563 || yy2arr3563 { + if yyr3568 || yy2arr3568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3571 := z.EncBinary() - _ = yym3571 + yym3576 := z.EncBinary() + _ = yym3576 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45068,17 +45116,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3572 := z.EncBinary() - _ = yym3572 + yym3577 := z.EncBinary() + _ = yym3577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3563 || yy2arr3563 { + if yyr3568 || yy2arr3568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3574 := z.EncBinary() - _ = yym3574 + yym3579 := z.EncBinary() + _ = yym3579 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45088,50 +45136,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3575 := z.EncBinary() - _ = yym3575 + yym3580 := z.EncBinary() + _ = yym3580 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3563 || yy2arr3563 { + if yyr3568 || yy2arr3568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3563[4] { + if yyq3568[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3577 := *x.Controller - yym3578 := z.EncBinary() - _ = yym3578 + yy3582 := *x.Controller + yym3583 := z.EncBinary() + _ = yym3583 if false { } else { - r.EncodeBool(bool(yy3577)) + r.EncodeBool(bool(yy3582)) } } } else { r.EncodeNil() } } else { - if yyq3563[4] { + if yyq3568[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3579 := *x.Controller - yym3580 := z.EncBinary() - _ = yym3580 + yy3584 := *x.Controller + yym3585 := z.EncBinary() + _ = yym3585 if false { } else { - r.EncodeBool(bool(yy3579)) + r.EncodeBool(bool(yy3584)) } } } } - if yyr3563 || yy2arr3563 { + if yyr3568 || yy2arr3568 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45144,25 +45192,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3581 := z.DecBinary() - _ = yym3581 + yym3586 := z.DecBinary() + _ = yym3586 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3582 := r.ContainerType() - if yyct3582 == codecSelferValueTypeMap1234 { - yyl3582 := r.ReadMapStart() - if yyl3582 == 0 { + yyct3587 := r.ContainerType() + if yyct3587 == codecSelferValueTypeMap1234 { + yyl3587 := r.ReadMapStart() + if yyl3587 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3582, d) + x.codecDecodeSelfFromMap(yyl3587, d) } - } else if yyct3582 == codecSelferValueTypeArray1234 { - yyl3582 := r.ReadArrayStart() - if yyl3582 == 0 { + } else if yyct3587 == codecSelferValueTypeArray1234 { + yyl3587 := r.ReadArrayStart() + if yyl3587 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3582, d) + x.codecDecodeSelfFromArray(yyl3587, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45174,12 +45222,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3583Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3583Slc - var yyhl3583 bool = l >= 0 - for yyj3583 := 0; ; yyj3583++ { - if yyhl3583 { - if yyj3583 >= l { + var yys3588Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3588Slc + var yyhl3588 bool = l >= 0 + for yyj3588 := 0; ; yyj3588++ { + if yyhl3588 { + if yyj3588 >= l { break } } else { @@ -45188,10 +45236,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3583Slc = r.DecodeBytes(yys3583Slc, true, true) - yys3583 := string(yys3583Slc) + yys3588Slc = r.DecodeBytes(yys3588Slc, true, true) + yys3588 := string(yys3588Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3583 { + switch yys3588 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -45225,17 +45273,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3589 := z.DecBinary() - _ = yym3589 + yym3594 := z.DecBinary() + _ = yym3594 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3583) - } // end switch yys3583 - } // end for yyj3583 + z.DecStructFieldNotFound(-1, yys3588) + } // end switch yys3588 + } // end for yyj3588 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45243,16 +45291,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3590 int - var yyb3590 bool - var yyhl3590 bool = l >= 0 - yyj3590++ - if yyhl3590 { - yyb3590 = yyj3590 > l + var yyj3595 int + var yyb3595 bool + var yyhl3595 bool = l >= 0 + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3590 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3590 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45262,13 +45310,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3590++ - if yyhl3590 { - yyb3590 = yyj3590 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3590 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3590 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45278,13 +45326,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3590++ - if yyhl3590 { - yyb3590 = yyj3590 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3590 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3590 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45294,13 +45342,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3590++ - if yyhl3590 { - yyb3590 = yyj3590 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3590 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3590 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45310,13 +45358,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3590++ - if yyhl3590 { - yyb3590 = yyj3590 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3590 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3590 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45329,25 +45377,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3596 := z.DecBinary() - _ = yym3596 + yym3601 := z.DecBinary() + _ = yym3601 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3590++ - if yyhl3590 { - yyb3590 = yyj3590 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3590 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3590 { + if yyb3595 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3590-1, "") + z.DecStructFieldNotFound(yyj3595-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45359,41 +45407,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3597 := z.EncBinary() - _ = yym3597 + yym3602 := z.EncBinary() + _ = yym3602 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3598 := !z.EncBinary() - yy2arr3598 := z.EncBasicHandle().StructToArray - var yyq3598 [7]bool - _, _, _ = yysep3598, yyq3598, yy2arr3598 - const yyr3598 bool = false - yyq3598[0] = x.Kind != "" - yyq3598[1] = x.Namespace != "" - yyq3598[2] = x.Name != "" - yyq3598[3] = x.UID != "" - yyq3598[4] = x.APIVersion != "" - yyq3598[5] = x.ResourceVersion != "" - yyq3598[6] = x.FieldPath != "" - var yynn3598 int - if yyr3598 || yy2arr3598 { + yysep3603 := !z.EncBinary() + yy2arr3603 := z.EncBasicHandle().StructToArray + var yyq3603 [7]bool + _, _, _ = yysep3603, yyq3603, yy2arr3603 + const yyr3603 bool = false + yyq3603[0] = x.Kind != "" + yyq3603[1] = x.Namespace != "" + yyq3603[2] = x.Name != "" + yyq3603[3] = x.UID != "" + yyq3603[4] = x.APIVersion != "" + yyq3603[5] = x.ResourceVersion != "" + yyq3603[6] = x.FieldPath != "" + var yynn3603 int + if yyr3603 || yy2arr3603 { r.EncodeArrayStart(7) } else { - yynn3598 = 0 - for _, b := range yyq3598 { + yynn3603 = 0 + for _, b := range yyq3603 { if b { - yynn3598++ + yynn3603++ } } - r.EncodeMapStart(yynn3598) - yynn3598 = 0 + r.EncodeMapStart(yynn3603) + yynn3603 = 0 } - if yyr3598 || yy2arr3598 { + if yyr3603 || yy2arr3603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3598[0] { - yym3600 := z.EncBinary() - _ = yym3600 + if yyq3603[0] { + yym3605 := z.EncBinary() + _ = yym3605 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45402,23 +45450,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3598[0] { + if yyq3603[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3601 := z.EncBinary() - _ = yym3601 + yym3606 := z.EncBinary() + _ = yym3606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3598 || yy2arr3598 { + if yyr3603 || yy2arr3603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3598[1] { - yym3603 := z.EncBinary() - _ = yym3603 + if yyq3603[1] { + yym3608 := z.EncBinary() + _ = yym3608 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -45427,23 +45475,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3598[1] { + if yyq3603[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3604 := z.EncBinary() - _ = yym3604 + yym3609 := z.EncBinary() + _ = yym3609 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3598 || yy2arr3598 { + if yyr3603 || yy2arr3603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3598[2] { - yym3606 := z.EncBinary() - _ = yym3606 + if yyq3603[2] { + yym3611 := z.EncBinary() + _ = yym3611 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45452,23 +45500,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3598[2] { + if yyq3603[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3607 := z.EncBinary() - _ = yym3607 + yym3612 := z.EncBinary() + _ = yym3612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3598 || yy2arr3598 { + if yyr3603 || yy2arr3603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3598[3] { - yym3609 := z.EncBinary() - _ = yym3609 + if yyq3603[3] { + yym3614 := z.EncBinary() + _ = yym3614 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45478,12 +45526,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3598[3] { + if yyq3603[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3610 := z.EncBinary() - _ = yym3610 + yym3615 := z.EncBinary() + _ = yym3615 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45491,11 +45539,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3598 || yy2arr3598 { + if yyr3603 || yy2arr3603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3598[4] { - yym3612 := z.EncBinary() - _ = yym3612 + if yyq3603[4] { + yym3617 := z.EncBinary() + _ = yym3617 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45504,23 +45552,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3598[4] { + if yyq3603[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3613 := z.EncBinary() - _ = yym3613 + yym3618 := z.EncBinary() + _ = yym3618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3598 || yy2arr3598 { + if yyr3603 || yy2arr3603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3598[5] { - yym3615 := z.EncBinary() - _ = yym3615 + if yyq3603[5] { + yym3620 := z.EncBinary() + _ = yym3620 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -45529,23 +45577,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3598[5] { + if yyq3603[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3616 := z.EncBinary() - _ = yym3616 + yym3621 := z.EncBinary() + _ = yym3621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3598 || yy2arr3598 { + if yyr3603 || yy2arr3603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3598[6] { - yym3618 := z.EncBinary() - _ = yym3618 + if yyq3603[6] { + yym3623 := z.EncBinary() + _ = yym3623 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -45554,19 +45602,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3598[6] { + if yyq3603[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3619 := z.EncBinary() - _ = yym3619 + yym3624 := z.EncBinary() + _ = yym3624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3598 || yy2arr3598 { + if yyr3603 || yy2arr3603 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45579,25 +45627,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3620 := z.DecBinary() - _ = yym3620 + yym3625 := z.DecBinary() + _ = yym3625 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3621 := r.ContainerType() - if yyct3621 == codecSelferValueTypeMap1234 { - yyl3621 := r.ReadMapStart() - if yyl3621 == 0 { + yyct3626 := r.ContainerType() + if yyct3626 == codecSelferValueTypeMap1234 { + yyl3626 := r.ReadMapStart() + if yyl3626 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3621, d) + x.codecDecodeSelfFromMap(yyl3626, d) } - } else if yyct3621 == codecSelferValueTypeArray1234 { - yyl3621 := r.ReadArrayStart() - if yyl3621 == 0 { + } else if yyct3626 == codecSelferValueTypeArray1234 { + yyl3626 := r.ReadArrayStart() + if yyl3626 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3621, d) + x.codecDecodeSelfFromArray(yyl3626, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45609,12 +45657,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3622Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3622Slc - var yyhl3622 bool = l >= 0 - for yyj3622 := 0; ; yyj3622++ { - if yyhl3622 { - if yyj3622 >= l { + var yys3627Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3627Slc + var yyhl3627 bool = l >= 0 + for yyj3627 := 0; ; yyj3627++ { + if yyhl3627 { + if yyj3627 >= l { break } } else { @@ -45623,10 +45671,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3622Slc = r.DecodeBytes(yys3622Slc, true, true) - yys3622 := string(yys3622Slc) + yys3627Slc = r.DecodeBytes(yys3627Slc, true, true) + yys3627 := string(yys3627Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3622 { + switch yys3627 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45670,9 +45718,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3622) - } // end switch yys3622 - } // end for yyj3622 + z.DecStructFieldNotFound(-1, yys3627) + } // end switch yys3627 + } // end for yyj3627 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45680,16 +45728,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3630 int - var yyb3630 bool - var yyhl3630 bool = l >= 0 - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + var yyj3635 int + var yyb3635 bool + var yyhl3635 bool = l >= 0 + yyj3635++ + if yyhl3635 { + yyb3635 = yyj3635 > l } else { - yyb3630 = r.CheckBreak() + yyb3635 = r.CheckBreak() } - if yyb3630 { + if yyb3635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45699,13 +45747,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3635++ + if yyhl3635 { + yyb3635 = yyj3635 > l } else { - yyb3630 = r.CheckBreak() + yyb3635 = r.CheckBreak() } - if yyb3630 { + if yyb3635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45715,13 +45763,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3635++ + if yyhl3635 { + yyb3635 = yyj3635 > l } else { - yyb3630 = r.CheckBreak() + yyb3635 = r.CheckBreak() } - if yyb3630 { + if yyb3635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45731,13 +45779,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3635++ + if yyhl3635 { + yyb3635 = yyj3635 > l } else { - yyb3630 = r.CheckBreak() + yyb3635 = r.CheckBreak() } - if yyb3630 { + if yyb3635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45747,13 +45795,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3635++ + if yyhl3635 { + yyb3635 = yyj3635 > l } else { - yyb3630 = r.CheckBreak() + yyb3635 = r.CheckBreak() } - if yyb3630 { + if yyb3635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45763,13 +45811,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3635++ + if yyhl3635 { + yyb3635 = yyj3635 > l } else { - yyb3630 = r.CheckBreak() + yyb3635 = r.CheckBreak() } - if yyb3630 { + if yyb3635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45779,13 +45827,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3635++ + if yyhl3635 { + yyb3635 = yyj3635 > l } else { - yyb3630 = r.CheckBreak() + yyb3635 = r.CheckBreak() } - if yyb3630 { + if yyb3635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45796,17 +45844,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3635++ + if yyhl3635 { + yyb3635 = yyj3635 > l } else { - yyb3630 = r.CheckBreak() + yyb3635 = r.CheckBreak() } - if yyb3630 { + if yyb3635 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3630-1, "") + z.DecStructFieldNotFound(yyj3635-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45818,35 +45866,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3638 := z.EncBinary() - _ = yym3638 + yym3643 := z.EncBinary() + _ = yym3643 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3639 := !z.EncBinary() - yy2arr3639 := z.EncBasicHandle().StructToArray - var yyq3639 [1]bool - _, _, _ = yysep3639, yyq3639, yy2arr3639 - const yyr3639 bool = false - yyq3639[0] = x.Name != "" - var yynn3639 int - if yyr3639 || yy2arr3639 { + yysep3644 := !z.EncBinary() + yy2arr3644 := z.EncBasicHandle().StructToArray + var yyq3644 [1]bool + _, _, _ = yysep3644, yyq3644, yy2arr3644 + const yyr3644 bool = false + yyq3644[0] = x.Name != "" + var yynn3644 int + if yyr3644 || yy2arr3644 { r.EncodeArrayStart(1) } else { - yynn3639 = 0 - for _, b := range yyq3639 { + yynn3644 = 0 + for _, b := range yyq3644 { if b { - yynn3639++ + yynn3644++ } } - r.EncodeMapStart(yynn3639) - yynn3639 = 0 + r.EncodeMapStart(yynn3644) + yynn3644 = 0 } - if yyr3639 || yy2arr3639 { + if yyr3644 || yy2arr3644 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3639[0] { - yym3641 := z.EncBinary() - _ = yym3641 + if yyq3644[0] { + yym3646 := z.EncBinary() + _ = yym3646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45855,19 +45903,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3639[0] { + if yyq3644[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3642 := z.EncBinary() - _ = yym3642 + yym3647 := z.EncBinary() + _ = yym3647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3639 || yy2arr3639 { + if yyr3644 || yy2arr3644 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45880,25 +45928,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3643 := z.DecBinary() - _ = yym3643 + yym3648 := z.DecBinary() + _ = yym3648 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3644 := r.ContainerType() - if yyct3644 == codecSelferValueTypeMap1234 { - yyl3644 := r.ReadMapStart() - if yyl3644 == 0 { + yyct3649 := r.ContainerType() + if yyct3649 == codecSelferValueTypeMap1234 { + yyl3649 := r.ReadMapStart() + if yyl3649 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3644, d) + x.codecDecodeSelfFromMap(yyl3649, d) } - } else if yyct3644 == codecSelferValueTypeArray1234 { - yyl3644 := r.ReadArrayStart() - if yyl3644 == 0 { + } else if yyct3649 == codecSelferValueTypeArray1234 { + yyl3649 := r.ReadArrayStart() + if yyl3649 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3644, d) + x.codecDecodeSelfFromArray(yyl3649, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45910,12 +45958,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3645Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3645Slc - var yyhl3645 bool = l >= 0 - for yyj3645 := 0; ; yyj3645++ { - if yyhl3645 { - if yyj3645 >= l { + var yys3650Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3650Slc + var yyhl3650 bool = l >= 0 + for yyj3650 := 0; ; yyj3650++ { + if yyhl3650 { + if yyj3650 >= l { break } } else { @@ -45924,10 +45972,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3645Slc = r.DecodeBytes(yys3645Slc, true, true) - yys3645 := string(yys3645Slc) + yys3650Slc = r.DecodeBytes(yys3650Slc, true, true) + yys3650 := string(yys3650Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3645 { + switch yys3650 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -45935,9 +45983,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3645) - } // end switch yys3645 - } // end for yyj3645 + z.DecStructFieldNotFound(-1, yys3650) + } // end switch yys3650 + } // end for yyj3650 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45945,16 +45993,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3647 int - var yyb3647 bool - var yyhl3647 bool = l >= 0 - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + var yyj3652 int + var yyb3652 bool + var yyhl3652 bool = l >= 0 + yyj3652++ + if yyhl3652 { + yyb3652 = yyj3652 > l } else { - yyb3647 = r.CheckBreak() + yyb3652 = r.CheckBreak() } - if yyb3647 { + if yyb3652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45965,17 +46013,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + yyj3652++ + if yyhl3652 { + yyb3652 = yyj3652 > l } else { - yyb3647 = r.CheckBreak() + yyb3652 = r.CheckBreak() } - if yyb3647 { + if yyb3652 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3647-1, "") + z.DecStructFieldNotFound(yyj3652-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45987,37 +46035,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3649 := z.EncBinary() - _ = yym3649 + yym3654 := z.EncBinary() + _ = yym3654 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3650 := !z.EncBinary() - yy2arr3650 := z.EncBasicHandle().StructToArray - var yyq3650 [3]bool - _, _, _ = yysep3650, yyq3650, yy2arr3650 - const yyr3650 bool = false - yyq3650[0] = x.Kind != "" - yyq3650[1] = x.APIVersion != "" - yyq3650[2] = true - var yynn3650 int - if yyr3650 || yy2arr3650 { + yysep3655 := !z.EncBinary() + yy2arr3655 := z.EncBasicHandle().StructToArray + var yyq3655 [3]bool + _, _, _ = yysep3655, yyq3655, yy2arr3655 + const yyr3655 bool = false + yyq3655[0] = x.Kind != "" + yyq3655[1] = x.APIVersion != "" + yyq3655[2] = true + var yynn3655 int + if yyr3655 || yy2arr3655 { r.EncodeArrayStart(3) } else { - yynn3650 = 0 - for _, b := range yyq3650 { + yynn3655 = 0 + for _, b := range yyq3655 { if b { - yynn3650++ + yynn3655++ } } - r.EncodeMapStart(yynn3650) - yynn3650 = 0 + r.EncodeMapStart(yynn3655) + yynn3655 = 0 } - if yyr3650 || yy2arr3650 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3650[0] { - yym3652 := z.EncBinary() - _ = yym3652 + if yyq3655[0] { + yym3657 := z.EncBinary() + _ = yym3657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46026,23 +46074,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3650[0] { + if yyq3655[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3653 := z.EncBinary() - _ = yym3653 + yym3658 := z.EncBinary() + _ = yym3658 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3650 || yy2arr3650 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3650[1] { - yym3655 := z.EncBinary() - _ = yym3655 + if yyq3655[1] { + yym3660 := z.EncBinary() + _ = yym3660 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46051,36 +46099,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3650[1] { + if yyq3655[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3656 := z.EncBinary() - _ = yym3656 + yym3661 := z.EncBinary() + _ = yym3661 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3650 || yy2arr3650 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3650[2] { - yy3658 := &x.Reference - yy3658.CodecEncodeSelf(e) + if yyq3655[2] { + yy3663 := &x.Reference + yy3663.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3650[2] { + if yyq3655[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3659 := &x.Reference - yy3659.CodecEncodeSelf(e) + yy3664 := &x.Reference + yy3664.CodecEncodeSelf(e) } } - if yyr3650 || yy2arr3650 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46093,25 +46141,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3660 := z.DecBinary() - _ = yym3660 + yym3665 := z.DecBinary() + _ = yym3665 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3661 := r.ContainerType() - if yyct3661 == codecSelferValueTypeMap1234 { - yyl3661 := r.ReadMapStart() - if yyl3661 == 0 { + yyct3666 := r.ContainerType() + if yyct3666 == codecSelferValueTypeMap1234 { + yyl3666 := r.ReadMapStart() + if yyl3666 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3661, d) + x.codecDecodeSelfFromMap(yyl3666, d) } - } else if yyct3661 == codecSelferValueTypeArray1234 { - yyl3661 := r.ReadArrayStart() - if yyl3661 == 0 { + } else if yyct3666 == codecSelferValueTypeArray1234 { + yyl3666 := r.ReadArrayStart() + if yyl3666 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3661, d) + x.codecDecodeSelfFromArray(yyl3666, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46123,12 +46171,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3662Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3662Slc - var yyhl3662 bool = l >= 0 - for yyj3662 := 0; ; yyj3662++ { - if yyhl3662 { - if yyj3662 >= l { + var yys3667Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3667Slc + var yyhl3667 bool = l >= 0 + for yyj3667 := 0; ; yyj3667++ { + if yyhl3667 { + if yyj3667 >= l { break } } else { @@ -46137,10 +46185,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3662Slc = r.DecodeBytes(yys3662Slc, true, true) - yys3662 := string(yys3662Slc) + yys3667Slc = r.DecodeBytes(yys3667Slc, true, true) + yys3667 := string(yys3667Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3662 { + switch yys3667 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46157,13 +46205,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3665 := &x.Reference - yyv3665.CodecDecodeSelf(d) + yyv3670 := &x.Reference + yyv3670.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3662) - } // end switch yys3662 - } // end for yyj3662 + z.DecStructFieldNotFound(-1, yys3667) + } // end switch yys3667 + } // end for yyj3667 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46171,16 +46219,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3666 int - var yyb3666 bool - var yyhl3666 bool = l >= 0 - yyj3666++ - if yyhl3666 { - yyb3666 = yyj3666 > l + var yyj3671 int + var yyb3671 bool + var yyhl3671 bool = l >= 0 + yyj3671++ + if yyhl3671 { + yyb3671 = yyj3671 > l } else { - yyb3666 = r.CheckBreak() + yyb3671 = r.CheckBreak() } - if yyb3666 { + if yyb3671 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46190,13 +46238,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3666++ - if yyhl3666 { - yyb3666 = yyj3666 > l + yyj3671++ + if yyhl3671 { + yyb3671 = yyj3671 > l } else { - yyb3666 = r.CheckBreak() + yyb3671 = r.CheckBreak() } - if yyb3666 { + if yyb3671 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46206,13 +46254,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3666++ - if yyhl3666 { - yyb3666 = yyj3666 > l + yyj3671++ + if yyhl3671 { + yyb3671 = yyj3671 > l } else { - yyb3666 = r.CheckBreak() + yyb3671 = r.CheckBreak() } - if yyb3666 { + if yyb3671 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46220,21 +46268,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3669 := &x.Reference - yyv3669.CodecDecodeSelf(d) + yyv3674 := &x.Reference + yyv3674.CodecDecodeSelf(d) } for { - yyj3666++ - if yyhl3666 { - yyb3666 = yyj3666 > l + yyj3671++ + if yyhl3671 { + yyb3671 = yyj3671 > l } else { - yyb3666 = r.CheckBreak() + yyb3671 = r.CheckBreak() } - if yyb3666 { + if yyb3671 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3666-1, "") + z.DecStructFieldNotFound(yyj3671-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46246,36 +46294,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3670 := z.EncBinary() - _ = yym3670 + yym3675 := z.EncBinary() + _ = yym3675 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3671 := !z.EncBinary() - yy2arr3671 := z.EncBasicHandle().StructToArray - var yyq3671 [2]bool - _, _, _ = yysep3671, yyq3671, yy2arr3671 - const yyr3671 bool = false - yyq3671[0] = x.Component != "" - yyq3671[1] = x.Host != "" - var yynn3671 int - if yyr3671 || yy2arr3671 { + yysep3676 := !z.EncBinary() + yy2arr3676 := z.EncBasicHandle().StructToArray + var yyq3676 [2]bool + _, _, _ = yysep3676, yyq3676, yy2arr3676 + const yyr3676 bool = false + yyq3676[0] = x.Component != "" + yyq3676[1] = x.Host != "" + var yynn3676 int + if yyr3676 || yy2arr3676 { r.EncodeArrayStart(2) } else { - yynn3671 = 0 - for _, b := range yyq3671 { + yynn3676 = 0 + for _, b := range yyq3676 { if b { - yynn3671++ + yynn3676++ } } - r.EncodeMapStart(yynn3671) - yynn3671 = 0 + r.EncodeMapStart(yynn3676) + yynn3676 = 0 } - if yyr3671 || yy2arr3671 { + if yyr3676 || yy2arr3676 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3671[0] { - yym3673 := z.EncBinary() - _ = yym3673 + if yyq3676[0] { + yym3678 := z.EncBinary() + _ = yym3678 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -46284,23 +46332,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3671[0] { + if yyq3676[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3674 := z.EncBinary() - _ = yym3674 + yym3679 := z.EncBinary() + _ = yym3679 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3671 || yy2arr3671 { + if yyr3676 || yy2arr3676 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3671[1] { - yym3676 := z.EncBinary() - _ = yym3676 + if yyq3676[1] { + yym3681 := z.EncBinary() + _ = yym3681 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -46309,19 +46357,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3671[1] { + if yyq3676[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3677 := z.EncBinary() - _ = yym3677 + yym3682 := z.EncBinary() + _ = yym3682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3671 || yy2arr3671 { + if yyr3676 || yy2arr3676 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46334,25 +46382,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3678 := z.DecBinary() - _ = yym3678 + yym3683 := z.DecBinary() + _ = yym3683 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3679 := r.ContainerType() - if yyct3679 == codecSelferValueTypeMap1234 { - yyl3679 := r.ReadMapStart() - if yyl3679 == 0 { + yyct3684 := r.ContainerType() + if yyct3684 == codecSelferValueTypeMap1234 { + yyl3684 := r.ReadMapStart() + if yyl3684 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3679, d) + x.codecDecodeSelfFromMap(yyl3684, d) } - } else if yyct3679 == codecSelferValueTypeArray1234 { - yyl3679 := r.ReadArrayStart() - if yyl3679 == 0 { + } else if yyct3684 == codecSelferValueTypeArray1234 { + yyl3684 := r.ReadArrayStart() + if yyl3684 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3679, d) + x.codecDecodeSelfFromArray(yyl3684, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46364,12 +46412,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3680Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3680Slc - var yyhl3680 bool = l >= 0 - for yyj3680 := 0; ; yyj3680++ { - if yyhl3680 { - if yyj3680 >= l { + var yys3685Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3685Slc + var yyhl3685 bool = l >= 0 + for yyj3685 := 0; ; yyj3685++ { + if yyhl3685 { + if yyj3685 >= l { break } } else { @@ -46378,10 +46426,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3680Slc = r.DecodeBytes(yys3680Slc, true, true) - yys3680 := string(yys3680Slc) + yys3685Slc = r.DecodeBytes(yys3685Slc, true, true) + yys3685 := string(yys3685Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3680 { + switch yys3685 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -46395,9 +46443,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3680) - } // end switch yys3680 - } // end for yyj3680 + z.DecStructFieldNotFound(-1, yys3685) + } // end switch yys3685 + } // end for yyj3685 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46405,16 +46453,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3683 int - var yyb3683 bool - var yyhl3683 bool = l >= 0 - yyj3683++ - if yyhl3683 { - yyb3683 = yyj3683 > l + var yyj3688 int + var yyb3688 bool + var yyhl3688 bool = l >= 0 + yyj3688++ + if yyhl3688 { + yyb3688 = yyj3688 > l } else { - yyb3683 = r.CheckBreak() + yyb3688 = r.CheckBreak() } - if yyb3683 { + if yyb3688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46424,13 +46472,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3683++ - if yyhl3683 { - yyb3683 = yyj3683 > l + yyj3688++ + if yyhl3688 { + yyb3688 = yyj3688 > l } else { - yyb3683 = r.CheckBreak() + yyb3688 = r.CheckBreak() } - if yyb3683 { + if yyb3688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46441,17 +46489,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3683++ - if yyhl3683 { - yyb3683 = yyj3683 > l + yyj3688++ + if yyhl3688 { + yyb3688 = yyj3688 > l } else { - yyb3683 = r.CheckBreak() + yyb3688 = r.CheckBreak() } - if yyb3683 { + if yyb3688 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3683-1, "") + z.DecStructFieldNotFound(yyj3688-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46463,43 +46511,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3686 := z.EncBinary() - _ = yym3686 + yym3691 := z.EncBinary() + _ = yym3691 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3687 := !z.EncBinary() - yy2arr3687 := z.EncBasicHandle().StructToArray - var yyq3687 [11]bool - _, _, _ = yysep3687, yyq3687, yy2arr3687 - const yyr3687 bool = false - yyq3687[0] = x.Kind != "" - yyq3687[1] = x.APIVersion != "" - yyq3687[4] = x.Reason != "" - yyq3687[5] = x.Message != "" - yyq3687[6] = true - yyq3687[7] = true - yyq3687[8] = true - yyq3687[9] = x.Count != 0 - yyq3687[10] = x.Type != "" - var yynn3687 int - if yyr3687 || yy2arr3687 { + yysep3692 := !z.EncBinary() + yy2arr3692 := z.EncBasicHandle().StructToArray + var yyq3692 [11]bool + _, _, _ = yysep3692, yyq3692, yy2arr3692 + const yyr3692 bool = false + yyq3692[0] = x.Kind != "" + yyq3692[1] = x.APIVersion != "" + yyq3692[4] = x.Reason != "" + yyq3692[5] = x.Message != "" + yyq3692[6] = true + yyq3692[7] = true + yyq3692[8] = true + yyq3692[9] = x.Count != 0 + yyq3692[10] = x.Type != "" + var yynn3692 int + if yyr3692 || yy2arr3692 { r.EncodeArrayStart(11) } else { - yynn3687 = 2 - for _, b := range yyq3687 { + yynn3692 = 2 + for _, b := range yyq3692 { if b { - yynn3687++ + yynn3692++ } } - r.EncodeMapStart(yynn3687) - yynn3687 = 0 + r.EncodeMapStart(yynn3692) + yynn3692 = 0 } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[0] { - yym3689 := z.EncBinary() - _ = yym3689 + if yyq3692[0] { + yym3694 := z.EncBinary() + _ = yym3694 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46508,23 +46556,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3687[0] { + if yyq3692[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3690 := z.EncBinary() - _ = yym3690 + yym3695 := z.EncBinary() + _ = yym3695 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[1] { - yym3692 := z.EncBinary() - _ = yym3692 + if yyq3692[1] { + yym3697 := z.EncBinary() + _ = yym3697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46533,45 +46581,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3687[1] { + if yyq3692[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3693 := z.EncBinary() - _ = yym3693 + yym3698 := z.EncBinary() + _ = yym3698 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3695 := &x.ObjectMeta - yy3695.CodecEncodeSelf(e) + yy3700 := &x.ObjectMeta + yy3700.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3696 := &x.ObjectMeta - yy3696.CodecEncodeSelf(e) + yy3701 := &x.ObjectMeta + yy3701.CodecEncodeSelf(e) } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3698 := &x.InvolvedObject - yy3698.CodecEncodeSelf(e) + yy3703 := &x.InvolvedObject + yy3703.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3699 := &x.InvolvedObject - yy3699.CodecEncodeSelf(e) + yy3704 := &x.InvolvedObject + yy3704.CodecEncodeSelf(e) } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[4] { - yym3701 := z.EncBinary() - _ = yym3701 + if yyq3692[4] { + yym3706 := z.EncBinary() + _ = yym3706 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -46580,23 +46628,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3687[4] { + if yyq3692[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3702 := z.EncBinary() - _ = yym3702 + yym3707 := z.EncBinary() + _ = yym3707 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[5] { - yym3704 := z.EncBinary() - _ = yym3704 + if yyq3692[5] { + yym3709 := z.EncBinary() + _ = yym3709 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -46605,114 +46653,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3687[5] { + if yyq3692[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3705 := z.EncBinary() - _ = yym3705 + yym3710 := z.EncBinary() + _ = yym3710 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[6] { - yy3707 := &x.Source - yy3707.CodecEncodeSelf(e) + if yyq3692[6] { + yy3712 := &x.Source + yy3712.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3687[6] { + if yyq3692[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3708 := &x.Source - yy3708.CodecEncodeSelf(e) + yy3713 := &x.Source + yy3713.CodecEncodeSelf(e) } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[7] { - yy3710 := &x.FirstTimestamp - yym3711 := z.EncBinary() - _ = yym3711 + if yyq3692[7] { + yy3715 := &x.FirstTimestamp + yym3716 := z.EncBinary() + _ = yym3716 if false { - } else if z.HasExtensions() && z.EncExt(yy3710) { - } else if yym3711 { - z.EncBinaryMarshal(yy3710) - } else if !yym3711 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3710) + } else if z.HasExtensions() && z.EncExt(yy3715) { + } else if yym3716 { + z.EncBinaryMarshal(yy3715) + } else if !yym3716 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3715) } else { - z.EncFallback(yy3710) + z.EncFallback(yy3715) } } else { r.EncodeNil() } } else { - if yyq3687[7] { + if yyq3692[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3712 := &x.FirstTimestamp - yym3713 := z.EncBinary() - _ = yym3713 + yy3717 := &x.FirstTimestamp + yym3718 := z.EncBinary() + _ = yym3718 if false { - } else if z.HasExtensions() && z.EncExt(yy3712) { - } else if yym3713 { - z.EncBinaryMarshal(yy3712) - } else if !yym3713 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3712) + } else if z.HasExtensions() && z.EncExt(yy3717) { + } else if yym3718 { + z.EncBinaryMarshal(yy3717) + } else if !yym3718 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3717) } else { - z.EncFallback(yy3712) + z.EncFallback(yy3717) } } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[8] { - yy3715 := &x.LastTimestamp - yym3716 := z.EncBinary() - _ = yym3716 + if yyq3692[8] { + yy3720 := &x.LastTimestamp + yym3721 := z.EncBinary() + _ = yym3721 if false { - } else if z.HasExtensions() && z.EncExt(yy3715) { - } else if yym3716 { - z.EncBinaryMarshal(yy3715) - } else if !yym3716 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3715) + } else if z.HasExtensions() && z.EncExt(yy3720) { + } else if yym3721 { + z.EncBinaryMarshal(yy3720) + } else if !yym3721 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3720) } else { - z.EncFallback(yy3715) + z.EncFallback(yy3720) } } else { r.EncodeNil() } } else { - if yyq3687[8] { + if yyq3692[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3717 := &x.LastTimestamp - yym3718 := z.EncBinary() - _ = yym3718 + yy3722 := &x.LastTimestamp + yym3723 := z.EncBinary() + _ = yym3723 if false { - } else if z.HasExtensions() && z.EncExt(yy3717) { - } else if yym3718 { - z.EncBinaryMarshal(yy3717) - } else if !yym3718 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3717) + } else if z.HasExtensions() && z.EncExt(yy3722) { + } else if yym3723 { + z.EncBinaryMarshal(yy3722) + } else if !yym3723 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3722) } else { - z.EncFallback(yy3717) + z.EncFallback(yy3722) } } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[9] { - yym3720 := z.EncBinary() - _ = yym3720 + if yyq3692[9] { + yym3725 := z.EncBinary() + _ = yym3725 if false { } else { r.EncodeInt(int64(x.Count)) @@ -46721,23 +46769,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3687[9] { + if yyq3692[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3721 := z.EncBinary() - _ = yym3721 + yym3726 := z.EncBinary() + _ = yym3726 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3687[10] { - yym3723 := z.EncBinary() - _ = yym3723 + if yyq3692[10] { + yym3728 := z.EncBinary() + _ = yym3728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -46746,19 +46794,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3687[10] { + if yyq3692[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3724 := z.EncBinary() - _ = yym3724 + yym3729 := z.EncBinary() + _ = yym3729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3687 || yy2arr3687 { + if yyr3692 || yy2arr3692 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46771,25 +46819,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3725 := z.DecBinary() - _ = yym3725 + yym3730 := z.DecBinary() + _ = yym3730 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3726 := r.ContainerType() - if yyct3726 == codecSelferValueTypeMap1234 { - yyl3726 := r.ReadMapStart() - if yyl3726 == 0 { + yyct3731 := r.ContainerType() + if yyct3731 == codecSelferValueTypeMap1234 { + yyl3731 := r.ReadMapStart() + if yyl3731 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3726, d) + x.codecDecodeSelfFromMap(yyl3731, d) } - } else if yyct3726 == codecSelferValueTypeArray1234 { - yyl3726 := r.ReadArrayStart() - if yyl3726 == 0 { + } else if yyct3731 == codecSelferValueTypeArray1234 { + yyl3731 := r.ReadArrayStart() + if yyl3731 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3726, d) + x.codecDecodeSelfFromArray(yyl3731, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46801,12 +46849,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3727Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3727Slc - var yyhl3727 bool = l >= 0 - for yyj3727 := 0; ; yyj3727++ { - if yyhl3727 { - if yyj3727 >= l { + var yys3732Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3732Slc + var yyhl3732 bool = l >= 0 + for yyj3732 := 0; ; yyj3732++ { + if yyhl3732 { + if yyj3732 >= l { break } } else { @@ -46815,10 +46863,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3727Slc = r.DecodeBytes(yys3727Slc, true, true) - yys3727 := string(yys3727Slc) + yys3732Slc = r.DecodeBytes(yys3732Slc, true, true) + yys3732 := string(yys3732Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3727 { + switch yys3732 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46835,15 +46883,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3730 := &x.ObjectMeta - yyv3730.CodecDecodeSelf(d) + yyv3735 := &x.ObjectMeta + yyv3735.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3731 := &x.InvolvedObject - yyv3731.CodecDecodeSelf(d) + yyv3736 := &x.InvolvedObject + yyv3736.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -46861,41 +46909,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3734 := &x.Source - yyv3734.CodecDecodeSelf(d) + yyv3739 := &x.Source + yyv3739.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3735 := &x.FirstTimestamp - yym3736 := z.DecBinary() - _ = yym3736 + yyv3740 := &x.FirstTimestamp + yym3741 := z.DecBinary() + _ = yym3741 if false { - } else if z.HasExtensions() && z.DecExt(yyv3735) { - } else if yym3736 { - z.DecBinaryUnmarshal(yyv3735) - } else if !yym3736 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3735) + } else if z.HasExtensions() && z.DecExt(yyv3740) { + } else if yym3741 { + z.DecBinaryUnmarshal(yyv3740) + } else if !yym3741 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3740) } else { - z.DecFallback(yyv3735, false) + z.DecFallback(yyv3740, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3737 := &x.LastTimestamp - yym3738 := z.DecBinary() - _ = yym3738 + yyv3742 := &x.LastTimestamp + yym3743 := z.DecBinary() + _ = yym3743 if false { - } else if z.HasExtensions() && z.DecExt(yyv3737) { - } else if yym3738 { - z.DecBinaryUnmarshal(yyv3737) - } else if !yym3738 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3737) + } else if z.HasExtensions() && z.DecExt(yyv3742) { + } else if yym3743 { + z.DecBinaryUnmarshal(yyv3742) + } else if !yym3743 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3742) } else { - z.DecFallback(yyv3737, false) + z.DecFallback(yyv3742, false) } } case "count": @@ -46911,9 +46959,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3727) - } // end switch yys3727 - } // end for yyj3727 + z.DecStructFieldNotFound(-1, yys3732) + } // end switch yys3732 + } // end for yyj3732 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46921,16 +46969,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3741 int - var yyb3741 bool - var yyhl3741 bool = l >= 0 - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + var yyj3746 int + var yyb3746 bool + var yyhl3746 bool = l >= 0 + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46940,13 +46988,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46956,13 +47004,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46970,16 +47018,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3744 := &x.ObjectMeta - yyv3744.CodecDecodeSelf(d) + yyv3749 := &x.ObjectMeta + yyv3749.CodecDecodeSelf(d) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46987,16 +47035,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3745 := &x.InvolvedObject - yyv3745.CodecDecodeSelf(d) + yyv3750 := &x.InvolvedObject + yyv3750.CodecDecodeSelf(d) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47006,13 +47054,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47022,13 +47070,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47036,16 +47084,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3748 := &x.Source - yyv3748.CodecDecodeSelf(d) + yyv3753 := &x.Source + yyv3753.CodecDecodeSelf(d) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47053,26 +47101,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3749 := &x.FirstTimestamp - yym3750 := z.DecBinary() - _ = yym3750 + yyv3754 := &x.FirstTimestamp + yym3755 := z.DecBinary() + _ = yym3755 if false { - } else if z.HasExtensions() && z.DecExt(yyv3749) { - } else if yym3750 { - z.DecBinaryUnmarshal(yyv3749) - } else if !yym3750 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3749) + } else if z.HasExtensions() && z.DecExt(yyv3754) { + } else if yym3755 { + z.DecBinaryUnmarshal(yyv3754) + } else if !yym3755 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3754) } else { - z.DecFallback(yyv3749, false) + z.DecFallback(yyv3754, false) } } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47080,26 +47128,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3751 := &x.LastTimestamp - yym3752 := z.DecBinary() - _ = yym3752 + yyv3756 := &x.LastTimestamp + yym3757 := z.DecBinary() + _ = yym3757 if false { - } else if z.HasExtensions() && z.DecExt(yyv3751) { - } else if yym3752 { - z.DecBinaryUnmarshal(yyv3751) - } else if !yym3752 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3751) + } else if z.HasExtensions() && z.DecExt(yyv3756) { + } else if yym3757 { + z.DecBinaryUnmarshal(yyv3756) + } else if !yym3757 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3756) } else { - z.DecFallback(yyv3751, false) + z.DecFallback(yyv3756, false) } } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47109,13 +47157,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47126,17 +47174,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3746++ + if yyhl3746 { + yyb3746 = yyj3746 > l } else { - yyb3741 = r.CheckBreak() + yyb3746 = r.CheckBreak() } - if yyb3741 { + if yyb3746 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3741-1, "") + z.DecStructFieldNotFound(yyj3746-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47148,37 +47196,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3755 := z.EncBinary() - _ = yym3755 + yym3760 := z.EncBinary() + _ = yym3760 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3756 := !z.EncBinary() - yy2arr3756 := z.EncBasicHandle().StructToArray - var yyq3756 [4]bool - _, _, _ = yysep3756, yyq3756, yy2arr3756 - const yyr3756 bool = false - yyq3756[0] = x.Kind != "" - yyq3756[1] = x.APIVersion != "" - yyq3756[2] = true - var yynn3756 int - if yyr3756 || yy2arr3756 { + yysep3761 := !z.EncBinary() + yy2arr3761 := z.EncBasicHandle().StructToArray + var yyq3761 [4]bool + _, _, _ = yysep3761, yyq3761, yy2arr3761 + const yyr3761 bool = false + yyq3761[0] = x.Kind != "" + yyq3761[1] = x.APIVersion != "" + yyq3761[2] = true + var yynn3761 int + if yyr3761 || yy2arr3761 { r.EncodeArrayStart(4) } else { - yynn3756 = 1 - for _, b := range yyq3756 { + yynn3761 = 1 + for _, b := range yyq3761 { if b { - yynn3756++ + yynn3761++ } } - r.EncodeMapStart(yynn3756) - yynn3756 = 0 + r.EncodeMapStart(yynn3761) + yynn3761 = 0 } - if yyr3756 || yy2arr3756 { + if yyr3761 || yy2arr3761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3756[0] { - yym3758 := z.EncBinary() - _ = yym3758 + if yyq3761[0] { + yym3763 := z.EncBinary() + _ = yym3763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47187,23 +47235,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3756[0] { + if yyq3761[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3759 := z.EncBinary() - _ = yym3759 + yym3764 := z.EncBinary() + _ = yym3764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3756 || yy2arr3756 { + if yyr3761 || yy2arr3761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3756[1] { - yym3761 := z.EncBinary() - _ = yym3761 + if yyq3761[1] { + yym3766 := z.EncBinary() + _ = yym3766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47212,54 +47260,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3756[1] { + if yyq3761[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3762 := z.EncBinary() - _ = yym3762 + yym3767 := z.EncBinary() + _ = yym3767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3756 || yy2arr3756 { + if yyr3761 || yy2arr3761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3756[2] { - yy3764 := &x.ListMeta - yym3765 := z.EncBinary() - _ = yym3765 + if yyq3761[2] { + yy3769 := &x.ListMeta + yym3770 := z.EncBinary() + _ = yym3770 if false { - } else if z.HasExtensions() && z.EncExt(yy3764) { + } else if z.HasExtensions() && z.EncExt(yy3769) { } else { - z.EncFallback(yy3764) + z.EncFallback(yy3769) } } else { r.EncodeNil() } } else { - if yyq3756[2] { + if yyq3761[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3766 := &x.ListMeta - yym3767 := z.EncBinary() - _ = yym3767 + yy3771 := &x.ListMeta + yym3772 := z.EncBinary() + _ = yym3772 if false { - } else if z.HasExtensions() && z.EncExt(yy3766) { + } else if z.HasExtensions() && z.EncExt(yy3771) { } else { - z.EncFallback(yy3766) + z.EncFallback(yy3771) } } } - if yyr3756 || yy2arr3756 { + if yyr3761 || yy2arr3761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3769 := z.EncBinary() - _ = yym3769 + yym3774 := z.EncBinary() + _ = yym3774 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -47272,15 +47320,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3770 := z.EncBinary() - _ = yym3770 + yym3775 := z.EncBinary() + _ = yym3775 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3756 || yy2arr3756 { + if yyr3761 || yy2arr3761 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47293,25 +47341,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3771 := z.DecBinary() - _ = yym3771 + yym3776 := z.DecBinary() + _ = yym3776 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3772 := r.ContainerType() - if yyct3772 == codecSelferValueTypeMap1234 { - yyl3772 := r.ReadMapStart() - if yyl3772 == 0 { + yyct3777 := r.ContainerType() + if yyct3777 == codecSelferValueTypeMap1234 { + yyl3777 := r.ReadMapStart() + if yyl3777 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3772, d) + x.codecDecodeSelfFromMap(yyl3777, d) } - } else if yyct3772 == codecSelferValueTypeArray1234 { - yyl3772 := r.ReadArrayStart() - if yyl3772 == 0 { + } else if yyct3777 == codecSelferValueTypeArray1234 { + yyl3777 := r.ReadArrayStart() + if yyl3777 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3772, d) + x.codecDecodeSelfFromArray(yyl3777, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47323,12 +47371,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3773Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3773Slc - var yyhl3773 bool = l >= 0 - for yyj3773 := 0; ; yyj3773++ { - if yyhl3773 { - if yyj3773 >= l { + var yys3778Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3778Slc + var yyhl3778 bool = l >= 0 + for yyj3778 := 0; ; yyj3778++ { + if yyhl3778 { + if yyj3778 >= l { break } } else { @@ -47337,10 +47385,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3773Slc = r.DecodeBytes(yys3773Slc, true, true) - yys3773 := string(yys3773Slc) + yys3778Slc = r.DecodeBytes(yys3778Slc, true, true) + yys3778 := string(yys3778Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3773 { + switch yys3778 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47357,31 +47405,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3776 := &x.ListMeta - yym3777 := z.DecBinary() - _ = yym3777 + yyv3781 := &x.ListMeta + yym3782 := z.DecBinary() + _ = yym3782 if false { - } else if z.HasExtensions() && z.DecExt(yyv3776) { + } else if z.HasExtensions() && z.DecExt(yyv3781) { } else { - z.DecFallback(yyv3776, false) + z.DecFallback(yyv3781, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3778 := &x.Items - yym3779 := z.DecBinary() - _ = yym3779 + yyv3783 := &x.Items + yym3784 := z.DecBinary() + _ = yym3784 if false { } else { - h.decSliceEvent((*[]Event)(yyv3778), d) + h.decSliceEvent((*[]Event)(yyv3783), d) } } default: - z.DecStructFieldNotFound(-1, yys3773) - } // end switch yys3773 - } // end for yyj3773 + z.DecStructFieldNotFound(-1, yys3778) + } // end switch yys3778 + } // end for yyj3778 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47389,16 +47437,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3780 int - var yyb3780 bool - var yyhl3780 bool = l >= 0 - yyj3780++ - if yyhl3780 { - yyb3780 = yyj3780 > l + var yyj3785 int + var yyb3785 bool + var yyhl3785 bool = l >= 0 + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3780 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3780 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47408,13 +47456,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3780++ - if yyhl3780 { - yyb3780 = yyj3780 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3780 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3780 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47424,13 +47472,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3780++ - if yyhl3780 { - yyb3780 = yyj3780 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3780 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3780 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47438,22 +47486,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3783 := &x.ListMeta - yym3784 := z.DecBinary() - _ = yym3784 + yyv3788 := &x.ListMeta + yym3789 := z.DecBinary() + _ = yym3789 if false { - } else if z.HasExtensions() && z.DecExt(yyv3783) { + } else if z.HasExtensions() && z.DecExt(yyv3788) { } else { - z.DecFallback(yyv3783, false) + z.DecFallback(yyv3788, false) } } - yyj3780++ - if yyhl3780 { - yyb3780 = yyj3780 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3780 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3780 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47461,26 +47509,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3785 := &x.Items - yym3786 := z.DecBinary() - _ = yym3786 + yyv3790 := &x.Items + yym3791 := z.DecBinary() + _ = yym3791 if false { } else { - h.decSliceEvent((*[]Event)(yyv3785), d) + h.decSliceEvent((*[]Event)(yyv3790), d) } } for { - yyj3780++ - if yyhl3780 { - yyb3780 = yyj3780 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3780 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3780 { + if yyb3785 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3780-1, "") + z.DecStructFieldNotFound(yyj3785-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47492,37 +47540,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3787 := z.EncBinary() - _ = yym3787 + yym3792 := z.EncBinary() + _ = yym3792 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3788 := !z.EncBinary() - yy2arr3788 := z.EncBasicHandle().StructToArray - var yyq3788 [4]bool - _, _, _ = yysep3788, yyq3788, yy2arr3788 - const yyr3788 bool = false - yyq3788[0] = x.Kind != "" - yyq3788[1] = x.APIVersion != "" - yyq3788[2] = true - var yynn3788 int - if yyr3788 || yy2arr3788 { + yysep3793 := !z.EncBinary() + yy2arr3793 := z.EncBasicHandle().StructToArray + var yyq3793 [4]bool + _, _, _ = yysep3793, yyq3793, yy2arr3793 + const yyr3793 bool = false + yyq3793[0] = x.Kind != "" + yyq3793[1] = x.APIVersion != "" + yyq3793[2] = true + var yynn3793 int + if yyr3793 || yy2arr3793 { r.EncodeArrayStart(4) } else { - yynn3788 = 1 - for _, b := range yyq3788 { + yynn3793 = 1 + for _, b := range yyq3793 { if b { - yynn3788++ + yynn3793++ } } - r.EncodeMapStart(yynn3788) - yynn3788 = 0 + r.EncodeMapStart(yynn3793) + yynn3793 = 0 } - if yyr3788 || yy2arr3788 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3788[0] { - yym3790 := z.EncBinary() - _ = yym3790 + if yyq3793[0] { + yym3795 := z.EncBinary() + _ = yym3795 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47531,23 +47579,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3788[0] { + if yyq3793[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3791 := z.EncBinary() - _ = yym3791 + yym3796 := z.EncBinary() + _ = yym3796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3788 || yy2arr3788 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3788[1] { - yym3793 := z.EncBinary() - _ = yym3793 + if yyq3793[1] { + yym3798 := z.EncBinary() + _ = yym3798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47556,54 +47604,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3788[1] { + if yyq3793[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3794 := z.EncBinary() - _ = yym3794 + yym3799 := z.EncBinary() + _ = yym3799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3788 || yy2arr3788 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3788[2] { - yy3796 := &x.ListMeta - yym3797 := z.EncBinary() - _ = yym3797 + if yyq3793[2] { + yy3801 := &x.ListMeta + yym3802 := z.EncBinary() + _ = yym3802 if false { - } else if z.HasExtensions() && z.EncExt(yy3796) { + } else if z.HasExtensions() && z.EncExt(yy3801) { } else { - z.EncFallback(yy3796) + z.EncFallback(yy3801) } } else { r.EncodeNil() } } else { - if yyq3788[2] { + if yyq3793[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3798 := &x.ListMeta - yym3799 := z.EncBinary() - _ = yym3799 + yy3803 := &x.ListMeta + yym3804 := z.EncBinary() + _ = yym3804 if false { - } else if z.HasExtensions() && z.EncExt(yy3798) { + } else if z.HasExtensions() && z.EncExt(yy3803) { } else { - z.EncFallback(yy3798) + z.EncFallback(yy3803) } } } - if yyr3788 || yy2arr3788 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3801 := z.EncBinary() - _ = yym3801 + yym3806 := z.EncBinary() + _ = yym3806 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) @@ -47616,15 +47664,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3802 := z.EncBinary() - _ = yym3802 + yym3807 := z.EncBinary() + _ = yym3807 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) } } } - if yyr3788 || yy2arr3788 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47637,25 +47685,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3803 := z.DecBinary() - _ = yym3803 + yym3808 := z.DecBinary() + _ = yym3808 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3804 := r.ContainerType() - if yyct3804 == codecSelferValueTypeMap1234 { - yyl3804 := r.ReadMapStart() - if yyl3804 == 0 { + yyct3809 := r.ContainerType() + if yyct3809 == codecSelferValueTypeMap1234 { + yyl3809 := r.ReadMapStart() + if yyl3809 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3804, d) + x.codecDecodeSelfFromMap(yyl3809, d) } - } else if yyct3804 == codecSelferValueTypeArray1234 { - yyl3804 := r.ReadArrayStart() - if yyl3804 == 0 { + } else if yyct3809 == codecSelferValueTypeArray1234 { + yyl3809 := r.ReadArrayStart() + if yyl3809 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3804, d) + x.codecDecodeSelfFromArray(yyl3809, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47667,12 +47715,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3805Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3805Slc - var yyhl3805 bool = l >= 0 - for yyj3805 := 0; ; yyj3805++ { - if yyhl3805 { - if yyj3805 >= l { + var yys3810Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3810Slc + var yyhl3810 bool = l >= 0 + for yyj3810 := 0; ; yyj3810++ { + if yyhl3810 { + if yyj3810 >= l { break } } else { @@ -47681,10 +47729,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3805Slc = r.DecodeBytes(yys3805Slc, true, true) - yys3805 := string(yys3805Slc) + yys3810Slc = r.DecodeBytes(yys3810Slc, true, true) + yys3810 := string(yys3810Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3805 { + switch yys3810 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47701,31 +47749,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3808 := &x.ListMeta - yym3809 := z.DecBinary() - _ = yym3809 + yyv3813 := &x.ListMeta + yym3814 := z.DecBinary() + _ = yym3814 if false { - } else if z.HasExtensions() && z.DecExt(yyv3808) { + } else if z.HasExtensions() && z.DecExt(yyv3813) { } else { - z.DecFallback(yyv3808, false) + z.DecFallback(yyv3813, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3810 := &x.Items - yym3811 := z.DecBinary() - _ = yym3811 + yyv3815 := &x.Items + yym3816 := z.DecBinary() + _ = yym3816 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3810), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3815), d) } } default: - z.DecStructFieldNotFound(-1, yys3805) - } // end switch yys3805 - } // end for yyj3805 + z.DecStructFieldNotFound(-1, yys3810) + } // end switch yys3810 + } // end for yyj3810 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47733,16 +47781,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3812 int - var yyb3812 bool - var yyhl3812 bool = l >= 0 - yyj3812++ - if yyhl3812 { - yyb3812 = yyj3812 > l + var yyj3817 int + var yyb3817 bool + var yyhl3817 bool = l >= 0 + yyj3817++ + if yyhl3817 { + yyb3817 = yyj3817 > l } else { - yyb3812 = r.CheckBreak() + yyb3817 = r.CheckBreak() } - if yyb3812 { + if yyb3817 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47752,13 +47800,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3812++ - if yyhl3812 { - yyb3812 = yyj3812 > l + yyj3817++ + if yyhl3817 { + yyb3817 = yyj3817 > l } else { - yyb3812 = r.CheckBreak() + yyb3817 = r.CheckBreak() } - if yyb3812 { + if yyb3817 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47768,13 +47816,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3812++ - if yyhl3812 { - yyb3812 = yyj3812 > l + yyj3817++ + if yyhl3817 { + yyb3817 = yyj3817 > l } else { - yyb3812 = r.CheckBreak() + yyb3817 = r.CheckBreak() } - if yyb3812 { + if yyb3817 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47782,22 +47830,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3815 := &x.ListMeta - yym3816 := z.DecBinary() - _ = yym3816 + yyv3820 := &x.ListMeta + yym3821 := z.DecBinary() + _ = yym3821 if false { - } else if z.HasExtensions() && z.DecExt(yyv3815) { + } else if z.HasExtensions() && z.DecExt(yyv3820) { } else { - z.DecFallback(yyv3815, false) + z.DecFallback(yyv3820, false) } } - yyj3812++ - if yyhl3812 { - yyb3812 = yyj3812 > l + yyj3817++ + if yyhl3817 { + yyb3817 = yyj3817 > l } else { - yyb3812 = r.CheckBreak() + yyb3817 = r.CheckBreak() } - if yyb3812 { + if yyb3817 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47805,26 +47853,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3817 := &x.Items - yym3818 := z.DecBinary() - _ = yym3818 + yyv3822 := &x.Items + yym3823 := z.DecBinary() + _ = yym3823 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3817), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3822), d) } } for { - yyj3812++ - if yyhl3812 { - yyb3812 = yyj3812 > l + yyj3817++ + if yyhl3817 { + yyb3817 = yyj3817 > l } else { - yyb3812 = r.CheckBreak() + yyb3817 = r.CheckBreak() } - if yyb3812 { + if yyb3817 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3812-1, "") + z.DecStructFieldNotFound(yyj3817-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47833,8 +47881,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3819 := z.EncBinary() - _ = yym3819 + yym3824 := z.EncBinary() + _ = yym3824 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -47846,8 +47894,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3820 := z.DecBinary() - _ = yym3820 + yym3825 := z.DecBinary() + _ = yym3825 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -47862,53 +47910,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3821 := z.EncBinary() - _ = yym3821 + yym3826 := z.EncBinary() + _ = yym3826 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3822 := !z.EncBinary() - yy2arr3822 := z.EncBasicHandle().StructToArray - var yyq3822 [6]bool - _, _, _ = yysep3822, yyq3822, yy2arr3822 - const yyr3822 bool = false - yyq3822[0] = x.Type != "" - yyq3822[1] = len(x.Max) != 0 - yyq3822[2] = len(x.Min) != 0 - yyq3822[3] = len(x.Default) != 0 - yyq3822[4] = len(x.DefaultRequest) != 0 - yyq3822[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3822 int - if yyr3822 || yy2arr3822 { + yysep3827 := !z.EncBinary() + yy2arr3827 := z.EncBasicHandle().StructToArray + var yyq3827 [6]bool + _, _, _ = yysep3827, yyq3827, yy2arr3827 + const yyr3827 bool = false + yyq3827[0] = x.Type != "" + yyq3827[1] = len(x.Max) != 0 + yyq3827[2] = len(x.Min) != 0 + yyq3827[3] = len(x.Default) != 0 + yyq3827[4] = len(x.DefaultRequest) != 0 + yyq3827[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3827 int + if yyr3827 || yy2arr3827 { r.EncodeArrayStart(6) } else { - yynn3822 = 0 - for _, b := range yyq3822 { + yynn3827 = 0 + for _, b := range yyq3827 { if b { - yynn3822++ + yynn3827++ } } - r.EncodeMapStart(yynn3822) - yynn3822 = 0 + r.EncodeMapStart(yynn3827) + yynn3827 = 0 } - if yyr3822 || yy2arr3822 { + if yyr3827 || yy2arr3827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[0] { + if yyq3827[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3822[0] { + if yyq3827[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3822 || yy2arr3822 { + if yyr3827 || yy2arr3827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[1] { + if yyq3827[1] { if x.Max == nil { r.EncodeNil() } else { @@ -47918,7 +47966,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3822[1] { + if yyq3827[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47929,9 +47977,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3822 || yy2arr3822 { + if yyr3827 || yy2arr3827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[2] { + if yyq3827[2] { if x.Min == nil { r.EncodeNil() } else { @@ -47941,7 +47989,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3822[2] { + if yyq3827[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47952,9 +48000,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3822 || yy2arr3822 { + if yyr3827 || yy2arr3827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[3] { + if yyq3827[3] { if x.Default == nil { r.EncodeNil() } else { @@ -47964,7 +48012,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3822[3] { + if yyq3827[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47975,9 +48023,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3822 || yy2arr3822 { + if yyr3827 || yy2arr3827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[4] { + if yyq3827[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -47987,7 +48035,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3822[4] { + if yyq3827[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47998,9 +48046,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3822 || yy2arr3822 { + if yyr3827 || yy2arr3827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[5] { + if yyq3827[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -48010,7 +48058,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3822[5] { + if yyq3827[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48021,7 +48069,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3822 || yy2arr3822 { + if yyr3827 || yy2arr3827 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48034,25 +48082,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3829 := z.DecBinary() - _ = yym3829 + yym3834 := z.DecBinary() + _ = yym3834 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3830 := r.ContainerType() - if yyct3830 == codecSelferValueTypeMap1234 { - yyl3830 := r.ReadMapStart() - if yyl3830 == 0 { + yyct3835 := r.ContainerType() + if yyct3835 == codecSelferValueTypeMap1234 { + yyl3835 := r.ReadMapStart() + if yyl3835 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3830, d) + x.codecDecodeSelfFromMap(yyl3835, d) } - } else if yyct3830 == codecSelferValueTypeArray1234 { - yyl3830 := r.ReadArrayStart() - if yyl3830 == 0 { + } else if yyct3835 == codecSelferValueTypeArray1234 { + yyl3835 := r.ReadArrayStart() + if yyl3835 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3830, d) + x.codecDecodeSelfFromArray(yyl3835, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48064,12 +48112,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3831Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3831Slc - var yyhl3831 bool = l >= 0 - for yyj3831 := 0; ; yyj3831++ { - if yyhl3831 { - if yyj3831 >= l { + var yys3836Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3836Slc + var yyhl3836 bool = l >= 0 + for yyj3836 := 0; ; yyj3836++ { + if yyhl3836 { + if yyj3836 >= l { break } } else { @@ -48078,10 +48126,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3831Slc = r.DecodeBytes(yys3831Slc, true, true) - yys3831 := string(yys3831Slc) + yys3836Slc = r.DecodeBytes(yys3836Slc, true, true) + yys3836 := string(yys3836Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3831 { + switch yys3836 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -48092,41 +48140,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3833 := &x.Max - yyv3833.CodecDecodeSelf(d) + yyv3838 := &x.Max + yyv3838.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3834 := &x.Min - yyv3834.CodecDecodeSelf(d) + yyv3839 := &x.Min + yyv3839.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3835 := &x.Default - yyv3835.CodecDecodeSelf(d) + yyv3840 := &x.Default + yyv3840.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3836 := &x.DefaultRequest - yyv3836.CodecDecodeSelf(d) + yyv3841 := &x.DefaultRequest + yyv3841.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3837 := &x.MaxLimitRequestRatio - yyv3837.CodecDecodeSelf(d) + yyv3842 := &x.MaxLimitRequestRatio + yyv3842.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3831) - } // end switch yys3831 - } // end for yyj3831 + z.DecStructFieldNotFound(-1, yys3836) + } // end switch yys3836 + } // end for yyj3836 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48134,16 +48182,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3838 int - var yyb3838 bool - var yyhl3838 bool = l >= 0 - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l + var yyj3843 int + var yyb3843 bool + var yyhl3843 bool = l >= 0 + yyj3843++ + if yyhl3843 { + yyb3843 = yyj3843 > l } else { - yyb3838 = r.CheckBreak() + yyb3843 = r.CheckBreak() } - if yyb3838 { + if yyb3843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48153,13 +48201,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l + yyj3843++ + if yyhl3843 { + yyb3843 = yyj3843 > l } else { - yyb3838 = r.CheckBreak() + yyb3843 = r.CheckBreak() } - if yyb3838 { + if yyb3843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48167,16 +48215,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3840 := &x.Max - yyv3840.CodecDecodeSelf(d) + yyv3845 := &x.Max + yyv3845.CodecDecodeSelf(d) } - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l + yyj3843++ + if yyhl3843 { + yyb3843 = yyj3843 > l } else { - yyb3838 = r.CheckBreak() + yyb3843 = r.CheckBreak() } - if yyb3838 { + if yyb3843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48184,16 +48232,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3841 := &x.Min - yyv3841.CodecDecodeSelf(d) + yyv3846 := &x.Min + yyv3846.CodecDecodeSelf(d) } - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l + yyj3843++ + if yyhl3843 { + yyb3843 = yyj3843 > l } else { - yyb3838 = r.CheckBreak() + yyb3843 = r.CheckBreak() } - if yyb3838 { + if yyb3843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48201,16 +48249,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3842 := &x.Default - yyv3842.CodecDecodeSelf(d) + yyv3847 := &x.Default + yyv3847.CodecDecodeSelf(d) } - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l + yyj3843++ + if yyhl3843 { + yyb3843 = yyj3843 > l } else { - yyb3838 = r.CheckBreak() + yyb3843 = r.CheckBreak() } - if yyb3838 { + if yyb3843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48218,16 +48266,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3843 := &x.DefaultRequest - yyv3843.CodecDecodeSelf(d) + yyv3848 := &x.DefaultRequest + yyv3848.CodecDecodeSelf(d) } - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l + yyj3843++ + if yyhl3843 { + yyb3843 = yyj3843 > l } else { - yyb3838 = r.CheckBreak() + yyb3843 = r.CheckBreak() } - if yyb3838 { + if yyb3843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48235,21 +48283,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3844 := &x.MaxLimitRequestRatio - yyv3844.CodecDecodeSelf(d) + yyv3849 := &x.MaxLimitRequestRatio + yyv3849.CodecDecodeSelf(d) } for { - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l + yyj3843++ + if yyhl3843 { + yyb3843 = yyj3843 > l } else { - yyb3838 = r.CheckBreak() + yyb3843 = r.CheckBreak() } - if yyb3838 { + if yyb3843 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3838-1, "") + z.DecStructFieldNotFound(yyj3843-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48261,36 +48309,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3845 := z.EncBinary() - _ = yym3845 + yym3850 := z.EncBinary() + _ = yym3850 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3846 := !z.EncBinary() - yy2arr3846 := z.EncBasicHandle().StructToArray - var yyq3846 [1]bool - _, _, _ = yysep3846, yyq3846, yy2arr3846 - const yyr3846 bool = false - var yynn3846 int - if yyr3846 || yy2arr3846 { + yysep3851 := !z.EncBinary() + yy2arr3851 := z.EncBasicHandle().StructToArray + var yyq3851 [1]bool + _, _, _ = yysep3851, yyq3851, yy2arr3851 + const yyr3851 bool = false + var yynn3851 int + if yyr3851 || yy2arr3851 { r.EncodeArrayStart(1) } else { - yynn3846 = 1 - for _, b := range yyq3846 { + yynn3851 = 1 + for _, b := range yyq3851 { if b { - yynn3846++ + yynn3851++ } } - r.EncodeMapStart(yynn3846) - yynn3846 = 0 + r.EncodeMapStart(yynn3851) + yynn3851 = 0 } - if yyr3846 || yy2arr3846 { + if yyr3851 || yy2arr3851 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3848 := z.EncBinary() - _ = yym3848 + yym3853 := z.EncBinary() + _ = yym3853 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -48303,15 +48351,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3849 := z.EncBinary() - _ = yym3849 + yym3854 := z.EncBinary() + _ = yym3854 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3846 || yy2arr3846 { + if yyr3851 || yy2arr3851 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48324,25 +48372,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3850 := z.DecBinary() - _ = yym3850 + yym3855 := z.DecBinary() + _ = yym3855 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3851 := r.ContainerType() - if yyct3851 == codecSelferValueTypeMap1234 { - yyl3851 := r.ReadMapStart() - if yyl3851 == 0 { + yyct3856 := r.ContainerType() + if yyct3856 == codecSelferValueTypeMap1234 { + yyl3856 := r.ReadMapStart() + if yyl3856 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3851, d) + x.codecDecodeSelfFromMap(yyl3856, d) } - } else if yyct3851 == codecSelferValueTypeArray1234 { - yyl3851 := r.ReadArrayStart() - if yyl3851 == 0 { + } else if yyct3856 == codecSelferValueTypeArray1234 { + yyl3856 := r.ReadArrayStart() + if yyl3856 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3851, d) + x.codecDecodeSelfFromArray(yyl3856, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48354,12 +48402,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3852Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3852Slc - var yyhl3852 bool = l >= 0 - for yyj3852 := 0; ; yyj3852++ { - if yyhl3852 { - if yyj3852 >= l { + var yys3857Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3857Slc + var yyhl3857 bool = l >= 0 + for yyj3857 := 0; ; yyj3857++ { + if yyhl3857 { + if yyj3857 >= l { break } } else { @@ -48368,26 +48416,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3852Slc = r.DecodeBytes(yys3852Slc, true, true) - yys3852 := string(yys3852Slc) + yys3857Slc = r.DecodeBytes(yys3857Slc, true, true) + yys3857 := string(yys3857Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3852 { + switch yys3857 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3853 := &x.Limits - yym3854 := z.DecBinary() - _ = yym3854 + yyv3858 := &x.Limits + yym3859 := z.DecBinary() + _ = yym3859 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3853), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3858), d) } } default: - z.DecStructFieldNotFound(-1, yys3852) - } // end switch yys3852 - } // end for yyj3852 + z.DecStructFieldNotFound(-1, yys3857) + } // end switch yys3857 + } // end for yyj3857 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48395,16 +48443,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3855 int - var yyb3855 bool - var yyhl3855 bool = l >= 0 - yyj3855++ - if yyhl3855 { - yyb3855 = yyj3855 > l + var yyj3860 int + var yyb3860 bool + var yyhl3860 bool = l >= 0 + yyj3860++ + if yyhl3860 { + yyb3860 = yyj3860 > l } else { - yyb3855 = r.CheckBreak() + yyb3860 = r.CheckBreak() } - if yyb3855 { + if yyb3860 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48412,26 +48460,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3856 := &x.Limits - yym3857 := z.DecBinary() - _ = yym3857 + yyv3861 := &x.Limits + yym3862 := z.DecBinary() + _ = yym3862 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3856), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3861), d) } } for { - yyj3855++ - if yyhl3855 { - yyb3855 = yyj3855 > l + yyj3860++ + if yyhl3860 { + yyb3860 = yyj3860 > l } else { - yyb3855 = r.CheckBreak() + yyb3860 = r.CheckBreak() } - if yyb3855 { + if yyb3860 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3855-1, "") + z.DecStructFieldNotFound(yyj3860-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48443,38 +48491,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3858 := z.EncBinary() - _ = yym3858 + yym3863 := z.EncBinary() + _ = yym3863 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3859 := !z.EncBinary() - yy2arr3859 := z.EncBasicHandle().StructToArray - var yyq3859 [4]bool - _, _, _ = yysep3859, yyq3859, yy2arr3859 - const yyr3859 bool = false - yyq3859[0] = x.Kind != "" - yyq3859[1] = x.APIVersion != "" - yyq3859[2] = true - yyq3859[3] = true - var yynn3859 int - if yyr3859 || yy2arr3859 { + yysep3864 := !z.EncBinary() + yy2arr3864 := z.EncBasicHandle().StructToArray + var yyq3864 [4]bool + _, _, _ = yysep3864, yyq3864, yy2arr3864 + const yyr3864 bool = false + yyq3864[0] = x.Kind != "" + yyq3864[1] = x.APIVersion != "" + yyq3864[2] = true + yyq3864[3] = true + var yynn3864 int + if yyr3864 || yy2arr3864 { r.EncodeArrayStart(4) } else { - yynn3859 = 0 - for _, b := range yyq3859 { + yynn3864 = 0 + for _, b := range yyq3864 { if b { - yynn3859++ + yynn3864++ } } - r.EncodeMapStart(yynn3859) - yynn3859 = 0 + r.EncodeMapStart(yynn3864) + yynn3864 = 0 } - if yyr3859 || yy2arr3859 { + if yyr3864 || yy2arr3864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[0] { - yym3861 := z.EncBinary() - _ = yym3861 + if yyq3864[0] { + yym3866 := z.EncBinary() + _ = yym3866 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48483,23 +48531,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3859[0] { + if yyq3864[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3862 := z.EncBinary() - _ = yym3862 + yym3867 := z.EncBinary() + _ = yym3867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3859 || yy2arr3859 { + if yyr3864 || yy2arr3864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[1] { - yym3864 := z.EncBinary() - _ = yym3864 + if yyq3864[1] { + yym3869 := z.EncBinary() + _ = yym3869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48508,53 +48556,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3859[1] { + if yyq3864[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3865 := z.EncBinary() - _ = yym3865 + yym3870 := z.EncBinary() + _ = yym3870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3859 || yy2arr3859 { + if yyr3864 || yy2arr3864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[2] { - yy3867 := &x.ObjectMeta - yy3867.CodecEncodeSelf(e) + if yyq3864[2] { + yy3872 := &x.ObjectMeta + yy3872.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3859[2] { + if yyq3864[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3868 := &x.ObjectMeta - yy3868.CodecEncodeSelf(e) + yy3873 := &x.ObjectMeta + yy3873.CodecEncodeSelf(e) } } - if yyr3859 || yy2arr3859 { + if yyr3864 || yy2arr3864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[3] { - yy3870 := &x.Spec - yy3870.CodecEncodeSelf(e) + if yyq3864[3] { + yy3875 := &x.Spec + yy3875.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3859[3] { + if yyq3864[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3871 := &x.Spec - yy3871.CodecEncodeSelf(e) + yy3876 := &x.Spec + yy3876.CodecEncodeSelf(e) } } - if yyr3859 || yy2arr3859 { + if yyr3864 || yy2arr3864 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48567,25 +48615,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3872 := z.DecBinary() - _ = yym3872 + yym3877 := z.DecBinary() + _ = yym3877 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3873 := r.ContainerType() - if yyct3873 == codecSelferValueTypeMap1234 { - yyl3873 := r.ReadMapStart() - if yyl3873 == 0 { + yyct3878 := r.ContainerType() + if yyct3878 == codecSelferValueTypeMap1234 { + yyl3878 := r.ReadMapStart() + if yyl3878 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3873, d) + x.codecDecodeSelfFromMap(yyl3878, d) } - } else if yyct3873 == codecSelferValueTypeArray1234 { - yyl3873 := r.ReadArrayStart() - if yyl3873 == 0 { + } else if yyct3878 == codecSelferValueTypeArray1234 { + yyl3878 := r.ReadArrayStart() + if yyl3878 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3873, d) + x.codecDecodeSelfFromArray(yyl3878, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48597,12 +48645,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3874Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3874Slc - var yyhl3874 bool = l >= 0 - for yyj3874 := 0; ; yyj3874++ { - if yyhl3874 { - if yyj3874 >= l { + var yys3879Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3879Slc + var yyhl3879 bool = l >= 0 + for yyj3879 := 0; ; yyj3879++ { + if yyhl3879 { + if yyj3879 >= l { break } } else { @@ -48611,10 +48659,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3874Slc = r.DecodeBytes(yys3874Slc, true, true) - yys3874 := string(yys3874Slc) + yys3879Slc = r.DecodeBytes(yys3879Slc, true, true) + yys3879 := string(yys3879Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3874 { + switch yys3879 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48631,20 +48679,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3877 := &x.ObjectMeta - yyv3877.CodecDecodeSelf(d) + yyv3882 := &x.ObjectMeta + yyv3882.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3878 := &x.Spec - yyv3878.CodecDecodeSelf(d) + yyv3883 := &x.Spec + yyv3883.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3874) - } // end switch yys3874 - } // end for yyj3874 + z.DecStructFieldNotFound(-1, yys3879) + } // end switch yys3879 + } // end for yyj3879 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48652,16 +48700,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3879 int - var yyb3879 bool - var yyhl3879 bool = l >= 0 - yyj3879++ - if yyhl3879 { - yyb3879 = yyj3879 > l + var yyj3884 int + var yyb3884 bool + var yyhl3884 bool = l >= 0 + yyj3884++ + if yyhl3884 { + yyb3884 = yyj3884 > l } else { - yyb3879 = r.CheckBreak() + yyb3884 = r.CheckBreak() } - if yyb3879 { + if yyb3884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48671,13 +48719,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3879++ - if yyhl3879 { - yyb3879 = yyj3879 > l + yyj3884++ + if yyhl3884 { + yyb3884 = yyj3884 > l } else { - yyb3879 = r.CheckBreak() + yyb3884 = r.CheckBreak() } - if yyb3879 { + if yyb3884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48687,13 +48735,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3879++ - if yyhl3879 { - yyb3879 = yyj3879 > l + yyj3884++ + if yyhl3884 { + yyb3884 = yyj3884 > l } else { - yyb3879 = r.CheckBreak() + yyb3884 = r.CheckBreak() } - if yyb3879 { + if yyb3884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48701,16 +48749,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3882 := &x.ObjectMeta - yyv3882.CodecDecodeSelf(d) + yyv3887 := &x.ObjectMeta + yyv3887.CodecDecodeSelf(d) } - yyj3879++ - if yyhl3879 { - yyb3879 = yyj3879 > l + yyj3884++ + if yyhl3884 { + yyb3884 = yyj3884 > l } else { - yyb3879 = r.CheckBreak() + yyb3884 = r.CheckBreak() } - if yyb3879 { + if yyb3884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48718,21 +48766,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3883 := &x.Spec - yyv3883.CodecDecodeSelf(d) + yyv3888 := &x.Spec + yyv3888.CodecDecodeSelf(d) } for { - yyj3879++ - if yyhl3879 { - yyb3879 = yyj3879 > l + yyj3884++ + if yyhl3884 { + yyb3884 = yyj3884 > l } else { - yyb3879 = r.CheckBreak() + yyb3884 = r.CheckBreak() } - if yyb3879 { + if yyb3884 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3879-1, "") + z.DecStructFieldNotFound(yyj3884-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48744,37 +48792,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3884 := z.EncBinary() - _ = yym3884 + yym3889 := z.EncBinary() + _ = yym3889 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3885 := !z.EncBinary() - yy2arr3885 := z.EncBasicHandle().StructToArray - var yyq3885 [4]bool - _, _, _ = yysep3885, yyq3885, yy2arr3885 - const yyr3885 bool = false - yyq3885[0] = x.Kind != "" - yyq3885[1] = x.APIVersion != "" - yyq3885[2] = true - var yynn3885 int - if yyr3885 || yy2arr3885 { + yysep3890 := !z.EncBinary() + yy2arr3890 := z.EncBasicHandle().StructToArray + var yyq3890 [4]bool + _, _, _ = yysep3890, yyq3890, yy2arr3890 + const yyr3890 bool = false + yyq3890[0] = x.Kind != "" + yyq3890[1] = x.APIVersion != "" + yyq3890[2] = true + var yynn3890 int + if yyr3890 || yy2arr3890 { r.EncodeArrayStart(4) } else { - yynn3885 = 1 - for _, b := range yyq3885 { + yynn3890 = 1 + for _, b := range yyq3890 { if b { - yynn3885++ + yynn3890++ } } - r.EncodeMapStart(yynn3885) - yynn3885 = 0 + r.EncodeMapStart(yynn3890) + yynn3890 = 0 } - if yyr3885 || yy2arr3885 { + if yyr3890 || yy2arr3890 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3885[0] { - yym3887 := z.EncBinary() - _ = yym3887 + if yyq3890[0] { + yym3892 := z.EncBinary() + _ = yym3892 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48783,23 +48831,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3885[0] { + if yyq3890[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3888 := z.EncBinary() - _ = yym3888 + yym3893 := z.EncBinary() + _ = yym3893 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3885 || yy2arr3885 { + if yyr3890 || yy2arr3890 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3885[1] { - yym3890 := z.EncBinary() - _ = yym3890 + if yyq3890[1] { + yym3895 := z.EncBinary() + _ = yym3895 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48808,54 +48856,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3885[1] { + if yyq3890[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3891 := z.EncBinary() - _ = yym3891 + yym3896 := z.EncBinary() + _ = yym3896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3885 || yy2arr3885 { + if yyr3890 || yy2arr3890 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3885[2] { - yy3893 := &x.ListMeta - yym3894 := z.EncBinary() - _ = yym3894 + if yyq3890[2] { + yy3898 := &x.ListMeta + yym3899 := z.EncBinary() + _ = yym3899 if false { - } else if z.HasExtensions() && z.EncExt(yy3893) { + } else if z.HasExtensions() && z.EncExt(yy3898) { } else { - z.EncFallback(yy3893) + z.EncFallback(yy3898) } } else { r.EncodeNil() } } else { - if yyq3885[2] { + if yyq3890[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3895 := &x.ListMeta - yym3896 := z.EncBinary() - _ = yym3896 + yy3900 := &x.ListMeta + yym3901 := z.EncBinary() + _ = yym3901 if false { - } else if z.HasExtensions() && z.EncExt(yy3895) { + } else if z.HasExtensions() && z.EncExt(yy3900) { } else { - z.EncFallback(yy3895) + z.EncFallback(yy3900) } } } - if yyr3885 || yy2arr3885 { + if yyr3890 || yy2arr3890 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3898 := z.EncBinary() - _ = yym3898 + yym3903 := z.EncBinary() + _ = yym3903 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -48868,15 +48916,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3899 := z.EncBinary() - _ = yym3899 + yym3904 := z.EncBinary() + _ = yym3904 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3885 || yy2arr3885 { + if yyr3890 || yy2arr3890 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48889,25 +48937,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3900 := z.DecBinary() - _ = yym3900 + yym3905 := z.DecBinary() + _ = yym3905 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3901 := r.ContainerType() - if yyct3901 == codecSelferValueTypeMap1234 { - yyl3901 := r.ReadMapStart() - if yyl3901 == 0 { + yyct3906 := r.ContainerType() + if yyct3906 == codecSelferValueTypeMap1234 { + yyl3906 := r.ReadMapStart() + if yyl3906 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3901, d) + x.codecDecodeSelfFromMap(yyl3906, d) } - } else if yyct3901 == codecSelferValueTypeArray1234 { - yyl3901 := r.ReadArrayStart() - if yyl3901 == 0 { + } else if yyct3906 == codecSelferValueTypeArray1234 { + yyl3906 := r.ReadArrayStart() + if yyl3906 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3901, d) + x.codecDecodeSelfFromArray(yyl3906, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48919,12 +48967,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3902Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3902Slc - var yyhl3902 bool = l >= 0 - for yyj3902 := 0; ; yyj3902++ { - if yyhl3902 { - if yyj3902 >= l { + var yys3907Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3907Slc + var yyhl3907 bool = l >= 0 + for yyj3907 := 0; ; yyj3907++ { + if yyhl3907 { + if yyj3907 >= l { break } } else { @@ -48933,10 +48981,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3902Slc = r.DecodeBytes(yys3902Slc, true, true) - yys3902 := string(yys3902Slc) + yys3907Slc = r.DecodeBytes(yys3907Slc, true, true) + yys3907 := string(yys3907Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3902 { + switch yys3907 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48953,31 +49001,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3905 := &x.ListMeta - yym3906 := z.DecBinary() - _ = yym3906 + yyv3910 := &x.ListMeta + yym3911 := z.DecBinary() + _ = yym3911 if false { - } else if z.HasExtensions() && z.DecExt(yyv3905) { + } else if z.HasExtensions() && z.DecExt(yyv3910) { } else { - z.DecFallback(yyv3905, false) + z.DecFallback(yyv3910, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3907 := &x.Items - yym3908 := z.DecBinary() - _ = yym3908 + yyv3912 := &x.Items + yym3913 := z.DecBinary() + _ = yym3913 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3907), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3912), d) } } default: - z.DecStructFieldNotFound(-1, yys3902) - } // end switch yys3902 - } // end for yyj3902 + z.DecStructFieldNotFound(-1, yys3907) + } // end switch yys3907 + } // end for yyj3907 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48985,16 +49033,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3909 int - var yyb3909 bool - var yyhl3909 bool = l >= 0 - yyj3909++ - if yyhl3909 { - yyb3909 = yyj3909 > l + var yyj3914 int + var yyb3914 bool + var yyhl3914 bool = l >= 0 + yyj3914++ + if yyhl3914 { + yyb3914 = yyj3914 > l } else { - yyb3909 = r.CheckBreak() + yyb3914 = r.CheckBreak() } - if yyb3909 { + if yyb3914 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49004,13 +49052,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3909++ - if yyhl3909 { - yyb3909 = yyj3909 > l + yyj3914++ + if yyhl3914 { + yyb3914 = yyj3914 > l } else { - yyb3909 = r.CheckBreak() + yyb3914 = r.CheckBreak() } - if yyb3909 { + if yyb3914 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49020,13 +49068,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3909++ - if yyhl3909 { - yyb3909 = yyj3909 > l + yyj3914++ + if yyhl3914 { + yyb3914 = yyj3914 > l } else { - yyb3909 = r.CheckBreak() + yyb3914 = r.CheckBreak() } - if yyb3909 { + if yyb3914 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49034,22 +49082,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3912 := &x.ListMeta - yym3913 := z.DecBinary() - _ = yym3913 + yyv3917 := &x.ListMeta + yym3918 := z.DecBinary() + _ = yym3918 if false { - } else if z.HasExtensions() && z.DecExt(yyv3912) { + } else if z.HasExtensions() && z.DecExt(yyv3917) { } else { - z.DecFallback(yyv3912, false) + z.DecFallback(yyv3917, false) } } - yyj3909++ - if yyhl3909 { - yyb3909 = yyj3909 > l + yyj3914++ + if yyhl3914 { + yyb3914 = yyj3914 > l } else { - yyb3909 = r.CheckBreak() + yyb3914 = r.CheckBreak() } - if yyb3909 { + if yyb3914 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49057,26 +49105,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3914 := &x.Items - yym3915 := z.DecBinary() - _ = yym3915 + yyv3919 := &x.Items + yym3920 := z.DecBinary() + _ = yym3920 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3914), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3919), d) } } for { - yyj3909++ - if yyhl3909 { - yyb3909 = yyj3909 > l + yyj3914++ + if yyhl3914 { + yyb3914 = yyj3914 > l } else { - yyb3909 = r.CheckBreak() + yyb3914 = r.CheckBreak() } - if yyb3909 { + if yyb3914 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3909-1, "") + z.DecStructFieldNotFound(yyj3914-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49085,8 +49133,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3916 := z.EncBinary() - _ = yym3916 + yym3921 := z.EncBinary() + _ = yym3921 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49098,8 +49146,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3917 := z.DecBinary() - _ = yym3917 + yym3922 := z.DecBinary() + _ = yym3922 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49114,34 +49162,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3918 := z.EncBinary() - _ = yym3918 + yym3923 := z.EncBinary() + _ = yym3923 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3919 := !z.EncBinary() - yy2arr3919 := z.EncBasicHandle().StructToArray - var yyq3919 [2]bool - _, _, _ = yysep3919, yyq3919, yy2arr3919 - const yyr3919 bool = false - yyq3919[0] = len(x.Hard) != 0 - yyq3919[1] = len(x.Scopes) != 0 - var yynn3919 int - if yyr3919 || yy2arr3919 { + yysep3924 := !z.EncBinary() + yy2arr3924 := z.EncBasicHandle().StructToArray + var yyq3924 [2]bool + _, _, _ = yysep3924, yyq3924, yy2arr3924 + const yyr3924 bool = false + yyq3924[0] = len(x.Hard) != 0 + yyq3924[1] = len(x.Scopes) != 0 + var yynn3924 int + if yyr3924 || yy2arr3924 { r.EncodeArrayStart(2) } else { - yynn3919 = 0 - for _, b := range yyq3919 { + yynn3924 = 0 + for _, b := range yyq3924 { if b { - yynn3919++ + yynn3924++ } } - r.EncodeMapStart(yynn3919) - yynn3919 = 0 + r.EncodeMapStart(yynn3924) + yynn3924 = 0 } - if yyr3919 || yy2arr3919 { + if yyr3924 || yy2arr3924 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3919[0] { + if yyq3924[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49151,7 +49199,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3919[0] { + if yyq3924[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49162,14 +49210,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3919 || yy2arr3919 { + if yyr3924 || yy2arr3924 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3919[1] { + if yyq3924[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym3922 := z.EncBinary() - _ = yym3922 + yym3927 := z.EncBinary() + _ = yym3927 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49179,15 +49227,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3919[1] { + if yyq3924[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym3923 := z.EncBinary() - _ = yym3923 + yym3928 := z.EncBinary() + _ = yym3928 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49195,7 +49243,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3919 || yy2arr3919 { + if yyr3924 || yy2arr3924 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49208,25 +49256,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3924 := z.DecBinary() - _ = yym3924 + yym3929 := z.DecBinary() + _ = yym3929 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3925 := r.ContainerType() - if yyct3925 == codecSelferValueTypeMap1234 { - yyl3925 := r.ReadMapStart() - if yyl3925 == 0 { + yyct3930 := r.ContainerType() + if yyct3930 == codecSelferValueTypeMap1234 { + yyl3930 := r.ReadMapStart() + if yyl3930 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3925, d) + x.codecDecodeSelfFromMap(yyl3930, d) } - } else if yyct3925 == codecSelferValueTypeArray1234 { - yyl3925 := r.ReadArrayStart() - if yyl3925 == 0 { + } else if yyct3930 == codecSelferValueTypeArray1234 { + yyl3930 := r.ReadArrayStart() + if yyl3930 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3925, d) + x.codecDecodeSelfFromArray(yyl3930, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49238,12 +49286,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3926Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3926Slc - var yyhl3926 bool = l >= 0 - for yyj3926 := 0; ; yyj3926++ { - if yyhl3926 { - if yyj3926 >= l { + var yys3931Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3931Slc + var yyhl3931 bool = l >= 0 + for yyj3931 := 0; ; yyj3931++ { + if yyhl3931 { + if yyj3931 >= l { break } } else { @@ -49252,33 +49300,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3926Slc = r.DecodeBytes(yys3926Slc, true, true) - yys3926 := string(yys3926Slc) + yys3931Slc = r.DecodeBytes(yys3931Slc, true, true) + yys3931 := string(yys3931Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3926 { + switch yys3931 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3927 := &x.Hard - yyv3927.CodecDecodeSelf(d) + yyv3932 := &x.Hard + yyv3932.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3928 := &x.Scopes - yym3929 := z.DecBinary() - _ = yym3929 + yyv3933 := &x.Scopes + yym3934 := z.DecBinary() + _ = yym3934 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3928), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3933), d) } } default: - z.DecStructFieldNotFound(-1, yys3926) - } // end switch yys3926 - } // end for yyj3926 + z.DecStructFieldNotFound(-1, yys3931) + } // end switch yys3931 + } // end for yyj3931 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49286,16 +49334,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3930 int - var yyb3930 bool - var yyhl3930 bool = l >= 0 - yyj3930++ - if yyhl3930 { - yyb3930 = yyj3930 > l + var yyj3935 int + var yyb3935 bool + var yyhl3935 bool = l >= 0 + yyj3935++ + if yyhl3935 { + yyb3935 = yyj3935 > l } else { - yyb3930 = r.CheckBreak() + yyb3935 = r.CheckBreak() } - if yyb3930 { + if yyb3935 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49303,16 +49351,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3931 := &x.Hard - yyv3931.CodecDecodeSelf(d) + yyv3936 := &x.Hard + yyv3936.CodecDecodeSelf(d) } - yyj3930++ - if yyhl3930 { - yyb3930 = yyj3930 > l + yyj3935++ + if yyhl3935 { + yyb3935 = yyj3935 > l } else { - yyb3930 = r.CheckBreak() + yyb3935 = r.CheckBreak() } - if yyb3930 { + if yyb3935 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49320,26 +49368,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3932 := &x.Scopes - yym3933 := z.DecBinary() - _ = yym3933 + yyv3937 := &x.Scopes + yym3938 := z.DecBinary() + _ = yym3938 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3932), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3937), d) } } for { - yyj3930++ - if yyhl3930 { - yyb3930 = yyj3930 > l + yyj3935++ + if yyhl3935 { + yyb3935 = yyj3935 > l } else { - yyb3930 = r.CheckBreak() + yyb3935 = r.CheckBreak() } - if yyb3930 { + if yyb3935 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3930-1, "") + z.DecStructFieldNotFound(yyj3935-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49351,34 +49399,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3934 := z.EncBinary() - _ = yym3934 + yym3939 := z.EncBinary() + _ = yym3939 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3935 := !z.EncBinary() - yy2arr3935 := z.EncBasicHandle().StructToArray - var yyq3935 [2]bool - _, _, _ = yysep3935, yyq3935, yy2arr3935 - const yyr3935 bool = false - yyq3935[0] = len(x.Hard) != 0 - yyq3935[1] = len(x.Used) != 0 - var yynn3935 int - if yyr3935 || yy2arr3935 { + yysep3940 := !z.EncBinary() + yy2arr3940 := z.EncBasicHandle().StructToArray + var yyq3940 [2]bool + _, _, _ = yysep3940, yyq3940, yy2arr3940 + const yyr3940 bool = false + yyq3940[0] = len(x.Hard) != 0 + yyq3940[1] = len(x.Used) != 0 + var yynn3940 int + if yyr3940 || yy2arr3940 { r.EncodeArrayStart(2) } else { - yynn3935 = 0 - for _, b := range yyq3935 { + yynn3940 = 0 + for _, b := range yyq3940 { if b { - yynn3935++ + yynn3940++ } } - r.EncodeMapStart(yynn3935) - yynn3935 = 0 + r.EncodeMapStart(yynn3940) + yynn3940 = 0 } - if yyr3935 || yy2arr3935 { + if yyr3940 || yy2arr3940 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3935[0] { + if yyq3940[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49388,7 +49436,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3935[0] { + if yyq3940[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49399,9 +49447,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3935 || yy2arr3935 { + if yyr3940 || yy2arr3940 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3935[1] { + if yyq3940[1] { if x.Used == nil { r.EncodeNil() } else { @@ -49411,7 +49459,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3935[1] { + if yyq3940[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49422,7 +49470,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3935 || yy2arr3935 { + if yyr3940 || yy2arr3940 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49435,25 +49483,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3938 := z.DecBinary() - _ = yym3938 + yym3943 := z.DecBinary() + _ = yym3943 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3939 := r.ContainerType() - if yyct3939 == codecSelferValueTypeMap1234 { - yyl3939 := r.ReadMapStart() - if yyl3939 == 0 { + yyct3944 := r.ContainerType() + if yyct3944 == codecSelferValueTypeMap1234 { + yyl3944 := r.ReadMapStart() + if yyl3944 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3939, d) + x.codecDecodeSelfFromMap(yyl3944, d) } - } else if yyct3939 == codecSelferValueTypeArray1234 { - yyl3939 := r.ReadArrayStart() - if yyl3939 == 0 { + } else if yyct3944 == codecSelferValueTypeArray1234 { + yyl3944 := r.ReadArrayStart() + if yyl3944 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3939, d) + x.codecDecodeSelfFromArray(yyl3944, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49465,12 +49513,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3940Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3940Slc - var yyhl3940 bool = l >= 0 - for yyj3940 := 0; ; yyj3940++ { - if yyhl3940 { - if yyj3940 >= l { + var yys3945Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3945Slc + var yyhl3945 bool = l >= 0 + for yyj3945 := 0; ; yyj3945++ { + if yyhl3945 { + if yyj3945 >= l { break } } else { @@ -49479,28 +49527,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3940Slc = r.DecodeBytes(yys3940Slc, true, true) - yys3940 := string(yys3940Slc) + yys3945Slc = r.DecodeBytes(yys3945Slc, true, true) + yys3945 := string(yys3945Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3940 { + switch yys3945 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3941 := &x.Hard - yyv3941.CodecDecodeSelf(d) + yyv3946 := &x.Hard + yyv3946.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3942 := &x.Used - yyv3942.CodecDecodeSelf(d) + yyv3947 := &x.Used + yyv3947.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3940) - } // end switch yys3940 - } // end for yyj3940 + z.DecStructFieldNotFound(-1, yys3945) + } // end switch yys3945 + } // end for yyj3945 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49508,16 +49556,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3943 int - var yyb3943 bool - var yyhl3943 bool = l >= 0 - yyj3943++ - if yyhl3943 { - yyb3943 = yyj3943 > l + var yyj3948 int + var yyb3948 bool + var yyhl3948 bool = l >= 0 + yyj3948++ + if yyhl3948 { + yyb3948 = yyj3948 > l } else { - yyb3943 = r.CheckBreak() + yyb3948 = r.CheckBreak() } - if yyb3943 { + if yyb3948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49525,16 +49573,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3944 := &x.Hard - yyv3944.CodecDecodeSelf(d) + yyv3949 := &x.Hard + yyv3949.CodecDecodeSelf(d) } - yyj3943++ - if yyhl3943 { - yyb3943 = yyj3943 > l + yyj3948++ + if yyhl3948 { + yyb3948 = yyj3948 > l } else { - yyb3943 = r.CheckBreak() + yyb3948 = r.CheckBreak() } - if yyb3943 { + if yyb3948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49542,21 +49590,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3945 := &x.Used - yyv3945.CodecDecodeSelf(d) + yyv3950 := &x.Used + yyv3950.CodecDecodeSelf(d) } for { - yyj3943++ - if yyhl3943 { - yyb3943 = yyj3943 > l + yyj3948++ + if yyhl3948 { + yyb3948 = yyj3948 > l } else { - yyb3943 = r.CheckBreak() + yyb3948 = r.CheckBreak() } - if yyb3943 { + if yyb3948 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3943-1, "") + z.DecStructFieldNotFound(yyj3948-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49568,39 +49616,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3946 := z.EncBinary() - _ = yym3946 + yym3951 := z.EncBinary() + _ = yym3951 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3947 := !z.EncBinary() - yy2arr3947 := z.EncBasicHandle().StructToArray - var yyq3947 [5]bool - _, _, _ = yysep3947, yyq3947, yy2arr3947 - const yyr3947 bool = false - yyq3947[0] = x.Kind != "" - yyq3947[1] = x.APIVersion != "" - yyq3947[2] = true - yyq3947[3] = true - yyq3947[4] = true - var yynn3947 int - if yyr3947 || yy2arr3947 { + yysep3952 := !z.EncBinary() + yy2arr3952 := z.EncBasicHandle().StructToArray + var yyq3952 [5]bool + _, _, _ = yysep3952, yyq3952, yy2arr3952 + const yyr3952 bool = false + yyq3952[0] = x.Kind != "" + yyq3952[1] = x.APIVersion != "" + yyq3952[2] = true + yyq3952[3] = true + yyq3952[4] = true + var yynn3952 int + if yyr3952 || yy2arr3952 { r.EncodeArrayStart(5) } else { - yynn3947 = 0 - for _, b := range yyq3947 { + yynn3952 = 0 + for _, b := range yyq3952 { if b { - yynn3947++ + yynn3952++ } } - r.EncodeMapStart(yynn3947) - yynn3947 = 0 + r.EncodeMapStart(yynn3952) + yynn3952 = 0 } - if yyr3947 || yy2arr3947 { + if yyr3952 || yy2arr3952 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3947[0] { - yym3949 := z.EncBinary() - _ = yym3949 + if yyq3952[0] { + yym3954 := z.EncBinary() + _ = yym3954 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49609,23 +49657,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3947[0] { + if yyq3952[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3950 := z.EncBinary() - _ = yym3950 + yym3955 := z.EncBinary() + _ = yym3955 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3947 || yy2arr3947 { + if yyr3952 || yy2arr3952 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3947[1] { - yym3952 := z.EncBinary() - _ = yym3952 + if yyq3952[1] { + yym3957 := z.EncBinary() + _ = yym3957 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49634,70 +49682,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3947[1] { + if yyq3952[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3953 := z.EncBinary() - _ = yym3953 + yym3958 := z.EncBinary() + _ = yym3958 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3947 || yy2arr3947 { + if yyr3952 || yy2arr3952 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3947[2] { - yy3955 := &x.ObjectMeta - yy3955.CodecEncodeSelf(e) + if yyq3952[2] { + yy3960 := &x.ObjectMeta + yy3960.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3947[2] { + if yyq3952[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3956 := &x.ObjectMeta - yy3956.CodecEncodeSelf(e) + yy3961 := &x.ObjectMeta + yy3961.CodecEncodeSelf(e) } } - if yyr3947 || yy2arr3947 { + if yyr3952 || yy2arr3952 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3947[3] { - yy3958 := &x.Spec - yy3958.CodecEncodeSelf(e) + if yyq3952[3] { + yy3963 := &x.Spec + yy3963.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3947[3] { + if yyq3952[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3959 := &x.Spec - yy3959.CodecEncodeSelf(e) + yy3964 := &x.Spec + yy3964.CodecEncodeSelf(e) } } - if yyr3947 || yy2arr3947 { + if yyr3952 || yy2arr3952 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3947[4] { - yy3961 := &x.Status - yy3961.CodecEncodeSelf(e) + if yyq3952[4] { + yy3966 := &x.Status + yy3966.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3947[4] { + if yyq3952[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3962 := &x.Status - yy3962.CodecEncodeSelf(e) + yy3967 := &x.Status + yy3967.CodecEncodeSelf(e) } } - if yyr3947 || yy2arr3947 { + if yyr3952 || yy2arr3952 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49710,25 +49758,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3963 := z.DecBinary() - _ = yym3963 + yym3968 := z.DecBinary() + _ = yym3968 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3964 := r.ContainerType() - if yyct3964 == codecSelferValueTypeMap1234 { - yyl3964 := r.ReadMapStart() - if yyl3964 == 0 { + yyct3969 := r.ContainerType() + if yyct3969 == codecSelferValueTypeMap1234 { + yyl3969 := r.ReadMapStart() + if yyl3969 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3964, d) + x.codecDecodeSelfFromMap(yyl3969, d) } - } else if yyct3964 == codecSelferValueTypeArray1234 { - yyl3964 := r.ReadArrayStart() - if yyl3964 == 0 { + } else if yyct3969 == codecSelferValueTypeArray1234 { + yyl3969 := r.ReadArrayStart() + if yyl3969 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3964, d) + x.codecDecodeSelfFromArray(yyl3969, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49740,12 +49788,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3965Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3965Slc - var yyhl3965 bool = l >= 0 - for yyj3965 := 0; ; yyj3965++ { - if yyhl3965 { - if yyj3965 >= l { + var yys3970Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3970Slc + var yyhl3970 bool = l >= 0 + for yyj3970 := 0; ; yyj3970++ { + if yyhl3970 { + if yyj3970 >= l { break } } else { @@ -49754,10 +49802,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3965Slc = r.DecodeBytes(yys3965Slc, true, true) - yys3965 := string(yys3965Slc) + yys3970Slc = r.DecodeBytes(yys3970Slc, true, true) + yys3970 := string(yys3970Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3965 { + switch yys3970 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49774,27 +49822,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3968 := &x.ObjectMeta - yyv3968.CodecDecodeSelf(d) + yyv3973 := &x.ObjectMeta + yyv3973.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3969 := &x.Spec - yyv3969.CodecDecodeSelf(d) + yyv3974 := &x.Spec + yyv3974.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3970 := &x.Status - yyv3970.CodecDecodeSelf(d) + yyv3975 := &x.Status + yyv3975.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3965) - } // end switch yys3965 - } // end for yyj3965 + z.DecStructFieldNotFound(-1, yys3970) + } // end switch yys3970 + } // end for yyj3970 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49802,16 +49850,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3971 int - var yyb3971 bool - var yyhl3971 bool = l >= 0 - yyj3971++ - if yyhl3971 { - yyb3971 = yyj3971 > l + var yyj3976 int + var yyb3976 bool + var yyhl3976 bool = l >= 0 + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3971 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3971 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49821,13 +49869,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3971++ - if yyhl3971 { - yyb3971 = yyj3971 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3971 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3971 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49837,13 +49885,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3971++ - if yyhl3971 { - yyb3971 = yyj3971 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3971 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3971 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49851,16 +49899,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3974 := &x.ObjectMeta - yyv3974.CodecDecodeSelf(d) + yyv3979 := &x.ObjectMeta + yyv3979.CodecDecodeSelf(d) } - yyj3971++ - if yyhl3971 { - yyb3971 = yyj3971 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3971 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3971 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49868,16 +49916,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3975 := &x.Spec - yyv3975.CodecDecodeSelf(d) + yyv3980 := &x.Spec + yyv3980.CodecDecodeSelf(d) } - yyj3971++ - if yyhl3971 { - yyb3971 = yyj3971 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3971 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3971 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49885,21 +49933,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3976 := &x.Status - yyv3976.CodecDecodeSelf(d) + yyv3981 := &x.Status + yyv3981.CodecDecodeSelf(d) } for { - yyj3971++ - if yyhl3971 { - yyb3971 = yyj3971 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3971 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3971 { + if yyb3976 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3971-1, "") + z.DecStructFieldNotFound(yyj3976-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49911,37 +49959,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3977 := z.EncBinary() - _ = yym3977 + yym3982 := z.EncBinary() + _ = yym3982 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3978 := !z.EncBinary() - yy2arr3978 := z.EncBasicHandle().StructToArray - var yyq3978 [4]bool - _, _, _ = yysep3978, yyq3978, yy2arr3978 - const yyr3978 bool = false - yyq3978[0] = x.Kind != "" - yyq3978[1] = x.APIVersion != "" - yyq3978[2] = true - var yynn3978 int - if yyr3978 || yy2arr3978 { + yysep3983 := !z.EncBinary() + yy2arr3983 := z.EncBasicHandle().StructToArray + var yyq3983 [4]bool + _, _, _ = yysep3983, yyq3983, yy2arr3983 + const yyr3983 bool = false + yyq3983[0] = x.Kind != "" + yyq3983[1] = x.APIVersion != "" + yyq3983[2] = true + var yynn3983 int + if yyr3983 || yy2arr3983 { r.EncodeArrayStart(4) } else { - yynn3978 = 1 - for _, b := range yyq3978 { + yynn3983 = 1 + for _, b := range yyq3983 { if b { - yynn3978++ + yynn3983++ } } - r.EncodeMapStart(yynn3978) - yynn3978 = 0 + r.EncodeMapStart(yynn3983) + yynn3983 = 0 } - if yyr3978 || yy2arr3978 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3978[0] { - yym3980 := z.EncBinary() - _ = yym3980 + if yyq3983[0] { + yym3985 := z.EncBinary() + _ = yym3985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49950,23 +49998,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3978[0] { + if yyq3983[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3981 := z.EncBinary() - _ = yym3981 + yym3986 := z.EncBinary() + _ = yym3986 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3978 || yy2arr3978 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3978[1] { - yym3983 := z.EncBinary() - _ = yym3983 + if yyq3983[1] { + yym3988 := z.EncBinary() + _ = yym3988 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49975,54 +50023,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3978[1] { + if yyq3983[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3984 := z.EncBinary() - _ = yym3984 + yym3989 := z.EncBinary() + _ = yym3989 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3978 || yy2arr3978 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3978[2] { - yy3986 := &x.ListMeta - yym3987 := z.EncBinary() - _ = yym3987 + if yyq3983[2] { + yy3991 := &x.ListMeta + yym3992 := z.EncBinary() + _ = yym3992 if false { - } else if z.HasExtensions() && z.EncExt(yy3986) { + } else if z.HasExtensions() && z.EncExt(yy3991) { } else { - z.EncFallback(yy3986) + z.EncFallback(yy3991) } } else { r.EncodeNil() } } else { - if yyq3978[2] { + if yyq3983[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3988 := &x.ListMeta - yym3989 := z.EncBinary() - _ = yym3989 + yy3993 := &x.ListMeta + yym3994 := z.EncBinary() + _ = yym3994 if false { - } else if z.HasExtensions() && z.EncExt(yy3988) { + } else if z.HasExtensions() && z.EncExt(yy3993) { } else { - z.EncFallback(yy3988) + z.EncFallback(yy3993) } } } - if yyr3978 || yy2arr3978 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3991 := z.EncBinary() - _ = yym3991 + yym3996 := z.EncBinary() + _ = yym3996 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -50035,15 +50083,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3992 := z.EncBinary() - _ = yym3992 + yym3997 := z.EncBinary() + _ = yym3997 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr3978 || yy2arr3978 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50056,25 +50104,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3993 := z.DecBinary() - _ = yym3993 + yym3998 := z.DecBinary() + _ = yym3998 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3994 := r.ContainerType() - if yyct3994 == codecSelferValueTypeMap1234 { - yyl3994 := r.ReadMapStart() - if yyl3994 == 0 { + yyct3999 := r.ContainerType() + if yyct3999 == codecSelferValueTypeMap1234 { + yyl3999 := r.ReadMapStart() + if yyl3999 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3994, d) + x.codecDecodeSelfFromMap(yyl3999, d) } - } else if yyct3994 == codecSelferValueTypeArray1234 { - yyl3994 := r.ReadArrayStart() - if yyl3994 == 0 { + } else if yyct3999 == codecSelferValueTypeArray1234 { + yyl3999 := r.ReadArrayStart() + if yyl3999 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3994, d) + x.codecDecodeSelfFromArray(yyl3999, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50086,12 +50134,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3995Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3995Slc - var yyhl3995 bool = l >= 0 - for yyj3995 := 0; ; yyj3995++ { - if yyhl3995 { - if yyj3995 >= l { + var yys4000Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4000Slc + var yyhl4000 bool = l >= 0 + for yyj4000 := 0; ; yyj4000++ { + if yyhl4000 { + if yyj4000 >= l { break } } else { @@ -50100,10 +50148,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3995Slc = r.DecodeBytes(yys3995Slc, true, true) - yys3995 := string(yys3995Slc) + yys4000Slc = r.DecodeBytes(yys4000Slc, true, true) + yys4000 := string(yys4000Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3995 { + switch yys4000 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50120,31 +50168,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3998 := &x.ListMeta - yym3999 := z.DecBinary() - _ = yym3999 + yyv4003 := &x.ListMeta + yym4004 := z.DecBinary() + _ = yym4004 if false { - } else if z.HasExtensions() && z.DecExt(yyv3998) { + } else if z.HasExtensions() && z.DecExt(yyv4003) { } else { - z.DecFallback(yyv3998, false) + z.DecFallback(yyv4003, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4000 := &x.Items - yym4001 := z.DecBinary() - _ = yym4001 + yyv4005 := &x.Items + yym4006 := z.DecBinary() + _ = yym4006 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4000), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4005), d) } } default: - z.DecStructFieldNotFound(-1, yys3995) - } // end switch yys3995 - } // end for yyj3995 + z.DecStructFieldNotFound(-1, yys4000) + } // end switch yys4000 + } // end for yyj4000 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50152,16 +50200,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4002 int - var yyb4002 bool - var yyhl4002 bool = l >= 0 - yyj4002++ - if yyhl4002 { - yyb4002 = yyj4002 > l + var yyj4007 int + var yyb4007 bool + var yyhl4007 bool = l >= 0 + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l } else { - yyb4002 = r.CheckBreak() + yyb4007 = r.CheckBreak() } - if yyb4002 { + if yyb4007 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50171,13 +50219,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4002++ - if yyhl4002 { - yyb4002 = yyj4002 > l + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l } else { - yyb4002 = r.CheckBreak() + yyb4007 = r.CheckBreak() } - if yyb4002 { + if yyb4007 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50187,13 +50235,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4002++ - if yyhl4002 { - yyb4002 = yyj4002 > l + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l } else { - yyb4002 = r.CheckBreak() + yyb4007 = r.CheckBreak() } - if yyb4002 { + if yyb4007 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50201,22 +50249,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4005 := &x.ListMeta - yym4006 := z.DecBinary() - _ = yym4006 + yyv4010 := &x.ListMeta + yym4011 := z.DecBinary() + _ = yym4011 if false { - } else if z.HasExtensions() && z.DecExt(yyv4005) { + } else if z.HasExtensions() && z.DecExt(yyv4010) { } else { - z.DecFallback(yyv4005, false) + z.DecFallback(yyv4010, false) } } - yyj4002++ - if yyhl4002 { - yyb4002 = yyj4002 > l + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l } else { - yyb4002 = r.CheckBreak() + yyb4007 = r.CheckBreak() } - if yyb4002 { + if yyb4007 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50224,26 +50272,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4007 := &x.Items - yym4008 := z.DecBinary() - _ = yym4008 + yyv4012 := &x.Items + yym4013 := z.DecBinary() + _ = yym4013 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4007), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4012), d) } } for { - yyj4002++ - if yyhl4002 { - yyb4002 = yyj4002 > l + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l } else { - yyb4002 = r.CheckBreak() + yyb4007 = r.CheckBreak() } - if yyb4002 { + if yyb4007 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4002-1, "") + z.DecStructFieldNotFound(yyj4007-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50255,40 +50303,40 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4009 := z.EncBinary() - _ = yym4009 + yym4014 := z.EncBinary() + _ = yym4014 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4010 := !z.EncBinary() - yy2arr4010 := z.EncBasicHandle().StructToArray - var yyq4010 [6]bool - _, _, _ = yysep4010, yyq4010, yy2arr4010 - const yyr4010 bool = false - yyq4010[0] = x.Kind != "" - yyq4010[1] = x.APIVersion != "" - yyq4010[2] = true - yyq4010[3] = len(x.Data) != 0 - yyq4010[4] = len(x.StringData) != 0 - yyq4010[5] = x.Type != "" - var yynn4010 int - if yyr4010 || yy2arr4010 { + yysep4015 := !z.EncBinary() + yy2arr4015 := z.EncBasicHandle().StructToArray + var yyq4015 [6]bool + _, _, _ = yysep4015, yyq4015, yy2arr4015 + const yyr4015 bool = false + yyq4015[0] = x.Kind != "" + yyq4015[1] = x.APIVersion != "" + yyq4015[2] = true + yyq4015[3] = len(x.Data) != 0 + yyq4015[4] = len(x.StringData) != 0 + yyq4015[5] = x.Type != "" + var yynn4015 int + if yyr4015 || yy2arr4015 { r.EncodeArrayStart(6) } else { - yynn4010 = 0 - for _, b := range yyq4010 { + yynn4015 = 0 + for _, b := range yyq4015 { if b { - yynn4010++ + yynn4015++ } } - r.EncodeMapStart(yynn4010) - yynn4010 = 0 + r.EncodeMapStart(yynn4015) + yynn4015 = 0 } - if yyr4010 || yy2arr4010 { + if yyr4015 || yy2arr4015 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4010[0] { - yym4012 := z.EncBinary() - _ = yym4012 + if yyq4015[0] { + yym4017 := z.EncBinary() + _ = yym4017 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50297,23 +50345,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4010[0] { + if yyq4015[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4013 := z.EncBinary() - _ = yym4013 + yym4018 := z.EncBinary() + _ = yym4018 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4010 || yy2arr4010 { + if yyr4015 || yy2arr4015 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4010[1] { - yym4015 := z.EncBinary() - _ = yym4015 + if yyq4015[1] { + yym4020 := z.EncBinary() + _ = yym4020 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50322,43 +50370,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4010[1] { + if yyq4015[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4016 := z.EncBinary() - _ = yym4016 + yym4021 := z.EncBinary() + _ = yym4021 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4010 || yy2arr4010 { + if yyr4015 || yy2arr4015 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4010[2] { - yy4018 := &x.ObjectMeta - yy4018.CodecEncodeSelf(e) + if yyq4015[2] { + yy4023 := &x.ObjectMeta + yy4023.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4010[2] { + if yyq4015[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4019 := &x.ObjectMeta - yy4019.CodecEncodeSelf(e) + yy4024 := &x.ObjectMeta + yy4024.CodecEncodeSelf(e) } } - if yyr4010 || yy2arr4010 { + if yyr4015 || yy2arr4015 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4010[3] { + if yyq4015[3] { if x.Data == nil { r.EncodeNil() } else { - yym4021 := z.EncBinary() - _ = yym4021 + yym4026 := z.EncBinary() + _ = yym4026 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50368,15 +50416,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4010[3] { + if yyq4015[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4022 := z.EncBinary() - _ = yym4022 + yym4027 := z.EncBinary() + _ = yym4027 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50384,14 +50432,14 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4010 || yy2arr4010 { + if yyr4015 || yy2arr4015 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4010[4] { + if yyq4015[4] { if x.StringData == nil { r.EncodeNil() } else { - yym4024 := z.EncBinary() - _ = yym4024 + yym4029 := z.EncBinary() + _ = yym4029 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -50401,15 +50449,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4010[4] { + if yyq4015[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stringData")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StringData == nil { r.EncodeNil() } else { - yym4025 := z.EncBinary() - _ = yym4025 + yym4030 := z.EncBinary() + _ = yym4030 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -50417,22 +50465,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4010 || yy2arr4010 { + if yyr4015 || yy2arr4015 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4010[5] { + if yyq4015[5] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4010[5] { + if yyq4015[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4010 || yy2arr4010 { + if yyr4015 || yy2arr4015 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50445,25 +50493,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4027 := z.DecBinary() - _ = yym4027 + yym4032 := z.DecBinary() + _ = yym4032 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4028 := r.ContainerType() - if yyct4028 == codecSelferValueTypeMap1234 { - yyl4028 := r.ReadMapStart() - if yyl4028 == 0 { + yyct4033 := r.ContainerType() + if yyct4033 == codecSelferValueTypeMap1234 { + yyl4033 := r.ReadMapStart() + if yyl4033 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4028, d) + x.codecDecodeSelfFromMap(yyl4033, d) } - } else if yyct4028 == codecSelferValueTypeArray1234 { - yyl4028 := r.ReadArrayStart() - if yyl4028 == 0 { + } else if yyct4033 == codecSelferValueTypeArray1234 { + yyl4033 := r.ReadArrayStart() + if yyl4033 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4028, d) + x.codecDecodeSelfFromArray(yyl4033, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50475,12 +50523,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4029Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4029Slc - var yyhl4029 bool = l >= 0 - for yyj4029 := 0; ; yyj4029++ { - if yyhl4029 { - if yyj4029 >= l { + var yys4034Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4034Slc + var yyhl4034 bool = l >= 0 + for yyj4034 := 0; ; yyj4034++ { + if yyhl4034 { + if yyj4034 >= l { break } } else { @@ -50489,10 +50537,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4029Slc = r.DecodeBytes(yys4029Slc, true, true) - yys4029 := string(yys4029Slc) + yys4034Slc = r.DecodeBytes(yys4034Slc, true, true) + yys4034 := string(yys4034Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4029 { + switch yys4034 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50509,31 +50557,31 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4032 := &x.ObjectMeta - yyv4032.CodecDecodeSelf(d) + yyv4037 := &x.ObjectMeta + yyv4037.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4033 := &x.Data - yym4034 := z.DecBinary() - _ = yym4034 + yyv4038 := &x.Data + yym4039 := z.DecBinary() + _ = yym4039 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4033), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4038), d) } } case "stringData": if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4035 := &x.StringData - yym4036 := z.DecBinary() - _ = yym4036 + yyv4040 := &x.StringData + yym4041 := z.DecBinary() + _ = yym4041 if false { } else { - z.F.DecMapStringStringX(yyv4035, false, d) + z.F.DecMapStringStringX(yyv4040, false, d) } } case "type": @@ -50543,9 +50591,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4029) - } // end switch yys4029 - } // end for yyj4029 + z.DecStructFieldNotFound(-1, yys4034) + } // end switch yys4034 + } // end for yyj4034 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50553,16 +50601,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4038 int - var yyb4038 bool - var yyhl4038 bool = l >= 0 - yyj4038++ - if yyhl4038 { - yyb4038 = yyj4038 > l + var yyj4043 int + var yyb4043 bool + var yyhl4043 bool = l >= 0 + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb4038 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb4038 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50572,13 +50620,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4038++ - if yyhl4038 { - yyb4038 = yyj4038 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb4038 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb4038 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50588,13 +50636,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4038++ - if yyhl4038 { - yyb4038 = yyj4038 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb4038 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb4038 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50602,16 +50650,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4041 := &x.ObjectMeta - yyv4041.CodecDecodeSelf(d) + yyv4046 := &x.ObjectMeta + yyv4046.CodecDecodeSelf(d) } - yyj4038++ - if yyhl4038 { - yyb4038 = yyj4038 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb4038 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb4038 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50619,21 +50667,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4042 := &x.Data - yym4043 := z.DecBinary() - _ = yym4043 + yyv4047 := &x.Data + yym4048 := z.DecBinary() + _ = yym4048 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4042), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4047), d) } } - yyj4038++ - if yyhl4038 { - yyb4038 = yyj4038 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb4038 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb4038 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50641,21 +50689,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4044 := &x.StringData - yym4045 := z.DecBinary() - _ = yym4045 + yyv4049 := &x.StringData + yym4050 := z.DecBinary() + _ = yym4050 if false { } else { - z.F.DecMapStringStringX(yyv4044, false, d) + z.F.DecMapStringStringX(yyv4049, false, d) } } - yyj4038++ - if yyhl4038 { - yyb4038 = yyj4038 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb4038 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb4038 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50666,17 +50714,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4038++ - if yyhl4038 { - yyb4038 = yyj4038 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb4038 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb4038 { + if yyb4043 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4038-1, "") + z.DecStructFieldNotFound(yyj4043-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50685,8 +50733,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4047 := z.EncBinary() - _ = yym4047 + yym4052 := z.EncBinary() + _ = yym4052 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50698,8 +50746,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4048 := z.DecBinary() - _ = yym4048 + yym4053 := z.DecBinary() + _ = yym4053 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50714,37 +50762,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4049 := z.EncBinary() - _ = yym4049 + yym4054 := z.EncBinary() + _ = yym4054 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4050 := !z.EncBinary() - yy2arr4050 := z.EncBasicHandle().StructToArray - var yyq4050 [4]bool - _, _, _ = yysep4050, yyq4050, yy2arr4050 - const yyr4050 bool = false - yyq4050[0] = x.Kind != "" - yyq4050[1] = x.APIVersion != "" - yyq4050[2] = true - var yynn4050 int - if yyr4050 || yy2arr4050 { + yysep4055 := !z.EncBinary() + yy2arr4055 := z.EncBasicHandle().StructToArray + var yyq4055 [4]bool + _, _, _ = yysep4055, yyq4055, yy2arr4055 + const yyr4055 bool = false + yyq4055[0] = x.Kind != "" + yyq4055[1] = x.APIVersion != "" + yyq4055[2] = true + var yynn4055 int + if yyr4055 || yy2arr4055 { r.EncodeArrayStart(4) } else { - yynn4050 = 1 - for _, b := range yyq4050 { + yynn4055 = 1 + for _, b := range yyq4055 { if b { - yynn4050++ + yynn4055++ } } - r.EncodeMapStart(yynn4050) - yynn4050 = 0 + r.EncodeMapStart(yynn4055) + yynn4055 = 0 } - if yyr4050 || yy2arr4050 { + if yyr4055 || yy2arr4055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4050[0] { - yym4052 := z.EncBinary() - _ = yym4052 + if yyq4055[0] { + yym4057 := z.EncBinary() + _ = yym4057 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50753,23 +50801,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4050[0] { + if yyq4055[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4053 := z.EncBinary() - _ = yym4053 + yym4058 := z.EncBinary() + _ = yym4058 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4050 || yy2arr4050 { + if yyr4055 || yy2arr4055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4050[1] { - yym4055 := z.EncBinary() - _ = yym4055 + if yyq4055[1] { + yym4060 := z.EncBinary() + _ = yym4060 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50778,54 +50826,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4050[1] { + if yyq4055[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4056 := z.EncBinary() - _ = yym4056 + yym4061 := z.EncBinary() + _ = yym4061 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4050 || yy2arr4050 { + if yyr4055 || yy2arr4055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4050[2] { - yy4058 := &x.ListMeta - yym4059 := z.EncBinary() - _ = yym4059 + if yyq4055[2] { + yy4063 := &x.ListMeta + yym4064 := z.EncBinary() + _ = yym4064 if false { - } else if z.HasExtensions() && z.EncExt(yy4058) { + } else if z.HasExtensions() && z.EncExt(yy4063) { } else { - z.EncFallback(yy4058) + z.EncFallback(yy4063) } } else { r.EncodeNil() } } else { - if yyq4050[2] { + if yyq4055[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4060 := &x.ListMeta - yym4061 := z.EncBinary() - _ = yym4061 + yy4065 := &x.ListMeta + yym4066 := z.EncBinary() + _ = yym4066 if false { - } else if z.HasExtensions() && z.EncExt(yy4060) { + } else if z.HasExtensions() && z.EncExt(yy4065) { } else { - z.EncFallback(yy4060) + z.EncFallback(yy4065) } } } - if yyr4050 || yy2arr4050 { + if yyr4055 || yy2arr4055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4063 := z.EncBinary() - _ = yym4063 + yym4068 := z.EncBinary() + _ = yym4068 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -50838,15 +50886,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4064 := z.EncBinary() - _ = yym4064 + yym4069 := z.EncBinary() + _ = yym4069 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4050 || yy2arr4050 { + if yyr4055 || yy2arr4055 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50859,25 +50907,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4065 := z.DecBinary() - _ = yym4065 + yym4070 := z.DecBinary() + _ = yym4070 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4066 := r.ContainerType() - if yyct4066 == codecSelferValueTypeMap1234 { - yyl4066 := r.ReadMapStart() - if yyl4066 == 0 { + yyct4071 := r.ContainerType() + if yyct4071 == codecSelferValueTypeMap1234 { + yyl4071 := r.ReadMapStart() + if yyl4071 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4066, d) + x.codecDecodeSelfFromMap(yyl4071, d) } - } else if yyct4066 == codecSelferValueTypeArray1234 { - yyl4066 := r.ReadArrayStart() - if yyl4066 == 0 { + } else if yyct4071 == codecSelferValueTypeArray1234 { + yyl4071 := r.ReadArrayStart() + if yyl4071 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4066, d) + x.codecDecodeSelfFromArray(yyl4071, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50889,12 +50937,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4067Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4067Slc - var yyhl4067 bool = l >= 0 - for yyj4067 := 0; ; yyj4067++ { - if yyhl4067 { - if yyj4067 >= l { + var yys4072Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4072Slc + var yyhl4072 bool = l >= 0 + for yyj4072 := 0; ; yyj4072++ { + if yyhl4072 { + if yyj4072 >= l { break } } else { @@ -50903,10 +50951,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4067Slc = r.DecodeBytes(yys4067Slc, true, true) - yys4067 := string(yys4067Slc) + yys4072Slc = r.DecodeBytes(yys4072Slc, true, true) + yys4072 := string(yys4072Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4067 { + switch yys4072 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50923,31 +50971,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4070 := &x.ListMeta - yym4071 := z.DecBinary() - _ = yym4071 + yyv4075 := &x.ListMeta + yym4076 := z.DecBinary() + _ = yym4076 if false { - } else if z.HasExtensions() && z.DecExt(yyv4070) { + } else if z.HasExtensions() && z.DecExt(yyv4075) { } else { - z.DecFallback(yyv4070, false) + z.DecFallback(yyv4075, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4072 := &x.Items - yym4073 := z.DecBinary() - _ = yym4073 + yyv4077 := &x.Items + yym4078 := z.DecBinary() + _ = yym4078 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4072), d) + h.decSliceSecret((*[]Secret)(yyv4077), d) } } default: - z.DecStructFieldNotFound(-1, yys4067) - } // end switch yys4067 - } // end for yyj4067 + z.DecStructFieldNotFound(-1, yys4072) + } // end switch yys4072 + } // end for yyj4072 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50955,16 +51003,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4074 int - var yyb4074 bool - var yyhl4074 bool = l >= 0 - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + var yyj4079 int + var yyb4079 bool + var yyhl4079 bool = l >= 0 + yyj4079++ + if yyhl4079 { + yyb4079 = yyj4079 > l } else { - yyb4074 = r.CheckBreak() + yyb4079 = r.CheckBreak() } - if yyb4074 { + if yyb4079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50974,13 +51022,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + yyj4079++ + if yyhl4079 { + yyb4079 = yyj4079 > l } else { - yyb4074 = r.CheckBreak() + yyb4079 = r.CheckBreak() } - if yyb4074 { + if yyb4079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50990,13 +51038,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + yyj4079++ + if yyhl4079 { + yyb4079 = yyj4079 > l } else { - yyb4074 = r.CheckBreak() + yyb4079 = r.CheckBreak() } - if yyb4074 { + if yyb4079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51004,22 +51052,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4077 := &x.ListMeta - yym4078 := z.DecBinary() - _ = yym4078 + yyv4082 := &x.ListMeta + yym4083 := z.DecBinary() + _ = yym4083 if false { - } else if z.HasExtensions() && z.DecExt(yyv4077) { + } else if z.HasExtensions() && z.DecExt(yyv4082) { } else { - z.DecFallback(yyv4077, false) + z.DecFallback(yyv4082, false) } } - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + yyj4079++ + if yyhl4079 { + yyb4079 = yyj4079 > l } else { - yyb4074 = r.CheckBreak() + yyb4079 = r.CheckBreak() } - if yyb4074 { + if yyb4079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51027,26 +51075,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4079 := &x.Items - yym4080 := z.DecBinary() - _ = yym4080 + yyv4084 := &x.Items + yym4085 := z.DecBinary() + _ = yym4085 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4079), d) + h.decSliceSecret((*[]Secret)(yyv4084), d) } } for { - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + yyj4079++ + if yyhl4079 { + yyb4079 = yyj4079 > l } else { - yyb4074 = r.CheckBreak() + yyb4079 = r.CheckBreak() } - if yyb4074 { + if yyb4079 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4074-1, "") + z.DecStructFieldNotFound(yyj4079-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51058,38 +51106,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4081 := z.EncBinary() - _ = yym4081 + yym4086 := z.EncBinary() + _ = yym4086 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4082 := !z.EncBinary() - yy2arr4082 := z.EncBasicHandle().StructToArray - var yyq4082 [4]bool - _, _, _ = yysep4082, yyq4082, yy2arr4082 - const yyr4082 bool = false - yyq4082[0] = x.Kind != "" - yyq4082[1] = x.APIVersion != "" - yyq4082[2] = true - yyq4082[3] = len(x.Data) != 0 - var yynn4082 int - if yyr4082 || yy2arr4082 { + yysep4087 := !z.EncBinary() + yy2arr4087 := z.EncBasicHandle().StructToArray + var yyq4087 [4]bool + _, _, _ = yysep4087, yyq4087, yy2arr4087 + const yyr4087 bool = false + yyq4087[0] = x.Kind != "" + yyq4087[1] = x.APIVersion != "" + yyq4087[2] = true + yyq4087[3] = len(x.Data) != 0 + var yynn4087 int + if yyr4087 || yy2arr4087 { r.EncodeArrayStart(4) } else { - yynn4082 = 0 - for _, b := range yyq4082 { + yynn4087 = 0 + for _, b := range yyq4087 { if b { - yynn4082++ + yynn4087++ } } - r.EncodeMapStart(yynn4082) - yynn4082 = 0 + r.EncodeMapStart(yynn4087) + yynn4087 = 0 } - if yyr4082 || yy2arr4082 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[0] { - yym4084 := z.EncBinary() - _ = yym4084 + if yyq4087[0] { + yym4089 := z.EncBinary() + _ = yym4089 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51098,23 +51146,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4082[0] { + if yyq4087[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4085 := z.EncBinary() - _ = yym4085 + yym4090 := z.EncBinary() + _ = yym4090 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4082 || yy2arr4082 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[1] { - yym4087 := z.EncBinary() - _ = yym4087 + if yyq4087[1] { + yym4092 := z.EncBinary() + _ = yym4092 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51123,43 +51171,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4082[1] { + if yyq4087[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4088 := z.EncBinary() - _ = yym4088 + yym4093 := z.EncBinary() + _ = yym4093 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4082 || yy2arr4082 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[2] { - yy4090 := &x.ObjectMeta - yy4090.CodecEncodeSelf(e) + if yyq4087[2] { + yy4095 := &x.ObjectMeta + yy4095.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4082[2] { + if yyq4087[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4091 := &x.ObjectMeta - yy4091.CodecEncodeSelf(e) + yy4096 := &x.ObjectMeta + yy4096.CodecEncodeSelf(e) } } - if yyr4082 || yy2arr4082 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[3] { + if yyq4087[3] { if x.Data == nil { r.EncodeNil() } else { - yym4093 := z.EncBinary() - _ = yym4093 + yym4098 := z.EncBinary() + _ = yym4098 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51169,15 +51217,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4082[3] { + if yyq4087[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4094 := z.EncBinary() - _ = yym4094 + yym4099 := z.EncBinary() + _ = yym4099 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51185,7 +51233,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4082 || yy2arr4082 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51198,25 +51246,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4095 := z.DecBinary() - _ = yym4095 + yym4100 := z.DecBinary() + _ = yym4100 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4096 := r.ContainerType() - if yyct4096 == codecSelferValueTypeMap1234 { - yyl4096 := r.ReadMapStart() - if yyl4096 == 0 { + yyct4101 := r.ContainerType() + if yyct4101 == codecSelferValueTypeMap1234 { + yyl4101 := r.ReadMapStart() + if yyl4101 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4096, d) + x.codecDecodeSelfFromMap(yyl4101, d) } - } else if yyct4096 == codecSelferValueTypeArray1234 { - yyl4096 := r.ReadArrayStart() - if yyl4096 == 0 { + } else if yyct4101 == codecSelferValueTypeArray1234 { + yyl4101 := r.ReadArrayStart() + if yyl4101 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4096, d) + x.codecDecodeSelfFromArray(yyl4101, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51228,12 +51276,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4097Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4097Slc - var yyhl4097 bool = l >= 0 - for yyj4097 := 0; ; yyj4097++ { - if yyhl4097 { - if yyj4097 >= l { + var yys4102Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4102Slc + var yyhl4102 bool = l >= 0 + for yyj4102 := 0; ; yyj4102++ { + if yyhl4102 { + if yyj4102 >= l { break } } else { @@ -51242,10 +51290,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4097Slc = r.DecodeBytes(yys4097Slc, true, true) - yys4097 := string(yys4097Slc) + yys4102Slc = r.DecodeBytes(yys4102Slc, true, true) + yys4102 := string(yys4102Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4097 { + switch yys4102 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51262,25 +51310,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4100 := &x.ObjectMeta - yyv4100.CodecDecodeSelf(d) + yyv4105 := &x.ObjectMeta + yyv4105.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4101 := &x.Data - yym4102 := z.DecBinary() - _ = yym4102 + yyv4106 := &x.Data + yym4107 := z.DecBinary() + _ = yym4107 if false { } else { - z.F.DecMapStringStringX(yyv4101, false, d) + z.F.DecMapStringStringX(yyv4106, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4097) - } // end switch yys4097 - } // end for yyj4097 + z.DecStructFieldNotFound(-1, yys4102) + } // end switch yys4102 + } // end for yyj4102 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51288,16 +51336,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4103 int - var yyb4103 bool - var yyhl4103 bool = l >= 0 - yyj4103++ - if yyhl4103 { - yyb4103 = yyj4103 > l + var yyj4108 int + var yyb4108 bool + var yyhl4108 bool = l >= 0 + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4103 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4103 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51307,13 +51355,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4103++ - if yyhl4103 { - yyb4103 = yyj4103 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4103 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4103 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51323,13 +51371,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4103++ - if yyhl4103 { - yyb4103 = yyj4103 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4103 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4103 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51337,16 +51385,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4106 := &x.ObjectMeta - yyv4106.CodecDecodeSelf(d) + yyv4111 := &x.ObjectMeta + yyv4111.CodecDecodeSelf(d) } - yyj4103++ - if yyhl4103 { - yyb4103 = yyj4103 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4103 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4103 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51354,26 +51402,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4107 := &x.Data - yym4108 := z.DecBinary() - _ = yym4108 + yyv4112 := &x.Data + yym4113 := z.DecBinary() + _ = yym4113 if false { } else { - z.F.DecMapStringStringX(yyv4107, false, d) + z.F.DecMapStringStringX(yyv4112, false, d) } } for { - yyj4103++ - if yyhl4103 { - yyb4103 = yyj4103 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4103 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4103 { + if yyb4108 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4103-1, "") + z.DecStructFieldNotFound(yyj4108-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51385,37 +51433,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4109 := z.EncBinary() - _ = yym4109 + yym4114 := z.EncBinary() + _ = yym4114 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4110 := !z.EncBinary() - yy2arr4110 := z.EncBasicHandle().StructToArray - var yyq4110 [4]bool - _, _, _ = yysep4110, yyq4110, yy2arr4110 - const yyr4110 bool = false - yyq4110[0] = x.Kind != "" - yyq4110[1] = x.APIVersion != "" - yyq4110[2] = true - var yynn4110 int - if yyr4110 || yy2arr4110 { + yysep4115 := !z.EncBinary() + yy2arr4115 := z.EncBasicHandle().StructToArray + var yyq4115 [4]bool + _, _, _ = yysep4115, yyq4115, yy2arr4115 + const yyr4115 bool = false + yyq4115[0] = x.Kind != "" + yyq4115[1] = x.APIVersion != "" + yyq4115[2] = true + var yynn4115 int + if yyr4115 || yy2arr4115 { r.EncodeArrayStart(4) } else { - yynn4110 = 1 - for _, b := range yyq4110 { + yynn4115 = 1 + for _, b := range yyq4115 { if b { - yynn4110++ + yynn4115++ } } - r.EncodeMapStart(yynn4110) - yynn4110 = 0 + r.EncodeMapStart(yynn4115) + yynn4115 = 0 } - if yyr4110 || yy2arr4110 { + if yyr4115 || yy2arr4115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4110[0] { - yym4112 := z.EncBinary() - _ = yym4112 + if yyq4115[0] { + yym4117 := z.EncBinary() + _ = yym4117 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51424,23 +51472,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4110[0] { + if yyq4115[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4113 := z.EncBinary() - _ = yym4113 + yym4118 := z.EncBinary() + _ = yym4118 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4110 || yy2arr4110 { + if yyr4115 || yy2arr4115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4110[1] { - yym4115 := z.EncBinary() - _ = yym4115 + if yyq4115[1] { + yym4120 := z.EncBinary() + _ = yym4120 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51449,54 +51497,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4110[1] { + if yyq4115[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4116 := z.EncBinary() - _ = yym4116 + yym4121 := z.EncBinary() + _ = yym4121 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4110 || yy2arr4110 { + if yyr4115 || yy2arr4115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4110[2] { - yy4118 := &x.ListMeta - yym4119 := z.EncBinary() - _ = yym4119 + if yyq4115[2] { + yy4123 := &x.ListMeta + yym4124 := z.EncBinary() + _ = yym4124 if false { - } else if z.HasExtensions() && z.EncExt(yy4118) { + } else if z.HasExtensions() && z.EncExt(yy4123) { } else { - z.EncFallback(yy4118) + z.EncFallback(yy4123) } } else { r.EncodeNil() } } else { - if yyq4110[2] { + if yyq4115[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4120 := &x.ListMeta - yym4121 := z.EncBinary() - _ = yym4121 + yy4125 := &x.ListMeta + yym4126 := z.EncBinary() + _ = yym4126 if false { - } else if z.HasExtensions() && z.EncExt(yy4120) { + } else if z.HasExtensions() && z.EncExt(yy4125) { } else { - z.EncFallback(yy4120) + z.EncFallback(yy4125) } } } - if yyr4110 || yy2arr4110 { + if yyr4115 || yy2arr4115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4123 := z.EncBinary() - _ = yym4123 + yym4128 := z.EncBinary() + _ = yym4128 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -51509,15 +51557,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4124 := z.EncBinary() - _ = yym4124 + yym4129 := z.EncBinary() + _ = yym4129 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4110 || yy2arr4110 { + if yyr4115 || yy2arr4115 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51530,25 +51578,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4125 := z.DecBinary() - _ = yym4125 + yym4130 := z.DecBinary() + _ = yym4130 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4126 := r.ContainerType() - if yyct4126 == codecSelferValueTypeMap1234 { - yyl4126 := r.ReadMapStart() - if yyl4126 == 0 { + yyct4131 := r.ContainerType() + if yyct4131 == codecSelferValueTypeMap1234 { + yyl4131 := r.ReadMapStart() + if yyl4131 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4126, d) + x.codecDecodeSelfFromMap(yyl4131, d) } - } else if yyct4126 == codecSelferValueTypeArray1234 { - yyl4126 := r.ReadArrayStart() - if yyl4126 == 0 { + } else if yyct4131 == codecSelferValueTypeArray1234 { + yyl4131 := r.ReadArrayStart() + if yyl4131 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4126, d) + x.codecDecodeSelfFromArray(yyl4131, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51560,12 +51608,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4127Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4127Slc - var yyhl4127 bool = l >= 0 - for yyj4127 := 0; ; yyj4127++ { - if yyhl4127 { - if yyj4127 >= l { + var yys4132Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4132Slc + var yyhl4132 bool = l >= 0 + for yyj4132 := 0; ; yyj4132++ { + if yyhl4132 { + if yyj4132 >= l { break } } else { @@ -51574,10 +51622,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4127Slc = r.DecodeBytes(yys4127Slc, true, true) - yys4127 := string(yys4127Slc) + yys4132Slc = r.DecodeBytes(yys4132Slc, true, true) + yys4132 := string(yys4132Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4127 { + switch yys4132 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51594,31 +51642,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4130 := &x.ListMeta - yym4131 := z.DecBinary() - _ = yym4131 + yyv4135 := &x.ListMeta + yym4136 := z.DecBinary() + _ = yym4136 if false { - } else if z.HasExtensions() && z.DecExt(yyv4130) { + } else if z.HasExtensions() && z.DecExt(yyv4135) { } else { - z.DecFallback(yyv4130, false) + z.DecFallback(yyv4135, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4132 := &x.Items - yym4133 := z.DecBinary() - _ = yym4133 + yyv4137 := &x.Items + yym4138 := z.DecBinary() + _ = yym4138 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4132), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4137), d) } } default: - z.DecStructFieldNotFound(-1, yys4127) - } // end switch yys4127 - } // end for yyj4127 + z.DecStructFieldNotFound(-1, yys4132) + } // end switch yys4132 + } // end for yyj4132 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51626,16 +51674,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4134 int - var yyb4134 bool - var yyhl4134 bool = l >= 0 - yyj4134++ - if yyhl4134 { - yyb4134 = yyj4134 > l + var yyj4139 int + var yyb4139 bool + var yyhl4139 bool = l >= 0 + yyj4139++ + if yyhl4139 { + yyb4139 = yyj4139 > l } else { - yyb4134 = r.CheckBreak() + yyb4139 = r.CheckBreak() } - if yyb4134 { + if yyb4139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51645,13 +51693,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4134++ - if yyhl4134 { - yyb4134 = yyj4134 > l + yyj4139++ + if yyhl4139 { + yyb4139 = yyj4139 > l } else { - yyb4134 = r.CheckBreak() + yyb4139 = r.CheckBreak() } - if yyb4134 { + if yyb4139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51661,13 +51709,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4134++ - if yyhl4134 { - yyb4134 = yyj4134 > l + yyj4139++ + if yyhl4139 { + yyb4139 = yyj4139 > l } else { - yyb4134 = r.CheckBreak() + yyb4139 = r.CheckBreak() } - if yyb4134 { + if yyb4139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51675,22 +51723,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4137 := &x.ListMeta - yym4138 := z.DecBinary() - _ = yym4138 + yyv4142 := &x.ListMeta + yym4143 := z.DecBinary() + _ = yym4143 if false { - } else if z.HasExtensions() && z.DecExt(yyv4137) { + } else if z.HasExtensions() && z.DecExt(yyv4142) { } else { - z.DecFallback(yyv4137, false) + z.DecFallback(yyv4142, false) } } - yyj4134++ - if yyhl4134 { - yyb4134 = yyj4134 > l + yyj4139++ + if yyhl4139 { + yyb4139 = yyj4139 > l } else { - yyb4134 = r.CheckBreak() + yyb4139 = r.CheckBreak() } - if yyb4134 { + if yyb4139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51698,26 +51746,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4139 := &x.Items - yym4140 := z.DecBinary() - _ = yym4140 + yyv4144 := &x.Items + yym4145 := z.DecBinary() + _ = yym4145 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4139), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4144), d) } } for { - yyj4134++ - if yyhl4134 { - yyb4134 = yyj4134 > l + yyj4139++ + if yyhl4139 { + yyb4139 = yyj4139 > l } else { - yyb4134 = r.CheckBreak() + yyb4139 = r.CheckBreak() } - if yyb4134 { + if yyb4139 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4134-1, "") + z.DecStructFieldNotFound(yyj4139-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51726,8 +51774,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4141 := z.EncBinary() - _ = yym4141 + yym4146 := z.EncBinary() + _ = yym4146 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51739,8 +51787,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4142 := z.DecBinary() - _ = yym4142 + yym4147 := z.DecBinary() + _ = yym4147 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51755,32 +51803,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4143 := z.EncBinary() - _ = yym4143 + yym4148 := z.EncBinary() + _ = yym4148 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4144 := !z.EncBinary() - yy2arr4144 := z.EncBasicHandle().StructToArray - var yyq4144 [4]bool - _, _, _ = yysep4144, yyq4144, yy2arr4144 - const yyr4144 bool = false - yyq4144[2] = x.Message != "" - yyq4144[3] = x.Error != "" - var yynn4144 int - if yyr4144 || yy2arr4144 { + yysep4149 := !z.EncBinary() + yy2arr4149 := z.EncBasicHandle().StructToArray + var yyq4149 [4]bool + _, _, _ = yysep4149, yyq4149, yy2arr4149 + const yyr4149 bool = false + yyq4149[2] = x.Message != "" + yyq4149[3] = x.Error != "" + var yynn4149 int + if yyr4149 || yy2arr4149 { r.EncodeArrayStart(4) } else { - yynn4144 = 2 - for _, b := range yyq4144 { + yynn4149 = 2 + for _, b := range yyq4149 { if b { - yynn4144++ + yynn4149++ } } - r.EncodeMapStart(yynn4144) - yynn4144 = 0 + r.EncodeMapStart(yynn4149) + yynn4149 = 0 } - if yyr4144 || yy2arr4144 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -51789,7 +51837,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4144 || yy2arr4144 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -51798,11 +51846,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4144 || yy2arr4144 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4144[2] { - yym4148 := z.EncBinary() - _ = yym4148 + if yyq4149[2] { + yym4153 := z.EncBinary() + _ = yym4153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -51811,23 +51859,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4144[2] { + if yyq4149[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4149 := z.EncBinary() - _ = yym4149 + yym4154 := z.EncBinary() + _ = yym4154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4144 || yy2arr4144 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4144[3] { - yym4151 := z.EncBinary() - _ = yym4151 + if yyq4149[3] { + yym4156 := z.EncBinary() + _ = yym4156 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -51836,19 +51884,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4144[3] { + if yyq4149[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4152 := z.EncBinary() - _ = yym4152 + yym4157 := z.EncBinary() + _ = yym4157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4144 || yy2arr4144 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51861,25 +51909,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4153 := z.DecBinary() - _ = yym4153 + yym4158 := z.DecBinary() + _ = yym4158 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4154 := r.ContainerType() - if yyct4154 == codecSelferValueTypeMap1234 { - yyl4154 := r.ReadMapStart() - if yyl4154 == 0 { + yyct4159 := r.ContainerType() + if yyct4159 == codecSelferValueTypeMap1234 { + yyl4159 := r.ReadMapStart() + if yyl4159 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4154, d) + x.codecDecodeSelfFromMap(yyl4159, d) } - } else if yyct4154 == codecSelferValueTypeArray1234 { - yyl4154 := r.ReadArrayStart() - if yyl4154 == 0 { + } else if yyct4159 == codecSelferValueTypeArray1234 { + yyl4159 := r.ReadArrayStart() + if yyl4159 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4154, d) + x.codecDecodeSelfFromArray(yyl4159, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51891,12 +51939,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4155Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4155Slc - var yyhl4155 bool = l >= 0 - for yyj4155 := 0; ; yyj4155++ { - if yyhl4155 { - if yyj4155 >= l { + var yys4160Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4160Slc + var yyhl4160 bool = l >= 0 + for yyj4160 := 0; ; yyj4160++ { + if yyhl4160 { + if yyj4160 >= l { break } } else { @@ -51905,10 +51953,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4155Slc = r.DecodeBytes(yys4155Slc, true, true) - yys4155 := string(yys4155Slc) + yys4160Slc = r.DecodeBytes(yys4160Slc, true, true) + yys4160 := string(yys4160Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4155 { + switch yys4160 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -51934,9 +51982,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4155) - } // end switch yys4155 - } // end for yyj4155 + z.DecStructFieldNotFound(-1, yys4160) + } // end switch yys4160 + } // end for yyj4160 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51944,16 +51992,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4160 int - var yyb4160 bool - var yyhl4160 bool = l >= 0 - yyj4160++ - if yyhl4160 { - yyb4160 = yyj4160 > l + var yyj4165 int + var yyb4165 bool + var yyhl4165 bool = l >= 0 + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4160 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4160 { + if yyb4165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51963,13 +52011,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4160++ - if yyhl4160 { - yyb4160 = yyj4160 > l + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4160 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4160 { + if yyb4165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51979,13 +52027,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4160++ - if yyhl4160 { - yyb4160 = yyj4160 > l + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4160 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4160 { + if yyb4165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51995,13 +52043,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4160++ - if yyhl4160 { - yyb4160 = yyj4160 > l + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4160 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4160 { + if yyb4165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52012,17 +52060,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4160++ - if yyhl4160 { - yyb4160 = yyj4160 > l + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4160 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4160 { + if yyb4165 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4160-1, "") + z.DecStructFieldNotFound(yyj4165-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52034,38 +52082,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4165 := z.EncBinary() - _ = yym4165 + yym4170 := z.EncBinary() + _ = yym4170 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4166 := !z.EncBinary() - yy2arr4166 := z.EncBasicHandle().StructToArray - var yyq4166 [4]bool - _, _, _ = yysep4166, yyq4166, yy2arr4166 - const yyr4166 bool = false - yyq4166[0] = x.Kind != "" - yyq4166[1] = x.APIVersion != "" - yyq4166[2] = true - yyq4166[3] = len(x.Conditions) != 0 - var yynn4166 int - if yyr4166 || yy2arr4166 { + yysep4171 := !z.EncBinary() + yy2arr4171 := z.EncBasicHandle().StructToArray + var yyq4171 [4]bool + _, _, _ = yysep4171, yyq4171, yy2arr4171 + const yyr4171 bool = false + yyq4171[0] = x.Kind != "" + yyq4171[1] = x.APIVersion != "" + yyq4171[2] = true + yyq4171[3] = len(x.Conditions) != 0 + var yynn4171 int + if yyr4171 || yy2arr4171 { r.EncodeArrayStart(4) } else { - yynn4166 = 0 - for _, b := range yyq4166 { + yynn4171 = 0 + for _, b := range yyq4171 { if b { - yynn4166++ + yynn4171++ } } - r.EncodeMapStart(yynn4166) - yynn4166 = 0 + r.EncodeMapStart(yynn4171) + yynn4171 = 0 } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4166[0] { - yym4168 := z.EncBinary() - _ = yym4168 + if yyq4171[0] { + yym4173 := z.EncBinary() + _ = yym4173 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52074,23 +52122,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4166[0] { + if yyq4171[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4169 := z.EncBinary() - _ = yym4169 + yym4174 := z.EncBinary() + _ = yym4174 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4166[1] { - yym4171 := z.EncBinary() - _ = yym4171 + if yyq4171[1] { + yym4176 := z.EncBinary() + _ = yym4176 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52099,43 +52147,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4166[1] { + if yyq4171[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4172 := z.EncBinary() - _ = yym4172 + yym4177 := z.EncBinary() + _ = yym4177 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4166[2] { - yy4174 := &x.ObjectMeta - yy4174.CodecEncodeSelf(e) + if yyq4171[2] { + yy4179 := &x.ObjectMeta + yy4179.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4166[2] { + if yyq4171[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4175 := &x.ObjectMeta - yy4175.CodecEncodeSelf(e) + yy4180 := &x.ObjectMeta + yy4180.CodecEncodeSelf(e) } } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4166[3] { + if yyq4171[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4177 := z.EncBinary() - _ = yym4177 + yym4182 := z.EncBinary() + _ = yym4182 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52145,15 +52193,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4166[3] { + if yyq4171[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4178 := z.EncBinary() - _ = yym4178 + yym4183 := z.EncBinary() + _ = yym4183 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52161,7 +52209,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4166 || yy2arr4166 { + if yyr4171 || yy2arr4171 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52174,25 +52222,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4179 := z.DecBinary() - _ = yym4179 + yym4184 := z.DecBinary() + _ = yym4184 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4180 := r.ContainerType() - if yyct4180 == codecSelferValueTypeMap1234 { - yyl4180 := r.ReadMapStart() - if yyl4180 == 0 { + yyct4185 := r.ContainerType() + if yyct4185 == codecSelferValueTypeMap1234 { + yyl4185 := r.ReadMapStart() + if yyl4185 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4180, d) + x.codecDecodeSelfFromMap(yyl4185, d) } - } else if yyct4180 == codecSelferValueTypeArray1234 { - yyl4180 := r.ReadArrayStart() - if yyl4180 == 0 { + } else if yyct4185 == codecSelferValueTypeArray1234 { + yyl4185 := r.ReadArrayStart() + if yyl4185 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4180, d) + x.codecDecodeSelfFromArray(yyl4185, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52204,12 +52252,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4181Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4181Slc - var yyhl4181 bool = l >= 0 - for yyj4181 := 0; ; yyj4181++ { - if yyhl4181 { - if yyj4181 >= l { + var yys4186Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4186Slc + var yyhl4186 bool = l >= 0 + for yyj4186 := 0; ; yyj4186++ { + if yyhl4186 { + if yyj4186 >= l { break } } else { @@ -52218,10 +52266,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4181Slc = r.DecodeBytes(yys4181Slc, true, true) - yys4181 := string(yys4181Slc) + yys4186Slc = r.DecodeBytes(yys4186Slc, true, true) + yys4186 := string(yys4186Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4181 { + switch yys4186 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52238,25 +52286,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4184 := &x.ObjectMeta - yyv4184.CodecDecodeSelf(d) + yyv4189 := &x.ObjectMeta + yyv4189.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4185 := &x.Conditions - yym4186 := z.DecBinary() - _ = yym4186 + yyv4190 := &x.Conditions + yym4191 := z.DecBinary() + _ = yym4191 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4185), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4190), d) } } default: - z.DecStructFieldNotFound(-1, yys4181) - } // end switch yys4181 - } // end for yyj4181 + z.DecStructFieldNotFound(-1, yys4186) + } // end switch yys4186 + } // end for yyj4186 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52264,16 +52312,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4187 int - var yyb4187 bool - var yyhl4187 bool = l >= 0 - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + var yyj4192 int + var yyb4192 bool + var yyhl4192 bool = l >= 0 + yyj4192++ + if yyhl4192 { + yyb4192 = yyj4192 > l } else { - yyb4187 = r.CheckBreak() + yyb4192 = r.CheckBreak() } - if yyb4187 { + if yyb4192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52283,13 +52331,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + yyj4192++ + if yyhl4192 { + yyb4192 = yyj4192 > l } else { - yyb4187 = r.CheckBreak() + yyb4192 = r.CheckBreak() } - if yyb4187 { + if yyb4192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52299,13 +52347,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + yyj4192++ + if yyhl4192 { + yyb4192 = yyj4192 > l } else { - yyb4187 = r.CheckBreak() + yyb4192 = r.CheckBreak() } - if yyb4187 { + if yyb4192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52313,16 +52361,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4190 := &x.ObjectMeta - yyv4190.CodecDecodeSelf(d) + yyv4195 := &x.ObjectMeta + yyv4195.CodecDecodeSelf(d) } - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + yyj4192++ + if yyhl4192 { + yyb4192 = yyj4192 > l } else { - yyb4187 = r.CheckBreak() + yyb4192 = r.CheckBreak() } - if yyb4187 { + if yyb4192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52330,26 +52378,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4191 := &x.Conditions - yym4192 := z.DecBinary() - _ = yym4192 + yyv4196 := &x.Conditions + yym4197 := z.DecBinary() + _ = yym4197 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4191), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4196), d) } } for { - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + yyj4192++ + if yyhl4192 { + yyb4192 = yyj4192 > l } else { - yyb4187 = r.CheckBreak() + yyb4192 = r.CheckBreak() } - if yyb4187 { + if yyb4192 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4187-1, "") + z.DecStructFieldNotFound(yyj4192-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52361,37 +52409,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4193 := z.EncBinary() - _ = yym4193 + yym4198 := z.EncBinary() + _ = yym4198 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4194 := !z.EncBinary() - yy2arr4194 := z.EncBasicHandle().StructToArray - var yyq4194 [4]bool - _, _, _ = yysep4194, yyq4194, yy2arr4194 - const yyr4194 bool = false - yyq4194[0] = x.Kind != "" - yyq4194[1] = x.APIVersion != "" - yyq4194[2] = true - var yynn4194 int - if yyr4194 || yy2arr4194 { + yysep4199 := !z.EncBinary() + yy2arr4199 := z.EncBasicHandle().StructToArray + var yyq4199 [4]bool + _, _, _ = yysep4199, yyq4199, yy2arr4199 + const yyr4199 bool = false + yyq4199[0] = x.Kind != "" + yyq4199[1] = x.APIVersion != "" + yyq4199[2] = true + var yynn4199 int + if yyr4199 || yy2arr4199 { r.EncodeArrayStart(4) } else { - yynn4194 = 1 - for _, b := range yyq4194 { + yynn4199 = 1 + for _, b := range yyq4199 { if b { - yynn4194++ + yynn4199++ } } - r.EncodeMapStart(yynn4194) - yynn4194 = 0 + r.EncodeMapStart(yynn4199) + yynn4199 = 0 } - if yyr4194 || yy2arr4194 { + if yyr4199 || yy2arr4199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4194[0] { - yym4196 := z.EncBinary() - _ = yym4196 + if yyq4199[0] { + yym4201 := z.EncBinary() + _ = yym4201 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52400,23 +52448,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4194[0] { + if yyq4199[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4197 := z.EncBinary() - _ = yym4197 + yym4202 := z.EncBinary() + _ = yym4202 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4194 || yy2arr4194 { + if yyr4199 || yy2arr4199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4194[1] { - yym4199 := z.EncBinary() - _ = yym4199 + if yyq4199[1] { + yym4204 := z.EncBinary() + _ = yym4204 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52425,54 +52473,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4194[1] { + if yyq4199[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4200 := z.EncBinary() - _ = yym4200 + yym4205 := z.EncBinary() + _ = yym4205 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4194 || yy2arr4194 { + if yyr4199 || yy2arr4199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4194[2] { - yy4202 := &x.ListMeta - yym4203 := z.EncBinary() - _ = yym4203 + if yyq4199[2] { + yy4207 := &x.ListMeta + yym4208 := z.EncBinary() + _ = yym4208 if false { - } else if z.HasExtensions() && z.EncExt(yy4202) { + } else if z.HasExtensions() && z.EncExt(yy4207) { } else { - z.EncFallback(yy4202) + z.EncFallback(yy4207) } } else { r.EncodeNil() } } else { - if yyq4194[2] { + if yyq4199[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4204 := &x.ListMeta - yym4205 := z.EncBinary() - _ = yym4205 + yy4209 := &x.ListMeta + yym4210 := z.EncBinary() + _ = yym4210 if false { - } else if z.HasExtensions() && z.EncExt(yy4204) { + } else if z.HasExtensions() && z.EncExt(yy4209) { } else { - z.EncFallback(yy4204) + z.EncFallback(yy4209) } } } - if yyr4194 || yy2arr4194 { + if yyr4199 || yy2arr4199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4207 := z.EncBinary() - _ = yym4207 + yym4212 := z.EncBinary() + _ = yym4212 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -52485,15 +52533,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4208 := z.EncBinary() - _ = yym4208 + yym4213 := z.EncBinary() + _ = yym4213 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4194 || yy2arr4194 { + if yyr4199 || yy2arr4199 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52506,25 +52554,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4209 := z.DecBinary() - _ = yym4209 + yym4214 := z.DecBinary() + _ = yym4214 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4210 := r.ContainerType() - if yyct4210 == codecSelferValueTypeMap1234 { - yyl4210 := r.ReadMapStart() - if yyl4210 == 0 { + yyct4215 := r.ContainerType() + if yyct4215 == codecSelferValueTypeMap1234 { + yyl4215 := r.ReadMapStart() + if yyl4215 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4210, d) + x.codecDecodeSelfFromMap(yyl4215, d) } - } else if yyct4210 == codecSelferValueTypeArray1234 { - yyl4210 := r.ReadArrayStart() - if yyl4210 == 0 { + } else if yyct4215 == codecSelferValueTypeArray1234 { + yyl4215 := r.ReadArrayStart() + if yyl4215 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4210, d) + x.codecDecodeSelfFromArray(yyl4215, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52536,12 +52584,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4211Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4211Slc - var yyhl4211 bool = l >= 0 - for yyj4211 := 0; ; yyj4211++ { - if yyhl4211 { - if yyj4211 >= l { + var yys4216Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4216Slc + var yyhl4216 bool = l >= 0 + for yyj4216 := 0; ; yyj4216++ { + if yyhl4216 { + if yyj4216 >= l { break } } else { @@ -52550,10 +52598,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4211Slc = r.DecodeBytes(yys4211Slc, true, true) - yys4211 := string(yys4211Slc) + yys4216Slc = r.DecodeBytes(yys4216Slc, true, true) + yys4216 := string(yys4216Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4211 { + switch yys4216 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52570,31 +52618,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4214 := &x.ListMeta - yym4215 := z.DecBinary() - _ = yym4215 + yyv4219 := &x.ListMeta + yym4220 := z.DecBinary() + _ = yym4220 if false { - } else if z.HasExtensions() && z.DecExt(yyv4214) { + } else if z.HasExtensions() && z.DecExt(yyv4219) { } else { - z.DecFallback(yyv4214, false) + z.DecFallback(yyv4219, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4216 := &x.Items - yym4217 := z.DecBinary() - _ = yym4217 + yyv4221 := &x.Items + yym4222 := z.DecBinary() + _ = yym4222 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4216), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4221), d) } } default: - z.DecStructFieldNotFound(-1, yys4211) - } // end switch yys4211 - } // end for yyj4211 + z.DecStructFieldNotFound(-1, yys4216) + } // end switch yys4216 + } // end for yyj4216 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52602,16 +52650,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4218 int - var yyb4218 bool - var yyhl4218 bool = l >= 0 - yyj4218++ - if yyhl4218 { - yyb4218 = yyj4218 > l + var yyj4223 int + var yyb4223 bool + var yyhl4223 bool = l >= 0 + yyj4223++ + if yyhl4223 { + yyb4223 = yyj4223 > l } else { - yyb4218 = r.CheckBreak() + yyb4223 = r.CheckBreak() } - if yyb4218 { + if yyb4223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52621,13 +52669,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4218++ - if yyhl4218 { - yyb4218 = yyj4218 > l + yyj4223++ + if yyhl4223 { + yyb4223 = yyj4223 > l } else { - yyb4218 = r.CheckBreak() + yyb4223 = r.CheckBreak() } - if yyb4218 { + if yyb4223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52637,13 +52685,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4218++ - if yyhl4218 { - yyb4218 = yyj4218 > l + yyj4223++ + if yyhl4223 { + yyb4223 = yyj4223 > l } else { - yyb4218 = r.CheckBreak() + yyb4223 = r.CheckBreak() } - if yyb4218 { + if yyb4223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52651,22 +52699,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4221 := &x.ListMeta - yym4222 := z.DecBinary() - _ = yym4222 + yyv4226 := &x.ListMeta + yym4227 := z.DecBinary() + _ = yym4227 if false { - } else if z.HasExtensions() && z.DecExt(yyv4221) { + } else if z.HasExtensions() && z.DecExt(yyv4226) { } else { - z.DecFallback(yyv4221, false) + z.DecFallback(yyv4226, false) } } - yyj4218++ - if yyhl4218 { - yyb4218 = yyj4218 > l + yyj4223++ + if yyhl4223 { + yyb4223 = yyj4223 > l } else { - yyb4218 = r.CheckBreak() + yyb4223 = r.CheckBreak() } - if yyb4218 { + if yyb4223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52674,26 +52722,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4223 := &x.Items - yym4224 := z.DecBinary() - _ = yym4224 + yyv4228 := &x.Items + yym4229 := z.DecBinary() + _ = yym4229 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4223), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4228), d) } } for { - yyj4218++ - if yyhl4218 { - yyb4218 = yyj4218 > l + yyj4223++ + if yyhl4223 { + yyb4223 = yyj4223 > l } else { - yyb4218 = r.CheckBreak() + yyb4223 = r.CheckBreak() } - if yyb4218 { + if yyb4223 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4218-1, "") + z.DecStructFieldNotFound(yyj4223-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52705,38 +52753,38 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4225 := z.EncBinary() - _ = yym4225 + yym4230 := z.EncBinary() + _ = yym4230 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4226 := !z.EncBinary() - yy2arr4226 := z.EncBasicHandle().StructToArray - var yyq4226 [1]bool - _, _, _ = yysep4226, yyq4226, yy2arr4226 - const yyr4226 bool = false - yyq4226[0] = len(x.Items) != 0 - var yynn4226 int - if yyr4226 || yy2arr4226 { + yysep4231 := !z.EncBinary() + yy2arr4231 := z.EncBasicHandle().StructToArray + var yyq4231 [1]bool + _, _, _ = yysep4231, yyq4231, yy2arr4231 + const yyr4231 bool = false + yyq4231[0] = len(x.Items) != 0 + var yynn4231 int + if yyr4231 || yy2arr4231 { r.EncodeArrayStart(1) } else { - yynn4226 = 0 - for _, b := range yyq4226 { + yynn4231 = 0 + for _, b := range yyq4231 { if b { - yynn4226++ + yynn4231++ } } - r.EncodeMapStart(yynn4226) - yynn4226 = 0 + r.EncodeMapStart(yynn4231) + yynn4231 = 0 } - if yyr4226 || yy2arr4226 { + if yyr4231 || yy2arr4231 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4226[0] { + if yyq4231[0] { if x.Items == nil { r.EncodeNil() } else { - yym4228 := z.EncBinary() - _ = yym4228 + yym4233 := z.EncBinary() + _ = yym4233 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -52746,15 +52794,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4226[0] { + if yyq4231[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym4229 := z.EncBinary() - _ = yym4229 + yym4234 := z.EncBinary() + _ = yym4234 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -52762,7 +52810,7 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4226 || yy2arr4226 { + if yyr4231 || yy2arr4231 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52775,25 +52823,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4230 := z.DecBinary() - _ = yym4230 + yym4235 := z.DecBinary() + _ = yym4235 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4231 := r.ContainerType() - if yyct4231 == codecSelferValueTypeMap1234 { - yyl4231 := r.ReadMapStart() - if yyl4231 == 0 { + yyct4236 := r.ContainerType() + if yyct4236 == codecSelferValueTypeMap1234 { + yyl4236 := r.ReadMapStart() + if yyl4236 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4231, d) + x.codecDecodeSelfFromMap(yyl4236, d) } - } else if yyct4231 == codecSelferValueTypeArray1234 { - yyl4231 := r.ReadArrayStart() - if yyl4231 == 0 { + } else if yyct4236 == codecSelferValueTypeArray1234 { + yyl4236 := r.ReadArrayStart() + if yyl4236 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4231, d) + x.codecDecodeSelfFromArray(yyl4236, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52805,12 +52853,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4232Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4232Slc - var yyhl4232 bool = l >= 0 - for yyj4232 := 0; ; yyj4232++ { - if yyhl4232 { - if yyj4232 >= l { + var yys4237Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4237Slc + var yyhl4237 bool = l >= 0 + for yyj4237 := 0; ; yyj4237++ { + if yyhl4237 { + if yyj4237 >= l { break } } else { @@ -52819,26 +52867,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4232Slc = r.DecodeBytes(yys4232Slc, true, true) - yys4232 := string(yys4232Slc) + yys4237Slc = r.DecodeBytes(yys4237Slc, true, true) + yys4237 := string(yys4237Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4232 { + switch yys4237 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4233 := &x.Items - yym4234 := z.DecBinary() - _ = yym4234 + yyv4238 := &x.Items + yym4239 := z.DecBinary() + _ = yym4239 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4233), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4238), d) } } default: - z.DecStructFieldNotFound(-1, yys4232) - } // end switch yys4232 - } // end for yyj4232 + z.DecStructFieldNotFound(-1, yys4237) + } // end switch yys4237 + } // end for yyj4237 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52846,16 +52894,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4235 int - var yyb4235 bool - var yyhl4235 bool = l >= 0 - yyj4235++ - if yyhl4235 { - yyb4235 = yyj4235 > l + var yyj4240 int + var yyb4240 bool + var yyhl4240 bool = l >= 0 + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4235 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4235 { + if yyb4240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52863,26 +52911,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4236 := &x.Items - yym4237 := z.DecBinary() - _ = yym4237 + yyv4241 := &x.Items + yym4242 := z.DecBinary() + _ = yym4242 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4236), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4241), d) } } for { - yyj4235++ - if yyhl4235 { - yyb4235 = yyj4235 > l + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4235 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4235 { + if yyb4240 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4235-1, "") + z.DecStructFieldNotFound(yyj4240-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52894,35 +52942,35 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4238 := z.EncBinary() - _ = yym4238 + yym4243 := z.EncBinary() + _ = yym4243 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4239 := !z.EncBinary() - yy2arr4239 := z.EncBasicHandle().StructToArray - var yyq4239 [3]bool - _, _, _ = yysep4239, yyq4239, yy2arr4239 - const yyr4239 bool = false - yyq4239[1] = x.FieldRef != nil - yyq4239[2] = x.ResourceFieldRef != nil - var yynn4239 int - if yyr4239 || yy2arr4239 { + yysep4244 := !z.EncBinary() + yy2arr4244 := z.EncBasicHandle().StructToArray + var yyq4244 [3]bool + _, _, _ = yysep4244, yyq4244, yy2arr4244 + const yyr4244 bool = false + yyq4244[1] = x.FieldRef != nil + yyq4244[2] = x.ResourceFieldRef != nil + var yynn4244 int + if yyr4244 || yy2arr4244 { r.EncodeArrayStart(3) } else { - yynn4239 = 1 - for _, b := range yyq4239 { + yynn4244 = 1 + for _, b := range yyq4244 { if b { - yynn4239++ + yynn4244++ } } - r.EncodeMapStart(yynn4239) - yynn4239 = 0 + r.EncodeMapStart(yynn4244) + yynn4244 = 0 } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4241 := z.EncBinary() - _ = yym4241 + yym4246 := z.EncBinary() + _ = yym4246 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -52931,16 +52979,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4242 := z.EncBinary() - _ = yym4242 + yym4247 := z.EncBinary() + _ = yym4247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4239[1] { + if yyq4244[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -52950,7 +52998,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4239[1] { + if yyq4244[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52961,9 +53009,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4239[2] { + if yyq4244[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -52973,7 +53021,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4239[2] { + if yyq4244[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52984,7 +53032,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52997,25 +53045,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4245 := z.DecBinary() - _ = yym4245 + yym4250 := z.DecBinary() + _ = yym4250 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4246 := r.ContainerType() - if yyct4246 == codecSelferValueTypeMap1234 { - yyl4246 := r.ReadMapStart() - if yyl4246 == 0 { + yyct4251 := r.ContainerType() + if yyct4251 == codecSelferValueTypeMap1234 { + yyl4251 := r.ReadMapStart() + if yyl4251 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4246, d) + x.codecDecodeSelfFromMap(yyl4251, d) } - } else if yyct4246 == codecSelferValueTypeArray1234 { - yyl4246 := r.ReadArrayStart() - if yyl4246 == 0 { + } else if yyct4251 == codecSelferValueTypeArray1234 { + yyl4251 := r.ReadArrayStart() + if yyl4251 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4246, d) + x.codecDecodeSelfFromArray(yyl4251, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53027,12 +53075,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4247Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4247Slc - var yyhl4247 bool = l >= 0 - for yyj4247 := 0; ; yyj4247++ { - if yyhl4247 { - if yyj4247 >= l { + var yys4252Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4252Slc + var yyhl4252 bool = l >= 0 + for yyj4252 := 0; ; yyj4252++ { + if yyhl4252 { + if yyj4252 >= l { break } } else { @@ -53041,10 +53089,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4247Slc = r.DecodeBytes(yys4247Slc, true, true) - yys4247 := string(yys4247Slc) + yys4252Slc = r.DecodeBytes(yys4252Slc, true, true) + yys4252 := string(yys4252Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4247 { + switch yys4252 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -53074,9 +53122,9 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ResourceFieldRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4247) - } // end switch yys4247 - } // end for yyj4247 + z.DecStructFieldNotFound(-1, yys4252) + } // end switch yys4252 + } // end for yyj4252 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53084,16 +53132,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4251 int - var yyb4251 bool - var yyhl4251 bool = l >= 0 - yyj4251++ - if yyhl4251 { - yyb4251 = yyj4251 > l + var yyj4256 int + var yyb4256 bool + var yyhl4256 bool = l >= 0 + yyj4256++ + if yyhl4256 { + yyb4256 = yyj4256 > l } else { - yyb4251 = r.CheckBreak() + yyb4256 = r.CheckBreak() } - if yyb4251 { + if yyb4256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53103,13 +53151,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4251++ - if yyhl4251 { - yyb4251 = yyj4251 > l + yyj4256++ + if yyhl4256 { + yyb4256 = yyj4256 > l } else { - yyb4251 = r.CheckBreak() + yyb4256 = r.CheckBreak() } - if yyb4251 { + if yyb4256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53124,13 +53172,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4251++ - if yyhl4251 { - yyb4251 = yyj4251 > l + yyj4256++ + if yyhl4256 { + yyb4256 = yyj4256 > l } else { - yyb4251 = r.CheckBreak() + yyb4256 = r.CheckBreak() } - if yyb4251 { + if yyb4256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53146,17 +53194,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ResourceFieldRef.CodecDecodeSelf(d) } for { - yyj4251++ - if yyhl4251 { - yyb4251 = yyj4251 > l + yyj4256++ + if yyhl4256 { + yyb4256 = yyj4256 > l } else { - yyb4251 = r.CheckBreak() + yyb4256 = r.CheckBreak() } - if yyb4251 { + if yyb4256 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4251-1, "") + z.DecStructFieldNotFound(yyj4256-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53168,38 +53216,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4255 := z.EncBinary() - _ = yym4255 + yym4260 := z.EncBinary() + _ = yym4260 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4256 := !z.EncBinary() - yy2arr4256 := z.EncBasicHandle().StructToArray - var yyq4256 [6]bool - _, _, _ = yysep4256, yyq4256, yy2arr4256 - const yyr4256 bool = false - yyq4256[0] = x.Capabilities != nil - yyq4256[1] = x.Privileged != nil - yyq4256[2] = x.SELinuxOptions != nil - yyq4256[3] = x.RunAsUser != nil - yyq4256[4] = x.RunAsNonRoot != nil - yyq4256[5] = x.ReadOnlyRootFilesystem != nil - var yynn4256 int - if yyr4256 || yy2arr4256 { + yysep4261 := !z.EncBinary() + yy2arr4261 := z.EncBasicHandle().StructToArray + var yyq4261 [6]bool + _, _, _ = yysep4261, yyq4261, yy2arr4261 + const yyr4261 bool = false + yyq4261[0] = x.Capabilities != nil + yyq4261[1] = x.Privileged != nil + yyq4261[2] = x.SELinuxOptions != nil + yyq4261[3] = x.RunAsUser != nil + yyq4261[4] = x.RunAsNonRoot != nil + yyq4261[5] = x.ReadOnlyRootFilesystem != nil + var yynn4261 int + if yyr4261 || yy2arr4261 { r.EncodeArrayStart(6) } else { - yynn4256 = 0 - for _, b := range yyq4256 { + yynn4261 = 0 + for _, b := range yyq4261 { if b { - yynn4256++ + yynn4261++ } } - r.EncodeMapStart(yynn4256) - yynn4256 = 0 + r.EncodeMapStart(yynn4261) + yynn4261 = 0 } - if yyr4256 || yy2arr4256 { + if yyr4261 || yy2arr4261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4256[0] { + if yyq4261[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -53209,7 +53257,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4256[0] { + if yyq4261[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53220,44 +53268,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4256 || yy2arr4256 { + if yyr4261 || yy2arr4261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4256[1] { + if yyq4261[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4259 := *x.Privileged - yym4260 := z.EncBinary() - _ = yym4260 + yy4264 := *x.Privileged + yym4265 := z.EncBinary() + _ = yym4265 if false { } else { - r.EncodeBool(bool(yy4259)) + r.EncodeBool(bool(yy4264)) } } } else { r.EncodeNil() } } else { - if yyq4256[1] { + if yyq4261[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4261 := *x.Privileged - yym4262 := z.EncBinary() - _ = yym4262 + yy4266 := *x.Privileged + yym4267 := z.EncBinary() + _ = yym4267 if false { } else { - r.EncodeBool(bool(yy4261)) + r.EncodeBool(bool(yy4266)) } } } } - if yyr4256 || yy2arr4256 { + if yyr4261 || yy2arr4261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4256[2] { + if yyq4261[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -53267,7 +53315,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4256[2] { + if yyq4261[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53278,112 +53326,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4256 || yy2arr4256 { + if yyr4261 || yy2arr4261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4256[3] { + if yyq4261[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4265 := *x.RunAsUser - yym4266 := z.EncBinary() - _ = yym4266 + yy4270 := *x.RunAsUser + yym4271 := z.EncBinary() + _ = yym4271 if false { } else { - r.EncodeInt(int64(yy4265)) + r.EncodeInt(int64(yy4270)) } } } else { r.EncodeNil() } } else { - if yyq4256[3] { + if yyq4261[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4267 := *x.RunAsUser - yym4268 := z.EncBinary() - _ = yym4268 + yy4272 := *x.RunAsUser + yym4273 := z.EncBinary() + _ = yym4273 if false { } else { - r.EncodeInt(int64(yy4267)) + r.EncodeInt(int64(yy4272)) } } } } - if yyr4256 || yy2arr4256 { + if yyr4261 || yy2arr4261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4256[4] { + if yyq4261[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4270 := *x.RunAsNonRoot - yym4271 := z.EncBinary() - _ = yym4271 + yy4275 := *x.RunAsNonRoot + yym4276 := z.EncBinary() + _ = yym4276 if false { } else { - r.EncodeBool(bool(yy4270)) + r.EncodeBool(bool(yy4275)) } } } else { r.EncodeNil() } } else { - if yyq4256[4] { + if yyq4261[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4272 := *x.RunAsNonRoot - yym4273 := z.EncBinary() - _ = yym4273 + yy4277 := *x.RunAsNonRoot + yym4278 := z.EncBinary() + _ = yym4278 if false { } else { - r.EncodeBool(bool(yy4272)) + r.EncodeBool(bool(yy4277)) } } } } - if yyr4256 || yy2arr4256 { + if yyr4261 || yy2arr4261 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4256[5] { + if yyq4261[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4275 := *x.ReadOnlyRootFilesystem - yym4276 := z.EncBinary() - _ = yym4276 + yy4280 := *x.ReadOnlyRootFilesystem + yym4281 := z.EncBinary() + _ = yym4281 if false { } else { - r.EncodeBool(bool(yy4275)) + r.EncodeBool(bool(yy4280)) } } } else { r.EncodeNil() } } else { - if yyq4256[5] { + if yyq4261[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4277 := *x.ReadOnlyRootFilesystem - yym4278 := z.EncBinary() - _ = yym4278 + yy4282 := *x.ReadOnlyRootFilesystem + yym4283 := z.EncBinary() + _ = yym4283 if false { } else { - r.EncodeBool(bool(yy4277)) + r.EncodeBool(bool(yy4282)) } } } } - if yyr4256 || yy2arr4256 { + if yyr4261 || yy2arr4261 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53396,25 +53444,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4279 := z.DecBinary() - _ = yym4279 + yym4284 := z.DecBinary() + _ = yym4284 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4280 := r.ContainerType() - if yyct4280 == codecSelferValueTypeMap1234 { - yyl4280 := r.ReadMapStart() - if yyl4280 == 0 { + yyct4285 := r.ContainerType() + if yyct4285 == codecSelferValueTypeMap1234 { + yyl4285 := r.ReadMapStart() + if yyl4285 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4280, d) + x.codecDecodeSelfFromMap(yyl4285, d) } - } else if yyct4280 == codecSelferValueTypeArray1234 { - yyl4280 := r.ReadArrayStart() - if yyl4280 == 0 { + } else if yyct4285 == codecSelferValueTypeArray1234 { + yyl4285 := r.ReadArrayStart() + if yyl4285 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4280, d) + x.codecDecodeSelfFromArray(yyl4285, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53426,12 +53474,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4281Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4281Slc - var yyhl4281 bool = l >= 0 - for yyj4281 := 0; ; yyj4281++ { - if yyhl4281 { - if yyj4281 >= l { + var yys4286Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4286Slc + var yyhl4286 bool = l >= 0 + for yyj4286 := 0; ; yyj4286++ { + if yyhl4286 { + if yyj4286 >= l { break } } else { @@ -53440,10 +53488,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4281Slc = r.DecodeBytes(yys4281Slc, true, true) - yys4281 := string(yys4281Slc) + yys4286Slc = r.DecodeBytes(yys4286Slc, true, true) + yys4286 := string(yys4286Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4281 { + switch yys4286 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -53464,8 +53512,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4284 := z.DecBinary() - _ = yym4284 + yym4289 := z.DecBinary() + _ = yym4289 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -53491,8 +53539,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4287 := z.DecBinary() - _ = yym4287 + yym4292 := z.DecBinary() + _ = yym4292 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -53507,8 +53555,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4289 := z.DecBinary() - _ = yym4289 + yym4294 := z.DecBinary() + _ = yym4294 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -53523,17 +53571,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4291 := z.DecBinary() - _ = yym4291 + yym4296 := z.DecBinary() + _ = yym4296 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4281) - } // end switch yys4281 - } // end for yyj4281 + z.DecStructFieldNotFound(-1, yys4286) + } // end switch yys4286 + } // end for yyj4286 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53541,16 +53589,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4292 int - var yyb4292 bool - var yyhl4292 bool = l >= 0 - yyj4292++ - if yyhl4292 { - yyb4292 = yyj4292 > l + var yyj4297 int + var yyb4297 bool + var yyhl4297 bool = l >= 0 + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4292 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4292 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53565,13 +53613,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4292++ - if yyhl4292 { - yyb4292 = yyj4292 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4292 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4292 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53584,20 +53632,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4295 := z.DecBinary() - _ = yym4295 + yym4300 := z.DecBinary() + _ = yym4300 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4292++ - if yyhl4292 { - yyb4292 = yyj4292 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4292 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4292 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53612,13 +53660,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4292++ - if yyhl4292 { - yyb4292 = yyj4292 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4292 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4292 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53631,20 +53679,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4298 := z.DecBinary() - _ = yym4298 + yym4303 := z.DecBinary() + _ = yym4303 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4292++ - if yyhl4292 { - yyb4292 = yyj4292 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4292 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4292 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53657,20 +53705,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4300 := z.DecBinary() - _ = yym4300 + yym4305 := z.DecBinary() + _ = yym4305 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4292++ - if yyhl4292 { - yyb4292 = yyj4292 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4292 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4292 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53683,25 +53731,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4302 := z.DecBinary() - _ = yym4302 + yym4307 := z.DecBinary() + _ = yym4307 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4292++ - if yyhl4292 { - yyb4292 = yyj4292 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4292 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4292 { + if yyb4297 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4292-1, "") + z.DecStructFieldNotFound(yyj4297-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53713,38 +53761,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4303 := z.EncBinary() - _ = yym4303 + yym4308 := z.EncBinary() + _ = yym4308 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4304 := !z.EncBinary() - yy2arr4304 := z.EncBasicHandle().StructToArray - var yyq4304 [4]bool - _, _, _ = yysep4304, yyq4304, yy2arr4304 - const yyr4304 bool = false - yyq4304[0] = x.User != "" - yyq4304[1] = x.Role != "" - yyq4304[2] = x.Type != "" - yyq4304[3] = x.Level != "" - var yynn4304 int - if yyr4304 || yy2arr4304 { + yysep4309 := !z.EncBinary() + yy2arr4309 := z.EncBasicHandle().StructToArray + var yyq4309 [4]bool + _, _, _ = yysep4309, yyq4309, yy2arr4309 + const yyr4309 bool = false + yyq4309[0] = x.User != "" + yyq4309[1] = x.Role != "" + yyq4309[2] = x.Type != "" + yyq4309[3] = x.Level != "" + var yynn4309 int + if yyr4309 || yy2arr4309 { r.EncodeArrayStart(4) } else { - yynn4304 = 0 - for _, b := range yyq4304 { + yynn4309 = 0 + for _, b := range yyq4309 { if b { - yynn4304++ + yynn4309++ } } - r.EncodeMapStart(yynn4304) - yynn4304 = 0 + r.EncodeMapStart(yynn4309) + yynn4309 = 0 } - if yyr4304 || yy2arr4304 { + if yyr4309 || yy2arr4309 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4304[0] { - yym4306 := z.EncBinary() - _ = yym4306 + if yyq4309[0] { + yym4311 := z.EncBinary() + _ = yym4311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -53753,23 +53801,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4304[0] { + if yyq4309[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4307 := z.EncBinary() - _ = yym4307 + yym4312 := z.EncBinary() + _ = yym4312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4304 || yy2arr4304 { + if yyr4309 || yy2arr4309 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4304[1] { - yym4309 := z.EncBinary() - _ = yym4309 + if yyq4309[1] { + yym4314 := z.EncBinary() + _ = yym4314 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -53778,23 +53826,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4304[1] { + if yyq4309[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4310 := z.EncBinary() - _ = yym4310 + yym4315 := z.EncBinary() + _ = yym4315 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4304 || yy2arr4304 { + if yyr4309 || yy2arr4309 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4304[2] { - yym4312 := z.EncBinary() - _ = yym4312 + if yyq4309[2] { + yym4317 := z.EncBinary() + _ = yym4317 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -53803,23 +53851,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4304[2] { + if yyq4309[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4313 := z.EncBinary() - _ = yym4313 + yym4318 := z.EncBinary() + _ = yym4318 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4304 || yy2arr4304 { + if yyr4309 || yy2arr4309 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4304[3] { - yym4315 := z.EncBinary() - _ = yym4315 + if yyq4309[3] { + yym4320 := z.EncBinary() + _ = yym4320 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -53828,19 +53876,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4304[3] { + if yyq4309[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4316 := z.EncBinary() - _ = yym4316 + yym4321 := z.EncBinary() + _ = yym4321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4304 || yy2arr4304 { + if yyr4309 || yy2arr4309 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53853,25 +53901,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4317 := z.DecBinary() - _ = yym4317 + yym4322 := z.DecBinary() + _ = yym4322 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4318 := r.ContainerType() - if yyct4318 == codecSelferValueTypeMap1234 { - yyl4318 := r.ReadMapStart() - if yyl4318 == 0 { + yyct4323 := r.ContainerType() + if yyct4323 == codecSelferValueTypeMap1234 { + yyl4323 := r.ReadMapStart() + if yyl4323 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4318, d) + x.codecDecodeSelfFromMap(yyl4323, d) } - } else if yyct4318 == codecSelferValueTypeArray1234 { - yyl4318 := r.ReadArrayStart() - if yyl4318 == 0 { + } else if yyct4323 == codecSelferValueTypeArray1234 { + yyl4323 := r.ReadArrayStart() + if yyl4323 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4318, d) + x.codecDecodeSelfFromArray(yyl4323, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53883,12 +53931,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4319Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4319Slc - var yyhl4319 bool = l >= 0 - for yyj4319 := 0; ; yyj4319++ { - if yyhl4319 { - if yyj4319 >= l { + var yys4324Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4324Slc + var yyhl4324 bool = l >= 0 + for yyj4324 := 0; ; yyj4324++ { + if yyhl4324 { + if yyj4324 >= l { break } } else { @@ -53897,10 +53945,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4319Slc = r.DecodeBytes(yys4319Slc, true, true) - yys4319 := string(yys4319Slc) + yys4324Slc = r.DecodeBytes(yys4324Slc, true, true) + yys4324 := string(yys4324Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4319 { + switch yys4324 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -53926,9 +53974,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4319) - } // end switch yys4319 - } // end for yyj4319 + z.DecStructFieldNotFound(-1, yys4324) + } // end switch yys4324 + } // end for yyj4324 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53936,16 +53984,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4324 int - var yyb4324 bool - var yyhl4324 bool = l >= 0 - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + var yyj4329 int + var yyb4329 bool + var yyhl4329 bool = l >= 0 + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l } else { - yyb4324 = r.CheckBreak() + yyb4329 = r.CheckBreak() } - if yyb4324 { + if yyb4329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53955,13 +54003,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l } else { - yyb4324 = r.CheckBreak() + yyb4329 = r.CheckBreak() } - if yyb4324 { + if yyb4329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53971,13 +54019,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l } else { - yyb4324 = r.CheckBreak() + yyb4329 = r.CheckBreak() } - if yyb4324 { + if yyb4329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53987,13 +54035,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l } else { - yyb4324 = r.CheckBreak() + yyb4329 = r.CheckBreak() } - if yyb4324 { + if yyb4329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54004,17 +54052,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l } else { - yyb4324 = r.CheckBreak() + yyb4329 = r.CheckBreak() } - if yyb4324 { + if yyb4329 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4324-1, "") + z.DecStructFieldNotFound(yyj4329-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54026,37 +54074,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4329 := z.EncBinary() - _ = yym4329 + yym4334 := z.EncBinary() + _ = yym4334 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4330 := !z.EncBinary() - yy2arr4330 := z.EncBasicHandle().StructToArray - var yyq4330 [5]bool - _, _, _ = yysep4330, yyq4330, yy2arr4330 - const yyr4330 bool = false - yyq4330[0] = x.Kind != "" - yyq4330[1] = x.APIVersion != "" - yyq4330[2] = true - var yynn4330 int - if yyr4330 || yy2arr4330 { + yysep4335 := !z.EncBinary() + yy2arr4335 := z.EncBasicHandle().StructToArray + var yyq4335 [5]bool + _, _, _ = yysep4335, yyq4335, yy2arr4335 + const yyr4335 bool = false + yyq4335[0] = x.Kind != "" + yyq4335[1] = x.APIVersion != "" + yyq4335[2] = true + var yynn4335 int + if yyr4335 || yy2arr4335 { r.EncodeArrayStart(5) } else { - yynn4330 = 2 - for _, b := range yyq4330 { + yynn4335 = 2 + for _, b := range yyq4335 { if b { - yynn4330++ + yynn4335++ } } - r.EncodeMapStart(yynn4330) - yynn4330 = 0 + r.EncodeMapStart(yynn4335) + yynn4335 = 0 } - if yyr4330 || yy2arr4330 { + if yyr4335 || yy2arr4335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4330[0] { - yym4332 := z.EncBinary() - _ = yym4332 + if yyq4335[0] { + yym4337 := z.EncBinary() + _ = yym4337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54065,23 +54113,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4330[0] { + if yyq4335[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4333 := z.EncBinary() - _ = yym4333 + yym4338 := z.EncBinary() + _ = yym4338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4330 || yy2arr4330 { + if yyr4335 || yy2arr4335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4330[1] { - yym4335 := z.EncBinary() - _ = yym4335 + if yyq4335[1] { + yym4340 := z.EncBinary() + _ = yym4340 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54090,39 +54138,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4330[1] { + if yyq4335[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4336 := z.EncBinary() - _ = yym4336 + yym4341 := z.EncBinary() + _ = yym4341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4330 || yy2arr4330 { + if yyr4335 || yy2arr4335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4330[2] { - yy4338 := &x.ObjectMeta - yy4338.CodecEncodeSelf(e) + if yyq4335[2] { + yy4343 := &x.ObjectMeta + yy4343.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4330[2] { + if yyq4335[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4339 := &x.ObjectMeta - yy4339.CodecEncodeSelf(e) + yy4344 := &x.ObjectMeta + yy4344.CodecEncodeSelf(e) } } - if yyr4330 || yy2arr4330 { + if yyr4335 || yy2arr4335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4341 := z.EncBinary() - _ = yym4341 + yym4346 := z.EncBinary() + _ = yym4346 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -54131,20 +54179,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4342 := z.EncBinary() - _ = yym4342 + yym4347 := z.EncBinary() + _ = yym4347 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4330 || yy2arr4330 { + if yyr4335 || yy2arr4335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4344 := z.EncBinary() - _ = yym4344 + yym4349 := z.EncBinary() + _ = yym4349 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -54157,15 +54205,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4345 := z.EncBinary() - _ = yym4345 + yym4350 := z.EncBinary() + _ = yym4350 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4330 || yy2arr4330 { + if yyr4335 || yy2arr4335 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54178,25 +54226,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4346 := z.DecBinary() - _ = yym4346 + yym4351 := z.DecBinary() + _ = yym4351 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4347 := r.ContainerType() - if yyct4347 == codecSelferValueTypeMap1234 { - yyl4347 := r.ReadMapStart() - if yyl4347 == 0 { + yyct4352 := r.ContainerType() + if yyct4352 == codecSelferValueTypeMap1234 { + yyl4352 := r.ReadMapStart() + if yyl4352 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4347, d) + x.codecDecodeSelfFromMap(yyl4352, d) } - } else if yyct4347 == codecSelferValueTypeArray1234 { - yyl4347 := r.ReadArrayStart() - if yyl4347 == 0 { + } else if yyct4352 == codecSelferValueTypeArray1234 { + yyl4352 := r.ReadArrayStart() + if yyl4352 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4347, d) + x.codecDecodeSelfFromArray(yyl4352, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54208,12 +54256,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4348Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4348Slc - var yyhl4348 bool = l >= 0 - for yyj4348 := 0; ; yyj4348++ { - if yyhl4348 { - if yyj4348 >= l { + var yys4353Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4353Slc + var yyhl4353 bool = l >= 0 + for yyj4353 := 0; ; yyj4353++ { + if yyhl4353 { + if yyj4353 >= l { break } } else { @@ -54222,10 +54270,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4348Slc = r.DecodeBytes(yys4348Slc, true, true) - yys4348 := string(yys4348Slc) + yys4353Slc = r.DecodeBytes(yys4353Slc, true, true) + yys4353 := string(yys4353Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4348 { + switch yys4353 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54242,8 +54290,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4351 := &x.ObjectMeta - yyv4351.CodecDecodeSelf(d) + yyv4356 := &x.ObjectMeta + yyv4356.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -54255,18 +54303,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4353 := &x.Data - yym4354 := z.DecBinary() - _ = yym4354 + yyv4358 := &x.Data + yym4359 := z.DecBinary() + _ = yym4359 if false { } else { - *yyv4353 = r.DecodeBytes(*(*[]byte)(yyv4353), false, false) + *yyv4358 = r.DecodeBytes(*(*[]byte)(yyv4358), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4348) - } // end switch yys4348 - } // end for yyj4348 + z.DecStructFieldNotFound(-1, yys4353) + } // end switch yys4353 + } // end for yyj4353 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54274,16 +54322,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4355 int - var yyb4355 bool - var yyhl4355 bool = l >= 0 - yyj4355++ - if yyhl4355 { - yyb4355 = yyj4355 > l + var yyj4360 int + var yyb4360 bool + var yyhl4360 bool = l >= 0 + yyj4360++ + if yyhl4360 { + yyb4360 = yyj4360 > l } else { - yyb4355 = r.CheckBreak() + yyb4360 = r.CheckBreak() } - if yyb4355 { + if yyb4360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54293,13 +54341,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4355++ - if yyhl4355 { - yyb4355 = yyj4355 > l + yyj4360++ + if yyhl4360 { + yyb4360 = yyj4360 > l } else { - yyb4355 = r.CheckBreak() + yyb4360 = r.CheckBreak() } - if yyb4355 { + if yyb4360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54309,13 +54357,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4355++ - if yyhl4355 { - yyb4355 = yyj4355 > l + yyj4360++ + if yyhl4360 { + yyb4360 = yyj4360 > l } else { - yyb4355 = r.CheckBreak() + yyb4360 = r.CheckBreak() } - if yyb4355 { + if yyb4360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54323,16 +54371,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4358 := &x.ObjectMeta - yyv4358.CodecDecodeSelf(d) + yyv4363 := &x.ObjectMeta + yyv4363.CodecDecodeSelf(d) } - yyj4355++ - if yyhl4355 { - yyb4355 = yyj4355 > l + yyj4360++ + if yyhl4360 { + yyb4360 = yyj4360 > l } else { - yyb4355 = r.CheckBreak() + yyb4360 = r.CheckBreak() } - if yyb4355 { + if yyb4360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54342,13 +54390,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4355++ - if yyhl4355 { - yyb4355 = yyj4355 > l + yyj4360++ + if yyhl4360 { + yyb4360 = yyj4360 > l } else { - yyb4355 = r.CheckBreak() + yyb4360 = r.CheckBreak() } - if yyb4355 { + if yyb4360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54356,26 +54404,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4360 := &x.Data - yym4361 := z.DecBinary() - _ = yym4361 + yyv4365 := &x.Data + yym4366 := z.DecBinary() + _ = yym4366 if false { } else { - *yyv4360 = r.DecodeBytes(*(*[]byte)(yyv4360), false, false) + *yyv4365 = r.DecodeBytes(*(*[]byte)(yyv4365), false, false) } } for { - yyj4355++ - if yyhl4355 { - yyb4355 = yyj4355 > l + yyj4360++ + if yyhl4360 { + yyb4360 = yyj4360 > l } else { - yyb4355 = r.CheckBreak() + yyb4360 = r.CheckBreak() } - if yyb4355 { + if yyb4360 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4355-1, "") + z.DecStructFieldNotFound(yyj4360-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54385,10 +54433,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4362 := range v { + for _, yyv4367 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4363 := &yyv4362 - yy4363.CodecEncodeSelf(e) + yy4368 := &yyv4367 + yy4368.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54398,127 +54446,12 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4364 := *v - yyh4364, yyl4364 := z.DecSliceHelperStart() - var yyc4364 bool - if yyl4364 == 0 { - if yyv4364 == nil { - yyv4364 = []OwnerReference{} - yyc4364 = true - } else if len(yyv4364) != 0 { - yyv4364 = yyv4364[:0] - yyc4364 = true - } - } else if yyl4364 > 0 { - var yyrr4364, yyrl4364 int - var yyrt4364 bool - if yyl4364 > cap(yyv4364) { - - yyrg4364 := len(yyv4364) > 0 - yyv24364 := yyv4364 - yyrl4364, yyrt4364 = z.DecInferLen(yyl4364, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4364 { - if yyrl4364 <= cap(yyv4364) { - yyv4364 = yyv4364[:yyrl4364] - } else { - yyv4364 = make([]OwnerReference, yyrl4364) - } - } else { - yyv4364 = make([]OwnerReference, yyrl4364) - } - yyc4364 = true - yyrr4364 = len(yyv4364) - if yyrg4364 { - copy(yyv4364, yyv24364) - } - } else if yyl4364 != len(yyv4364) { - yyv4364 = yyv4364[:yyl4364] - yyc4364 = true - } - yyj4364 := 0 - for ; yyj4364 < yyrr4364; yyj4364++ { - yyh4364.ElemContainerState(yyj4364) - if r.TryDecodeAsNil() { - yyv4364[yyj4364] = OwnerReference{} - } else { - yyv4365 := &yyv4364[yyj4364] - yyv4365.CodecDecodeSelf(d) - } - - } - if yyrt4364 { - for ; yyj4364 < yyl4364; yyj4364++ { - yyv4364 = append(yyv4364, OwnerReference{}) - yyh4364.ElemContainerState(yyj4364) - if r.TryDecodeAsNil() { - yyv4364[yyj4364] = OwnerReference{} - } else { - yyv4366 := &yyv4364[yyj4364] - yyv4366.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4364 := 0 - for ; !r.CheckBreak(); yyj4364++ { - - if yyj4364 >= len(yyv4364) { - yyv4364 = append(yyv4364, OwnerReference{}) // var yyz4364 OwnerReference - yyc4364 = true - } - yyh4364.ElemContainerState(yyj4364) - if yyj4364 < len(yyv4364) { - if r.TryDecodeAsNil() { - yyv4364[yyj4364] = OwnerReference{} - } else { - yyv4367 := &yyv4364[yyj4364] - yyv4367.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4364 < len(yyv4364) { - yyv4364 = yyv4364[:yyj4364] - yyc4364 = true - } else if yyj4364 == 0 && yyv4364 == nil { - yyv4364 = []OwnerReference{} - yyc4364 = true - } - } - yyh4364.End() - if yyc4364 { - *v = yyv4364 - } -} - -func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolumeAccessMode, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4368 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4368.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolumeAccessMode, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4369 := *v yyh4369, yyl4369 := z.DecSliceHelperStart() var yyc4369 bool if yyl4369 == 0 { if yyv4369 == nil { - yyv4369 = []PersistentVolumeAccessMode{} + yyv4369 = []OwnerReference{} yyc4369 = true } else if len(yyv4369) != 0 { yyv4369 = yyv4369[:0] @@ -54529,18 +54462,23 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum var yyrt4369 bool if yyl4369 > cap(yyv4369) { - yyrl4369, yyrt4369 = z.DecInferLen(yyl4369, z.DecBasicHandle().MaxInitLen, 16) + yyrg4369 := len(yyv4369) > 0 + yyv24369 := yyv4369 + yyrl4369, yyrt4369 = z.DecInferLen(yyl4369, z.DecBasicHandle().MaxInitLen, 72) if yyrt4369 { if yyrl4369 <= cap(yyv4369) { yyv4369 = yyv4369[:yyrl4369] } else { - yyv4369 = make([]PersistentVolumeAccessMode, yyrl4369) + yyv4369 = make([]OwnerReference, yyrl4369) } } else { - yyv4369 = make([]PersistentVolumeAccessMode, yyrl4369) + yyv4369 = make([]OwnerReference, yyrl4369) } yyc4369 = true yyrr4369 = len(yyv4369) + if yyrg4369 { + copy(yyv4369, yyv24369) + } } else if yyl4369 != len(yyv4369) { yyv4369 = yyv4369[:yyl4369] yyc4369 = true @@ -54549,20 +54487,22 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum for ; yyj4369 < yyrr4369; yyj4369++ { yyh4369.ElemContainerState(yyj4369) if r.TryDecodeAsNil() { - yyv4369[yyj4369] = "" + yyv4369[yyj4369] = OwnerReference{} } else { - yyv4369[yyj4369] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4370 := &yyv4369[yyj4369] + yyv4370.CodecDecodeSelf(d) } } if yyrt4369 { for ; yyj4369 < yyl4369; yyj4369++ { - yyv4369 = append(yyv4369, "") + yyv4369 = append(yyv4369, OwnerReference{}) yyh4369.ElemContainerState(yyj4369) if r.TryDecodeAsNil() { - yyv4369[yyj4369] = "" + yyv4369[yyj4369] = OwnerReference{} } else { - yyv4369[yyj4369] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4371 := &yyv4369[yyj4369] + yyv4371.CodecDecodeSelf(d) } } @@ -54573,15 +54513,16 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum for ; !r.CheckBreak(); yyj4369++ { if yyj4369 >= len(yyv4369) { - yyv4369 = append(yyv4369, "") // var yyz4369 PersistentVolumeAccessMode + yyv4369 = append(yyv4369, OwnerReference{}) // var yyz4369 OwnerReference yyc4369 = true } yyh4369.ElemContainerState(yyj4369) if yyj4369 < len(yyv4369) { if r.TryDecodeAsNil() { - yyv4369[yyj4369] = "" + yyv4369[yyj4369] = OwnerReference{} } else { - yyv4369[yyj4369] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4372 := &yyv4369[yyj4369] + yyv4372.CodecDecodeSelf(d) } } else { @@ -54593,7 +54534,7 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum yyv4369 = yyv4369[:yyj4369] yyc4369 = true } else if yyj4369 == 0 && yyv4369 == nil { - yyv4369 = []PersistentVolumeAccessMode{} + yyv4369 = []OwnerReference{} yyc4369 = true } } @@ -54603,101 +54544,92 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } -func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolumeAccessMode, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4373 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4374 := &yyv4373 - yy4374.CodecEncodeSelf(e) + yyv4373.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolumeAccessMode, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4375 := *v - yyh4375, yyl4375 := z.DecSliceHelperStart() - var yyc4375 bool - if yyl4375 == 0 { - if yyv4375 == nil { - yyv4375 = []PersistentVolume{} - yyc4375 = true - } else if len(yyv4375) != 0 { - yyv4375 = yyv4375[:0] - yyc4375 = true + yyv4374 := *v + yyh4374, yyl4374 := z.DecSliceHelperStart() + var yyc4374 bool + if yyl4374 == 0 { + if yyv4374 == nil { + yyv4374 = []PersistentVolumeAccessMode{} + yyc4374 = true + } else if len(yyv4374) != 0 { + yyv4374 = yyv4374[:0] + yyc4374 = true } - } else if yyl4375 > 0 { - var yyrr4375, yyrl4375 int - var yyrt4375 bool - if yyl4375 > cap(yyv4375) { + } else if yyl4374 > 0 { + var yyrr4374, yyrl4374 int + var yyrt4374 bool + if yyl4374 > cap(yyv4374) { - yyrg4375 := len(yyv4375) > 0 - yyv24375 := yyv4375 - yyrl4375, yyrt4375 = z.DecInferLen(yyl4375, z.DecBasicHandle().MaxInitLen, 456) - if yyrt4375 { - if yyrl4375 <= cap(yyv4375) { - yyv4375 = yyv4375[:yyrl4375] + yyrl4374, yyrt4374 = z.DecInferLen(yyl4374, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4374 { + if yyrl4374 <= cap(yyv4374) { + yyv4374 = yyv4374[:yyrl4374] } else { - yyv4375 = make([]PersistentVolume, yyrl4375) + yyv4374 = make([]PersistentVolumeAccessMode, yyrl4374) } } else { - yyv4375 = make([]PersistentVolume, yyrl4375) + yyv4374 = make([]PersistentVolumeAccessMode, yyrl4374) } - yyc4375 = true - yyrr4375 = len(yyv4375) - if yyrg4375 { - copy(yyv4375, yyv24375) - } - } else if yyl4375 != len(yyv4375) { - yyv4375 = yyv4375[:yyl4375] - yyc4375 = true + yyc4374 = true + yyrr4374 = len(yyv4374) + } else if yyl4374 != len(yyv4374) { + yyv4374 = yyv4374[:yyl4374] + yyc4374 = true } - yyj4375 := 0 - for ; yyj4375 < yyrr4375; yyj4375++ { - yyh4375.ElemContainerState(yyj4375) + yyj4374 := 0 + for ; yyj4374 < yyrr4374; yyj4374++ { + yyh4374.ElemContainerState(yyj4374) if r.TryDecodeAsNil() { - yyv4375[yyj4375] = PersistentVolume{} + yyv4374[yyj4374] = "" } else { - yyv4376 := &yyv4375[yyj4375] - yyv4376.CodecDecodeSelf(d) + yyv4374[yyj4374] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4375 { - for ; yyj4375 < yyl4375; yyj4375++ { - yyv4375 = append(yyv4375, PersistentVolume{}) - yyh4375.ElemContainerState(yyj4375) + if yyrt4374 { + for ; yyj4374 < yyl4374; yyj4374++ { + yyv4374 = append(yyv4374, "") + yyh4374.ElemContainerState(yyj4374) if r.TryDecodeAsNil() { - yyv4375[yyj4375] = PersistentVolume{} + yyv4374[yyj4374] = "" } else { - yyv4377 := &yyv4375[yyj4375] - yyv4377.CodecDecodeSelf(d) + yyv4374[yyj4374] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4375 := 0 - for ; !r.CheckBreak(); yyj4375++ { + yyj4374 := 0 + for ; !r.CheckBreak(); yyj4374++ { - if yyj4375 >= len(yyv4375) { - yyv4375 = append(yyv4375, PersistentVolume{}) // var yyz4375 PersistentVolume - yyc4375 = true + if yyj4374 >= len(yyv4374) { + yyv4374 = append(yyv4374, "") // var yyz4374 PersistentVolumeAccessMode + yyc4374 = true } - yyh4375.ElemContainerState(yyj4375) - if yyj4375 < len(yyv4375) { + yyh4374.ElemContainerState(yyj4374) + if yyj4374 < len(yyv4374) { if r.TryDecodeAsNil() { - yyv4375[yyj4375] = PersistentVolume{} + yyv4374[yyj4374] = "" } else { - yyv4378 := &yyv4375[yyj4375] - yyv4378.CodecDecodeSelf(d) + yyv4374[yyj4374] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -54705,115 +54637,115 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4375 < len(yyv4375) { - yyv4375 = yyv4375[:yyj4375] - yyc4375 = true - } else if yyj4375 == 0 && yyv4375 == nil { - yyv4375 = []PersistentVolume{} - yyc4375 = true + if yyj4374 < len(yyv4374) { + yyv4374 = yyv4374[:yyj4374] + yyc4374 = true + } else if yyj4374 == 0 && yyv4374 == nil { + yyv4374 = []PersistentVolumeAccessMode{} + yyc4374 = true } } - yyh4375.End() - if yyc4375 { - *v = yyv4375 + yyh4374.End() + if yyc4374 { + *v = yyv4374 } } -func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4379 := range v { + for _, yyv4378 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4380 := &yyv4379 - yy4380.CodecEncodeSelf(e) + yy4379 := &yyv4378 + yy4379.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4381 := *v - yyh4381, yyl4381 := z.DecSliceHelperStart() - var yyc4381 bool - if yyl4381 == 0 { - if yyv4381 == nil { - yyv4381 = []PersistentVolumeClaim{} - yyc4381 = true - } else if len(yyv4381) != 0 { - yyv4381 = yyv4381[:0] - yyc4381 = true + yyv4380 := *v + yyh4380, yyl4380 := z.DecSliceHelperStart() + var yyc4380 bool + if yyl4380 == 0 { + if yyv4380 == nil { + yyv4380 = []PersistentVolume{} + yyc4380 = true + } else if len(yyv4380) != 0 { + yyv4380 = yyv4380[:0] + yyc4380 = true } - } else if yyl4381 > 0 { - var yyrr4381, yyrl4381 int - var yyrt4381 bool - if yyl4381 > cap(yyv4381) { + } else if yyl4380 > 0 { + var yyrr4380, yyrl4380 int + var yyrt4380 bool + if yyl4380 > cap(yyv4380) { - yyrg4381 := len(yyv4381) > 0 - yyv24381 := yyv4381 - yyrl4381, yyrt4381 = z.DecInferLen(yyl4381, z.DecBasicHandle().MaxInitLen, 352) - if yyrt4381 { - if yyrl4381 <= cap(yyv4381) { - yyv4381 = yyv4381[:yyrl4381] + yyrg4380 := len(yyv4380) > 0 + yyv24380 := yyv4380 + yyrl4380, yyrt4380 = z.DecInferLen(yyl4380, z.DecBasicHandle().MaxInitLen, 456) + if yyrt4380 { + if yyrl4380 <= cap(yyv4380) { + yyv4380 = yyv4380[:yyrl4380] } else { - yyv4381 = make([]PersistentVolumeClaim, yyrl4381) + yyv4380 = make([]PersistentVolume, yyrl4380) } } else { - yyv4381 = make([]PersistentVolumeClaim, yyrl4381) + yyv4380 = make([]PersistentVolume, yyrl4380) } - yyc4381 = true - yyrr4381 = len(yyv4381) - if yyrg4381 { - copy(yyv4381, yyv24381) + yyc4380 = true + yyrr4380 = len(yyv4380) + if yyrg4380 { + copy(yyv4380, yyv24380) } - } else if yyl4381 != len(yyv4381) { - yyv4381 = yyv4381[:yyl4381] - yyc4381 = true + } else if yyl4380 != len(yyv4380) { + yyv4380 = yyv4380[:yyl4380] + yyc4380 = true } - yyj4381 := 0 - for ; yyj4381 < yyrr4381; yyj4381++ { - yyh4381.ElemContainerState(yyj4381) + yyj4380 := 0 + for ; yyj4380 < yyrr4380; yyj4380++ { + yyh4380.ElemContainerState(yyj4380) if r.TryDecodeAsNil() { - yyv4381[yyj4381] = PersistentVolumeClaim{} + yyv4380[yyj4380] = PersistentVolume{} } else { - yyv4382 := &yyv4381[yyj4381] - yyv4382.CodecDecodeSelf(d) + yyv4381 := &yyv4380[yyj4380] + yyv4381.CodecDecodeSelf(d) } } - if yyrt4381 { - for ; yyj4381 < yyl4381; yyj4381++ { - yyv4381 = append(yyv4381, PersistentVolumeClaim{}) - yyh4381.ElemContainerState(yyj4381) + if yyrt4380 { + for ; yyj4380 < yyl4380; yyj4380++ { + yyv4380 = append(yyv4380, PersistentVolume{}) + yyh4380.ElemContainerState(yyj4380) if r.TryDecodeAsNil() { - yyv4381[yyj4381] = PersistentVolumeClaim{} + yyv4380[yyj4380] = PersistentVolume{} } else { - yyv4383 := &yyv4381[yyj4381] - yyv4383.CodecDecodeSelf(d) + yyv4382 := &yyv4380[yyj4380] + yyv4382.CodecDecodeSelf(d) } } } } else { - yyj4381 := 0 - for ; !r.CheckBreak(); yyj4381++ { + yyj4380 := 0 + for ; !r.CheckBreak(); yyj4380++ { - if yyj4381 >= len(yyv4381) { - yyv4381 = append(yyv4381, PersistentVolumeClaim{}) // var yyz4381 PersistentVolumeClaim - yyc4381 = true + if yyj4380 >= len(yyv4380) { + yyv4380 = append(yyv4380, PersistentVolume{}) // var yyz4380 PersistentVolume + yyc4380 = true } - yyh4381.ElemContainerState(yyj4381) - if yyj4381 < len(yyv4381) { + yyh4380.ElemContainerState(yyj4380) + if yyj4380 < len(yyv4380) { if r.TryDecodeAsNil() { - yyv4381[yyj4381] = PersistentVolumeClaim{} + yyv4380[yyj4380] = PersistentVolume{} } else { - yyv4384 := &yyv4381[yyj4381] - yyv4384.CodecDecodeSelf(d) + yyv4383 := &yyv4380[yyj4380] + yyv4383.CodecDecodeSelf(d) } } else { @@ -54821,115 +54753,115 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4381 < len(yyv4381) { - yyv4381 = yyv4381[:yyj4381] - yyc4381 = true - } else if yyj4381 == 0 && yyv4381 == nil { - yyv4381 = []PersistentVolumeClaim{} - yyc4381 = true + if yyj4380 < len(yyv4380) { + yyv4380 = yyv4380[:yyj4380] + yyc4380 = true + } else if yyj4380 == 0 && yyv4380 == nil { + yyv4380 = []PersistentVolume{} + yyc4380 = true } } - yyh4381.End() - if yyc4381 { - *v = yyv4381 + yyh4380.End() + if yyc4380 { + *v = yyv4380 } } -func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4385 := range v { + for _, yyv4384 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4386 := &yyv4385 - yy4386.CodecEncodeSelf(e) + yy4385 := &yyv4384 + yy4385.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4387 := *v - yyh4387, yyl4387 := z.DecSliceHelperStart() - var yyc4387 bool - if yyl4387 == 0 { - if yyv4387 == nil { - yyv4387 = []KeyToPath{} - yyc4387 = true - } else if len(yyv4387) != 0 { - yyv4387 = yyv4387[:0] - yyc4387 = true + yyv4386 := *v + yyh4386, yyl4386 := z.DecSliceHelperStart() + var yyc4386 bool + if yyl4386 == 0 { + if yyv4386 == nil { + yyv4386 = []PersistentVolumeClaim{} + yyc4386 = true + } else if len(yyv4386) != 0 { + yyv4386 = yyv4386[:0] + yyc4386 = true } - } else if yyl4387 > 0 { - var yyrr4387, yyrl4387 int - var yyrt4387 bool - if yyl4387 > cap(yyv4387) { + } else if yyl4386 > 0 { + var yyrr4386, yyrl4386 int + var yyrt4386 bool + if yyl4386 > cap(yyv4386) { - yyrg4387 := len(yyv4387) > 0 - yyv24387 := yyv4387 - yyrl4387, yyrt4387 = z.DecInferLen(yyl4387, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4387 { - if yyrl4387 <= cap(yyv4387) { - yyv4387 = yyv4387[:yyrl4387] + yyrg4386 := len(yyv4386) > 0 + yyv24386 := yyv4386 + yyrl4386, yyrt4386 = z.DecInferLen(yyl4386, z.DecBasicHandle().MaxInitLen, 352) + if yyrt4386 { + if yyrl4386 <= cap(yyv4386) { + yyv4386 = yyv4386[:yyrl4386] } else { - yyv4387 = make([]KeyToPath, yyrl4387) + yyv4386 = make([]PersistentVolumeClaim, yyrl4386) } } else { - yyv4387 = make([]KeyToPath, yyrl4387) + yyv4386 = make([]PersistentVolumeClaim, yyrl4386) } - yyc4387 = true - yyrr4387 = len(yyv4387) - if yyrg4387 { - copy(yyv4387, yyv24387) + yyc4386 = true + yyrr4386 = len(yyv4386) + if yyrg4386 { + copy(yyv4386, yyv24386) } - } else if yyl4387 != len(yyv4387) { - yyv4387 = yyv4387[:yyl4387] - yyc4387 = true + } else if yyl4386 != len(yyv4386) { + yyv4386 = yyv4386[:yyl4386] + yyc4386 = true } - yyj4387 := 0 - for ; yyj4387 < yyrr4387; yyj4387++ { - yyh4387.ElemContainerState(yyj4387) + yyj4386 := 0 + for ; yyj4386 < yyrr4386; yyj4386++ { + yyh4386.ElemContainerState(yyj4386) if r.TryDecodeAsNil() { - yyv4387[yyj4387] = KeyToPath{} + yyv4386[yyj4386] = PersistentVolumeClaim{} } else { - yyv4388 := &yyv4387[yyj4387] - yyv4388.CodecDecodeSelf(d) + yyv4387 := &yyv4386[yyj4386] + yyv4387.CodecDecodeSelf(d) } } - if yyrt4387 { - for ; yyj4387 < yyl4387; yyj4387++ { - yyv4387 = append(yyv4387, KeyToPath{}) - yyh4387.ElemContainerState(yyj4387) + if yyrt4386 { + for ; yyj4386 < yyl4386; yyj4386++ { + yyv4386 = append(yyv4386, PersistentVolumeClaim{}) + yyh4386.ElemContainerState(yyj4386) if r.TryDecodeAsNil() { - yyv4387[yyj4387] = KeyToPath{} + yyv4386[yyj4386] = PersistentVolumeClaim{} } else { - yyv4389 := &yyv4387[yyj4387] - yyv4389.CodecDecodeSelf(d) + yyv4388 := &yyv4386[yyj4386] + yyv4388.CodecDecodeSelf(d) } } } } else { - yyj4387 := 0 - for ; !r.CheckBreak(); yyj4387++ { + yyj4386 := 0 + for ; !r.CheckBreak(); yyj4386++ { - if yyj4387 >= len(yyv4387) { - yyv4387 = append(yyv4387, KeyToPath{}) // var yyz4387 KeyToPath - yyc4387 = true + if yyj4386 >= len(yyv4386) { + yyv4386 = append(yyv4386, PersistentVolumeClaim{}) // var yyz4386 PersistentVolumeClaim + yyc4386 = true } - yyh4387.ElemContainerState(yyj4387) - if yyj4387 < len(yyv4387) { + yyh4386.ElemContainerState(yyj4386) + if yyj4386 < len(yyv4386) { if r.TryDecodeAsNil() { - yyv4387[yyj4387] = KeyToPath{} + yyv4386[yyj4386] = PersistentVolumeClaim{} } else { - yyv4390 := &yyv4387[yyj4387] - yyv4390.CodecDecodeSelf(d) + yyv4389 := &yyv4386[yyj4386] + yyv4389.CodecDecodeSelf(d) } } else { @@ -54937,115 +54869,115 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4387 < len(yyv4387) { - yyv4387 = yyv4387[:yyj4387] - yyc4387 = true - } else if yyj4387 == 0 && yyv4387 == nil { - yyv4387 = []KeyToPath{} - yyc4387 = true + if yyj4386 < len(yyv4386) { + yyv4386 = yyv4386[:yyj4386] + yyc4386 = true + } else if yyj4386 == 0 && yyv4386 == nil { + yyv4386 = []PersistentVolumeClaim{} + yyc4386 = true } } - yyh4387.End() - if yyc4387 { - *v = yyv4387 + yyh4386.End() + if yyc4386 { + *v = yyv4386 } } -func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4391 := range v { + for _, yyv4390 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4392 := &yyv4391 - yy4392.CodecEncodeSelf(e) + yy4391 := &yyv4390 + yy4391.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4393 := *v - yyh4393, yyl4393 := z.DecSliceHelperStart() - var yyc4393 bool - if yyl4393 == 0 { - if yyv4393 == nil { - yyv4393 = []HTTPHeader{} - yyc4393 = true - } else if len(yyv4393) != 0 { - yyv4393 = yyv4393[:0] - yyc4393 = true + yyv4392 := *v + yyh4392, yyl4392 := z.DecSliceHelperStart() + var yyc4392 bool + if yyl4392 == 0 { + if yyv4392 == nil { + yyv4392 = []KeyToPath{} + yyc4392 = true + } else if len(yyv4392) != 0 { + yyv4392 = yyv4392[:0] + yyc4392 = true } - } else if yyl4393 > 0 { - var yyrr4393, yyrl4393 int - var yyrt4393 bool - if yyl4393 > cap(yyv4393) { + } else if yyl4392 > 0 { + var yyrr4392, yyrl4392 int + var yyrt4392 bool + if yyl4392 > cap(yyv4392) { - yyrg4393 := len(yyv4393) > 0 - yyv24393 := yyv4393 - yyrl4393, yyrt4393 = z.DecInferLen(yyl4393, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4393 { - if yyrl4393 <= cap(yyv4393) { - yyv4393 = yyv4393[:yyrl4393] + yyrg4392 := len(yyv4392) > 0 + yyv24392 := yyv4392 + yyrl4392, yyrt4392 = z.DecInferLen(yyl4392, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4392 { + if yyrl4392 <= cap(yyv4392) { + yyv4392 = yyv4392[:yyrl4392] } else { - yyv4393 = make([]HTTPHeader, yyrl4393) + yyv4392 = make([]KeyToPath, yyrl4392) } } else { - yyv4393 = make([]HTTPHeader, yyrl4393) + yyv4392 = make([]KeyToPath, yyrl4392) } - yyc4393 = true - yyrr4393 = len(yyv4393) - if yyrg4393 { - copy(yyv4393, yyv24393) + yyc4392 = true + yyrr4392 = len(yyv4392) + if yyrg4392 { + copy(yyv4392, yyv24392) } - } else if yyl4393 != len(yyv4393) { - yyv4393 = yyv4393[:yyl4393] - yyc4393 = true + } else if yyl4392 != len(yyv4392) { + yyv4392 = yyv4392[:yyl4392] + yyc4392 = true } - yyj4393 := 0 - for ; yyj4393 < yyrr4393; yyj4393++ { - yyh4393.ElemContainerState(yyj4393) + yyj4392 := 0 + for ; yyj4392 < yyrr4392; yyj4392++ { + yyh4392.ElemContainerState(yyj4392) if r.TryDecodeAsNil() { - yyv4393[yyj4393] = HTTPHeader{} + yyv4392[yyj4392] = KeyToPath{} } else { - yyv4394 := &yyv4393[yyj4393] - yyv4394.CodecDecodeSelf(d) + yyv4393 := &yyv4392[yyj4392] + yyv4393.CodecDecodeSelf(d) } } - if yyrt4393 { - for ; yyj4393 < yyl4393; yyj4393++ { - yyv4393 = append(yyv4393, HTTPHeader{}) - yyh4393.ElemContainerState(yyj4393) + if yyrt4392 { + for ; yyj4392 < yyl4392; yyj4392++ { + yyv4392 = append(yyv4392, KeyToPath{}) + yyh4392.ElemContainerState(yyj4392) if r.TryDecodeAsNil() { - yyv4393[yyj4393] = HTTPHeader{} + yyv4392[yyj4392] = KeyToPath{} } else { - yyv4395 := &yyv4393[yyj4393] - yyv4395.CodecDecodeSelf(d) + yyv4394 := &yyv4392[yyj4392] + yyv4394.CodecDecodeSelf(d) } } } } else { - yyj4393 := 0 - for ; !r.CheckBreak(); yyj4393++ { + yyj4392 := 0 + for ; !r.CheckBreak(); yyj4392++ { - if yyj4393 >= len(yyv4393) { - yyv4393 = append(yyv4393, HTTPHeader{}) // var yyz4393 HTTPHeader - yyc4393 = true + if yyj4392 >= len(yyv4392) { + yyv4392 = append(yyv4392, KeyToPath{}) // var yyz4392 KeyToPath + yyc4392 = true } - yyh4393.ElemContainerState(yyj4393) - if yyj4393 < len(yyv4393) { + yyh4392.ElemContainerState(yyj4392) + if yyj4392 < len(yyv4392) { if r.TryDecodeAsNil() { - yyv4393[yyj4393] = HTTPHeader{} + yyv4392[yyj4392] = KeyToPath{} } else { - yyv4396 := &yyv4393[yyj4393] - yyv4396.CodecDecodeSelf(d) + yyv4395 := &yyv4392[yyj4392] + yyv4395.CodecDecodeSelf(d) } } else { @@ -55053,33 +54985,34 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4393 < len(yyv4393) { - yyv4393 = yyv4393[:yyj4393] - yyc4393 = true - } else if yyj4393 == 0 && yyv4393 == nil { - yyv4393 = []HTTPHeader{} - yyc4393 = true + if yyj4392 < len(yyv4392) { + yyv4392 = yyv4392[:yyj4392] + yyc4392 = true + } else if yyj4392 == 0 && yyv4392 == nil { + yyv4392 = []KeyToPath{} + yyc4392 = true } } - yyh4393.End() - if yyc4393 { - *v = yyv4393 + yyh4392.End() + if yyc4392 { + *v = yyv4392 } } -func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4397 := range v { + for _, yyv4396 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4397.CodecEncodeSelf(e) + yy4397 := &yyv4396 + yy4397.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -55089,7 +55022,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode var yyc4398 bool if yyl4398 == 0 { if yyv4398 == nil { - yyv4398 = []Capability{} + yyv4398 = []HTTPHeader{} yyc4398 = true } else if len(yyv4398) != 0 { yyv4398 = yyv4398[:0] @@ -55100,18 +55033,23 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode var yyrt4398 bool if yyl4398 > cap(yyv4398) { - yyrl4398, yyrt4398 = z.DecInferLen(yyl4398, z.DecBasicHandle().MaxInitLen, 16) + yyrg4398 := len(yyv4398) > 0 + yyv24398 := yyv4398 + yyrl4398, yyrt4398 = z.DecInferLen(yyl4398, z.DecBasicHandle().MaxInitLen, 32) if yyrt4398 { if yyrl4398 <= cap(yyv4398) { yyv4398 = yyv4398[:yyrl4398] } else { - yyv4398 = make([]Capability, yyrl4398) + yyv4398 = make([]HTTPHeader, yyrl4398) } } else { - yyv4398 = make([]Capability, yyrl4398) + yyv4398 = make([]HTTPHeader, yyrl4398) } yyc4398 = true yyrr4398 = len(yyv4398) + if yyrg4398 { + copy(yyv4398, yyv24398) + } } else if yyl4398 != len(yyv4398) { yyv4398 = yyv4398[:yyl4398] yyc4398 = true @@ -55120,20 +55058,22 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode for ; yyj4398 < yyrr4398; yyj4398++ { yyh4398.ElemContainerState(yyj4398) if r.TryDecodeAsNil() { - yyv4398[yyj4398] = "" + yyv4398[yyj4398] = HTTPHeader{} } else { - yyv4398[yyj4398] = Capability(r.DecodeString()) + yyv4399 := &yyv4398[yyj4398] + yyv4399.CodecDecodeSelf(d) } } if yyrt4398 { for ; yyj4398 < yyl4398; yyj4398++ { - yyv4398 = append(yyv4398, "") + yyv4398 = append(yyv4398, HTTPHeader{}) yyh4398.ElemContainerState(yyj4398) if r.TryDecodeAsNil() { - yyv4398[yyj4398] = "" + yyv4398[yyj4398] = HTTPHeader{} } else { - yyv4398[yyj4398] = Capability(r.DecodeString()) + yyv4400 := &yyv4398[yyj4398] + yyv4400.CodecDecodeSelf(d) } } @@ -55144,15 +55084,16 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode for ; !r.CheckBreak(); yyj4398++ { if yyj4398 >= len(yyv4398) { - yyv4398 = append(yyv4398, "") // var yyz4398 Capability + yyv4398 = append(yyv4398, HTTPHeader{}) // var yyz4398 HTTPHeader yyc4398 = true } yyh4398.ElemContainerState(yyj4398) if yyj4398 < len(yyv4398) { if r.TryDecodeAsNil() { - yyv4398[yyj4398] = "" + yyv4398[yyj4398] = HTTPHeader{} } else { - yyv4398[yyj4398] = Capability(r.DecodeString()) + yyv4401 := &yyv4398[yyj4398] + yyv4401.CodecDecodeSelf(d) } } else { @@ -55164,7 +55105,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode yyv4398 = yyv4398[:yyj4398] yyc4398 = true } else if yyj4398 == 0 && yyv4398 == nil { - yyv4398 = []Capability{} + yyv4398 = []HTTPHeader{} yyc4398 = true } } @@ -55174,15 +55115,122 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } -func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4402 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4403 := &yyv4402 - yy4403.CodecEncodeSelf(e) + yyv4402.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4403 := *v + yyh4403, yyl4403 := z.DecSliceHelperStart() + var yyc4403 bool + if yyl4403 == 0 { + if yyv4403 == nil { + yyv4403 = []Capability{} + yyc4403 = true + } else if len(yyv4403) != 0 { + yyv4403 = yyv4403[:0] + yyc4403 = true + } + } else if yyl4403 > 0 { + var yyrr4403, yyrl4403 int + var yyrt4403 bool + if yyl4403 > cap(yyv4403) { + + yyrl4403, yyrt4403 = z.DecInferLen(yyl4403, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4403 { + if yyrl4403 <= cap(yyv4403) { + yyv4403 = yyv4403[:yyrl4403] + } else { + yyv4403 = make([]Capability, yyrl4403) + } + } else { + yyv4403 = make([]Capability, yyrl4403) + } + yyc4403 = true + yyrr4403 = len(yyv4403) + } else if yyl4403 != len(yyv4403) { + yyv4403 = yyv4403[:yyl4403] + yyc4403 = true + } + yyj4403 := 0 + for ; yyj4403 < yyrr4403; yyj4403++ { + yyh4403.ElemContainerState(yyj4403) + if r.TryDecodeAsNil() { + yyv4403[yyj4403] = "" + } else { + yyv4403[yyj4403] = Capability(r.DecodeString()) + } + + } + if yyrt4403 { + for ; yyj4403 < yyl4403; yyj4403++ { + yyv4403 = append(yyv4403, "") + yyh4403.ElemContainerState(yyj4403) + if r.TryDecodeAsNil() { + yyv4403[yyj4403] = "" + } else { + yyv4403[yyj4403] = Capability(r.DecodeString()) + } + + } + } + + } else { + yyj4403 := 0 + for ; !r.CheckBreak(); yyj4403++ { + + if yyj4403 >= len(yyv4403) { + yyv4403 = append(yyv4403, "") // var yyz4403 Capability + yyc4403 = true + } + yyh4403.ElemContainerState(yyj4403) + if yyj4403 < len(yyv4403) { + if r.TryDecodeAsNil() { + yyv4403[yyj4403] = "" + } else { + yyv4403[yyj4403] = Capability(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4403 < len(yyv4403) { + yyv4403 = yyv4403[:yyj4403] + yyc4403 = true + } else if yyj4403 == 0 && yyv4403 == nil { + yyv4403 = []Capability{} + yyc4403 = true + } + } + yyh4403.End() + if yyc4403 { + *v = yyv4403 + } +} + +func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4407 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4408 := &yyv4407 + yy4408.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55192,83 +55240,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4404 := *v - yyh4404, yyl4404 := z.DecSliceHelperStart() - var yyc4404 bool - if yyl4404 == 0 { - if yyv4404 == nil { - yyv4404 = []ContainerPort{} - yyc4404 = true - } else if len(yyv4404) != 0 { - yyv4404 = yyv4404[:0] - yyc4404 = true + yyv4409 := *v + yyh4409, yyl4409 := z.DecSliceHelperStart() + var yyc4409 bool + if yyl4409 == 0 { + if yyv4409 == nil { + yyv4409 = []ContainerPort{} + yyc4409 = true + } else if len(yyv4409) != 0 { + yyv4409 = yyv4409[:0] + yyc4409 = true } - } else if yyl4404 > 0 { - var yyrr4404, yyrl4404 int - var yyrt4404 bool - if yyl4404 > cap(yyv4404) { + } else if yyl4409 > 0 { + var yyrr4409, yyrl4409 int + var yyrt4409 bool + if yyl4409 > cap(yyv4409) { - yyrg4404 := len(yyv4404) > 0 - yyv24404 := yyv4404 - yyrl4404, yyrt4404 = z.DecInferLen(yyl4404, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4404 { - if yyrl4404 <= cap(yyv4404) { - yyv4404 = yyv4404[:yyrl4404] + yyrg4409 := len(yyv4409) > 0 + yyv24409 := yyv4409 + yyrl4409, yyrt4409 = z.DecInferLen(yyl4409, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4409 { + if yyrl4409 <= cap(yyv4409) { + yyv4409 = yyv4409[:yyrl4409] } else { - yyv4404 = make([]ContainerPort, yyrl4404) + yyv4409 = make([]ContainerPort, yyrl4409) } } else { - yyv4404 = make([]ContainerPort, yyrl4404) + yyv4409 = make([]ContainerPort, yyrl4409) } - yyc4404 = true - yyrr4404 = len(yyv4404) - if yyrg4404 { - copy(yyv4404, yyv24404) + yyc4409 = true + yyrr4409 = len(yyv4409) + if yyrg4409 { + copy(yyv4409, yyv24409) } - } else if yyl4404 != len(yyv4404) { - yyv4404 = yyv4404[:yyl4404] - yyc4404 = true + } else if yyl4409 != len(yyv4409) { + yyv4409 = yyv4409[:yyl4409] + yyc4409 = true } - yyj4404 := 0 - for ; yyj4404 < yyrr4404; yyj4404++ { - yyh4404.ElemContainerState(yyj4404) + yyj4409 := 0 + for ; yyj4409 < yyrr4409; yyj4409++ { + yyh4409.ElemContainerState(yyj4409) if r.TryDecodeAsNil() { - yyv4404[yyj4404] = ContainerPort{} + yyv4409[yyj4409] = ContainerPort{} } else { - yyv4405 := &yyv4404[yyj4404] - yyv4405.CodecDecodeSelf(d) + yyv4410 := &yyv4409[yyj4409] + yyv4410.CodecDecodeSelf(d) } } - if yyrt4404 { - for ; yyj4404 < yyl4404; yyj4404++ { - yyv4404 = append(yyv4404, ContainerPort{}) - yyh4404.ElemContainerState(yyj4404) + if yyrt4409 { + for ; yyj4409 < yyl4409; yyj4409++ { + yyv4409 = append(yyv4409, ContainerPort{}) + yyh4409.ElemContainerState(yyj4409) if r.TryDecodeAsNil() { - yyv4404[yyj4404] = ContainerPort{} + yyv4409[yyj4409] = ContainerPort{} } else { - yyv4406 := &yyv4404[yyj4404] - yyv4406.CodecDecodeSelf(d) + yyv4411 := &yyv4409[yyj4409] + yyv4411.CodecDecodeSelf(d) } } } } else { - yyj4404 := 0 - for ; !r.CheckBreak(); yyj4404++ { + yyj4409 := 0 + for ; !r.CheckBreak(); yyj4409++ { - if yyj4404 >= len(yyv4404) { - yyv4404 = append(yyv4404, ContainerPort{}) // var yyz4404 ContainerPort - yyc4404 = true + if yyj4409 >= len(yyv4409) { + yyv4409 = append(yyv4409, ContainerPort{}) // var yyz4409 ContainerPort + yyc4409 = true } - yyh4404.ElemContainerState(yyj4404) - if yyj4404 < len(yyv4404) { + yyh4409.ElemContainerState(yyj4409) + if yyj4409 < len(yyv4409) { if r.TryDecodeAsNil() { - yyv4404[yyj4404] = ContainerPort{} + yyv4409[yyj4409] = ContainerPort{} } else { - yyv4407 := &yyv4404[yyj4404] - yyv4407.CodecDecodeSelf(d) + yyv4412 := &yyv4409[yyj4409] + yyv4412.CodecDecodeSelf(d) } } else { @@ -55276,17 +55324,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4404 < len(yyv4404) { - yyv4404 = yyv4404[:yyj4404] - yyc4404 = true - } else if yyj4404 == 0 && yyv4404 == nil { - yyv4404 = []ContainerPort{} - yyc4404 = true + if yyj4409 < len(yyv4409) { + yyv4409 = yyv4409[:yyj4409] + yyc4409 = true + } else if yyj4409 == 0 && yyv4409 == nil { + yyv4409 = []ContainerPort{} + yyc4409 = true } } - yyh4404.End() - if yyc4404 { - *v = yyv4404 + yyh4409.End() + if yyc4409 { + *v = yyv4409 } } @@ -55295,10 +55343,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4408 := range v { + for _, yyv4413 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4409 := &yyv4408 - yy4409.CodecEncodeSelf(e) + yy4414 := &yyv4413 + yy4414.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55308,83 +55356,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4410 := *v - yyh4410, yyl4410 := z.DecSliceHelperStart() - var yyc4410 bool - if yyl4410 == 0 { - if yyv4410 == nil { - yyv4410 = []EnvVar{} - yyc4410 = true - } else if len(yyv4410) != 0 { - yyv4410 = yyv4410[:0] - yyc4410 = true + yyv4415 := *v + yyh4415, yyl4415 := z.DecSliceHelperStart() + var yyc4415 bool + if yyl4415 == 0 { + if yyv4415 == nil { + yyv4415 = []EnvVar{} + yyc4415 = true + } else if len(yyv4415) != 0 { + yyv4415 = yyv4415[:0] + yyc4415 = true } - } else if yyl4410 > 0 { - var yyrr4410, yyrl4410 int - var yyrt4410 bool - if yyl4410 > cap(yyv4410) { + } else if yyl4415 > 0 { + var yyrr4415, yyrl4415 int + var yyrt4415 bool + if yyl4415 > cap(yyv4415) { - yyrg4410 := len(yyv4410) > 0 - yyv24410 := yyv4410 - yyrl4410, yyrt4410 = z.DecInferLen(yyl4410, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4410 { - if yyrl4410 <= cap(yyv4410) { - yyv4410 = yyv4410[:yyrl4410] + yyrg4415 := len(yyv4415) > 0 + yyv24415 := yyv4415 + yyrl4415, yyrt4415 = z.DecInferLen(yyl4415, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4415 { + if yyrl4415 <= cap(yyv4415) { + yyv4415 = yyv4415[:yyrl4415] } else { - yyv4410 = make([]EnvVar, yyrl4410) + yyv4415 = make([]EnvVar, yyrl4415) } } else { - yyv4410 = make([]EnvVar, yyrl4410) + yyv4415 = make([]EnvVar, yyrl4415) } - yyc4410 = true - yyrr4410 = len(yyv4410) - if yyrg4410 { - copy(yyv4410, yyv24410) + yyc4415 = true + yyrr4415 = len(yyv4415) + if yyrg4415 { + copy(yyv4415, yyv24415) } - } else if yyl4410 != len(yyv4410) { - yyv4410 = yyv4410[:yyl4410] - yyc4410 = true + } else if yyl4415 != len(yyv4415) { + yyv4415 = yyv4415[:yyl4415] + yyc4415 = true } - yyj4410 := 0 - for ; yyj4410 < yyrr4410; yyj4410++ { - yyh4410.ElemContainerState(yyj4410) + yyj4415 := 0 + for ; yyj4415 < yyrr4415; yyj4415++ { + yyh4415.ElemContainerState(yyj4415) if r.TryDecodeAsNil() { - yyv4410[yyj4410] = EnvVar{} + yyv4415[yyj4415] = EnvVar{} } else { - yyv4411 := &yyv4410[yyj4410] - yyv4411.CodecDecodeSelf(d) + yyv4416 := &yyv4415[yyj4415] + yyv4416.CodecDecodeSelf(d) } } - if yyrt4410 { - for ; yyj4410 < yyl4410; yyj4410++ { - yyv4410 = append(yyv4410, EnvVar{}) - yyh4410.ElemContainerState(yyj4410) + if yyrt4415 { + for ; yyj4415 < yyl4415; yyj4415++ { + yyv4415 = append(yyv4415, EnvVar{}) + yyh4415.ElemContainerState(yyj4415) if r.TryDecodeAsNil() { - yyv4410[yyj4410] = EnvVar{} + yyv4415[yyj4415] = EnvVar{} } else { - yyv4412 := &yyv4410[yyj4410] - yyv4412.CodecDecodeSelf(d) + yyv4417 := &yyv4415[yyj4415] + yyv4417.CodecDecodeSelf(d) } } } } else { - yyj4410 := 0 - for ; !r.CheckBreak(); yyj4410++ { + yyj4415 := 0 + for ; !r.CheckBreak(); yyj4415++ { - if yyj4410 >= len(yyv4410) { - yyv4410 = append(yyv4410, EnvVar{}) // var yyz4410 EnvVar - yyc4410 = true + if yyj4415 >= len(yyv4415) { + yyv4415 = append(yyv4415, EnvVar{}) // var yyz4415 EnvVar + yyc4415 = true } - yyh4410.ElemContainerState(yyj4410) - if yyj4410 < len(yyv4410) { + yyh4415.ElemContainerState(yyj4415) + if yyj4415 < len(yyv4415) { if r.TryDecodeAsNil() { - yyv4410[yyj4410] = EnvVar{} + yyv4415[yyj4415] = EnvVar{} } else { - yyv4413 := &yyv4410[yyj4410] - yyv4413.CodecDecodeSelf(d) + yyv4418 := &yyv4415[yyj4415] + yyv4418.CodecDecodeSelf(d) } } else { @@ -55392,17 +55440,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4410 < len(yyv4410) { - yyv4410 = yyv4410[:yyj4410] - yyc4410 = true - } else if yyj4410 == 0 && yyv4410 == nil { - yyv4410 = []EnvVar{} - yyc4410 = true + if yyj4415 < len(yyv4415) { + yyv4415 = yyv4415[:yyj4415] + yyc4415 = true + } else if yyj4415 == 0 && yyv4415 == nil { + yyv4415 = []EnvVar{} + yyc4415 = true } } - yyh4410.End() - if yyc4410 { - *v = yyv4410 + yyh4415.End() + if yyc4415 { + *v = yyv4415 } } @@ -55411,10 +55459,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4414 := range v { + for _, yyv4419 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4415 := &yyv4414 - yy4415.CodecEncodeSelf(e) + yy4420 := &yyv4419 + yy4420.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55424,83 +55472,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4416 := *v - yyh4416, yyl4416 := z.DecSliceHelperStart() - var yyc4416 bool - if yyl4416 == 0 { - if yyv4416 == nil { - yyv4416 = []VolumeMount{} - yyc4416 = true - } else if len(yyv4416) != 0 { - yyv4416 = yyv4416[:0] - yyc4416 = true + yyv4421 := *v + yyh4421, yyl4421 := z.DecSliceHelperStart() + var yyc4421 bool + if yyl4421 == 0 { + if yyv4421 == nil { + yyv4421 = []VolumeMount{} + yyc4421 = true + } else if len(yyv4421) != 0 { + yyv4421 = yyv4421[:0] + yyc4421 = true } - } else if yyl4416 > 0 { - var yyrr4416, yyrl4416 int - var yyrt4416 bool - if yyl4416 > cap(yyv4416) { + } else if yyl4421 > 0 { + var yyrr4421, yyrl4421 int + var yyrt4421 bool + if yyl4421 > cap(yyv4421) { - yyrg4416 := len(yyv4416) > 0 - yyv24416 := yyv4416 - yyrl4416, yyrt4416 = z.DecInferLen(yyl4416, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4416 { - if yyrl4416 <= cap(yyv4416) { - yyv4416 = yyv4416[:yyrl4416] + yyrg4421 := len(yyv4421) > 0 + yyv24421 := yyv4421 + yyrl4421, yyrt4421 = z.DecInferLen(yyl4421, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4421 { + if yyrl4421 <= cap(yyv4421) { + yyv4421 = yyv4421[:yyrl4421] } else { - yyv4416 = make([]VolumeMount, yyrl4416) + yyv4421 = make([]VolumeMount, yyrl4421) } } else { - yyv4416 = make([]VolumeMount, yyrl4416) + yyv4421 = make([]VolumeMount, yyrl4421) } - yyc4416 = true - yyrr4416 = len(yyv4416) - if yyrg4416 { - copy(yyv4416, yyv24416) + yyc4421 = true + yyrr4421 = len(yyv4421) + if yyrg4421 { + copy(yyv4421, yyv24421) } - } else if yyl4416 != len(yyv4416) { - yyv4416 = yyv4416[:yyl4416] - yyc4416 = true + } else if yyl4421 != len(yyv4421) { + yyv4421 = yyv4421[:yyl4421] + yyc4421 = true } - yyj4416 := 0 - for ; yyj4416 < yyrr4416; yyj4416++ { - yyh4416.ElemContainerState(yyj4416) + yyj4421 := 0 + for ; yyj4421 < yyrr4421; yyj4421++ { + yyh4421.ElemContainerState(yyj4421) if r.TryDecodeAsNil() { - yyv4416[yyj4416] = VolumeMount{} + yyv4421[yyj4421] = VolumeMount{} } else { - yyv4417 := &yyv4416[yyj4416] - yyv4417.CodecDecodeSelf(d) + yyv4422 := &yyv4421[yyj4421] + yyv4422.CodecDecodeSelf(d) } } - if yyrt4416 { - for ; yyj4416 < yyl4416; yyj4416++ { - yyv4416 = append(yyv4416, VolumeMount{}) - yyh4416.ElemContainerState(yyj4416) + if yyrt4421 { + for ; yyj4421 < yyl4421; yyj4421++ { + yyv4421 = append(yyv4421, VolumeMount{}) + yyh4421.ElemContainerState(yyj4421) if r.TryDecodeAsNil() { - yyv4416[yyj4416] = VolumeMount{} + yyv4421[yyj4421] = VolumeMount{} } else { - yyv4418 := &yyv4416[yyj4416] - yyv4418.CodecDecodeSelf(d) + yyv4423 := &yyv4421[yyj4421] + yyv4423.CodecDecodeSelf(d) } } } } else { - yyj4416 := 0 - for ; !r.CheckBreak(); yyj4416++ { + yyj4421 := 0 + for ; !r.CheckBreak(); yyj4421++ { - if yyj4416 >= len(yyv4416) { - yyv4416 = append(yyv4416, VolumeMount{}) // var yyz4416 VolumeMount - yyc4416 = true + if yyj4421 >= len(yyv4421) { + yyv4421 = append(yyv4421, VolumeMount{}) // var yyz4421 VolumeMount + yyc4421 = true } - yyh4416.ElemContainerState(yyj4416) - if yyj4416 < len(yyv4416) { + yyh4421.ElemContainerState(yyj4421) + if yyj4421 < len(yyv4421) { if r.TryDecodeAsNil() { - yyv4416[yyj4416] = VolumeMount{} + yyv4421[yyj4421] = VolumeMount{} } else { - yyv4419 := &yyv4416[yyj4416] - yyv4419.CodecDecodeSelf(d) + yyv4424 := &yyv4421[yyj4421] + yyv4424.CodecDecodeSelf(d) } } else { @@ -55508,17 +55556,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4416 < len(yyv4416) { - yyv4416 = yyv4416[:yyj4416] - yyc4416 = true - } else if yyj4416 == 0 && yyv4416 == nil { - yyv4416 = []VolumeMount{} - yyc4416 = true + if yyj4421 < len(yyv4421) { + yyv4421 = yyv4421[:yyj4421] + yyc4421 = true + } else if yyj4421 == 0 && yyv4421 == nil { + yyv4421 = []VolumeMount{} + yyc4421 = true } } - yyh4416.End() - if yyc4416 { - *v = yyv4416 + yyh4421.End() + if yyc4421 { + *v = yyv4421 } } @@ -55527,10 +55575,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4420 := range v { + for _, yyv4425 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4421 := &yyv4420 - yy4421.CodecEncodeSelf(e) + yy4426 := &yyv4425 + yy4426.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55540,83 +55588,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4422 := *v - yyh4422, yyl4422 := z.DecSliceHelperStart() - var yyc4422 bool - if yyl4422 == 0 { - if yyv4422 == nil { - yyv4422 = []NodeSelectorTerm{} - yyc4422 = true - } else if len(yyv4422) != 0 { - yyv4422 = yyv4422[:0] - yyc4422 = true + yyv4427 := *v + yyh4427, yyl4427 := z.DecSliceHelperStart() + var yyc4427 bool + if yyl4427 == 0 { + if yyv4427 == nil { + yyv4427 = []NodeSelectorTerm{} + yyc4427 = true + } else if len(yyv4427) != 0 { + yyv4427 = yyv4427[:0] + yyc4427 = true } - } else if yyl4422 > 0 { - var yyrr4422, yyrl4422 int - var yyrt4422 bool - if yyl4422 > cap(yyv4422) { + } else if yyl4427 > 0 { + var yyrr4427, yyrl4427 int + var yyrt4427 bool + if yyl4427 > cap(yyv4427) { - yyrg4422 := len(yyv4422) > 0 - yyv24422 := yyv4422 - yyrl4422, yyrt4422 = z.DecInferLen(yyl4422, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4422 { - if yyrl4422 <= cap(yyv4422) { - yyv4422 = yyv4422[:yyrl4422] + yyrg4427 := len(yyv4427) > 0 + yyv24427 := yyv4427 + yyrl4427, yyrt4427 = z.DecInferLen(yyl4427, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4427 { + if yyrl4427 <= cap(yyv4427) { + yyv4427 = yyv4427[:yyrl4427] } else { - yyv4422 = make([]NodeSelectorTerm, yyrl4422) + yyv4427 = make([]NodeSelectorTerm, yyrl4427) } } else { - yyv4422 = make([]NodeSelectorTerm, yyrl4422) + yyv4427 = make([]NodeSelectorTerm, yyrl4427) } - yyc4422 = true - yyrr4422 = len(yyv4422) - if yyrg4422 { - copy(yyv4422, yyv24422) + yyc4427 = true + yyrr4427 = len(yyv4427) + if yyrg4427 { + copy(yyv4427, yyv24427) } - } else if yyl4422 != len(yyv4422) { - yyv4422 = yyv4422[:yyl4422] - yyc4422 = true + } else if yyl4427 != len(yyv4427) { + yyv4427 = yyv4427[:yyl4427] + yyc4427 = true } - yyj4422 := 0 - for ; yyj4422 < yyrr4422; yyj4422++ { - yyh4422.ElemContainerState(yyj4422) + yyj4427 := 0 + for ; yyj4427 < yyrr4427; yyj4427++ { + yyh4427.ElemContainerState(yyj4427) if r.TryDecodeAsNil() { - yyv4422[yyj4422] = NodeSelectorTerm{} + yyv4427[yyj4427] = NodeSelectorTerm{} } else { - yyv4423 := &yyv4422[yyj4422] - yyv4423.CodecDecodeSelf(d) + yyv4428 := &yyv4427[yyj4427] + yyv4428.CodecDecodeSelf(d) } } - if yyrt4422 { - for ; yyj4422 < yyl4422; yyj4422++ { - yyv4422 = append(yyv4422, NodeSelectorTerm{}) - yyh4422.ElemContainerState(yyj4422) + if yyrt4427 { + for ; yyj4427 < yyl4427; yyj4427++ { + yyv4427 = append(yyv4427, NodeSelectorTerm{}) + yyh4427.ElemContainerState(yyj4427) if r.TryDecodeAsNil() { - yyv4422[yyj4422] = NodeSelectorTerm{} + yyv4427[yyj4427] = NodeSelectorTerm{} } else { - yyv4424 := &yyv4422[yyj4422] - yyv4424.CodecDecodeSelf(d) + yyv4429 := &yyv4427[yyj4427] + yyv4429.CodecDecodeSelf(d) } } } } else { - yyj4422 := 0 - for ; !r.CheckBreak(); yyj4422++ { + yyj4427 := 0 + for ; !r.CheckBreak(); yyj4427++ { - if yyj4422 >= len(yyv4422) { - yyv4422 = append(yyv4422, NodeSelectorTerm{}) // var yyz4422 NodeSelectorTerm - yyc4422 = true + if yyj4427 >= len(yyv4427) { + yyv4427 = append(yyv4427, NodeSelectorTerm{}) // var yyz4427 NodeSelectorTerm + yyc4427 = true } - yyh4422.ElemContainerState(yyj4422) - if yyj4422 < len(yyv4422) { + yyh4427.ElemContainerState(yyj4427) + if yyj4427 < len(yyv4427) { if r.TryDecodeAsNil() { - yyv4422[yyj4422] = NodeSelectorTerm{} + yyv4427[yyj4427] = NodeSelectorTerm{} } else { - yyv4425 := &yyv4422[yyj4422] - yyv4425.CodecDecodeSelf(d) + yyv4430 := &yyv4427[yyj4427] + yyv4430.CodecDecodeSelf(d) } } else { @@ -55624,17 +55672,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4422 < len(yyv4422) { - yyv4422 = yyv4422[:yyj4422] - yyc4422 = true - } else if yyj4422 == 0 && yyv4422 == nil { - yyv4422 = []NodeSelectorTerm{} - yyc4422 = true + if yyj4427 < len(yyv4427) { + yyv4427 = yyv4427[:yyj4427] + yyc4427 = true + } else if yyj4427 == 0 && yyv4427 == nil { + yyv4427 = []NodeSelectorTerm{} + yyc4427 = true } } - yyh4422.End() - if yyc4422 { - *v = yyv4422 + yyh4427.End() + if yyc4427 { + *v = yyv4427 } } @@ -55643,10 +55691,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4426 := range v { + for _, yyv4431 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4427 := &yyv4426 - yy4427.CodecEncodeSelf(e) + yy4432 := &yyv4431 + yy4432.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55656,83 +55704,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4428 := *v - yyh4428, yyl4428 := z.DecSliceHelperStart() - var yyc4428 bool - if yyl4428 == 0 { - if yyv4428 == nil { - yyv4428 = []NodeSelectorRequirement{} - yyc4428 = true - } else if len(yyv4428) != 0 { - yyv4428 = yyv4428[:0] - yyc4428 = true + yyv4433 := *v + yyh4433, yyl4433 := z.DecSliceHelperStart() + var yyc4433 bool + if yyl4433 == 0 { + if yyv4433 == nil { + yyv4433 = []NodeSelectorRequirement{} + yyc4433 = true + } else if len(yyv4433) != 0 { + yyv4433 = yyv4433[:0] + yyc4433 = true } - } else if yyl4428 > 0 { - var yyrr4428, yyrl4428 int - var yyrt4428 bool - if yyl4428 > cap(yyv4428) { + } else if yyl4433 > 0 { + var yyrr4433, yyrl4433 int + var yyrt4433 bool + if yyl4433 > cap(yyv4433) { - yyrg4428 := len(yyv4428) > 0 - yyv24428 := yyv4428 - yyrl4428, yyrt4428 = z.DecInferLen(yyl4428, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4428 { - if yyrl4428 <= cap(yyv4428) { - yyv4428 = yyv4428[:yyrl4428] + yyrg4433 := len(yyv4433) > 0 + yyv24433 := yyv4433 + yyrl4433, yyrt4433 = z.DecInferLen(yyl4433, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4433 { + if yyrl4433 <= cap(yyv4433) { + yyv4433 = yyv4433[:yyrl4433] } else { - yyv4428 = make([]NodeSelectorRequirement, yyrl4428) + yyv4433 = make([]NodeSelectorRequirement, yyrl4433) } } else { - yyv4428 = make([]NodeSelectorRequirement, yyrl4428) + yyv4433 = make([]NodeSelectorRequirement, yyrl4433) } - yyc4428 = true - yyrr4428 = len(yyv4428) - if yyrg4428 { - copy(yyv4428, yyv24428) + yyc4433 = true + yyrr4433 = len(yyv4433) + if yyrg4433 { + copy(yyv4433, yyv24433) } - } else if yyl4428 != len(yyv4428) { - yyv4428 = yyv4428[:yyl4428] - yyc4428 = true + } else if yyl4433 != len(yyv4433) { + yyv4433 = yyv4433[:yyl4433] + yyc4433 = true } - yyj4428 := 0 - for ; yyj4428 < yyrr4428; yyj4428++ { - yyh4428.ElemContainerState(yyj4428) + yyj4433 := 0 + for ; yyj4433 < yyrr4433; yyj4433++ { + yyh4433.ElemContainerState(yyj4433) if r.TryDecodeAsNil() { - yyv4428[yyj4428] = NodeSelectorRequirement{} + yyv4433[yyj4433] = NodeSelectorRequirement{} } else { - yyv4429 := &yyv4428[yyj4428] - yyv4429.CodecDecodeSelf(d) + yyv4434 := &yyv4433[yyj4433] + yyv4434.CodecDecodeSelf(d) } } - if yyrt4428 { - for ; yyj4428 < yyl4428; yyj4428++ { - yyv4428 = append(yyv4428, NodeSelectorRequirement{}) - yyh4428.ElemContainerState(yyj4428) + if yyrt4433 { + for ; yyj4433 < yyl4433; yyj4433++ { + yyv4433 = append(yyv4433, NodeSelectorRequirement{}) + yyh4433.ElemContainerState(yyj4433) if r.TryDecodeAsNil() { - yyv4428[yyj4428] = NodeSelectorRequirement{} + yyv4433[yyj4433] = NodeSelectorRequirement{} } else { - yyv4430 := &yyv4428[yyj4428] - yyv4430.CodecDecodeSelf(d) + yyv4435 := &yyv4433[yyj4433] + yyv4435.CodecDecodeSelf(d) } } } } else { - yyj4428 := 0 - for ; !r.CheckBreak(); yyj4428++ { + yyj4433 := 0 + for ; !r.CheckBreak(); yyj4433++ { - if yyj4428 >= len(yyv4428) { - yyv4428 = append(yyv4428, NodeSelectorRequirement{}) // var yyz4428 NodeSelectorRequirement - yyc4428 = true + if yyj4433 >= len(yyv4433) { + yyv4433 = append(yyv4433, NodeSelectorRequirement{}) // var yyz4433 NodeSelectorRequirement + yyc4433 = true } - yyh4428.ElemContainerState(yyj4428) - if yyj4428 < len(yyv4428) { + yyh4433.ElemContainerState(yyj4433) + if yyj4433 < len(yyv4433) { if r.TryDecodeAsNil() { - yyv4428[yyj4428] = NodeSelectorRequirement{} + yyv4433[yyj4433] = NodeSelectorRequirement{} } else { - yyv4431 := &yyv4428[yyj4428] - yyv4431.CodecDecodeSelf(d) + yyv4436 := &yyv4433[yyj4433] + yyv4436.CodecDecodeSelf(d) } } else { @@ -55740,17 +55788,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4428 < len(yyv4428) { - yyv4428 = yyv4428[:yyj4428] - yyc4428 = true - } else if yyj4428 == 0 && yyv4428 == nil { - yyv4428 = []NodeSelectorRequirement{} - yyc4428 = true + if yyj4433 < len(yyv4433) { + yyv4433 = yyv4433[:yyj4433] + yyc4433 = true + } else if yyj4433 == 0 && yyv4433 == nil { + yyv4433 = []NodeSelectorRequirement{} + yyc4433 = true } } - yyh4428.End() - if yyc4428 { - *v = yyv4428 + yyh4433.End() + if yyc4433 { + *v = yyv4433 } } @@ -55759,10 +55807,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4432 := range v { + for _, yyv4437 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4433 := &yyv4432 - yy4433.CodecEncodeSelf(e) + yy4438 := &yyv4437 + yy4438.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55772,83 +55820,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4434 := *v - yyh4434, yyl4434 := z.DecSliceHelperStart() - var yyc4434 bool - if yyl4434 == 0 { - if yyv4434 == nil { - yyv4434 = []PodAffinityTerm{} - yyc4434 = true - } else if len(yyv4434) != 0 { - yyv4434 = yyv4434[:0] - yyc4434 = true + yyv4439 := *v + yyh4439, yyl4439 := z.DecSliceHelperStart() + var yyc4439 bool + if yyl4439 == 0 { + if yyv4439 == nil { + yyv4439 = []PodAffinityTerm{} + yyc4439 = true + } else if len(yyv4439) != 0 { + yyv4439 = yyv4439[:0] + yyc4439 = true } - } else if yyl4434 > 0 { - var yyrr4434, yyrl4434 int - var yyrt4434 bool - if yyl4434 > cap(yyv4434) { + } else if yyl4439 > 0 { + var yyrr4439, yyrl4439 int + var yyrt4439 bool + if yyl4439 > cap(yyv4439) { - yyrg4434 := len(yyv4434) > 0 - yyv24434 := yyv4434 - yyrl4434, yyrt4434 = z.DecInferLen(yyl4434, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4434 { - if yyrl4434 <= cap(yyv4434) { - yyv4434 = yyv4434[:yyrl4434] + yyrg4439 := len(yyv4439) > 0 + yyv24439 := yyv4439 + yyrl4439, yyrt4439 = z.DecInferLen(yyl4439, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4439 { + if yyrl4439 <= cap(yyv4439) { + yyv4439 = yyv4439[:yyrl4439] } else { - yyv4434 = make([]PodAffinityTerm, yyrl4434) + yyv4439 = make([]PodAffinityTerm, yyrl4439) } } else { - yyv4434 = make([]PodAffinityTerm, yyrl4434) + yyv4439 = make([]PodAffinityTerm, yyrl4439) } - yyc4434 = true - yyrr4434 = len(yyv4434) - if yyrg4434 { - copy(yyv4434, yyv24434) + yyc4439 = true + yyrr4439 = len(yyv4439) + if yyrg4439 { + copy(yyv4439, yyv24439) } - } else if yyl4434 != len(yyv4434) { - yyv4434 = yyv4434[:yyl4434] - yyc4434 = true + } else if yyl4439 != len(yyv4439) { + yyv4439 = yyv4439[:yyl4439] + yyc4439 = true } - yyj4434 := 0 - for ; yyj4434 < yyrr4434; yyj4434++ { - yyh4434.ElemContainerState(yyj4434) + yyj4439 := 0 + for ; yyj4439 < yyrr4439; yyj4439++ { + yyh4439.ElemContainerState(yyj4439) if r.TryDecodeAsNil() { - yyv4434[yyj4434] = PodAffinityTerm{} + yyv4439[yyj4439] = PodAffinityTerm{} } else { - yyv4435 := &yyv4434[yyj4434] - yyv4435.CodecDecodeSelf(d) + yyv4440 := &yyv4439[yyj4439] + yyv4440.CodecDecodeSelf(d) } } - if yyrt4434 { - for ; yyj4434 < yyl4434; yyj4434++ { - yyv4434 = append(yyv4434, PodAffinityTerm{}) - yyh4434.ElemContainerState(yyj4434) + if yyrt4439 { + for ; yyj4439 < yyl4439; yyj4439++ { + yyv4439 = append(yyv4439, PodAffinityTerm{}) + yyh4439.ElemContainerState(yyj4439) if r.TryDecodeAsNil() { - yyv4434[yyj4434] = PodAffinityTerm{} + yyv4439[yyj4439] = PodAffinityTerm{} } else { - yyv4436 := &yyv4434[yyj4434] - yyv4436.CodecDecodeSelf(d) + yyv4441 := &yyv4439[yyj4439] + yyv4441.CodecDecodeSelf(d) } } } } else { - yyj4434 := 0 - for ; !r.CheckBreak(); yyj4434++ { + yyj4439 := 0 + for ; !r.CheckBreak(); yyj4439++ { - if yyj4434 >= len(yyv4434) { - yyv4434 = append(yyv4434, PodAffinityTerm{}) // var yyz4434 PodAffinityTerm - yyc4434 = true + if yyj4439 >= len(yyv4439) { + yyv4439 = append(yyv4439, PodAffinityTerm{}) // var yyz4439 PodAffinityTerm + yyc4439 = true } - yyh4434.ElemContainerState(yyj4434) - if yyj4434 < len(yyv4434) { + yyh4439.ElemContainerState(yyj4439) + if yyj4439 < len(yyv4439) { if r.TryDecodeAsNil() { - yyv4434[yyj4434] = PodAffinityTerm{} + yyv4439[yyj4439] = PodAffinityTerm{} } else { - yyv4437 := &yyv4434[yyj4434] - yyv4437.CodecDecodeSelf(d) + yyv4442 := &yyv4439[yyj4439] + yyv4442.CodecDecodeSelf(d) } } else { @@ -55856,17 +55904,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4434 < len(yyv4434) { - yyv4434 = yyv4434[:yyj4434] - yyc4434 = true - } else if yyj4434 == 0 && yyv4434 == nil { - yyv4434 = []PodAffinityTerm{} - yyc4434 = true + if yyj4439 < len(yyv4439) { + yyv4439 = yyv4439[:yyj4439] + yyc4439 = true + } else if yyj4439 == 0 && yyv4439 == nil { + yyv4439 = []PodAffinityTerm{} + yyc4439 = true } } - yyh4434.End() - if yyc4434 { - *v = yyv4434 + yyh4439.End() + if yyc4439 { + *v = yyv4439 } } @@ -55875,10 +55923,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4438 := range v { + for _, yyv4443 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4439 := &yyv4438 - yy4439.CodecEncodeSelf(e) + yy4444 := &yyv4443 + yy4444.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55888,83 +55936,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4440 := *v - yyh4440, yyl4440 := z.DecSliceHelperStart() - var yyc4440 bool - if yyl4440 == 0 { - if yyv4440 == nil { - yyv4440 = []WeightedPodAffinityTerm{} - yyc4440 = true - } else if len(yyv4440) != 0 { - yyv4440 = yyv4440[:0] - yyc4440 = true + yyv4445 := *v + yyh4445, yyl4445 := z.DecSliceHelperStart() + var yyc4445 bool + if yyl4445 == 0 { + if yyv4445 == nil { + yyv4445 = []WeightedPodAffinityTerm{} + yyc4445 = true + } else if len(yyv4445) != 0 { + yyv4445 = yyv4445[:0] + yyc4445 = true } - } else if yyl4440 > 0 { - var yyrr4440, yyrl4440 int - var yyrt4440 bool - if yyl4440 > cap(yyv4440) { + } else if yyl4445 > 0 { + var yyrr4445, yyrl4445 int + var yyrt4445 bool + if yyl4445 > cap(yyv4445) { - yyrg4440 := len(yyv4440) > 0 - yyv24440 := yyv4440 - yyrl4440, yyrt4440 = z.DecInferLen(yyl4440, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4440 { - if yyrl4440 <= cap(yyv4440) { - yyv4440 = yyv4440[:yyrl4440] + yyrg4445 := len(yyv4445) > 0 + yyv24445 := yyv4445 + yyrl4445, yyrt4445 = z.DecInferLen(yyl4445, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4445 { + if yyrl4445 <= cap(yyv4445) { + yyv4445 = yyv4445[:yyrl4445] } else { - yyv4440 = make([]WeightedPodAffinityTerm, yyrl4440) + yyv4445 = make([]WeightedPodAffinityTerm, yyrl4445) } } else { - yyv4440 = make([]WeightedPodAffinityTerm, yyrl4440) + yyv4445 = make([]WeightedPodAffinityTerm, yyrl4445) } - yyc4440 = true - yyrr4440 = len(yyv4440) - if yyrg4440 { - copy(yyv4440, yyv24440) + yyc4445 = true + yyrr4445 = len(yyv4445) + if yyrg4445 { + copy(yyv4445, yyv24445) } - } else if yyl4440 != len(yyv4440) { - yyv4440 = yyv4440[:yyl4440] - yyc4440 = true + } else if yyl4445 != len(yyv4445) { + yyv4445 = yyv4445[:yyl4445] + yyc4445 = true } - yyj4440 := 0 - for ; yyj4440 < yyrr4440; yyj4440++ { - yyh4440.ElemContainerState(yyj4440) + yyj4445 := 0 + for ; yyj4445 < yyrr4445; yyj4445++ { + yyh4445.ElemContainerState(yyj4445) if r.TryDecodeAsNil() { - yyv4440[yyj4440] = WeightedPodAffinityTerm{} + yyv4445[yyj4445] = WeightedPodAffinityTerm{} } else { - yyv4441 := &yyv4440[yyj4440] - yyv4441.CodecDecodeSelf(d) + yyv4446 := &yyv4445[yyj4445] + yyv4446.CodecDecodeSelf(d) } } - if yyrt4440 { - for ; yyj4440 < yyl4440; yyj4440++ { - yyv4440 = append(yyv4440, WeightedPodAffinityTerm{}) - yyh4440.ElemContainerState(yyj4440) + if yyrt4445 { + for ; yyj4445 < yyl4445; yyj4445++ { + yyv4445 = append(yyv4445, WeightedPodAffinityTerm{}) + yyh4445.ElemContainerState(yyj4445) if r.TryDecodeAsNil() { - yyv4440[yyj4440] = WeightedPodAffinityTerm{} + yyv4445[yyj4445] = WeightedPodAffinityTerm{} } else { - yyv4442 := &yyv4440[yyj4440] - yyv4442.CodecDecodeSelf(d) + yyv4447 := &yyv4445[yyj4445] + yyv4447.CodecDecodeSelf(d) } } } } else { - yyj4440 := 0 - for ; !r.CheckBreak(); yyj4440++ { + yyj4445 := 0 + for ; !r.CheckBreak(); yyj4445++ { - if yyj4440 >= len(yyv4440) { - yyv4440 = append(yyv4440, WeightedPodAffinityTerm{}) // var yyz4440 WeightedPodAffinityTerm - yyc4440 = true + if yyj4445 >= len(yyv4445) { + yyv4445 = append(yyv4445, WeightedPodAffinityTerm{}) // var yyz4445 WeightedPodAffinityTerm + yyc4445 = true } - yyh4440.ElemContainerState(yyj4440) - if yyj4440 < len(yyv4440) { + yyh4445.ElemContainerState(yyj4445) + if yyj4445 < len(yyv4445) { if r.TryDecodeAsNil() { - yyv4440[yyj4440] = WeightedPodAffinityTerm{} + yyv4445[yyj4445] = WeightedPodAffinityTerm{} } else { - yyv4443 := &yyv4440[yyj4440] - yyv4443.CodecDecodeSelf(d) + yyv4448 := &yyv4445[yyj4445] + yyv4448.CodecDecodeSelf(d) } } else { @@ -55972,17 +56020,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4440 < len(yyv4440) { - yyv4440 = yyv4440[:yyj4440] - yyc4440 = true - } else if yyj4440 == 0 && yyv4440 == nil { - yyv4440 = []WeightedPodAffinityTerm{} - yyc4440 = true + if yyj4445 < len(yyv4445) { + yyv4445 = yyv4445[:yyj4445] + yyc4445 = true + } else if yyj4445 == 0 && yyv4445 == nil { + yyv4445 = []WeightedPodAffinityTerm{} + yyc4445 = true } } - yyh4440.End() - if yyc4440 { - *v = yyv4440 + yyh4445.End() + if yyc4445 { + *v = yyv4445 } } @@ -55991,10 +56039,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4444 := range v { + for _, yyv4449 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4445 := &yyv4444 - yy4445.CodecEncodeSelf(e) + yy4450 := &yyv4449 + yy4450.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56004,83 +56052,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4446 := *v - yyh4446, yyl4446 := z.DecSliceHelperStart() - var yyc4446 bool - if yyl4446 == 0 { - if yyv4446 == nil { - yyv4446 = []PreferredSchedulingTerm{} - yyc4446 = true - } else if len(yyv4446) != 0 { - yyv4446 = yyv4446[:0] - yyc4446 = true + yyv4451 := *v + yyh4451, yyl4451 := z.DecSliceHelperStart() + var yyc4451 bool + if yyl4451 == 0 { + if yyv4451 == nil { + yyv4451 = []PreferredSchedulingTerm{} + yyc4451 = true + } else if len(yyv4451) != 0 { + yyv4451 = yyv4451[:0] + yyc4451 = true } - } else if yyl4446 > 0 { - var yyrr4446, yyrl4446 int - var yyrt4446 bool - if yyl4446 > cap(yyv4446) { + } else if yyl4451 > 0 { + var yyrr4451, yyrl4451 int + var yyrt4451 bool + if yyl4451 > cap(yyv4451) { - yyrg4446 := len(yyv4446) > 0 - yyv24446 := yyv4446 - yyrl4446, yyrt4446 = z.DecInferLen(yyl4446, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4446 { - if yyrl4446 <= cap(yyv4446) { - yyv4446 = yyv4446[:yyrl4446] + yyrg4451 := len(yyv4451) > 0 + yyv24451 := yyv4451 + yyrl4451, yyrt4451 = z.DecInferLen(yyl4451, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4451 { + if yyrl4451 <= cap(yyv4451) { + yyv4451 = yyv4451[:yyrl4451] } else { - yyv4446 = make([]PreferredSchedulingTerm, yyrl4446) + yyv4451 = make([]PreferredSchedulingTerm, yyrl4451) } } else { - yyv4446 = make([]PreferredSchedulingTerm, yyrl4446) + yyv4451 = make([]PreferredSchedulingTerm, yyrl4451) } - yyc4446 = true - yyrr4446 = len(yyv4446) - if yyrg4446 { - copy(yyv4446, yyv24446) + yyc4451 = true + yyrr4451 = len(yyv4451) + if yyrg4451 { + copy(yyv4451, yyv24451) } - } else if yyl4446 != len(yyv4446) { - yyv4446 = yyv4446[:yyl4446] - yyc4446 = true + } else if yyl4451 != len(yyv4451) { + yyv4451 = yyv4451[:yyl4451] + yyc4451 = true } - yyj4446 := 0 - for ; yyj4446 < yyrr4446; yyj4446++ { - yyh4446.ElemContainerState(yyj4446) + yyj4451 := 0 + for ; yyj4451 < yyrr4451; yyj4451++ { + yyh4451.ElemContainerState(yyj4451) if r.TryDecodeAsNil() { - yyv4446[yyj4446] = PreferredSchedulingTerm{} + yyv4451[yyj4451] = PreferredSchedulingTerm{} } else { - yyv4447 := &yyv4446[yyj4446] - yyv4447.CodecDecodeSelf(d) + yyv4452 := &yyv4451[yyj4451] + yyv4452.CodecDecodeSelf(d) } } - if yyrt4446 { - for ; yyj4446 < yyl4446; yyj4446++ { - yyv4446 = append(yyv4446, PreferredSchedulingTerm{}) - yyh4446.ElemContainerState(yyj4446) + if yyrt4451 { + for ; yyj4451 < yyl4451; yyj4451++ { + yyv4451 = append(yyv4451, PreferredSchedulingTerm{}) + yyh4451.ElemContainerState(yyj4451) if r.TryDecodeAsNil() { - yyv4446[yyj4446] = PreferredSchedulingTerm{} + yyv4451[yyj4451] = PreferredSchedulingTerm{} } else { - yyv4448 := &yyv4446[yyj4446] - yyv4448.CodecDecodeSelf(d) + yyv4453 := &yyv4451[yyj4451] + yyv4453.CodecDecodeSelf(d) } } } } else { - yyj4446 := 0 - for ; !r.CheckBreak(); yyj4446++ { + yyj4451 := 0 + for ; !r.CheckBreak(); yyj4451++ { - if yyj4446 >= len(yyv4446) { - yyv4446 = append(yyv4446, PreferredSchedulingTerm{}) // var yyz4446 PreferredSchedulingTerm - yyc4446 = true + if yyj4451 >= len(yyv4451) { + yyv4451 = append(yyv4451, PreferredSchedulingTerm{}) // var yyz4451 PreferredSchedulingTerm + yyc4451 = true } - yyh4446.ElemContainerState(yyj4446) - if yyj4446 < len(yyv4446) { + yyh4451.ElemContainerState(yyj4451) + if yyj4451 < len(yyv4451) { if r.TryDecodeAsNil() { - yyv4446[yyj4446] = PreferredSchedulingTerm{} + yyv4451[yyj4451] = PreferredSchedulingTerm{} } else { - yyv4449 := &yyv4446[yyj4446] - yyv4449.CodecDecodeSelf(d) + yyv4454 := &yyv4451[yyj4451] + yyv4454.CodecDecodeSelf(d) } } else { @@ -56088,17 +56136,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4446 < len(yyv4446) { - yyv4446 = yyv4446[:yyj4446] - yyc4446 = true - } else if yyj4446 == 0 && yyv4446 == nil { - yyv4446 = []PreferredSchedulingTerm{} - yyc4446 = true + if yyj4451 < len(yyv4451) { + yyv4451 = yyv4451[:yyj4451] + yyc4451 = true + } else if yyj4451 == 0 && yyv4451 == nil { + yyv4451 = []PreferredSchedulingTerm{} + yyc4451 = true } } - yyh4446.End() - if yyc4446 { - *v = yyv4446 + yyh4451.End() + if yyc4451 { + *v = yyv4451 } } @@ -56107,10 +56155,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4450 := range v { + for _, yyv4455 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4451 := &yyv4450 - yy4451.CodecEncodeSelf(e) + yy4456 := &yyv4455 + yy4456.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56120,83 +56168,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4452 := *v - yyh4452, yyl4452 := z.DecSliceHelperStart() - var yyc4452 bool - if yyl4452 == 0 { - if yyv4452 == nil { - yyv4452 = []Volume{} - yyc4452 = true - } else if len(yyv4452) != 0 { - yyv4452 = yyv4452[:0] - yyc4452 = true + yyv4457 := *v + yyh4457, yyl4457 := z.DecSliceHelperStart() + var yyc4457 bool + if yyl4457 == 0 { + if yyv4457 == nil { + yyv4457 = []Volume{} + yyc4457 = true + } else if len(yyv4457) != 0 { + yyv4457 = yyv4457[:0] + yyc4457 = true } - } else if yyl4452 > 0 { - var yyrr4452, yyrl4452 int - var yyrt4452 bool - if yyl4452 > cap(yyv4452) { + } else if yyl4457 > 0 { + var yyrr4457, yyrl4457 int + var yyrt4457 bool + if yyl4457 > cap(yyv4457) { - yyrg4452 := len(yyv4452) > 0 - yyv24452 := yyv4452 - yyrl4452, yyrt4452 = z.DecInferLen(yyl4452, z.DecBasicHandle().MaxInitLen, 176) - if yyrt4452 { - if yyrl4452 <= cap(yyv4452) { - yyv4452 = yyv4452[:yyrl4452] + yyrg4457 := len(yyv4457) > 0 + yyv24457 := yyv4457 + yyrl4457, yyrt4457 = z.DecInferLen(yyl4457, z.DecBasicHandle().MaxInitLen, 176) + if yyrt4457 { + if yyrl4457 <= cap(yyv4457) { + yyv4457 = yyv4457[:yyrl4457] } else { - yyv4452 = make([]Volume, yyrl4452) + yyv4457 = make([]Volume, yyrl4457) } } else { - yyv4452 = make([]Volume, yyrl4452) + yyv4457 = make([]Volume, yyrl4457) } - yyc4452 = true - yyrr4452 = len(yyv4452) - if yyrg4452 { - copy(yyv4452, yyv24452) + yyc4457 = true + yyrr4457 = len(yyv4457) + if yyrg4457 { + copy(yyv4457, yyv24457) } - } else if yyl4452 != len(yyv4452) { - yyv4452 = yyv4452[:yyl4452] - yyc4452 = true + } else if yyl4457 != len(yyv4457) { + yyv4457 = yyv4457[:yyl4457] + yyc4457 = true } - yyj4452 := 0 - for ; yyj4452 < yyrr4452; yyj4452++ { - yyh4452.ElemContainerState(yyj4452) + yyj4457 := 0 + for ; yyj4457 < yyrr4457; yyj4457++ { + yyh4457.ElemContainerState(yyj4457) if r.TryDecodeAsNil() { - yyv4452[yyj4452] = Volume{} + yyv4457[yyj4457] = Volume{} } else { - yyv4453 := &yyv4452[yyj4452] - yyv4453.CodecDecodeSelf(d) + yyv4458 := &yyv4457[yyj4457] + yyv4458.CodecDecodeSelf(d) } } - if yyrt4452 { - for ; yyj4452 < yyl4452; yyj4452++ { - yyv4452 = append(yyv4452, Volume{}) - yyh4452.ElemContainerState(yyj4452) + if yyrt4457 { + for ; yyj4457 < yyl4457; yyj4457++ { + yyv4457 = append(yyv4457, Volume{}) + yyh4457.ElemContainerState(yyj4457) if r.TryDecodeAsNil() { - yyv4452[yyj4452] = Volume{} + yyv4457[yyj4457] = Volume{} } else { - yyv4454 := &yyv4452[yyj4452] - yyv4454.CodecDecodeSelf(d) + yyv4459 := &yyv4457[yyj4457] + yyv4459.CodecDecodeSelf(d) } } } } else { - yyj4452 := 0 - for ; !r.CheckBreak(); yyj4452++ { + yyj4457 := 0 + for ; !r.CheckBreak(); yyj4457++ { - if yyj4452 >= len(yyv4452) { - yyv4452 = append(yyv4452, Volume{}) // var yyz4452 Volume - yyc4452 = true + if yyj4457 >= len(yyv4457) { + yyv4457 = append(yyv4457, Volume{}) // var yyz4457 Volume + yyc4457 = true } - yyh4452.ElemContainerState(yyj4452) - if yyj4452 < len(yyv4452) { + yyh4457.ElemContainerState(yyj4457) + if yyj4457 < len(yyv4457) { if r.TryDecodeAsNil() { - yyv4452[yyj4452] = Volume{} + yyv4457[yyj4457] = Volume{} } else { - yyv4455 := &yyv4452[yyj4452] - yyv4455.CodecDecodeSelf(d) + yyv4460 := &yyv4457[yyj4457] + yyv4460.CodecDecodeSelf(d) } } else { @@ -56204,17 +56252,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4452 < len(yyv4452) { - yyv4452 = yyv4452[:yyj4452] - yyc4452 = true - } else if yyj4452 == 0 && yyv4452 == nil { - yyv4452 = []Volume{} - yyc4452 = true + if yyj4457 < len(yyv4457) { + yyv4457 = yyv4457[:yyj4457] + yyc4457 = true + } else if yyj4457 == 0 && yyv4457 == nil { + yyv4457 = []Volume{} + yyc4457 = true } } - yyh4452.End() - if yyc4452 { - *v = yyv4452 + yyh4457.End() + if yyc4457 { + *v = yyv4457 } } @@ -56223,10 +56271,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4456 := range v { + for _, yyv4461 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4457 := &yyv4456 - yy4457.CodecEncodeSelf(e) + yy4462 := &yyv4461 + yy4462.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56236,83 +56284,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4458 := *v - yyh4458, yyl4458 := z.DecSliceHelperStart() - var yyc4458 bool - if yyl4458 == 0 { - if yyv4458 == nil { - yyv4458 = []Container{} - yyc4458 = true - } else if len(yyv4458) != 0 { - yyv4458 = yyv4458[:0] - yyc4458 = true + yyv4463 := *v + yyh4463, yyl4463 := z.DecSliceHelperStart() + var yyc4463 bool + if yyl4463 == 0 { + if yyv4463 == nil { + yyv4463 = []Container{} + yyc4463 = true + } else if len(yyv4463) != 0 { + yyv4463 = yyv4463[:0] + yyc4463 = true } - } else if yyl4458 > 0 { - var yyrr4458, yyrl4458 int - var yyrt4458 bool - if yyl4458 > cap(yyv4458) { + } else if yyl4463 > 0 { + var yyrr4463, yyrl4463 int + var yyrt4463 bool + if yyl4463 > cap(yyv4463) { - yyrg4458 := len(yyv4458) > 0 - yyv24458 := yyv4458 - yyrl4458, yyrt4458 = z.DecInferLen(yyl4458, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4458 { - if yyrl4458 <= cap(yyv4458) { - yyv4458 = yyv4458[:yyrl4458] + yyrg4463 := len(yyv4463) > 0 + yyv24463 := yyv4463 + yyrl4463, yyrt4463 = z.DecInferLen(yyl4463, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4463 { + if yyrl4463 <= cap(yyv4463) { + yyv4463 = yyv4463[:yyrl4463] } else { - yyv4458 = make([]Container, yyrl4458) + yyv4463 = make([]Container, yyrl4463) } } else { - yyv4458 = make([]Container, yyrl4458) + yyv4463 = make([]Container, yyrl4463) } - yyc4458 = true - yyrr4458 = len(yyv4458) - if yyrg4458 { - copy(yyv4458, yyv24458) + yyc4463 = true + yyrr4463 = len(yyv4463) + if yyrg4463 { + copy(yyv4463, yyv24463) } - } else if yyl4458 != len(yyv4458) { - yyv4458 = yyv4458[:yyl4458] - yyc4458 = true + } else if yyl4463 != len(yyv4463) { + yyv4463 = yyv4463[:yyl4463] + yyc4463 = true } - yyj4458 := 0 - for ; yyj4458 < yyrr4458; yyj4458++ { - yyh4458.ElemContainerState(yyj4458) + yyj4463 := 0 + for ; yyj4463 < yyrr4463; yyj4463++ { + yyh4463.ElemContainerState(yyj4463) if r.TryDecodeAsNil() { - yyv4458[yyj4458] = Container{} + yyv4463[yyj4463] = Container{} } else { - yyv4459 := &yyv4458[yyj4458] - yyv4459.CodecDecodeSelf(d) + yyv4464 := &yyv4463[yyj4463] + yyv4464.CodecDecodeSelf(d) } } - if yyrt4458 { - for ; yyj4458 < yyl4458; yyj4458++ { - yyv4458 = append(yyv4458, Container{}) - yyh4458.ElemContainerState(yyj4458) + if yyrt4463 { + for ; yyj4463 < yyl4463; yyj4463++ { + yyv4463 = append(yyv4463, Container{}) + yyh4463.ElemContainerState(yyj4463) if r.TryDecodeAsNil() { - yyv4458[yyj4458] = Container{} + yyv4463[yyj4463] = Container{} } else { - yyv4460 := &yyv4458[yyj4458] - yyv4460.CodecDecodeSelf(d) + yyv4465 := &yyv4463[yyj4463] + yyv4465.CodecDecodeSelf(d) } } } } else { - yyj4458 := 0 - for ; !r.CheckBreak(); yyj4458++ { + yyj4463 := 0 + for ; !r.CheckBreak(); yyj4463++ { - if yyj4458 >= len(yyv4458) { - yyv4458 = append(yyv4458, Container{}) // var yyz4458 Container - yyc4458 = true + if yyj4463 >= len(yyv4463) { + yyv4463 = append(yyv4463, Container{}) // var yyz4463 Container + yyc4463 = true } - yyh4458.ElemContainerState(yyj4458) - if yyj4458 < len(yyv4458) { + yyh4463.ElemContainerState(yyj4463) + if yyj4463 < len(yyv4463) { if r.TryDecodeAsNil() { - yyv4458[yyj4458] = Container{} + yyv4463[yyj4463] = Container{} } else { - yyv4461 := &yyv4458[yyj4458] - yyv4461.CodecDecodeSelf(d) + yyv4466 := &yyv4463[yyj4463] + yyv4466.CodecDecodeSelf(d) } } else { @@ -56320,17 +56368,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4458 < len(yyv4458) { - yyv4458 = yyv4458[:yyj4458] - yyc4458 = true - } else if yyj4458 == 0 && yyv4458 == nil { - yyv4458 = []Container{} - yyc4458 = true + if yyj4463 < len(yyv4463) { + yyv4463 = yyv4463[:yyj4463] + yyc4463 = true + } else if yyj4463 == 0 && yyv4463 == nil { + yyv4463 = []Container{} + yyc4463 = true } } - yyh4458.End() - if yyc4458 { - *v = yyv4458 + yyh4463.End() + if yyc4463 { + *v = yyv4463 } } @@ -56339,10 +56387,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4462 := range v { + for _, yyv4467 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4463 := &yyv4462 - yy4463.CodecEncodeSelf(e) + yy4468 := &yyv4467 + yy4468.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56352,83 +56400,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4464 := *v - yyh4464, yyl4464 := z.DecSliceHelperStart() - var yyc4464 bool - if yyl4464 == 0 { - if yyv4464 == nil { - yyv4464 = []LocalObjectReference{} - yyc4464 = true - } else if len(yyv4464) != 0 { - yyv4464 = yyv4464[:0] - yyc4464 = true + yyv4469 := *v + yyh4469, yyl4469 := z.DecSliceHelperStart() + var yyc4469 bool + if yyl4469 == 0 { + if yyv4469 == nil { + yyv4469 = []LocalObjectReference{} + yyc4469 = true + } else if len(yyv4469) != 0 { + yyv4469 = yyv4469[:0] + yyc4469 = true } - } else if yyl4464 > 0 { - var yyrr4464, yyrl4464 int - var yyrt4464 bool - if yyl4464 > cap(yyv4464) { + } else if yyl4469 > 0 { + var yyrr4469, yyrl4469 int + var yyrt4469 bool + if yyl4469 > cap(yyv4469) { - yyrg4464 := len(yyv4464) > 0 - yyv24464 := yyv4464 - yyrl4464, yyrt4464 = z.DecInferLen(yyl4464, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4464 { - if yyrl4464 <= cap(yyv4464) { - yyv4464 = yyv4464[:yyrl4464] + yyrg4469 := len(yyv4469) > 0 + yyv24469 := yyv4469 + yyrl4469, yyrt4469 = z.DecInferLen(yyl4469, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4469 { + if yyrl4469 <= cap(yyv4469) { + yyv4469 = yyv4469[:yyrl4469] } else { - yyv4464 = make([]LocalObjectReference, yyrl4464) + yyv4469 = make([]LocalObjectReference, yyrl4469) } } else { - yyv4464 = make([]LocalObjectReference, yyrl4464) + yyv4469 = make([]LocalObjectReference, yyrl4469) } - yyc4464 = true - yyrr4464 = len(yyv4464) - if yyrg4464 { - copy(yyv4464, yyv24464) + yyc4469 = true + yyrr4469 = len(yyv4469) + if yyrg4469 { + copy(yyv4469, yyv24469) } - } else if yyl4464 != len(yyv4464) { - yyv4464 = yyv4464[:yyl4464] - yyc4464 = true + } else if yyl4469 != len(yyv4469) { + yyv4469 = yyv4469[:yyl4469] + yyc4469 = true } - yyj4464 := 0 - for ; yyj4464 < yyrr4464; yyj4464++ { - yyh4464.ElemContainerState(yyj4464) + yyj4469 := 0 + for ; yyj4469 < yyrr4469; yyj4469++ { + yyh4469.ElemContainerState(yyj4469) if r.TryDecodeAsNil() { - yyv4464[yyj4464] = LocalObjectReference{} + yyv4469[yyj4469] = LocalObjectReference{} } else { - yyv4465 := &yyv4464[yyj4464] - yyv4465.CodecDecodeSelf(d) + yyv4470 := &yyv4469[yyj4469] + yyv4470.CodecDecodeSelf(d) } } - if yyrt4464 { - for ; yyj4464 < yyl4464; yyj4464++ { - yyv4464 = append(yyv4464, LocalObjectReference{}) - yyh4464.ElemContainerState(yyj4464) + if yyrt4469 { + for ; yyj4469 < yyl4469; yyj4469++ { + yyv4469 = append(yyv4469, LocalObjectReference{}) + yyh4469.ElemContainerState(yyj4469) if r.TryDecodeAsNil() { - yyv4464[yyj4464] = LocalObjectReference{} + yyv4469[yyj4469] = LocalObjectReference{} } else { - yyv4466 := &yyv4464[yyj4464] - yyv4466.CodecDecodeSelf(d) + yyv4471 := &yyv4469[yyj4469] + yyv4471.CodecDecodeSelf(d) } } } } else { - yyj4464 := 0 - for ; !r.CheckBreak(); yyj4464++ { + yyj4469 := 0 + for ; !r.CheckBreak(); yyj4469++ { - if yyj4464 >= len(yyv4464) { - yyv4464 = append(yyv4464, LocalObjectReference{}) // var yyz4464 LocalObjectReference - yyc4464 = true + if yyj4469 >= len(yyv4469) { + yyv4469 = append(yyv4469, LocalObjectReference{}) // var yyz4469 LocalObjectReference + yyc4469 = true } - yyh4464.ElemContainerState(yyj4464) - if yyj4464 < len(yyv4464) { + yyh4469.ElemContainerState(yyj4469) + if yyj4469 < len(yyv4469) { if r.TryDecodeAsNil() { - yyv4464[yyj4464] = LocalObjectReference{} + yyv4469[yyj4469] = LocalObjectReference{} } else { - yyv4467 := &yyv4464[yyj4464] - yyv4467.CodecDecodeSelf(d) + yyv4472 := &yyv4469[yyj4469] + yyv4472.CodecDecodeSelf(d) } } else { @@ -56436,17 +56484,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4464 < len(yyv4464) { - yyv4464 = yyv4464[:yyj4464] - yyc4464 = true - } else if yyj4464 == 0 && yyv4464 == nil { - yyv4464 = []LocalObjectReference{} - yyc4464 = true + if yyj4469 < len(yyv4469) { + yyv4469 = yyv4469[:yyj4469] + yyc4469 = true + } else if yyj4469 == 0 && yyv4469 == nil { + yyv4469 = []LocalObjectReference{} + yyc4469 = true } } - yyh4464.End() - if yyc4464 { - *v = yyv4464 + yyh4469.End() + if yyc4469 { + *v = yyv4469 } } @@ -56455,10 +56503,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4468 := range v { + for _, yyv4473 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4469 := &yyv4468 - yy4469.CodecEncodeSelf(e) + yy4474 := &yyv4473 + yy4474.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56468,83 +56516,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4470 := *v - yyh4470, yyl4470 := z.DecSliceHelperStart() - var yyc4470 bool - if yyl4470 == 0 { - if yyv4470 == nil { - yyv4470 = []PodCondition{} - yyc4470 = true - } else if len(yyv4470) != 0 { - yyv4470 = yyv4470[:0] - yyc4470 = true + yyv4475 := *v + yyh4475, yyl4475 := z.DecSliceHelperStart() + var yyc4475 bool + if yyl4475 == 0 { + if yyv4475 == nil { + yyv4475 = []PodCondition{} + yyc4475 = true + } else if len(yyv4475) != 0 { + yyv4475 = yyv4475[:0] + yyc4475 = true } - } else if yyl4470 > 0 { - var yyrr4470, yyrl4470 int - var yyrt4470 bool - if yyl4470 > cap(yyv4470) { + } else if yyl4475 > 0 { + var yyrr4475, yyrl4475 int + var yyrt4475 bool + if yyl4475 > cap(yyv4475) { - yyrg4470 := len(yyv4470) > 0 - yyv24470 := yyv4470 - yyrl4470, yyrt4470 = z.DecInferLen(yyl4470, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4470 { - if yyrl4470 <= cap(yyv4470) { - yyv4470 = yyv4470[:yyrl4470] + yyrg4475 := len(yyv4475) > 0 + yyv24475 := yyv4475 + yyrl4475, yyrt4475 = z.DecInferLen(yyl4475, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4475 { + if yyrl4475 <= cap(yyv4475) { + yyv4475 = yyv4475[:yyrl4475] } else { - yyv4470 = make([]PodCondition, yyrl4470) + yyv4475 = make([]PodCondition, yyrl4475) } } else { - yyv4470 = make([]PodCondition, yyrl4470) + yyv4475 = make([]PodCondition, yyrl4475) } - yyc4470 = true - yyrr4470 = len(yyv4470) - if yyrg4470 { - copy(yyv4470, yyv24470) + yyc4475 = true + yyrr4475 = len(yyv4475) + if yyrg4475 { + copy(yyv4475, yyv24475) } - } else if yyl4470 != len(yyv4470) { - yyv4470 = yyv4470[:yyl4470] - yyc4470 = true + } else if yyl4475 != len(yyv4475) { + yyv4475 = yyv4475[:yyl4475] + yyc4475 = true } - yyj4470 := 0 - for ; yyj4470 < yyrr4470; yyj4470++ { - yyh4470.ElemContainerState(yyj4470) + yyj4475 := 0 + for ; yyj4475 < yyrr4475; yyj4475++ { + yyh4475.ElemContainerState(yyj4475) if r.TryDecodeAsNil() { - yyv4470[yyj4470] = PodCondition{} + yyv4475[yyj4475] = PodCondition{} } else { - yyv4471 := &yyv4470[yyj4470] - yyv4471.CodecDecodeSelf(d) + yyv4476 := &yyv4475[yyj4475] + yyv4476.CodecDecodeSelf(d) } } - if yyrt4470 { - for ; yyj4470 < yyl4470; yyj4470++ { - yyv4470 = append(yyv4470, PodCondition{}) - yyh4470.ElemContainerState(yyj4470) + if yyrt4475 { + for ; yyj4475 < yyl4475; yyj4475++ { + yyv4475 = append(yyv4475, PodCondition{}) + yyh4475.ElemContainerState(yyj4475) if r.TryDecodeAsNil() { - yyv4470[yyj4470] = PodCondition{} + yyv4475[yyj4475] = PodCondition{} } else { - yyv4472 := &yyv4470[yyj4470] - yyv4472.CodecDecodeSelf(d) + yyv4477 := &yyv4475[yyj4475] + yyv4477.CodecDecodeSelf(d) } } } } else { - yyj4470 := 0 - for ; !r.CheckBreak(); yyj4470++ { + yyj4475 := 0 + for ; !r.CheckBreak(); yyj4475++ { - if yyj4470 >= len(yyv4470) { - yyv4470 = append(yyv4470, PodCondition{}) // var yyz4470 PodCondition - yyc4470 = true + if yyj4475 >= len(yyv4475) { + yyv4475 = append(yyv4475, PodCondition{}) // var yyz4475 PodCondition + yyc4475 = true } - yyh4470.ElemContainerState(yyj4470) - if yyj4470 < len(yyv4470) { + yyh4475.ElemContainerState(yyj4475) + if yyj4475 < len(yyv4475) { if r.TryDecodeAsNil() { - yyv4470[yyj4470] = PodCondition{} + yyv4475[yyj4475] = PodCondition{} } else { - yyv4473 := &yyv4470[yyj4470] - yyv4473.CodecDecodeSelf(d) + yyv4478 := &yyv4475[yyj4475] + yyv4478.CodecDecodeSelf(d) } } else { @@ -56552,17 +56600,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4470 < len(yyv4470) { - yyv4470 = yyv4470[:yyj4470] - yyc4470 = true - } else if yyj4470 == 0 && yyv4470 == nil { - yyv4470 = []PodCondition{} - yyc4470 = true + if yyj4475 < len(yyv4475) { + yyv4475 = yyv4475[:yyj4475] + yyc4475 = true + } else if yyj4475 == 0 && yyv4475 == nil { + yyv4475 = []PodCondition{} + yyc4475 = true } } - yyh4470.End() - if yyc4470 { - *v = yyv4470 + yyh4475.End() + if yyc4475 { + *v = yyv4475 } } @@ -56571,10 +56619,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4474 := range v { + for _, yyv4479 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4475 := &yyv4474 - yy4475.CodecEncodeSelf(e) + yy4480 := &yyv4479 + yy4480.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56584,83 +56632,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4476 := *v - yyh4476, yyl4476 := z.DecSliceHelperStart() - var yyc4476 bool - if yyl4476 == 0 { - if yyv4476 == nil { - yyv4476 = []ContainerStatus{} - yyc4476 = true - } else if len(yyv4476) != 0 { - yyv4476 = yyv4476[:0] - yyc4476 = true + yyv4481 := *v + yyh4481, yyl4481 := z.DecSliceHelperStart() + var yyc4481 bool + if yyl4481 == 0 { + if yyv4481 == nil { + yyv4481 = []ContainerStatus{} + yyc4481 = true + } else if len(yyv4481) != 0 { + yyv4481 = yyv4481[:0] + yyc4481 = true } - } else if yyl4476 > 0 { - var yyrr4476, yyrl4476 int - var yyrt4476 bool - if yyl4476 > cap(yyv4476) { + } else if yyl4481 > 0 { + var yyrr4481, yyrl4481 int + var yyrt4481 bool + if yyl4481 > cap(yyv4481) { - yyrg4476 := len(yyv4476) > 0 - yyv24476 := yyv4476 - yyrl4476, yyrt4476 = z.DecInferLen(yyl4476, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4476 { - if yyrl4476 <= cap(yyv4476) { - yyv4476 = yyv4476[:yyrl4476] + yyrg4481 := len(yyv4481) > 0 + yyv24481 := yyv4481 + yyrl4481, yyrt4481 = z.DecInferLen(yyl4481, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4481 { + if yyrl4481 <= cap(yyv4481) { + yyv4481 = yyv4481[:yyrl4481] } else { - yyv4476 = make([]ContainerStatus, yyrl4476) + yyv4481 = make([]ContainerStatus, yyrl4481) } } else { - yyv4476 = make([]ContainerStatus, yyrl4476) + yyv4481 = make([]ContainerStatus, yyrl4481) } - yyc4476 = true - yyrr4476 = len(yyv4476) - if yyrg4476 { - copy(yyv4476, yyv24476) + yyc4481 = true + yyrr4481 = len(yyv4481) + if yyrg4481 { + copy(yyv4481, yyv24481) } - } else if yyl4476 != len(yyv4476) { - yyv4476 = yyv4476[:yyl4476] - yyc4476 = true + } else if yyl4481 != len(yyv4481) { + yyv4481 = yyv4481[:yyl4481] + yyc4481 = true } - yyj4476 := 0 - for ; yyj4476 < yyrr4476; yyj4476++ { - yyh4476.ElemContainerState(yyj4476) + yyj4481 := 0 + for ; yyj4481 < yyrr4481; yyj4481++ { + yyh4481.ElemContainerState(yyj4481) if r.TryDecodeAsNil() { - yyv4476[yyj4476] = ContainerStatus{} + yyv4481[yyj4481] = ContainerStatus{} } else { - yyv4477 := &yyv4476[yyj4476] - yyv4477.CodecDecodeSelf(d) + yyv4482 := &yyv4481[yyj4481] + yyv4482.CodecDecodeSelf(d) } } - if yyrt4476 { - for ; yyj4476 < yyl4476; yyj4476++ { - yyv4476 = append(yyv4476, ContainerStatus{}) - yyh4476.ElemContainerState(yyj4476) + if yyrt4481 { + for ; yyj4481 < yyl4481; yyj4481++ { + yyv4481 = append(yyv4481, ContainerStatus{}) + yyh4481.ElemContainerState(yyj4481) if r.TryDecodeAsNil() { - yyv4476[yyj4476] = ContainerStatus{} + yyv4481[yyj4481] = ContainerStatus{} } else { - yyv4478 := &yyv4476[yyj4476] - yyv4478.CodecDecodeSelf(d) + yyv4483 := &yyv4481[yyj4481] + yyv4483.CodecDecodeSelf(d) } } } } else { - yyj4476 := 0 - for ; !r.CheckBreak(); yyj4476++ { + yyj4481 := 0 + for ; !r.CheckBreak(); yyj4481++ { - if yyj4476 >= len(yyv4476) { - yyv4476 = append(yyv4476, ContainerStatus{}) // var yyz4476 ContainerStatus - yyc4476 = true + if yyj4481 >= len(yyv4481) { + yyv4481 = append(yyv4481, ContainerStatus{}) // var yyz4481 ContainerStatus + yyc4481 = true } - yyh4476.ElemContainerState(yyj4476) - if yyj4476 < len(yyv4476) { + yyh4481.ElemContainerState(yyj4481) + if yyj4481 < len(yyv4481) { if r.TryDecodeAsNil() { - yyv4476[yyj4476] = ContainerStatus{} + yyv4481[yyj4481] = ContainerStatus{} } else { - yyv4479 := &yyv4476[yyj4476] - yyv4479.CodecDecodeSelf(d) + yyv4484 := &yyv4481[yyj4481] + yyv4484.CodecDecodeSelf(d) } } else { @@ -56668,17 +56716,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4476 < len(yyv4476) { - yyv4476 = yyv4476[:yyj4476] - yyc4476 = true - } else if yyj4476 == 0 && yyv4476 == nil { - yyv4476 = []ContainerStatus{} - yyc4476 = true + if yyj4481 < len(yyv4481) { + yyv4481 = yyv4481[:yyj4481] + yyc4481 = true + } else if yyj4481 == 0 && yyv4481 == nil { + yyv4481 = []ContainerStatus{} + yyc4481 = true } } - yyh4476.End() - if yyc4476 { - *v = yyv4476 + yyh4481.End() + if yyc4481 { + *v = yyv4481 } } @@ -56687,10 +56735,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4480 := range v { + for _, yyv4485 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4481 := &yyv4480 - yy4481.CodecEncodeSelf(e) + yy4486 := &yyv4485 + yy4486.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56700,83 +56748,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4482 := *v - yyh4482, yyl4482 := z.DecSliceHelperStart() - var yyc4482 bool - if yyl4482 == 0 { - if yyv4482 == nil { - yyv4482 = []Pod{} - yyc4482 = true - } else if len(yyv4482) != 0 { - yyv4482 = yyv4482[:0] - yyc4482 = true + yyv4487 := *v + yyh4487, yyl4487 := z.DecSliceHelperStart() + var yyc4487 bool + if yyl4487 == 0 { + if yyv4487 == nil { + yyv4487 = []Pod{} + yyc4487 = true + } else if len(yyv4487) != 0 { + yyv4487 = yyv4487[:0] + yyc4487 = true } - } else if yyl4482 > 0 { - var yyrr4482, yyrl4482 int - var yyrt4482 bool - if yyl4482 > cap(yyv4482) { + } else if yyl4487 > 0 { + var yyrr4487, yyrl4487 int + var yyrt4487 bool + if yyl4487 > cap(yyv4487) { - yyrg4482 := len(yyv4482) > 0 - yyv24482 := yyv4482 - yyrl4482, yyrt4482 = z.DecInferLen(yyl4482, z.DecBasicHandle().MaxInitLen, 648) - if yyrt4482 { - if yyrl4482 <= cap(yyv4482) { - yyv4482 = yyv4482[:yyrl4482] + yyrg4487 := len(yyv4487) > 0 + yyv24487 := yyv4487 + yyrl4487, yyrt4487 = z.DecInferLen(yyl4487, z.DecBasicHandle().MaxInitLen, 648) + if yyrt4487 { + if yyrl4487 <= cap(yyv4487) { + yyv4487 = yyv4487[:yyrl4487] } else { - yyv4482 = make([]Pod, yyrl4482) + yyv4487 = make([]Pod, yyrl4487) } } else { - yyv4482 = make([]Pod, yyrl4482) + yyv4487 = make([]Pod, yyrl4487) } - yyc4482 = true - yyrr4482 = len(yyv4482) - if yyrg4482 { - copy(yyv4482, yyv24482) + yyc4487 = true + yyrr4487 = len(yyv4487) + if yyrg4487 { + copy(yyv4487, yyv24487) } - } else if yyl4482 != len(yyv4482) { - yyv4482 = yyv4482[:yyl4482] - yyc4482 = true + } else if yyl4487 != len(yyv4487) { + yyv4487 = yyv4487[:yyl4487] + yyc4487 = true } - yyj4482 := 0 - for ; yyj4482 < yyrr4482; yyj4482++ { - yyh4482.ElemContainerState(yyj4482) + yyj4487 := 0 + for ; yyj4487 < yyrr4487; yyj4487++ { + yyh4487.ElemContainerState(yyj4487) if r.TryDecodeAsNil() { - yyv4482[yyj4482] = Pod{} + yyv4487[yyj4487] = Pod{} } else { - yyv4483 := &yyv4482[yyj4482] - yyv4483.CodecDecodeSelf(d) + yyv4488 := &yyv4487[yyj4487] + yyv4488.CodecDecodeSelf(d) } } - if yyrt4482 { - for ; yyj4482 < yyl4482; yyj4482++ { - yyv4482 = append(yyv4482, Pod{}) - yyh4482.ElemContainerState(yyj4482) + if yyrt4487 { + for ; yyj4487 < yyl4487; yyj4487++ { + yyv4487 = append(yyv4487, Pod{}) + yyh4487.ElemContainerState(yyj4487) if r.TryDecodeAsNil() { - yyv4482[yyj4482] = Pod{} + yyv4487[yyj4487] = Pod{} } else { - yyv4484 := &yyv4482[yyj4482] - yyv4484.CodecDecodeSelf(d) + yyv4489 := &yyv4487[yyj4487] + yyv4489.CodecDecodeSelf(d) } } } } else { - yyj4482 := 0 - for ; !r.CheckBreak(); yyj4482++ { + yyj4487 := 0 + for ; !r.CheckBreak(); yyj4487++ { - if yyj4482 >= len(yyv4482) { - yyv4482 = append(yyv4482, Pod{}) // var yyz4482 Pod - yyc4482 = true + if yyj4487 >= len(yyv4487) { + yyv4487 = append(yyv4487, Pod{}) // var yyz4487 Pod + yyc4487 = true } - yyh4482.ElemContainerState(yyj4482) - if yyj4482 < len(yyv4482) { + yyh4487.ElemContainerState(yyj4487) + if yyj4487 < len(yyv4487) { if r.TryDecodeAsNil() { - yyv4482[yyj4482] = Pod{} + yyv4487[yyj4487] = Pod{} } else { - yyv4485 := &yyv4482[yyj4482] - yyv4485.CodecDecodeSelf(d) + yyv4490 := &yyv4487[yyj4487] + yyv4490.CodecDecodeSelf(d) } } else { @@ -56784,17 +56832,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4482 < len(yyv4482) { - yyv4482 = yyv4482[:yyj4482] - yyc4482 = true - } else if yyj4482 == 0 && yyv4482 == nil { - yyv4482 = []Pod{} - yyc4482 = true + if yyj4487 < len(yyv4487) { + yyv4487 = yyv4487[:yyj4487] + yyc4487 = true + } else if yyj4487 == 0 && yyv4487 == nil { + yyv4487 = []Pod{} + yyc4487 = true } } - yyh4482.End() - if yyc4482 { - *v = yyv4482 + yyh4487.End() + if yyc4487 { + *v = yyv4487 } } @@ -56803,10 +56851,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4486 := range v { + for _, yyv4491 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4487 := &yyv4486 - yy4487.CodecEncodeSelf(e) + yy4492 := &yyv4491 + yy4492.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56816,83 +56864,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4488 := *v - yyh4488, yyl4488 := z.DecSliceHelperStart() - var yyc4488 bool - if yyl4488 == 0 { - if yyv4488 == nil { - yyv4488 = []PodTemplate{} - yyc4488 = true - } else if len(yyv4488) != 0 { - yyv4488 = yyv4488[:0] - yyc4488 = true + yyv4493 := *v + yyh4493, yyl4493 := z.DecSliceHelperStart() + var yyc4493 bool + if yyl4493 == 0 { + if yyv4493 == nil { + yyv4493 = []PodTemplate{} + yyc4493 = true + } else if len(yyv4493) != 0 { + yyv4493 = yyv4493[:0] + yyc4493 = true } - } else if yyl4488 > 0 { - var yyrr4488, yyrl4488 int - var yyrt4488 bool - if yyl4488 > cap(yyv4488) { + } else if yyl4493 > 0 { + var yyrr4493, yyrl4493 int + var yyrt4493 bool + if yyl4493 > cap(yyv4493) { - yyrg4488 := len(yyv4488) > 0 - yyv24488 := yyv4488 - yyrl4488, yyrt4488 = z.DecInferLen(yyl4488, z.DecBasicHandle().MaxInitLen, 696) - if yyrt4488 { - if yyrl4488 <= cap(yyv4488) { - yyv4488 = yyv4488[:yyrl4488] + yyrg4493 := len(yyv4493) > 0 + yyv24493 := yyv4493 + yyrl4493, yyrt4493 = z.DecInferLen(yyl4493, z.DecBasicHandle().MaxInitLen, 696) + if yyrt4493 { + if yyrl4493 <= cap(yyv4493) { + yyv4493 = yyv4493[:yyrl4493] } else { - yyv4488 = make([]PodTemplate, yyrl4488) + yyv4493 = make([]PodTemplate, yyrl4493) } } else { - yyv4488 = make([]PodTemplate, yyrl4488) + yyv4493 = make([]PodTemplate, yyrl4493) } - yyc4488 = true - yyrr4488 = len(yyv4488) - if yyrg4488 { - copy(yyv4488, yyv24488) + yyc4493 = true + yyrr4493 = len(yyv4493) + if yyrg4493 { + copy(yyv4493, yyv24493) } - } else if yyl4488 != len(yyv4488) { - yyv4488 = yyv4488[:yyl4488] - yyc4488 = true + } else if yyl4493 != len(yyv4493) { + yyv4493 = yyv4493[:yyl4493] + yyc4493 = true } - yyj4488 := 0 - for ; yyj4488 < yyrr4488; yyj4488++ { - yyh4488.ElemContainerState(yyj4488) + yyj4493 := 0 + for ; yyj4493 < yyrr4493; yyj4493++ { + yyh4493.ElemContainerState(yyj4493) if r.TryDecodeAsNil() { - yyv4488[yyj4488] = PodTemplate{} + yyv4493[yyj4493] = PodTemplate{} } else { - yyv4489 := &yyv4488[yyj4488] - yyv4489.CodecDecodeSelf(d) + yyv4494 := &yyv4493[yyj4493] + yyv4494.CodecDecodeSelf(d) } } - if yyrt4488 { - for ; yyj4488 < yyl4488; yyj4488++ { - yyv4488 = append(yyv4488, PodTemplate{}) - yyh4488.ElemContainerState(yyj4488) + if yyrt4493 { + for ; yyj4493 < yyl4493; yyj4493++ { + yyv4493 = append(yyv4493, PodTemplate{}) + yyh4493.ElemContainerState(yyj4493) if r.TryDecodeAsNil() { - yyv4488[yyj4488] = PodTemplate{} + yyv4493[yyj4493] = PodTemplate{} } else { - yyv4490 := &yyv4488[yyj4488] - yyv4490.CodecDecodeSelf(d) + yyv4495 := &yyv4493[yyj4493] + yyv4495.CodecDecodeSelf(d) } } } } else { - yyj4488 := 0 - for ; !r.CheckBreak(); yyj4488++ { + yyj4493 := 0 + for ; !r.CheckBreak(); yyj4493++ { - if yyj4488 >= len(yyv4488) { - yyv4488 = append(yyv4488, PodTemplate{}) // var yyz4488 PodTemplate - yyc4488 = true + if yyj4493 >= len(yyv4493) { + yyv4493 = append(yyv4493, PodTemplate{}) // var yyz4493 PodTemplate + yyc4493 = true } - yyh4488.ElemContainerState(yyj4488) - if yyj4488 < len(yyv4488) { + yyh4493.ElemContainerState(yyj4493) + if yyj4493 < len(yyv4493) { if r.TryDecodeAsNil() { - yyv4488[yyj4488] = PodTemplate{} + yyv4493[yyj4493] = PodTemplate{} } else { - yyv4491 := &yyv4488[yyj4488] - yyv4491.CodecDecodeSelf(d) + yyv4496 := &yyv4493[yyj4493] + yyv4496.CodecDecodeSelf(d) } } else { @@ -56900,17 +56948,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4488 < len(yyv4488) { - yyv4488 = yyv4488[:yyj4488] - yyc4488 = true - } else if yyj4488 == 0 && yyv4488 == nil { - yyv4488 = []PodTemplate{} - yyc4488 = true + if yyj4493 < len(yyv4493) { + yyv4493 = yyv4493[:yyj4493] + yyc4493 = true + } else if yyj4493 == 0 && yyv4493 == nil { + yyv4493 = []PodTemplate{} + yyc4493 = true } } - yyh4488.End() - if yyc4488 { - *v = yyv4488 + yyh4493.End() + if yyc4493 { + *v = yyv4493 } } @@ -56919,10 +56967,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4492 := range v { + for _, yyv4497 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4493 := &yyv4492 - yy4493.CodecEncodeSelf(e) + yy4498 := &yyv4497 + yy4498.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56932,83 +56980,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4494 := *v - yyh4494, yyl4494 := z.DecSliceHelperStart() - var yyc4494 bool - if yyl4494 == 0 { - if yyv4494 == nil { - yyv4494 = []ReplicationController{} - yyc4494 = true - } else if len(yyv4494) != 0 { - yyv4494 = yyv4494[:0] - yyc4494 = true + yyv4499 := *v + yyh4499, yyl4499 := z.DecSliceHelperStart() + var yyc4499 bool + if yyl4499 == 0 { + if yyv4499 == nil { + yyv4499 = []ReplicationController{} + yyc4499 = true + } else if len(yyv4499) != 0 { + yyv4499 = yyv4499[:0] + yyc4499 = true } - } else if yyl4494 > 0 { - var yyrr4494, yyrl4494 int - var yyrt4494 bool - if yyl4494 > cap(yyv4494) { + } else if yyl4499 > 0 { + var yyrr4499, yyrl4499 int + var yyrt4499 bool + if yyl4499 > cap(yyv4499) { - yyrg4494 := len(yyv4494) > 0 - yyv24494 := yyv4494 - yyrl4494, yyrt4494 = z.DecInferLen(yyl4494, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4494 { - if yyrl4494 <= cap(yyv4494) { - yyv4494 = yyv4494[:yyrl4494] + yyrg4499 := len(yyv4499) > 0 + yyv24499 := yyv4499 + yyrl4499, yyrt4499 = z.DecInferLen(yyl4499, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4499 { + if yyrl4499 <= cap(yyv4499) { + yyv4499 = yyv4499[:yyrl4499] } else { - yyv4494 = make([]ReplicationController, yyrl4494) + yyv4499 = make([]ReplicationController, yyrl4499) } } else { - yyv4494 = make([]ReplicationController, yyrl4494) + yyv4499 = make([]ReplicationController, yyrl4499) } - yyc4494 = true - yyrr4494 = len(yyv4494) - if yyrg4494 { - copy(yyv4494, yyv24494) + yyc4499 = true + yyrr4499 = len(yyv4499) + if yyrg4499 { + copy(yyv4499, yyv24499) } - } else if yyl4494 != len(yyv4494) { - yyv4494 = yyv4494[:yyl4494] - yyc4494 = true + } else if yyl4499 != len(yyv4499) { + yyv4499 = yyv4499[:yyl4499] + yyc4499 = true } - yyj4494 := 0 - for ; yyj4494 < yyrr4494; yyj4494++ { - yyh4494.ElemContainerState(yyj4494) + yyj4499 := 0 + for ; yyj4499 < yyrr4499; yyj4499++ { + yyh4499.ElemContainerState(yyj4499) if r.TryDecodeAsNil() { - yyv4494[yyj4494] = ReplicationController{} + yyv4499[yyj4499] = ReplicationController{} } else { - yyv4495 := &yyv4494[yyj4494] - yyv4495.CodecDecodeSelf(d) + yyv4500 := &yyv4499[yyj4499] + yyv4500.CodecDecodeSelf(d) } } - if yyrt4494 { - for ; yyj4494 < yyl4494; yyj4494++ { - yyv4494 = append(yyv4494, ReplicationController{}) - yyh4494.ElemContainerState(yyj4494) + if yyrt4499 { + for ; yyj4499 < yyl4499; yyj4499++ { + yyv4499 = append(yyv4499, ReplicationController{}) + yyh4499.ElemContainerState(yyj4499) if r.TryDecodeAsNil() { - yyv4494[yyj4494] = ReplicationController{} + yyv4499[yyj4499] = ReplicationController{} } else { - yyv4496 := &yyv4494[yyj4494] - yyv4496.CodecDecodeSelf(d) + yyv4501 := &yyv4499[yyj4499] + yyv4501.CodecDecodeSelf(d) } } } } else { - yyj4494 := 0 - for ; !r.CheckBreak(); yyj4494++ { + yyj4499 := 0 + for ; !r.CheckBreak(); yyj4499++ { - if yyj4494 >= len(yyv4494) { - yyv4494 = append(yyv4494, ReplicationController{}) // var yyz4494 ReplicationController - yyc4494 = true + if yyj4499 >= len(yyv4499) { + yyv4499 = append(yyv4499, ReplicationController{}) // var yyz4499 ReplicationController + yyc4499 = true } - yyh4494.ElemContainerState(yyj4494) - if yyj4494 < len(yyv4494) { + yyh4499.ElemContainerState(yyj4499) + if yyj4499 < len(yyv4499) { if r.TryDecodeAsNil() { - yyv4494[yyj4494] = ReplicationController{} + yyv4499[yyj4499] = ReplicationController{} } else { - yyv4497 := &yyv4494[yyj4494] - yyv4497.CodecDecodeSelf(d) + yyv4502 := &yyv4499[yyj4499] + yyv4502.CodecDecodeSelf(d) } } else { @@ -57016,17 +57064,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4494 < len(yyv4494) { - yyv4494 = yyv4494[:yyj4494] - yyc4494 = true - } else if yyj4494 == 0 && yyv4494 == nil { - yyv4494 = []ReplicationController{} - yyc4494 = true + if yyj4499 < len(yyv4499) { + yyv4499 = yyv4499[:yyj4499] + yyc4499 = true + } else if yyj4499 == 0 && yyv4499 == nil { + yyv4499 = []ReplicationController{} + yyc4499 = true } } - yyh4494.End() - if yyc4494 { - *v = yyv4494 + yyh4499.End() + if yyc4499 { + *v = yyv4499 } } @@ -57035,10 +57083,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4498 := range v { + for _, yyv4503 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4499 := &yyv4498 - yy4499.CodecEncodeSelf(e) + yy4504 := &yyv4503 + yy4504.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57048,83 +57096,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4500 := *v - yyh4500, yyl4500 := z.DecSliceHelperStart() - var yyc4500 bool - if yyl4500 == 0 { - if yyv4500 == nil { - yyv4500 = []LoadBalancerIngress{} - yyc4500 = true - } else if len(yyv4500) != 0 { - yyv4500 = yyv4500[:0] - yyc4500 = true + yyv4505 := *v + yyh4505, yyl4505 := z.DecSliceHelperStart() + var yyc4505 bool + if yyl4505 == 0 { + if yyv4505 == nil { + yyv4505 = []LoadBalancerIngress{} + yyc4505 = true + } else if len(yyv4505) != 0 { + yyv4505 = yyv4505[:0] + yyc4505 = true } - } else if yyl4500 > 0 { - var yyrr4500, yyrl4500 int - var yyrt4500 bool - if yyl4500 > cap(yyv4500) { + } else if yyl4505 > 0 { + var yyrr4505, yyrl4505 int + var yyrt4505 bool + if yyl4505 > cap(yyv4505) { - yyrg4500 := len(yyv4500) > 0 - yyv24500 := yyv4500 - yyrl4500, yyrt4500 = z.DecInferLen(yyl4500, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4500 { - if yyrl4500 <= cap(yyv4500) { - yyv4500 = yyv4500[:yyrl4500] + yyrg4505 := len(yyv4505) > 0 + yyv24505 := yyv4505 + yyrl4505, yyrt4505 = z.DecInferLen(yyl4505, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4505 { + if yyrl4505 <= cap(yyv4505) { + yyv4505 = yyv4505[:yyrl4505] } else { - yyv4500 = make([]LoadBalancerIngress, yyrl4500) + yyv4505 = make([]LoadBalancerIngress, yyrl4505) } } else { - yyv4500 = make([]LoadBalancerIngress, yyrl4500) + yyv4505 = make([]LoadBalancerIngress, yyrl4505) } - yyc4500 = true - yyrr4500 = len(yyv4500) - if yyrg4500 { - copy(yyv4500, yyv24500) + yyc4505 = true + yyrr4505 = len(yyv4505) + if yyrg4505 { + copy(yyv4505, yyv24505) } - } else if yyl4500 != len(yyv4500) { - yyv4500 = yyv4500[:yyl4500] - yyc4500 = true + } else if yyl4505 != len(yyv4505) { + yyv4505 = yyv4505[:yyl4505] + yyc4505 = true } - yyj4500 := 0 - for ; yyj4500 < yyrr4500; yyj4500++ { - yyh4500.ElemContainerState(yyj4500) + yyj4505 := 0 + for ; yyj4505 < yyrr4505; yyj4505++ { + yyh4505.ElemContainerState(yyj4505) if r.TryDecodeAsNil() { - yyv4500[yyj4500] = LoadBalancerIngress{} + yyv4505[yyj4505] = LoadBalancerIngress{} } else { - yyv4501 := &yyv4500[yyj4500] - yyv4501.CodecDecodeSelf(d) + yyv4506 := &yyv4505[yyj4505] + yyv4506.CodecDecodeSelf(d) } } - if yyrt4500 { - for ; yyj4500 < yyl4500; yyj4500++ { - yyv4500 = append(yyv4500, LoadBalancerIngress{}) - yyh4500.ElemContainerState(yyj4500) + if yyrt4505 { + for ; yyj4505 < yyl4505; yyj4505++ { + yyv4505 = append(yyv4505, LoadBalancerIngress{}) + yyh4505.ElemContainerState(yyj4505) if r.TryDecodeAsNil() { - yyv4500[yyj4500] = LoadBalancerIngress{} + yyv4505[yyj4505] = LoadBalancerIngress{} } else { - yyv4502 := &yyv4500[yyj4500] - yyv4502.CodecDecodeSelf(d) + yyv4507 := &yyv4505[yyj4505] + yyv4507.CodecDecodeSelf(d) } } } } else { - yyj4500 := 0 - for ; !r.CheckBreak(); yyj4500++ { + yyj4505 := 0 + for ; !r.CheckBreak(); yyj4505++ { - if yyj4500 >= len(yyv4500) { - yyv4500 = append(yyv4500, LoadBalancerIngress{}) // var yyz4500 LoadBalancerIngress - yyc4500 = true + if yyj4505 >= len(yyv4505) { + yyv4505 = append(yyv4505, LoadBalancerIngress{}) // var yyz4505 LoadBalancerIngress + yyc4505 = true } - yyh4500.ElemContainerState(yyj4500) - if yyj4500 < len(yyv4500) { + yyh4505.ElemContainerState(yyj4505) + if yyj4505 < len(yyv4505) { if r.TryDecodeAsNil() { - yyv4500[yyj4500] = LoadBalancerIngress{} + yyv4505[yyj4505] = LoadBalancerIngress{} } else { - yyv4503 := &yyv4500[yyj4500] - yyv4503.CodecDecodeSelf(d) + yyv4508 := &yyv4505[yyj4505] + yyv4508.CodecDecodeSelf(d) } } else { @@ -57132,17 +57180,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4500 < len(yyv4500) { - yyv4500 = yyv4500[:yyj4500] - yyc4500 = true - } else if yyj4500 == 0 && yyv4500 == nil { - yyv4500 = []LoadBalancerIngress{} - yyc4500 = true + if yyj4505 < len(yyv4505) { + yyv4505 = yyv4505[:yyj4505] + yyc4505 = true + } else if yyj4505 == 0 && yyv4505 == nil { + yyv4505 = []LoadBalancerIngress{} + yyc4505 = true } } - yyh4500.End() - if yyc4500 { - *v = yyv4500 + yyh4505.End() + if yyc4505 { + *v = yyv4505 } } @@ -57151,10 +57199,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4504 := range v { + for _, yyv4509 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4505 := &yyv4504 - yy4505.CodecEncodeSelf(e) + yy4510 := &yyv4509 + yy4510.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57164,83 +57212,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4506 := *v - yyh4506, yyl4506 := z.DecSliceHelperStart() - var yyc4506 bool - if yyl4506 == 0 { - if yyv4506 == nil { - yyv4506 = []ServicePort{} - yyc4506 = true - } else if len(yyv4506) != 0 { - yyv4506 = yyv4506[:0] - yyc4506 = true + yyv4511 := *v + yyh4511, yyl4511 := z.DecSliceHelperStart() + var yyc4511 bool + if yyl4511 == 0 { + if yyv4511 == nil { + yyv4511 = []ServicePort{} + yyc4511 = true + } else if len(yyv4511) != 0 { + yyv4511 = yyv4511[:0] + yyc4511 = true } - } else if yyl4506 > 0 { - var yyrr4506, yyrl4506 int - var yyrt4506 bool - if yyl4506 > cap(yyv4506) { + } else if yyl4511 > 0 { + var yyrr4511, yyrl4511 int + var yyrt4511 bool + if yyl4511 > cap(yyv4511) { - yyrg4506 := len(yyv4506) > 0 - yyv24506 := yyv4506 - yyrl4506, yyrt4506 = z.DecInferLen(yyl4506, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4506 { - if yyrl4506 <= cap(yyv4506) { - yyv4506 = yyv4506[:yyrl4506] + yyrg4511 := len(yyv4511) > 0 + yyv24511 := yyv4511 + yyrl4511, yyrt4511 = z.DecInferLen(yyl4511, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4511 { + if yyrl4511 <= cap(yyv4511) { + yyv4511 = yyv4511[:yyrl4511] } else { - yyv4506 = make([]ServicePort, yyrl4506) + yyv4511 = make([]ServicePort, yyrl4511) } } else { - yyv4506 = make([]ServicePort, yyrl4506) + yyv4511 = make([]ServicePort, yyrl4511) } - yyc4506 = true - yyrr4506 = len(yyv4506) - if yyrg4506 { - copy(yyv4506, yyv24506) + yyc4511 = true + yyrr4511 = len(yyv4511) + if yyrg4511 { + copy(yyv4511, yyv24511) } - } else if yyl4506 != len(yyv4506) { - yyv4506 = yyv4506[:yyl4506] - yyc4506 = true + } else if yyl4511 != len(yyv4511) { + yyv4511 = yyv4511[:yyl4511] + yyc4511 = true } - yyj4506 := 0 - for ; yyj4506 < yyrr4506; yyj4506++ { - yyh4506.ElemContainerState(yyj4506) + yyj4511 := 0 + for ; yyj4511 < yyrr4511; yyj4511++ { + yyh4511.ElemContainerState(yyj4511) if r.TryDecodeAsNil() { - yyv4506[yyj4506] = ServicePort{} + yyv4511[yyj4511] = ServicePort{} } else { - yyv4507 := &yyv4506[yyj4506] - yyv4507.CodecDecodeSelf(d) + yyv4512 := &yyv4511[yyj4511] + yyv4512.CodecDecodeSelf(d) } } - if yyrt4506 { - for ; yyj4506 < yyl4506; yyj4506++ { - yyv4506 = append(yyv4506, ServicePort{}) - yyh4506.ElemContainerState(yyj4506) + if yyrt4511 { + for ; yyj4511 < yyl4511; yyj4511++ { + yyv4511 = append(yyv4511, ServicePort{}) + yyh4511.ElemContainerState(yyj4511) if r.TryDecodeAsNil() { - yyv4506[yyj4506] = ServicePort{} + yyv4511[yyj4511] = ServicePort{} } else { - yyv4508 := &yyv4506[yyj4506] - yyv4508.CodecDecodeSelf(d) + yyv4513 := &yyv4511[yyj4511] + yyv4513.CodecDecodeSelf(d) } } } } else { - yyj4506 := 0 - for ; !r.CheckBreak(); yyj4506++ { + yyj4511 := 0 + for ; !r.CheckBreak(); yyj4511++ { - if yyj4506 >= len(yyv4506) { - yyv4506 = append(yyv4506, ServicePort{}) // var yyz4506 ServicePort - yyc4506 = true + if yyj4511 >= len(yyv4511) { + yyv4511 = append(yyv4511, ServicePort{}) // var yyz4511 ServicePort + yyc4511 = true } - yyh4506.ElemContainerState(yyj4506) - if yyj4506 < len(yyv4506) { + yyh4511.ElemContainerState(yyj4511) + if yyj4511 < len(yyv4511) { if r.TryDecodeAsNil() { - yyv4506[yyj4506] = ServicePort{} + yyv4511[yyj4511] = ServicePort{} } else { - yyv4509 := &yyv4506[yyj4506] - yyv4509.CodecDecodeSelf(d) + yyv4514 := &yyv4511[yyj4511] + yyv4514.CodecDecodeSelf(d) } } else { @@ -57248,17 +57296,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4506 < len(yyv4506) { - yyv4506 = yyv4506[:yyj4506] - yyc4506 = true - } else if yyj4506 == 0 && yyv4506 == nil { - yyv4506 = []ServicePort{} - yyc4506 = true + if yyj4511 < len(yyv4511) { + yyv4511 = yyv4511[:yyj4511] + yyc4511 = true + } else if yyj4511 == 0 && yyv4511 == nil { + yyv4511 = []ServicePort{} + yyc4511 = true } } - yyh4506.End() - if yyc4506 { - *v = yyv4506 + yyh4511.End() + if yyc4511 { + *v = yyv4511 } } @@ -57267,10 +57315,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4510 := range v { + for _, yyv4515 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4511 := &yyv4510 - yy4511.CodecEncodeSelf(e) + yy4516 := &yyv4515 + yy4516.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57280,83 +57328,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4512 := *v - yyh4512, yyl4512 := z.DecSliceHelperStart() - var yyc4512 bool - if yyl4512 == 0 { - if yyv4512 == nil { - yyv4512 = []Service{} - yyc4512 = true - } else if len(yyv4512) != 0 { - yyv4512 = yyv4512[:0] - yyc4512 = true + yyv4517 := *v + yyh4517, yyl4517 := z.DecSliceHelperStart() + var yyc4517 bool + if yyl4517 == 0 { + if yyv4517 == nil { + yyv4517 = []Service{} + yyc4517 = true + } else if len(yyv4517) != 0 { + yyv4517 = yyv4517[:0] + yyc4517 = true } - } else if yyl4512 > 0 { - var yyrr4512, yyrl4512 int - var yyrt4512 bool - if yyl4512 > cap(yyv4512) { + } else if yyl4517 > 0 { + var yyrr4517, yyrl4517 int + var yyrt4517 bool + if yyl4517 > cap(yyv4517) { - yyrg4512 := len(yyv4512) > 0 - yyv24512 := yyv4512 - yyrl4512, yyrt4512 = z.DecInferLen(yyl4512, z.DecBasicHandle().MaxInitLen, 432) - if yyrt4512 { - if yyrl4512 <= cap(yyv4512) { - yyv4512 = yyv4512[:yyrl4512] + yyrg4517 := len(yyv4517) > 0 + yyv24517 := yyv4517 + yyrl4517, yyrt4517 = z.DecInferLen(yyl4517, z.DecBasicHandle().MaxInitLen, 448) + if yyrt4517 { + if yyrl4517 <= cap(yyv4517) { + yyv4517 = yyv4517[:yyrl4517] } else { - yyv4512 = make([]Service, yyrl4512) + yyv4517 = make([]Service, yyrl4517) } } else { - yyv4512 = make([]Service, yyrl4512) + yyv4517 = make([]Service, yyrl4517) } - yyc4512 = true - yyrr4512 = len(yyv4512) - if yyrg4512 { - copy(yyv4512, yyv24512) + yyc4517 = true + yyrr4517 = len(yyv4517) + if yyrg4517 { + copy(yyv4517, yyv24517) } - } else if yyl4512 != len(yyv4512) { - yyv4512 = yyv4512[:yyl4512] - yyc4512 = true + } else if yyl4517 != len(yyv4517) { + yyv4517 = yyv4517[:yyl4517] + yyc4517 = true } - yyj4512 := 0 - for ; yyj4512 < yyrr4512; yyj4512++ { - yyh4512.ElemContainerState(yyj4512) + yyj4517 := 0 + for ; yyj4517 < yyrr4517; yyj4517++ { + yyh4517.ElemContainerState(yyj4517) if r.TryDecodeAsNil() { - yyv4512[yyj4512] = Service{} + yyv4517[yyj4517] = Service{} } else { - yyv4513 := &yyv4512[yyj4512] - yyv4513.CodecDecodeSelf(d) + yyv4518 := &yyv4517[yyj4517] + yyv4518.CodecDecodeSelf(d) } } - if yyrt4512 { - for ; yyj4512 < yyl4512; yyj4512++ { - yyv4512 = append(yyv4512, Service{}) - yyh4512.ElemContainerState(yyj4512) + if yyrt4517 { + for ; yyj4517 < yyl4517; yyj4517++ { + yyv4517 = append(yyv4517, Service{}) + yyh4517.ElemContainerState(yyj4517) if r.TryDecodeAsNil() { - yyv4512[yyj4512] = Service{} + yyv4517[yyj4517] = Service{} } else { - yyv4514 := &yyv4512[yyj4512] - yyv4514.CodecDecodeSelf(d) + yyv4519 := &yyv4517[yyj4517] + yyv4519.CodecDecodeSelf(d) } } } } else { - yyj4512 := 0 - for ; !r.CheckBreak(); yyj4512++ { + yyj4517 := 0 + for ; !r.CheckBreak(); yyj4517++ { - if yyj4512 >= len(yyv4512) { - yyv4512 = append(yyv4512, Service{}) // var yyz4512 Service - yyc4512 = true + if yyj4517 >= len(yyv4517) { + yyv4517 = append(yyv4517, Service{}) // var yyz4517 Service + yyc4517 = true } - yyh4512.ElemContainerState(yyj4512) - if yyj4512 < len(yyv4512) { + yyh4517.ElemContainerState(yyj4517) + if yyj4517 < len(yyv4517) { if r.TryDecodeAsNil() { - yyv4512[yyj4512] = Service{} + yyv4517[yyj4517] = Service{} } else { - yyv4515 := &yyv4512[yyj4512] - yyv4515.CodecDecodeSelf(d) + yyv4520 := &yyv4517[yyj4517] + yyv4520.CodecDecodeSelf(d) } } else { @@ -57364,17 +57412,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4512 < len(yyv4512) { - yyv4512 = yyv4512[:yyj4512] - yyc4512 = true - } else if yyj4512 == 0 && yyv4512 == nil { - yyv4512 = []Service{} - yyc4512 = true + if yyj4517 < len(yyv4517) { + yyv4517 = yyv4517[:yyj4517] + yyc4517 = true + } else if yyj4517 == 0 && yyv4517 == nil { + yyv4517 = []Service{} + yyc4517 = true } } - yyh4512.End() - if yyc4512 { - *v = yyv4512 + yyh4517.End() + if yyc4517 { + *v = yyv4517 } } @@ -57383,10 +57431,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4516 := range v { + for _, yyv4521 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4517 := &yyv4516 - yy4517.CodecEncodeSelf(e) + yy4522 := &yyv4521 + yy4522.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57396,83 +57444,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4518 := *v - yyh4518, yyl4518 := z.DecSliceHelperStart() - var yyc4518 bool - if yyl4518 == 0 { - if yyv4518 == nil { - yyv4518 = []ObjectReference{} - yyc4518 = true - } else if len(yyv4518) != 0 { - yyv4518 = yyv4518[:0] - yyc4518 = true + yyv4523 := *v + yyh4523, yyl4523 := z.DecSliceHelperStart() + var yyc4523 bool + if yyl4523 == 0 { + if yyv4523 == nil { + yyv4523 = []ObjectReference{} + yyc4523 = true + } else if len(yyv4523) != 0 { + yyv4523 = yyv4523[:0] + yyc4523 = true } - } else if yyl4518 > 0 { - var yyrr4518, yyrl4518 int - var yyrt4518 bool - if yyl4518 > cap(yyv4518) { + } else if yyl4523 > 0 { + var yyrr4523, yyrl4523 int + var yyrt4523 bool + if yyl4523 > cap(yyv4523) { - yyrg4518 := len(yyv4518) > 0 - yyv24518 := yyv4518 - yyrl4518, yyrt4518 = z.DecInferLen(yyl4518, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4518 { - if yyrl4518 <= cap(yyv4518) { - yyv4518 = yyv4518[:yyrl4518] + yyrg4523 := len(yyv4523) > 0 + yyv24523 := yyv4523 + yyrl4523, yyrt4523 = z.DecInferLen(yyl4523, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4523 { + if yyrl4523 <= cap(yyv4523) { + yyv4523 = yyv4523[:yyrl4523] } else { - yyv4518 = make([]ObjectReference, yyrl4518) + yyv4523 = make([]ObjectReference, yyrl4523) } } else { - yyv4518 = make([]ObjectReference, yyrl4518) + yyv4523 = make([]ObjectReference, yyrl4523) } - yyc4518 = true - yyrr4518 = len(yyv4518) - if yyrg4518 { - copy(yyv4518, yyv24518) + yyc4523 = true + yyrr4523 = len(yyv4523) + if yyrg4523 { + copy(yyv4523, yyv24523) } - } else if yyl4518 != len(yyv4518) { - yyv4518 = yyv4518[:yyl4518] - yyc4518 = true + } else if yyl4523 != len(yyv4523) { + yyv4523 = yyv4523[:yyl4523] + yyc4523 = true } - yyj4518 := 0 - for ; yyj4518 < yyrr4518; yyj4518++ { - yyh4518.ElemContainerState(yyj4518) + yyj4523 := 0 + for ; yyj4523 < yyrr4523; yyj4523++ { + yyh4523.ElemContainerState(yyj4523) if r.TryDecodeAsNil() { - yyv4518[yyj4518] = ObjectReference{} + yyv4523[yyj4523] = ObjectReference{} } else { - yyv4519 := &yyv4518[yyj4518] - yyv4519.CodecDecodeSelf(d) + yyv4524 := &yyv4523[yyj4523] + yyv4524.CodecDecodeSelf(d) } } - if yyrt4518 { - for ; yyj4518 < yyl4518; yyj4518++ { - yyv4518 = append(yyv4518, ObjectReference{}) - yyh4518.ElemContainerState(yyj4518) + if yyrt4523 { + for ; yyj4523 < yyl4523; yyj4523++ { + yyv4523 = append(yyv4523, ObjectReference{}) + yyh4523.ElemContainerState(yyj4523) if r.TryDecodeAsNil() { - yyv4518[yyj4518] = ObjectReference{} + yyv4523[yyj4523] = ObjectReference{} } else { - yyv4520 := &yyv4518[yyj4518] - yyv4520.CodecDecodeSelf(d) + yyv4525 := &yyv4523[yyj4523] + yyv4525.CodecDecodeSelf(d) } } } } else { - yyj4518 := 0 - for ; !r.CheckBreak(); yyj4518++ { + yyj4523 := 0 + for ; !r.CheckBreak(); yyj4523++ { - if yyj4518 >= len(yyv4518) { - yyv4518 = append(yyv4518, ObjectReference{}) // var yyz4518 ObjectReference - yyc4518 = true + if yyj4523 >= len(yyv4523) { + yyv4523 = append(yyv4523, ObjectReference{}) // var yyz4523 ObjectReference + yyc4523 = true } - yyh4518.ElemContainerState(yyj4518) - if yyj4518 < len(yyv4518) { + yyh4523.ElemContainerState(yyj4523) + if yyj4523 < len(yyv4523) { if r.TryDecodeAsNil() { - yyv4518[yyj4518] = ObjectReference{} + yyv4523[yyj4523] = ObjectReference{} } else { - yyv4521 := &yyv4518[yyj4518] - yyv4521.CodecDecodeSelf(d) + yyv4526 := &yyv4523[yyj4523] + yyv4526.CodecDecodeSelf(d) } } else { @@ -57480,17 +57528,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4518 < len(yyv4518) { - yyv4518 = yyv4518[:yyj4518] - yyc4518 = true - } else if yyj4518 == 0 && yyv4518 == nil { - yyv4518 = []ObjectReference{} - yyc4518 = true + if yyj4523 < len(yyv4523) { + yyv4523 = yyv4523[:yyj4523] + yyc4523 = true + } else if yyj4523 == 0 && yyv4523 == nil { + yyv4523 = []ObjectReference{} + yyc4523 = true } } - yyh4518.End() - if yyc4518 { - *v = yyv4518 + yyh4523.End() + if yyc4523 { + *v = yyv4523 } } @@ -57499,10 +57547,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4522 := range v { + for _, yyv4527 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4523 := &yyv4522 - yy4523.CodecEncodeSelf(e) + yy4528 := &yyv4527 + yy4528.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57512,83 +57560,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4524 := *v - yyh4524, yyl4524 := z.DecSliceHelperStart() - var yyc4524 bool - if yyl4524 == 0 { - if yyv4524 == nil { - yyv4524 = []ServiceAccount{} - yyc4524 = true - } else if len(yyv4524) != 0 { - yyv4524 = yyv4524[:0] - yyc4524 = true + yyv4529 := *v + yyh4529, yyl4529 := z.DecSliceHelperStart() + var yyc4529 bool + if yyl4529 == 0 { + if yyv4529 == nil { + yyv4529 = []ServiceAccount{} + yyc4529 = true + } else if len(yyv4529) != 0 { + yyv4529 = yyv4529[:0] + yyc4529 = true } - } else if yyl4524 > 0 { - var yyrr4524, yyrl4524 int - var yyrt4524 bool - if yyl4524 > cap(yyv4524) { + } else if yyl4529 > 0 { + var yyrr4529, yyrl4529 int + var yyrt4529 bool + if yyl4529 > cap(yyv4529) { - yyrg4524 := len(yyv4524) > 0 - yyv24524 := yyv4524 - yyrl4524, yyrt4524 = z.DecInferLen(yyl4524, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4524 { - if yyrl4524 <= cap(yyv4524) { - yyv4524 = yyv4524[:yyrl4524] + yyrg4529 := len(yyv4529) > 0 + yyv24529 := yyv4529 + yyrl4529, yyrt4529 = z.DecInferLen(yyl4529, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4529 { + if yyrl4529 <= cap(yyv4529) { + yyv4529 = yyv4529[:yyrl4529] } else { - yyv4524 = make([]ServiceAccount, yyrl4524) + yyv4529 = make([]ServiceAccount, yyrl4529) } } else { - yyv4524 = make([]ServiceAccount, yyrl4524) + yyv4529 = make([]ServiceAccount, yyrl4529) } - yyc4524 = true - yyrr4524 = len(yyv4524) - if yyrg4524 { - copy(yyv4524, yyv24524) + yyc4529 = true + yyrr4529 = len(yyv4529) + if yyrg4529 { + copy(yyv4529, yyv24529) } - } else if yyl4524 != len(yyv4524) { - yyv4524 = yyv4524[:yyl4524] - yyc4524 = true + } else if yyl4529 != len(yyv4529) { + yyv4529 = yyv4529[:yyl4529] + yyc4529 = true } - yyj4524 := 0 - for ; yyj4524 < yyrr4524; yyj4524++ { - yyh4524.ElemContainerState(yyj4524) + yyj4529 := 0 + for ; yyj4529 < yyrr4529; yyj4529++ { + yyh4529.ElemContainerState(yyj4529) if r.TryDecodeAsNil() { - yyv4524[yyj4524] = ServiceAccount{} + yyv4529[yyj4529] = ServiceAccount{} } else { - yyv4525 := &yyv4524[yyj4524] - yyv4525.CodecDecodeSelf(d) + yyv4530 := &yyv4529[yyj4529] + yyv4530.CodecDecodeSelf(d) } } - if yyrt4524 { - for ; yyj4524 < yyl4524; yyj4524++ { - yyv4524 = append(yyv4524, ServiceAccount{}) - yyh4524.ElemContainerState(yyj4524) + if yyrt4529 { + for ; yyj4529 < yyl4529; yyj4529++ { + yyv4529 = append(yyv4529, ServiceAccount{}) + yyh4529.ElemContainerState(yyj4529) if r.TryDecodeAsNil() { - yyv4524[yyj4524] = ServiceAccount{} + yyv4529[yyj4529] = ServiceAccount{} } else { - yyv4526 := &yyv4524[yyj4524] - yyv4526.CodecDecodeSelf(d) + yyv4531 := &yyv4529[yyj4529] + yyv4531.CodecDecodeSelf(d) } } } } else { - yyj4524 := 0 - for ; !r.CheckBreak(); yyj4524++ { + yyj4529 := 0 + for ; !r.CheckBreak(); yyj4529++ { - if yyj4524 >= len(yyv4524) { - yyv4524 = append(yyv4524, ServiceAccount{}) // var yyz4524 ServiceAccount - yyc4524 = true + if yyj4529 >= len(yyv4529) { + yyv4529 = append(yyv4529, ServiceAccount{}) // var yyz4529 ServiceAccount + yyc4529 = true } - yyh4524.ElemContainerState(yyj4524) - if yyj4524 < len(yyv4524) { + yyh4529.ElemContainerState(yyj4529) + if yyj4529 < len(yyv4529) { if r.TryDecodeAsNil() { - yyv4524[yyj4524] = ServiceAccount{} + yyv4529[yyj4529] = ServiceAccount{} } else { - yyv4527 := &yyv4524[yyj4524] - yyv4527.CodecDecodeSelf(d) + yyv4532 := &yyv4529[yyj4529] + yyv4532.CodecDecodeSelf(d) } } else { @@ -57596,17 +57644,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4524 < len(yyv4524) { - yyv4524 = yyv4524[:yyj4524] - yyc4524 = true - } else if yyj4524 == 0 && yyv4524 == nil { - yyv4524 = []ServiceAccount{} - yyc4524 = true + if yyj4529 < len(yyv4529) { + yyv4529 = yyv4529[:yyj4529] + yyc4529 = true + } else if yyj4529 == 0 && yyv4529 == nil { + yyv4529 = []ServiceAccount{} + yyc4529 = true } } - yyh4524.End() - if yyc4524 { - *v = yyv4524 + yyh4529.End() + if yyc4529 { + *v = yyv4529 } } @@ -57615,10 +57663,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4528 := range v { + for _, yyv4533 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4529 := &yyv4528 - yy4529.CodecEncodeSelf(e) + yy4534 := &yyv4533 + yy4534.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57628,83 +57676,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4530 := *v - yyh4530, yyl4530 := z.DecSliceHelperStart() - var yyc4530 bool - if yyl4530 == 0 { - if yyv4530 == nil { - yyv4530 = []EndpointSubset{} - yyc4530 = true - } else if len(yyv4530) != 0 { - yyv4530 = yyv4530[:0] - yyc4530 = true + yyv4535 := *v + yyh4535, yyl4535 := z.DecSliceHelperStart() + var yyc4535 bool + if yyl4535 == 0 { + if yyv4535 == nil { + yyv4535 = []EndpointSubset{} + yyc4535 = true + } else if len(yyv4535) != 0 { + yyv4535 = yyv4535[:0] + yyc4535 = true } - } else if yyl4530 > 0 { - var yyrr4530, yyrl4530 int - var yyrt4530 bool - if yyl4530 > cap(yyv4530) { + } else if yyl4535 > 0 { + var yyrr4535, yyrl4535 int + var yyrt4535 bool + if yyl4535 > cap(yyv4535) { - yyrg4530 := len(yyv4530) > 0 - yyv24530 := yyv4530 - yyrl4530, yyrt4530 = z.DecInferLen(yyl4530, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4530 { - if yyrl4530 <= cap(yyv4530) { - yyv4530 = yyv4530[:yyrl4530] + yyrg4535 := len(yyv4535) > 0 + yyv24535 := yyv4535 + yyrl4535, yyrt4535 = z.DecInferLen(yyl4535, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4535 { + if yyrl4535 <= cap(yyv4535) { + yyv4535 = yyv4535[:yyrl4535] } else { - yyv4530 = make([]EndpointSubset, yyrl4530) + yyv4535 = make([]EndpointSubset, yyrl4535) } } else { - yyv4530 = make([]EndpointSubset, yyrl4530) + yyv4535 = make([]EndpointSubset, yyrl4535) } - yyc4530 = true - yyrr4530 = len(yyv4530) - if yyrg4530 { - copy(yyv4530, yyv24530) + yyc4535 = true + yyrr4535 = len(yyv4535) + if yyrg4535 { + copy(yyv4535, yyv24535) } - } else if yyl4530 != len(yyv4530) { - yyv4530 = yyv4530[:yyl4530] - yyc4530 = true + } else if yyl4535 != len(yyv4535) { + yyv4535 = yyv4535[:yyl4535] + yyc4535 = true } - yyj4530 := 0 - for ; yyj4530 < yyrr4530; yyj4530++ { - yyh4530.ElemContainerState(yyj4530) + yyj4535 := 0 + for ; yyj4535 < yyrr4535; yyj4535++ { + yyh4535.ElemContainerState(yyj4535) if r.TryDecodeAsNil() { - yyv4530[yyj4530] = EndpointSubset{} + yyv4535[yyj4535] = EndpointSubset{} } else { - yyv4531 := &yyv4530[yyj4530] - yyv4531.CodecDecodeSelf(d) + yyv4536 := &yyv4535[yyj4535] + yyv4536.CodecDecodeSelf(d) } } - if yyrt4530 { - for ; yyj4530 < yyl4530; yyj4530++ { - yyv4530 = append(yyv4530, EndpointSubset{}) - yyh4530.ElemContainerState(yyj4530) + if yyrt4535 { + for ; yyj4535 < yyl4535; yyj4535++ { + yyv4535 = append(yyv4535, EndpointSubset{}) + yyh4535.ElemContainerState(yyj4535) if r.TryDecodeAsNil() { - yyv4530[yyj4530] = EndpointSubset{} + yyv4535[yyj4535] = EndpointSubset{} } else { - yyv4532 := &yyv4530[yyj4530] - yyv4532.CodecDecodeSelf(d) + yyv4537 := &yyv4535[yyj4535] + yyv4537.CodecDecodeSelf(d) } } } } else { - yyj4530 := 0 - for ; !r.CheckBreak(); yyj4530++ { + yyj4535 := 0 + for ; !r.CheckBreak(); yyj4535++ { - if yyj4530 >= len(yyv4530) { - yyv4530 = append(yyv4530, EndpointSubset{}) // var yyz4530 EndpointSubset - yyc4530 = true + if yyj4535 >= len(yyv4535) { + yyv4535 = append(yyv4535, EndpointSubset{}) // var yyz4535 EndpointSubset + yyc4535 = true } - yyh4530.ElemContainerState(yyj4530) - if yyj4530 < len(yyv4530) { + yyh4535.ElemContainerState(yyj4535) + if yyj4535 < len(yyv4535) { if r.TryDecodeAsNil() { - yyv4530[yyj4530] = EndpointSubset{} + yyv4535[yyj4535] = EndpointSubset{} } else { - yyv4533 := &yyv4530[yyj4530] - yyv4533.CodecDecodeSelf(d) + yyv4538 := &yyv4535[yyj4535] + yyv4538.CodecDecodeSelf(d) } } else { @@ -57712,17 +57760,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4530 < len(yyv4530) { - yyv4530 = yyv4530[:yyj4530] - yyc4530 = true - } else if yyj4530 == 0 && yyv4530 == nil { - yyv4530 = []EndpointSubset{} - yyc4530 = true + if yyj4535 < len(yyv4535) { + yyv4535 = yyv4535[:yyj4535] + yyc4535 = true + } else if yyj4535 == 0 && yyv4535 == nil { + yyv4535 = []EndpointSubset{} + yyc4535 = true } } - yyh4530.End() - if yyc4530 { - *v = yyv4530 + yyh4535.End() + if yyc4535 { + *v = yyv4535 } } @@ -57731,10 +57779,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4534 := range v { + for _, yyv4539 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4535 := &yyv4534 - yy4535.CodecEncodeSelf(e) + yy4540 := &yyv4539 + yy4540.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57744,83 +57792,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4536 := *v - yyh4536, yyl4536 := z.DecSliceHelperStart() - var yyc4536 bool - if yyl4536 == 0 { - if yyv4536 == nil { - yyv4536 = []EndpointAddress{} - yyc4536 = true - } else if len(yyv4536) != 0 { - yyv4536 = yyv4536[:0] - yyc4536 = true + yyv4541 := *v + yyh4541, yyl4541 := z.DecSliceHelperStart() + var yyc4541 bool + if yyl4541 == 0 { + if yyv4541 == nil { + yyv4541 = []EndpointAddress{} + yyc4541 = true + } else if len(yyv4541) != 0 { + yyv4541 = yyv4541[:0] + yyc4541 = true } - } else if yyl4536 > 0 { - var yyrr4536, yyrl4536 int - var yyrt4536 bool - if yyl4536 > cap(yyv4536) { + } else if yyl4541 > 0 { + var yyrr4541, yyrl4541 int + var yyrt4541 bool + if yyl4541 > cap(yyv4541) { - yyrg4536 := len(yyv4536) > 0 - yyv24536 := yyv4536 - yyrl4536, yyrt4536 = z.DecInferLen(yyl4536, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4536 { - if yyrl4536 <= cap(yyv4536) { - yyv4536 = yyv4536[:yyrl4536] + yyrg4541 := len(yyv4541) > 0 + yyv24541 := yyv4541 + yyrl4541, yyrt4541 = z.DecInferLen(yyl4541, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4541 { + if yyrl4541 <= cap(yyv4541) { + yyv4541 = yyv4541[:yyrl4541] } else { - yyv4536 = make([]EndpointAddress, yyrl4536) + yyv4541 = make([]EndpointAddress, yyrl4541) } } else { - yyv4536 = make([]EndpointAddress, yyrl4536) + yyv4541 = make([]EndpointAddress, yyrl4541) } - yyc4536 = true - yyrr4536 = len(yyv4536) - if yyrg4536 { - copy(yyv4536, yyv24536) + yyc4541 = true + yyrr4541 = len(yyv4541) + if yyrg4541 { + copy(yyv4541, yyv24541) } - } else if yyl4536 != len(yyv4536) { - yyv4536 = yyv4536[:yyl4536] - yyc4536 = true + } else if yyl4541 != len(yyv4541) { + yyv4541 = yyv4541[:yyl4541] + yyc4541 = true } - yyj4536 := 0 - for ; yyj4536 < yyrr4536; yyj4536++ { - yyh4536.ElemContainerState(yyj4536) + yyj4541 := 0 + for ; yyj4541 < yyrr4541; yyj4541++ { + yyh4541.ElemContainerState(yyj4541) if r.TryDecodeAsNil() { - yyv4536[yyj4536] = EndpointAddress{} + yyv4541[yyj4541] = EndpointAddress{} } else { - yyv4537 := &yyv4536[yyj4536] - yyv4537.CodecDecodeSelf(d) + yyv4542 := &yyv4541[yyj4541] + yyv4542.CodecDecodeSelf(d) } } - if yyrt4536 { - for ; yyj4536 < yyl4536; yyj4536++ { - yyv4536 = append(yyv4536, EndpointAddress{}) - yyh4536.ElemContainerState(yyj4536) + if yyrt4541 { + for ; yyj4541 < yyl4541; yyj4541++ { + yyv4541 = append(yyv4541, EndpointAddress{}) + yyh4541.ElemContainerState(yyj4541) if r.TryDecodeAsNil() { - yyv4536[yyj4536] = EndpointAddress{} + yyv4541[yyj4541] = EndpointAddress{} } else { - yyv4538 := &yyv4536[yyj4536] - yyv4538.CodecDecodeSelf(d) + yyv4543 := &yyv4541[yyj4541] + yyv4543.CodecDecodeSelf(d) } } } } else { - yyj4536 := 0 - for ; !r.CheckBreak(); yyj4536++ { + yyj4541 := 0 + for ; !r.CheckBreak(); yyj4541++ { - if yyj4536 >= len(yyv4536) { - yyv4536 = append(yyv4536, EndpointAddress{}) // var yyz4536 EndpointAddress - yyc4536 = true + if yyj4541 >= len(yyv4541) { + yyv4541 = append(yyv4541, EndpointAddress{}) // var yyz4541 EndpointAddress + yyc4541 = true } - yyh4536.ElemContainerState(yyj4536) - if yyj4536 < len(yyv4536) { + yyh4541.ElemContainerState(yyj4541) + if yyj4541 < len(yyv4541) { if r.TryDecodeAsNil() { - yyv4536[yyj4536] = EndpointAddress{} + yyv4541[yyj4541] = EndpointAddress{} } else { - yyv4539 := &yyv4536[yyj4536] - yyv4539.CodecDecodeSelf(d) + yyv4544 := &yyv4541[yyj4541] + yyv4544.CodecDecodeSelf(d) } } else { @@ -57828,17 +57876,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4536 < len(yyv4536) { - yyv4536 = yyv4536[:yyj4536] - yyc4536 = true - } else if yyj4536 == 0 && yyv4536 == nil { - yyv4536 = []EndpointAddress{} - yyc4536 = true + if yyj4541 < len(yyv4541) { + yyv4541 = yyv4541[:yyj4541] + yyc4541 = true + } else if yyj4541 == 0 && yyv4541 == nil { + yyv4541 = []EndpointAddress{} + yyc4541 = true } } - yyh4536.End() - if yyc4536 { - *v = yyv4536 + yyh4541.End() + if yyc4541 { + *v = yyv4541 } } @@ -57847,10 +57895,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4540 := range v { + for _, yyv4545 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4541 := &yyv4540 - yy4541.CodecEncodeSelf(e) + yy4546 := &yyv4545 + yy4546.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57860,83 +57908,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4542 := *v - yyh4542, yyl4542 := z.DecSliceHelperStart() - var yyc4542 bool - if yyl4542 == 0 { - if yyv4542 == nil { - yyv4542 = []EndpointPort{} - yyc4542 = true - } else if len(yyv4542) != 0 { - yyv4542 = yyv4542[:0] - yyc4542 = true + yyv4547 := *v + yyh4547, yyl4547 := z.DecSliceHelperStart() + var yyc4547 bool + if yyl4547 == 0 { + if yyv4547 == nil { + yyv4547 = []EndpointPort{} + yyc4547 = true + } else if len(yyv4547) != 0 { + yyv4547 = yyv4547[:0] + yyc4547 = true } - } else if yyl4542 > 0 { - var yyrr4542, yyrl4542 int - var yyrt4542 bool - if yyl4542 > cap(yyv4542) { + } else if yyl4547 > 0 { + var yyrr4547, yyrl4547 int + var yyrt4547 bool + if yyl4547 > cap(yyv4547) { - yyrg4542 := len(yyv4542) > 0 - yyv24542 := yyv4542 - yyrl4542, yyrt4542 = z.DecInferLen(yyl4542, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4542 { - if yyrl4542 <= cap(yyv4542) { - yyv4542 = yyv4542[:yyrl4542] + yyrg4547 := len(yyv4547) > 0 + yyv24547 := yyv4547 + yyrl4547, yyrt4547 = z.DecInferLen(yyl4547, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4547 { + if yyrl4547 <= cap(yyv4547) { + yyv4547 = yyv4547[:yyrl4547] } else { - yyv4542 = make([]EndpointPort, yyrl4542) + yyv4547 = make([]EndpointPort, yyrl4547) } } else { - yyv4542 = make([]EndpointPort, yyrl4542) + yyv4547 = make([]EndpointPort, yyrl4547) } - yyc4542 = true - yyrr4542 = len(yyv4542) - if yyrg4542 { - copy(yyv4542, yyv24542) + yyc4547 = true + yyrr4547 = len(yyv4547) + if yyrg4547 { + copy(yyv4547, yyv24547) } - } else if yyl4542 != len(yyv4542) { - yyv4542 = yyv4542[:yyl4542] - yyc4542 = true + } else if yyl4547 != len(yyv4547) { + yyv4547 = yyv4547[:yyl4547] + yyc4547 = true } - yyj4542 := 0 - for ; yyj4542 < yyrr4542; yyj4542++ { - yyh4542.ElemContainerState(yyj4542) + yyj4547 := 0 + for ; yyj4547 < yyrr4547; yyj4547++ { + yyh4547.ElemContainerState(yyj4547) if r.TryDecodeAsNil() { - yyv4542[yyj4542] = EndpointPort{} + yyv4547[yyj4547] = EndpointPort{} } else { - yyv4543 := &yyv4542[yyj4542] - yyv4543.CodecDecodeSelf(d) + yyv4548 := &yyv4547[yyj4547] + yyv4548.CodecDecodeSelf(d) } } - if yyrt4542 { - for ; yyj4542 < yyl4542; yyj4542++ { - yyv4542 = append(yyv4542, EndpointPort{}) - yyh4542.ElemContainerState(yyj4542) + if yyrt4547 { + for ; yyj4547 < yyl4547; yyj4547++ { + yyv4547 = append(yyv4547, EndpointPort{}) + yyh4547.ElemContainerState(yyj4547) if r.TryDecodeAsNil() { - yyv4542[yyj4542] = EndpointPort{} + yyv4547[yyj4547] = EndpointPort{} } else { - yyv4544 := &yyv4542[yyj4542] - yyv4544.CodecDecodeSelf(d) + yyv4549 := &yyv4547[yyj4547] + yyv4549.CodecDecodeSelf(d) } } } } else { - yyj4542 := 0 - for ; !r.CheckBreak(); yyj4542++ { + yyj4547 := 0 + for ; !r.CheckBreak(); yyj4547++ { - if yyj4542 >= len(yyv4542) { - yyv4542 = append(yyv4542, EndpointPort{}) // var yyz4542 EndpointPort - yyc4542 = true + if yyj4547 >= len(yyv4547) { + yyv4547 = append(yyv4547, EndpointPort{}) // var yyz4547 EndpointPort + yyc4547 = true } - yyh4542.ElemContainerState(yyj4542) - if yyj4542 < len(yyv4542) { + yyh4547.ElemContainerState(yyj4547) + if yyj4547 < len(yyv4547) { if r.TryDecodeAsNil() { - yyv4542[yyj4542] = EndpointPort{} + yyv4547[yyj4547] = EndpointPort{} } else { - yyv4545 := &yyv4542[yyj4542] - yyv4545.CodecDecodeSelf(d) + yyv4550 := &yyv4547[yyj4547] + yyv4550.CodecDecodeSelf(d) } } else { @@ -57944,17 +57992,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4542 < len(yyv4542) { - yyv4542 = yyv4542[:yyj4542] - yyc4542 = true - } else if yyj4542 == 0 && yyv4542 == nil { - yyv4542 = []EndpointPort{} - yyc4542 = true + if yyj4547 < len(yyv4547) { + yyv4547 = yyv4547[:yyj4547] + yyc4547 = true + } else if yyj4547 == 0 && yyv4547 == nil { + yyv4547 = []EndpointPort{} + yyc4547 = true } } - yyh4542.End() - if yyc4542 { - *v = yyv4542 + yyh4547.End() + if yyc4547 { + *v = yyv4547 } } @@ -57963,10 +58011,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4546 := range v { + for _, yyv4551 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4547 := &yyv4546 - yy4547.CodecEncodeSelf(e) + yy4552 := &yyv4551 + yy4552.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57976,83 +58024,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4548 := *v - yyh4548, yyl4548 := z.DecSliceHelperStart() - var yyc4548 bool - if yyl4548 == 0 { - if yyv4548 == nil { - yyv4548 = []Endpoints{} - yyc4548 = true - } else if len(yyv4548) != 0 { - yyv4548 = yyv4548[:0] - yyc4548 = true + yyv4553 := *v + yyh4553, yyl4553 := z.DecSliceHelperStart() + var yyc4553 bool + if yyl4553 == 0 { + if yyv4553 == nil { + yyv4553 = []Endpoints{} + yyc4553 = true + } else if len(yyv4553) != 0 { + yyv4553 = yyv4553[:0] + yyc4553 = true } - } else if yyl4548 > 0 { - var yyrr4548, yyrl4548 int - var yyrt4548 bool - if yyl4548 > cap(yyv4548) { + } else if yyl4553 > 0 { + var yyrr4553, yyrl4553 int + var yyrt4553 bool + if yyl4553 > cap(yyv4553) { - yyrg4548 := len(yyv4548) > 0 - yyv24548 := yyv4548 - yyrl4548, yyrt4548 = z.DecInferLen(yyl4548, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4548 { - if yyrl4548 <= cap(yyv4548) { - yyv4548 = yyv4548[:yyrl4548] + yyrg4553 := len(yyv4553) > 0 + yyv24553 := yyv4553 + yyrl4553, yyrt4553 = z.DecInferLen(yyl4553, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4553 { + if yyrl4553 <= cap(yyv4553) { + yyv4553 = yyv4553[:yyrl4553] } else { - yyv4548 = make([]Endpoints, yyrl4548) + yyv4553 = make([]Endpoints, yyrl4553) } } else { - yyv4548 = make([]Endpoints, yyrl4548) + yyv4553 = make([]Endpoints, yyrl4553) } - yyc4548 = true - yyrr4548 = len(yyv4548) - if yyrg4548 { - copy(yyv4548, yyv24548) + yyc4553 = true + yyrr4553 = len(yyv4553) + if yyrg4553 { + copy(yyv4553, yyv24553) } - } else if yyl4548 != len(yyv4548) { - yyv4548 = yyv4548[:yyl4548] - yyc4548 = true + } else if yyl4553 != len(yyv4553) { + yyv4553 = yyv4553[:yyl4553] + yyc4553 = true } - yyj4548 := 0 - for ; yyj4548 < yyrr4548; yyj4548++ { - yyh4548.ElemContainerState(yyj4548) + yyj4553 := 0 + for ; yyj4553 < yyrr4553; yyj4553++ { + yyh4553.ElemContainerState(yyj4553) if r.TryDecodeAsNil() { - yyv4548[yyj4548] = Endpoints{} + yyv4553[yyj4553] = Endpoints{} } else { - yyv4549 := &yyv4548[yyj4548] - yyv4549.CodecDecodeSelf(d) + yyv4554 := &yyv4553[yyj4553] + yyv4554.CodecDecodeSelf(d) } } - if yyrt4548 { - for ; yyj4548 < yyl4548; yyj4548++ { - yyv4548 = append(yyv4548, Endpoints{}) - yyh4548.ElemContainerState(yyj4548) + if yyrt4553 { + for ; yyj4553 < yyl4553; yyj4553++ { + yyv4553 = append(yyv4553, Endpoints{}) + yyh4553.ElemContainerState(yyj4553) if r.TryDecodeAsNil() { - yyv4548[yyj4548] = Endpoints{} + yyv4553[yyj4553] = Endpoints{} } else { - yyv4550 := &yyv4548[yyj4548] - yyv4550.CodecDecodeSelf(d) + yyv4555 := &yyv4553[yyj4553] + yyv4555.CodecDecodeSelf(d) } } } } else { - yyj4548 := 0 - for ; !r.CheckBreak(); yyj4548++ { + yyj4553 := 0 + for ; !r.CheckBreak(); yyj4553++ { - if yyj4548 >= len(yyv4548) { - yyv4548 = append(yyv4548, Endpoints{}) // var yyz4548 Endpoints - yyc4548 = true + if yyj4553 >= len(yyv4553) { + yyv4553 = append(yyv4553, Endpoints{}) // var yyz4553 Endpoints + yyc4553 = true } - yyh4548.ElemContainerState(yyj4548) - if yyj4548 < len(yyv4548) { + yyh4553.ElemContainerState(yyj4553) + if yyj4553 < len(yyv4553) { if r.TryDecodeAsNil() { - yyv4548[yyj4548] = Endpoints{} + yyv4553[yyj4553] = Endpoints{} } else { - yyv4551 := &yyv4548[yyj4548] - yyv4551.CodecDecodeSelf(d) + yyv4556 := &yyv4553[yyj4553] + yyv4556.CodecDecodeSelf(d) } } else { @@ -58060,17 +58108,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4548 < len(yyv4548) { - yyv4548 = yyv4548[:yyj4548] - yyc4548 = true - } else if yyj4548 == 0 && yyv4548 == nil { - yyv4548 = []Endpoints{} - yyc4548 = true + if yyj4553 < len(yyv4553) { + yyv4553 = yyv4553[:yyj4553] + yyc4553 = true + } else if yyj4553 == 0 && yyv4553 == nil { + yyv4553 = []Endpoints{} + yyc4553 = true } } - yyh4548.End() - if yyc4548 { - *v = yyv4548 + yyh4553.End() + if yyc4553 { + *v = yyv4553 } } @@ -58079,10 +58127,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4552 := range v { + for _, yyv4557 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4553 := &yyv4552 - yy4553.CodecEncodeSelf(e) + yy4558 := &yyv4557 + yy4558.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58092,83 +58140,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4554 := *v - yyh4554, yyl4554 := z.DecSliceHelperStart() - var yyc4554 bool - if yyl4554 == 0 { - if yyv4554 == nil { - yyv4554 = []NodeCondition{} - yyc4554 = true - } else if len(yyv4554) != 0 { - yyv4554 = yyv4554[:0] - yyc4554 = true + yyv4559 := *v + yyh4559, yyl4559 := z.DecSliceHelperStart() + var yyc4559 bool + if yyl4559 == 0 { + if yyv4559 == nil { + yyv4559 = []NodeCondition{} + yyc4559 = true + } else if len(yyv4559) != 0 { + yyv4559 = yyv4559[:0] + yyc4559 = true } - } else if yyl4554 > 0 { - var yyrr4554, yyrl4554 int - var yyrt4554 bool - if yyl4554 > cap(yyv4554) { + } else if yyl4559 > 0 { + var yyrr4559, yyrl4559 int + var yyrt4559 bool + if yyl4559 > cap(yyv4559) { - yyrg4554 := len(yyv4554) > 0 - yyv24554 := yyv4554 - yyrl4554, yyrt4554 = z.DecInferLen(yyl4554, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4554 { - if yyrl4554 <= cap(yyv4554) { - yyv4554 = yyv4554[:yyrl4554] + yyrg4559 := len(yyv4559) > 0 + yyv24559 := yyv4559 + yyrl4559, yyrt4559 = z.DecInferLen(yyl4559, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4559 { + if yyrl4559 <= cap(yyv4559) { + yyv4559 = yyv4559[:yyrl4559] } else { - yyv4554 = make([]NodeCondition, yyrl4554) + yyv4559 = make([]NodeCondition, yyrl4559) } } else { - yyv4554 = make([]NodeCondition, yyrl4554) + yyv4559 = make([]NodeCondition, yyrl4559) } - yyc4554 = true - yyrr4554 = len(yyv4554) - if yyrg4554 { - copy(yyv4554, yyv24554) + yyc4559 = true + yyrr4559 = len(yyv4559) + if yyrg4559 { + copy(yyv4559, yyv24559) } - } else if yyl4554 != len(yyv4554) { - yyv4554 = yyv4554[:yyl4554] - yyc4554 = true + } else if yyl4559 != len(yyv4559) { + yyv4559 = yyv4559[:yyl4559] + yyc4559 = true } - yyj4554 := 0 - for ; yyj4554 < yyrr4554; yyj4554++ { - yyh4554.ElemContainerState(yyj4554) + yyj4559 := 0 + for ; yyj4559 < yyrr4559; yyj4559++ { + yyh4559.ElemContainerState(yyj4559) if r.TryDecodeAsNil() { - yyv4554[yyj4554] = NodeCondition{} + yyv4559[yyj4559] = NodeCondition{} } else { - yyv4555 := &yyv4554[yyj4554] - yyv4555.CodecDecodeSelf(d) + yyv4560 := &yyv4559[yyj4559] + yyv4560.CodecDecodeSelf(d) } } - if yyrt4554 { - for ; yyj4554 < yyl4554; yyj4554++ { - yyv4554 = append(yyv4554, NodeCondition{}) - yyh4554.ElemContainerState(yyj4554) + if yyrt4559 { + for ; yyj4559 < yyl4559; yyj4559++ { + yyv4559 = append(yyv4559, NodeCondition{}) + yyh4559.ElemContainerState(yyj4559) if r.TryDecodeAsNil() { - yyv4554[yyj4554] = NodeCondition{} + yyv4559[yyj4559] = NodeCondition{} } else { - yyv4556 := &yyv4554[yyj4554] - yyv4556.CodecDecodeSelf(d) + yyv4561 := &yyv4559[yyj4559] + yyv4561.CodecDecodeSelf(d) } } } } else { - yyj4554 := 0 - for ; !r.CheckBreak(); yyj4554++ { + yyj4559 := 0 + for ; !r.CheckBreak(); yyj4559++ { - if yyj4554 >= len(yyv4554) { - yyv4554 = append(yyv4554, NodeCondition{}) // var yyz4554 NodeCondition - yyc4554 = true + if yyj4559 >= len(yyv4559) { + yyv4559 = append(yyv4559, NodeCondition{}) // var yyz4559 NodeCondition + yyc4559 = true } - yyh4554.ElemContainerState(yyj4554) - if yyj4554 < len(yyv4554) { + yyh4559.ElemContainerState(yyj4559) + if yyj4559 < len(yyv4559) { if r.TryDecodeAsNil() { - yyv4554[yyj4554] = NodeCondition{} + yyv4559[yyj4559] = NodeCondition{} } else { - yyv4557 := &yyv4554[yyj4554] - yyv4557.CodecDecodeSelf(d) + yyv4562 := &yyv4559[yyj4559] + yyv4562.CodecDecodeSelf(d) } } else { @@ -58176,17 +58224,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4554 < len(yyv4554) { - yyv4554 = yyv4554[:yyj4554] - yyc4554 = true - } else if yyj4554 == 0 && yyv4554 == nil { - yyv4554 = []NodeCondition{} - yyc4554 = true + if yyj4559 < len(yyv4559) { + yyv4559 = yyv4559[:yyj4559] + yyc4559 = true + } else if yyj4559 == 0 && yyv4559 == nil { + yyv4559 = []NodeCondition{} + yyc4559 = true } } - yyh4554.End() - if yyc4554 { - *v = yyv4554 + yyh4559.End() + if yyc4559 { + *v = yyv4559 } } @@ -58195,10 +58243,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4558 := range v { + for _, yyv4563 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4559 := &yyv4558 - yy4559.CodecEncodeSelf(e) + yy4564 := &yyv4563 + yy4564.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58208,83 +58256,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4560 := *v - yyh4560, yyl4560 := z.DecSliceHelperStart() - var yyc4560 bool - if yyl4560 == 0 { - if yyv4560 == nil { - yyv4560 = []NodeAddress{} - yyc4560 = true - } else if len(yyv4560) != 0 { - yyv4560 = yyv4560[:0] - yyc4560 = true + yyv4565 := *v + yyh4565, yyl4565 := z.DecSliceHelperStart() + var yyc4565 bool + if yyl4565 == 0 { + if yyv4565 == nil { + yyv4565 = []NodeAddress{} + yyc4565 = true + } else if len(yyv4565) != 0 { + yyv4565 = yyv4565[:0] + yyc4565 = true } - } else if yyl4560 > 0 { - var yyrr4560, yyrl4560 int - var yyrt4560 bool - if yyl4560 > cap(yyv4560) { + } else if yyl4565 > 0 { + var yyrr4565, yyrl4565 int + var yyrt4565 bool + if yyl4565 > cap(yyv4565) { - yyrg4560 := len(yyv4560) > 0 - yyv24560 := yyv4560 - yyrl4560, yyrt4560 = z.DecInferLen(yyl4560, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4560 { - if yyrl4560 <= cap(yyv4560) { - yyv4560 = yyv4560[:yyrl4560] + yyrg4565 := len(yyv4565) > 0 + yyv24565 := yyv4565 + yyrl4565, yyrt4565 = z.DecInferLen(yyl4565, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4565 { + if yyrl4565 <= cap(yyv4565) { + yyv4565 = yyv4565[:yyrl4565] } else { - yyv4560 = make([]NodeAddress, yyrl4560) + yyv4565 = make([]NodeAddress, yyrl4565) } } else { - yyv4560 = make([]NodeAddress, yyrl4560) + yyv4565 = make([]NodeAddress, yyrl4565) } - yyc4560 = true - yyrr4560 = len(yyv4560) - if yyrg4560 { - copy(yyv4560, yyv24560) + yyc4565 = true + yyrr4565 = len(yyv4565) + if yyrg4565 { + copy(yyv4565, yyv24565) } - } else if yyl4560 != len(yyv4560) { - yyv4560 = yyv4560[:yyl4560] - yyc4560 = true + } else if yyl4565 != len(yyv4565) { + yyv4565 = yyv4565[:yyl4565] + yyc4565 = true } - yyj4560 := 0 - for ; yyj4560 < yyrr4560; yyj4560++ { - yyh4560.ElemContainerState(yyj4560) + yyj4565 := 0 + for ; yyj4565 < yyrr4565; yyj4565++ { + yyh4565.ElemContainerState(yyj4565) if r.TryDecodeAsNil() { - yyv4560[yyj4560] = NodeAddress{} + yyv4565[yyj4565] = NodeAddress{} } else { - yyv4561 := &yyv4560[yyj4560] - yyv4561.CodecDecodeSelf(d) + yyv4566 := &yyv4565[yyj4565] + yyv4566.CodecDecodeSelf(d) } } - if yyrt4560 { - for ; yyj4560 < yyl4560; yyj4560++ { - yyv4560 = append(yyv4560, NodeAddress{}) - yyh4560.ElemContainerState(yyj4560) + if yyrt4565 { + for ; yyj4565 < yyl4565; yyj4565++ { + yyv4565 = append(yyv4565, NodeAddress{}) + yyh4565.ElemContainerState(yyj4565) if r.TryDecodeAsNil() { - yyv4560[yyj4560] = NodeAddress{} + yyv4565[yyj4565] = NodeAddress{} } else { - yyv4562 := &yyv4560[yyj4560] - yyv4562.CodecDecodeSelf(d) + yyv4567 := &yyv4565[yyj4565] + yyv4567.CodecDecodeSelf(d) } } } } else { - yyj4560 := 0 - for ; !r.CheckBreak(); yyj4560++ { + yyj4565 := 0 + for ; !r.CheckBreak(); yyj4565++ { - if yyj4560 >= len(yyv4560) { - yyv4560 = append(yyv4560, NodeAddress{}) // var yyz4560 NodeAddress - yyc4560 = true + if yyj4565 >= len(yyv4565) { + yyv4565 = append(yyv4565, NodeAddress{}) // var yyz4565 NodeAddress + yyc4565 = true } - yyh4560.ElemContainerState(yyj4560) - if yyj4560 < len(yyv4560) { + yyh4565.ElemContainerState(yyj4565) + if yyj4565 < len(yyv4565) { if r.TryDecodeAsNil() { - yyv4560[yyj4560] = NodeAddress{} + yyv4565[yyj4565] = NodeAddress{} } else { - yyv4563 := &yyv4560[yyj4560] - yyv4563.CodecDecodeSelf(d) + yyv4568 := &yyv4565[yyj4565] + yyv4568.CodecDecodeSelf(d) } } else { @@ -58292,17 +58340,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4560 < len(yyv4560) { - yyv4560 = yyv4560[:yyj4560] - yyc4560 = true - } else if yyj4560 == 0 && yyv4560 == nil { - yyv4560 = []NodeAddress{} - yyc4560 = true + if yyj4565 < len(yyv4565) { + yyv4565 = yyv4565[:yyj4565] + yyc4565 = true + } else if yyj4565 == 0 && yyv4565 == nil { + yyv4565 = []NodeAddress{} + yyc4565 = true } } - yyh4560.End() - if yyc4560 { - *v = yyv4560 + yyh4565.End() + if yyc4565 { + *v = yyv4565 } } @@ -58311,10 +58359,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4564 := range v { + for _, yyv4569 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4565 := &yyv4564 - yy4565.CodecEncodeSelf(e) + yy4570 := &yyv4569 + yy4570.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58324,83 +58372,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4566 := *v - yyh4566, yyl4566 := z.DecSliceHelperStart() - var yyc4566 bool - if yyl4566 == 0 { - if yyv4566 == nil { - yyv4566 = []ContainerImage{} - yyc4566 = true - } else if len(yyv4566) != 0 { - yyv4566 = yyv4566[:0] - yyc4566 = true + yyv4571 := *v + yyh4571, yyl4571 := z.DecSliceHelperStart() + var yyc4571 bool + if yyl4571 == 0 { + if yyv4571 == nil { + yyv4571 = []ContainerImage{} + yyc4571 = true + } else if len(yyv4571) != 0 { + yyv4571 = yyv4571[:0] + yyc4571 = true } - } else if yyl4566 > 0 { - var yyrr4566, yyrl4566 int - var yyrt4566 bool - if yyl4566 > cap(yyv4566) { + } else if yyl4571 > 0 { + var yyrr4571, yyrl4571 int + var yyrt4571 bool + if yyl4571 > cap(yyv4571) { - yyrg4566 := len(yyv4566) > 0 - yyv24566 := yyv4566 - yyrl4566, yyrt4566 = z.DecInferLen(yyl4566, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4566 { - if yyrl4566 <= cap(yyv4566) { - yyv4566 = yyv4566[:yyrl4566] + yyrg4571 := len(yyv4571) > 0 + yyv24571 := yyv4571 + yyrl4571, yyrt4571 = z.DecInferLen(yyl4571, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4571 { + if yyrl4571 <= cap(yyv4571) { + yyv4571 = yyv4571[:yyrl4571] } else { - yyv4566 = make([]ContainerImage, yyrl4566) + yyv4571 = make([]ContainerImage, yyrl4571) } } else { - yyv4566 = make([]ContainerImage, yyrl4566) + yyv4571 = make([]ContainerImage, yyrl4571) } - yyc4566 = true - yyrr4566 = len(yyv4566) - if yyrg4566 { - copy(yyv4566, yyv24566) + yyc4571 = true + yyrr4571 = len(yyv4571) + if yyrg4571 { + copy(yyv4571, yyv24571) } - } else if yyl4566 != len(yyv4566) { - yyv4566 = yyv4566[:yyl4566] - yyc4566 = true + } else if yyl4571 != len(yyv4571) { + yyv4571 = yyv4571[:yyl4571] + yyc4571 = true } - yyj4566 := 0 - for ; yyj4566 < yyrr4566; yyj4566++ { - yyh4566.ElemContainerState(yyj4566) + yyj4571 := 0 + for ; yyj4571 < yyrr4571; yyj4571++ { + yyh4571.ElemContainerState(yyj4571) if r.TryDecodeAsNil() { - yyv4566[yyj4566] = ContainerImage{} + yyv4571[yyj4571] = ContainerImage{} } else { - yyv4567 := &yyv4566[yyj4566] - yyv4567.CodecDecodeSelf(d) + yyv4572 := &yyv4571[yyj4571] + yyv4572.CodecDecodeSelf(d) } } - if yyrt4566 { - for ; yyj4566 < yyl4566; yyj4566++ { - yyv4566 = append(yyv4566, ContainerImage{}) - yyh4566.ElemContainerState(yyj4566) + if yyrt4571 { + for ; yyj4571 < yyl4571; yyj4571++ { + yyv4571 = append(yyv4571, ContainerImage{}) + yyh4571.ElemContainerState(yyj4571) if r.TryDecodeAsNil() { - yyv4566[yyj4566] = ContainerImage{} + yyv4571[yyj4571] = ContainerImage{} } else { - yyv4568 := &yyv4566[yyj4566] - yyv4568.CodecDecodeSelf(d) + yyv4573 := &yyv4571[yyj4571] + yyv4573.CodecDecodeSelf(d) } } } } else { - yyj4566 := 0 - for ; !r.CheckBreak(); yyj4566++ { + yyj4571 := 0 + for ; !r.CheckBreak(); yyj4571++ { - if yyj4566 >= len(yyv4566) { - yyv4566 = append(yyv4566, ContainerImage{}) // var yyz4566 ContainerImage - yyc4566 = true + if yyj4571 >= len(yyv4571) { + yyv4571 = append(yyv4571, ContainerImage{}) // var yyz4571 ContainerImage + yyc4571 = true } - yyh4566.ElemContainerState(yyj4566) - if yyj4566 < len(yyv4566) { + yyh4571.ElemContainerState(yyj4571) + if yyj4571 < len(yyv4571) { if r.TryDecodeAsNil() { - yyv4566[yyj4566] = ContainerImage{} + yyv4571[yyj4571] = ContainerImage{} } else { - yyv4569 := &yyv4566[yyj4566] - yyv4569.CodecDecodeSelf(d) + yyv4574 := &yyv4571[yyj4571] + yyv4574.CodecDecodeSelf(d) } } else { @@ -58408,17 +58456,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4566 < len(yyv4566) { - yyv4566 = yyv4566[:yyj4566] - yyc4566 = true - } else if yyj4566 == 0 && yyv4566 == nil { - yyv4566 = []ContainerImage{} - yyc4566 = true + if yyj4571 < len(yyv4571) { + yyv4571 = yyv4571[:yyj4571] + yyc4571 = true + } else if yyj4571 == 0 && yyv4571 == nil { + yyv4571 = []ContainerImage{} + yyc4571 = true } } - yyh4566.End() - if yyc4566 { - *v = yyv4566 + yyh4571.End() + if yyc4571 { + *v = yyv4571 } } @@ -58427,9 +58475,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4570 := range v { + for _, yyv4575 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4570.CodecEncodeSelf(e) + yyv4575.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58439,75 +58487,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4571 := *v - yyh4571, yyl4571 := z.DecSliceHelperStart() - var yyc4571 bool - if yyl4571 == 0 { - if yyv4571 == nil { - yyv4571 = []UniqueVolumeName{} - yyc4571 = true - } else if len(yyv4571) != 0 { - yyv4571 = yyv4571[:0] - yyc4571 = true + yyv4576 := *v + yyh4576, yyl4576 := z.DecSliceHelperStart() + var yyc4576 bool + if yyl4576 == 0 { + if yyv4576 == nil { + yyv4576 = []UniqueVolumeName{} + yyc4576 = true + } else if len(yyv4576) != 0 { + yyv4576 = yyv4576[:0] + yyc4576 = true } - } else if yyl4571 > 0 { - var yyrr4571, yyrl4571 int - var yyrt4571 bool - if yyl4571 > cap(yyv4571) { + } else if yyl4576 > 0 { + var yyrr4576, yyrl4576 int + var yyrt4576 bool + if yyl4576 > cap(yyv4576) { - yyrl4571, yyrt4571 = z.DecInferLen(yyl4571, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4571 { - if yyrl4571 <= cap(yyv4571) { - yyv4571 = yyv4571[:yyrl4571] + yyrl4576, yyrt4576 = z.DecInferLen(yyl4576, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4576 { + if yyrl4576 <= cap(yyv4576) { + yyv4576 = yyv4576[:yyrl4576] } else { - yyv4571 = make([]UniqueVolumeName, yyrl4571) + yyv4576 = make([]UniqueVolumeName, yyrl4576) } } else { - yyv4571 = make([]UniqueVolumeName, yyrl4571) + yyv4576 = make([]UniqueVolumeName, yyrl4576) } - yyc4571 = true - yyrr4571 = len(yyv4571) - } else if yyl4571 != len(yyv4571) { - yyv4571 = yyv4571[:yyl4571] - yyc4571 = true + yyc4576 = true + yyrr4576 = len(yyv4576) + } else if yyl4576 != len(yyv4576) { + yyv4576 = yyv4576[:yyl4576] + yyc4576 = true } - yyj4571 := 0 - for ; yyj4571 < yyrr4571; yyj4571++ { - yyh4571.ElemContainerState(yyj4571) + yyj4576 := 0 + for ; yyj4576 < yyrr4576; yyj4576++ { + yyh4576.ElemContainerState(yyj4576) if r.TryDecodeAsNil() { - yyv4571[yyj4571] = "" + yyv4576[yyj4576] = "" } else { - yyv4571[yyj4571] = UniqueVolumeName(r.DecodeString()) + yyv4576[yyj4576] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4571 { - for ; yyj4571 < yyl4571; yyj4571++ { - yyv4571 = append(yyv4571, "") - yyh4571.ElemContainerState(yyj4571) + if yyrt4576 { + for ; yyj4576 < yyl4576; yyj4576++ { + yyv4576 = append(yyv4576, "") + yyh4576.ElemContainerState(yyj4576) if r.TryDecodeAsNil() { - yyv4571[yyj4571] = "" + yyv4576[yyj4576] = "" } else { - yyv4571[yyj4571] = UniqueVolumeName(r.DecodeString()) + yyv4576[yyj4576] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4571 := 0 - for ; !r.CheckBreak(); yyj4571++ { + yyj4576 := 0 + for ; !r.CheckBreak(); yyj4576++ { - if yyj4571 >= len(yyv4571) { - yyv4571 = append(yyv4571, "") // var yyz4571 UniqueVolumeName - yyc4571 = true + if yyj4576 >= len(yyv4576) { + yyv4576 = append(yyv4576, "") // var yyz4576 UniqueVolumeName + yyc4576 = true } - yyh4571.ElemContainerState(yyj4571) - if yyj4571 < len(yyv4571) { + yyh4576.ElemContainerState(yyj4576) + if yyj4576 < len(yyv4576) { if r.TryDecodeAsNil() { - yyv4571[yyj4571] = "" + yyv4576[yyj4576] = "" } else { - yyv4571[yyj4571] = UniqueVolumeName(r.DecodeString()) + yyv4576[yyj4576] = UniqueVolumeName(r.DecodeString()) } } else { @@ -58515,17 +58563,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4571 < len(yyv4571) { - yyv4571 = yyv4571[:yyj4571] - yyc4571 = true - } else if yyj4571 == 0 && yyv4571 == nil { - yyv4571 = []UniqueVolumeName{} - yyc4571 = true + if yyj4576 < len(yyv4576) { + yyv4576 = yyv4576[:yyj4576] + yyc4576 = true + } else if yyj4576 == 0 && yyv4576 == nil { + yyv4576 = []UniqueVolumeName{} + yyc4576 = true } } - yyh4571.End() - if yyc4571 { - *v = yyv4571 + yyh4576.End() + if yyc4576 { + *v = yyv4576 } } @@ -58534,10 +58582,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4575 := range v { + for _, yyv4580 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4576 := &yyv4575 - yy4576.CodecEncodeSelf(e) + yy4581 := &yyv4580 + yy4581.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58547,83 +58595,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4577 := *v - yyh4577, yyl4577 := z.DecSliceHelperStart() - var yyc4577 bool - if yyl4577 == 0 { - if yyv4577 == nil { - yyv4577 = []AttachedVolume{} - yyc4577 = true - } else if len(yyv4577) != 0 { - yyv4577 = yyv4577[:0] - yyc4577 = true + yyv4582 := *v + yyh4582, yyl4582 := z.DecSliceHelperStart() + var yyc4582 bool + if yyl4582 == 0 { + if yyv4582 == nil { + yyv4582 = []AttachedVolume{} + yyc4582 = true + } else if len(yyv4582) != 0 { + yyv4582 = yyv4582[:0] + yyc4582 = true } - } else if yyl4577 > 0 { - var yyrr4577, yyrl4577 int - var yyrt4577 bool - if yyl4577 > cap(yyv4577) { + } else if yyl4582 > 0 { + var yyrr4582, yyrl4582 int + var yyrt4582 bool + if yyl4582 > cap(yyv4582) { - yyrg4577 := len(yyv4577) > 0 - yyv24577 := yyv4577 - yyrl4577, yyrt4577 = z.DecInferLen(yyl4577, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4577 { - if yyrl4577 <= cap(yyv4577) { - yyv4577 = yyv4577[:yyrl4577] + yyrg4582 := len(yyv4582) > 0 + yyv24582 := yyv4582 + yyrl4582, yyrt4582 = z.DecInferLen(yyl4582, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4582 { + if yyrl4582 <= cap(yyv4582) { + yyv4582 = yyv4582[:yyrl4582] } else { - yyv4577 = make([]AttachedVolume, yyrl4577) + yyv4582 = make([]AttachedVolume, yyrl4582) } } else { - yyv4577 = make([]AttachedVolume, yyrl4577) + yyv4582 = make([]AttachedVolume, yyrl4582) } - yyc4577 = true - yyrr4577 = len(yyv4577) - if yyrg4577 { - copy(yyv4577, yyv24577) + yyc4582 = true + yyrr4582 = len(yyv4582) + if yyrg4582 { + copy(yyv4582, yyv24582) } - } else if yyl4577 != len(yyv4577) { - yyv4577 = yyv4577[:yyl4577] - yyc4577 = true + } else if yyl4582 != len(yyv4582) { + yyv4582 = yyv4582[:yyl4582] + yyc4582 = true } - yyj4577 := 0 - for ; yyj4577 < yyrr4577; yyj4577++ { - yyh4577.ElemContainerState(yyj4577) + yyj4582 := 0 + for ; yyj4582 < yyrr4582; yyj4582++ { + yyh4582.ElemContainerState(yyj4582) if r.TryDecodeAsNil() { - yyv4577[yyj4577] = AttachedVolume{} + yyv4582[yyj4582] = AttachedVolume{} } else { - yyv4578 := &yyv4577[yyj4577] - yyv4578.CodecDecodeSelf(d) + yyv4583 := &yyv4582[yyj4582] + yyv4583.CodecDecodeSelf(d) } } - if yyrt4577 { - for ; yyj4577 < yyl4577; yyj4577++ { - yyv4577 = append(yyv4577, AttachedVolume{}) - yyh4577.ElemContainerState(yyj4577) + if yyrt4582 { + for ; yyj4582 < yyl4582; yyj4582++ { + yyv4582 = append(yyv4582, AttachedVolume{}) + yyh4582.ElemContainerState(yyj4582) if r.TryDecodeAsNil() { - yyv4577[yyj4577] = AttachedVolume{} + yyv4582[yyj4582] = AttachedVolume{} } else { - yyv4579 := &yyv4577[yyj4577] - yyv4579.CodecDecodeSelf(d) + yyv4584 := &yyv4582[yyj4582] + yyv4584.CodecDecodeSelf(d) } } } } else { - yyj4577 := 0 - for ; !r.CheckBreak(); yyj4577++ { + yyj4582 := 0 + for ; !r.CheckBreak(); yyj4582++ { - if yyj4577 >= len(yyv4577) { - yyv4577 = append(yyv4577, AttachedVolume{}) // var yyz4577 AttachedVolume - yyc4577 = true + if yyj4582 >= len(yyv4582) { + yyv4582 = append(yyv4582, AttachedVolume{}) // var yyz4582 AttachedVolume + yyc4582 = true } - yyh4577.ElemContainerState(yyj4577) - if yyj4577 < len(yyv4577) { + yyh4582.ElemContainerState(yyj4582) + if yyj4582 < len(yyv4582) { if r.TryDecodeAsNil() { - yyv4577[yyj4577] = AttachedVolume{} + yyv4582[yyj4582] = AttachedVolume{} } else { - yyv4580 := &yyv4577[yyj4577] - yyv4580.CodecDecodeSelf(d) + yyv4585 := &yyv4582[yyj4582] + yyv4585.CodecDecodeSelf(d) } } else { @@ -58631,17 +58679,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4577 < len(yyv4577) { - yyv4577 = yyv4577[:yyj4577] - yyc4577 = true - } else if yyj4577 == 0 && yyv4577 == nil { - yyv4577 = []AttachedVolume{} - yyc4577 = true + if yyj4582 < len(yyv4582) { + yyv4582 = yyv4582[:yyj4582] + yyc4582 = true + } else if yyj4582 == 0 && yyv4582 == nil { + yyv4582 = []AttachedVolume{} + yyc4582 = true } } - yyh4577.End() - if yyc4577 { - *v = yyv4577 + yyh4582.End() + if yyc4582 { + *v = yyv4582 } } @@ -58650,10 +58698,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4581 := range v { + for _, yyv4586 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4582 := &yyv4581 - yy4582.CodecEncodeSelf(e) + yy4587 := &yyv4586 + yy4587.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58663,83 +58711,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4583 := *v - yyh4583, yyl4583 := z.DecSliceHelperStart() - var yyc4583 bool - if yyl4583 == 0 { - if yyv4583 == nil { - yyv4583 = []PreferAvoidPodsEntry{} - yyc4583 = true - } else if len(yyv4583) != 0 { - yyv4583 = yyv4583[:0] - yyc4583 = true + yyv4588 := *v + yyh4588, yyl4588 := z.DecSliceHelperStart() + var yyc4588 bool + if yyl4588 == 0 { + if yyv4588 == nil { + yyv4588 = []PreferAvoidPodsEntry{} + yyc4588 = true + } else if len(yyv4588) != 0 { + yyv4588 = yyv4588[:0] + yyc4588 = true } - } else if yyl4583 > 0 { - var yyrr4583, yyrl4583 int - var yyrt4583 bool - if yyl4583 > cap(yyv4583) { + } else if yyl4588 > 0 { + var yyrr4588, yyrl4588 int + var yyrt4588 bool + if yyl4588 > cap(yyv4588) { - yyrg4583 := len(yyv4583) > 0 - yyv24583 := yyv4583 - yyrl4583, yyrt4583 = z.DecInferLen(yyl4583, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4583 { - if yyrl4583 <= cap(yyv4583) { - yyv4583 = yyv4583[:yyrl4583] + yyrg4588 := len(yyv4588) > 0 + yyv24588 := yyv4588 + yyrl4588, yyrt4588 = z.DecInferLen(yyl4588, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4588 { + if yyrl4588 <= cap(yyv4588) { + yyv4588 = yyv4588[:yyrl4588] } else { - yyv4583 = make([]PreferAvoidPodsEntry, yyrl4583) + yyv4588 = make([]PreferAvoidPodsEntry, yyrl4588) } } else { - yyv4583 = make([]PreferAvoidPodsEntry, yyrl4583) + yyv4588 = make([]PreferAvoidPodsEntry, yyrl4588) } - yyc4583 = true - yyrr4583 = len(yyv4583) - if yyrg4583 { - copy(yyv4583, yyv24583) + yyc4588 = true + yyrr4588 = len(yyv4588) + if yyrg4588 { + copy(yyv4588, yyv24588) } - } else if yyl4583 != len(yyv4583) { - yyv4583 = yyv4583[:yyl4583] - yyc4583 = true + } else if yyl4588 != len(yyv4588) { + yyv4588 = yyv4588[:yyl4588] + yyc4588 = true } - yyj4583 := 0 - for ; yyj4583 < yyrr4583; yyj4583++ { - yyh4583.ElemContainerState(yyj4583) + yyj4588 := 0 + for ; yyj4588 < yyrr4588; yyj4588++ { + yyh4588.ElemContainerState(yyj4588) if r.TryDecodeAsNil() { - yyv4583[yyj4583] = PreferAvoidPodsEntry{} + yyv4588[yyj4588] = PreferAvoidPodsEntry{} } else { - yyv4584 := &yyv4583[yyj4583] - yyv4584.CodecDecodeSelf(d) + yyv4589 := &yyv4588[yyj4588] + yyv4589.CodecDecodeSelf(d) } } - if yyrt4583 { - for ; yyj4583 < yyl4583; yyj4583++ { - yyv4583 = append(yyv4583, PreferAvoidPodsEntry{}) - yyh4583.ElemContainerState(yyj4583) + if yyrt4588 { + for ; yyj4588 < yyl4588; yyj4588++ { + yyv4588 = append(yyv4588, PreferAvoidPodsEntry{}) + yyh4588.ElemContainerState(yyj4588) if r.TryDecodeAsNil() { - yyv4583[yyj4583] = PreferAvoidPodsEntry{} + yyv4588[yyj4588] = PreferAvoidPodsEntry{} } else { - yyv4585 := &yyv4583[yyj4583] - yyv4585.CodecDecodeSelf(d) + yyv4590 := &yyv4588[yyj4588] + yyv4590.CodecDecodeSelf(d) } } } } else { - yyj4583 := 0 - for ; !r.CheckBreak(); yyj4583++ { + yyj4588 := 0 + for ; !r.CheckBreak(); yyj4588++ { - if yyj4583 >= len(yyv4583) { - yyv4583 = append(yyv4583, PreferAvoidPodsEntry{}) // var yyz4583 PreferAvoidPodsEntry - yyc4583 = true + if yyj4588 >= len(yyv4588) { + yyv4588 = append(yyv4588, PreferAvoidPodsEntry{}) // var yyz4588 PreferAvoidPodsEntry + yyc4588 = true } - yyh4583.ElemContainerState(yyj4583) - if yyj4583 < len(yyv4583) { + yyh4588.ElemContainerState(yyj4588) + if yyj4588 < len(yyv4588) { if r.TryDecodeAsNil() { - yyv4583[yyj4583] = PreferAvoidPodsEntry{} + yyv4588[yyj4588] = PreferAvoidPodsEntry{} } else { - yyv4586 := &yyv4583[yyj4583] - yyv4586.CodecDecodeSelf(d) + yyv4591 := &yyv4588[yyj4588] + yyv4591.CodecDecodeSelf(d) } } else { @@ -58747,17 +58795,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4583 < len(yyv4583) { - yyv4583 = yyv4583[:yyj4583] - yyc4583 = true - } else if yyj4583 == 0 && yyv4583 == nil { - yyv4583 = []PreferAvoidPodsEntry{} - yyc4583 = true + if yyj4588 < len(yyv4588) { + yyv4588 = yyv4588[:yyj4588] + yyc4588 = true + } else if yyj4588 == 0 && yyv4588 == nil { + yyv4588 = []PreferAvoidPodsEntry{} + yyc4588 = true } } - yyh4583.End() - if yyc4583 { - *v = yyv4583 + yyh4588.End() + if yyc4588 { + *v = yyv4588 } } @@ -58766,19 +58814,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4587, yyv4587 := range v { + for yyk4592, yyv4592 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4587.CodecEncodeSelf(e) + yyk4592.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4588 := &yyv4587 - yym4589 := z.EncBinary() - _ = yym4589 + yy4593 := &yyv4592 + yym4594 := z.EncBinary() + _ = yym4594 if false { - } else if z.HasExtensions() && z.EncExt(yy4588) { - } else if !yym4589 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4588) + } else if z.HasExtensions() && z.EncExt(yy4593) { + } else if !yym4594 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4593) } else { - z.EncFallback(yy4588) + z.EncFallback(yy4593) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -58789,86 +58837,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4590 := *v - yyl4590 := r.ReadMapStart() - yybh4590 := z.DecBasicHandle() - if yyv4590 == nil { - yyrl4590, _ := z.DecInferLen(yyl4590, yybh4590.MaxInitLen, 72) - yyv4590 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4590) - *v = yyv4590 + yyv4595 := *v + yyl4595 := r.ReadMapStart() + yybh4595 := z.DecBasicHandle() + if yyv4595 == nil { + yyrl4595, _ := z.DecInferLen(yyl4595, yybh4595.MaxInitLen, 72) + yyv4595 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4595) + *v = yyv4595 } - var yymk4590 ResourceName - var yymv4590 pkg3_resource.Quantity - var yymg4590 bool - if yybh4590.MapValueReset { - yymg4590 = true + var yymk4595 ResourceName + var yymv4595 pkg3_resource.Quantity + var yymg4595 bool + if yybh4595.MapValueReset { + yymg4595 = true } - if yyl4590 > 0 { - for yyj4590 := 0; yyj4590 < yyl4590; yyj4590++ { + if yyl4595 > 0 { + for yyj4595 := 0; yyj4595 < yyl4595; yyj4595++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4590 = "" + yymk4595 = "" } else { - yymk4590 = ResourceName(r.DecodeString()) + yymk4595 = ResourceName(r.DecodeString()) } - if yymg4590 { - yymv4590 = yyv4590[yymk4590] + if yymg4595 { + yymv4595 = yyv4595[yymk4595] } else { - yymv4590 = pkg3_resource.Quantity{} + yymv4595 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4590 = pkg3_resource.Quantity{} + yymv4595 = pkg3_resource.Quantity{} } else { - yyv4592 := &yymv4590 - yym4593 := z.DecBinary() - _ = yym4593 + yyv4597 := &yymv4595 + yym4598 := z.DecBinary() + _ = yym4598 if false { - } else if z.HasExtensions() && z.DecExt(yyv4592) { - } else if !yym4593 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4592) + } else if z.HasExtensions() && z.DecExt(yyv4597) { + } else if !yym4598 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4597) } else { - z.DecFallback(yyv4592, false) + z.DecFallback(yyv4597, false) } } - if yyv4590 != nil { - yyv4590[yymk4590] = yymv4590 + if yyv4595 != nil { + yyv4595[yymk4595] = yymv4595 } } - } else if yyl4590 < 0 { - for yyj4590 := 0; !r.CheckBreak(); yyj4590++ { + } else if yyl4595 < 0 { + for yyj4595 := 0; !r.CheckBreak(); yyj4595++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4590 = "" + yymk4595 = "" } else { - yymk4590 = ResourceName(r.DecodeString()) + yymk4595 = ResourceName(r.DecodeString()) } - if yymg4590 { - yymv4590 = yyv4590[yymk4590] + if yymg4595 { + yymv4595 = yyv4595[yymk4595] } else { - yymv4590 = pkg3_resource.Quantity{} + yymv4595 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4590 = pkg3_resource.Quantity{} + yymv4595 = pkg3_resource.Quantity{} } else { - yyv4595 := &yymv4590 - yym4596 := z.DecBinary() - _ = yym4596 + yyv4600 := &yymv4595 + yym4601 := z.DecBinary() + _ = yym4601 if false { - } else if z.HasExtensions() && z.DecExt(yyv4595) { - } else if !yym4596 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4595) + } else if z.HasExtensions() && z.DecExt(yyv4600) { + } else if !yym4601 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4600) } else { - z.DecFallback(yyv4595, false) + z.DecFallback(yyv4600, false) } } - if yyv4590 != nil { - yyv4590[yymk4590] = yymv4590 + if yyv4595 != nil { + yyv4595[yymk4595] = yymv4595 } } } // else len==0: TODO: Should we clear map entries? @@ -58880,10 +58928,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4597 := range v { + for _, yyv4602 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4598 := &yyv4597 - yy4598.CodecEncodeSelf(e) + yy4603 := &yyv4602 + yy4603.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58893,127 +58941,12 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4599 := *v - yyh4599, yyl4599 := z.DecSliceHelperStart() - var yyc4599 bool - if yyl4599 == 0 { - if yyv4599 == nil { - yyv4599 = []Node{} - yyc4599 = true - } else if len(yyv4599) != 0 { - yyv4599 = yyv4599[:0] - yyc4599 = true - } - } else if yyl4599 > 0 { - var yyrr4599, yyrl4599 int - var yyrt4599 bool - if yyl4599 > cap(yyv4599) { - - yyrg4599 := len(yyv4599) > 0 - yyv24599 := yyv4599 - yyrl4599, yyrt4599 = z.DecInferLen(yyl4599, z.DecBasicHandle().MaxInitLen, 616) - if yyrt4599 { - if yyrl4599 <= cap(yyv4599) { - yyv4599 = yyv4599[:yyrl4599] - } else { - yyv4599 = make([]Node, yyrl4599) - } - } else { - yyv4599 = make([]Node, yyrl4599) - } - yyc4599 = true - yyrr4599 = len(yyv4599) - if yyrg4599 { - copy(yyv4599, yyv24599) - } - } else if yyl4599 != len(yyv4599) { - yyv4599 = yyv4599[:yyl4599] - yyc4599 = true - } - yyj4599 := 0 - for ; yyj4599 < yyrr4599; yyj4599++ { - yyh4599.ElemContainerState(yyj4599) - if r.TryDecodeAsNil() { - yyv4599[yyj4599] = Node{} - } else { - yyv4600 := &yyv4599[yyj4599] - yyv4600.CodecDecodeSelf(d) - } - - } - if yyrt4599 { - for ; yyj4599 < yyl4599; yyj4599++ { - yyv4599 = append(yyv4599, Node{}) - yyh4599.ElemContainerState(yyj4599) - if r.TryDecodeAsNil() { - yyv4599[yyj4599] = Node{} - } else { - yyv4601 := &yyv4599[yyj4599] - yyv4601.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4599 := 0 - for ; !r.CheckBreak(); yyj4599++ { - - if yyj4599 >= len(yyv4599) { - yyv4599 = append(yyv4599, Node{}) // var yyz4599 Node - yyc4599 = true - } - yyh4599.ElemContainerState(yyj4599) - if yyj4599 < len(yyv4599) { - if r.TryDecodeAsNil() { - yyv4599[yyj4599] = Node{} - } else { - yyv4602 := &yyv4599[yyj4599] - yyv4602.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4599 < len(yyv4599) { - yyv4599 = yyv4599[:yyj4599] - yyc4599 = true - } else if yyj4599 == 0 && yyv4599 == nil { - yyv4599 = []Node{} - yyc4599 = true - } - } - yyh4599.End() - if yyc4599 { - *v = yyv4599 - } -} - -func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4603 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4603.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4604 := *v yyh4604, yyl4604 := z.DecSliceHelperStart() var yyc4604 bool if yyl4604 == 0 { if yyv4604 == nil { - yyv4604 = []FinalizerName{} + yyv4604 = []Node{} yyc4604 = true } else if len(yyv4604) != 0 { yyv4604 = yyv4604[:0] @@ -59024,18 +58957,23 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. var yyrt4604 bool if yyl4604 > cap(yyv4604) { - yyrl4604, yyrt4604 = z.DecInferLen(yyl4604, z.DecBasicHandle().MaxInitLen, 16) + yyrg4604 := len(yyv4604) > 0 + yyv24604 := yyv4604 + yyrl4604, yyrt4604 = z.DecInferLen(yyl4604, z.DecBasicHandle().MaxInitLen, 616) if yyrt4604 { if yyrl4604 <= cap(yyv4604) { yyv4604 = yyv4604[:yyrl4604] } else { - yyv4604 = make([]FinalizerName, yyrl4604) + yyv4604 = make([]Node, yyrl4604) } } else { - yyv4604 = make([]FinalizerName, yyrl4604) + yyv4604 = make([]Node, yyrl4604) } yyc4604 = true yyrr4604 = len(yyv4604) + if yyrg4604 { + copy(yyv4604, yyv24604) + } } else if yyl4604 != len(yyv4604) { yyv4604 = yyv4604[:yyl4604] yyc4604 = true @@ -59044,20 +58982,22 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; yyj4604 < yyrr4604; yyj4604++ { yyh4604.ElemContainerState(yyj4604) if r.TryDecodeAsNil() { - yyv4604[yyj4604] = "" + yyv4604[yyj4604] = Node{} } else { - yyv4604[yyj4604] = FinalizerName(r.DecodeString()) + yyv4605 := &yyv4604[yyj4604] + yyv4605.CodecDecodeSelf(d) } } if yyrt4604 { for ; yyj4604 < yyl4604; yyj4604++ { - yyv4604 = append(yyv4604, "") + yyv4604 = append(yyv4604, Node{}) yyh4604.ElemContainerState(yyj4604) if r.TryDecodeAsNil() { - yyv4604[yyj4604] = "" + yyv4604[yyj4604] = Node{} } else { - yyv4604[yyj4604] = FinalizerName(r.DecodeString()) + yyv4606 := &yyv4604[yyj4604] + yyv4606.CodecDecodeSelf(d) } } @@ -59068,15 +59008,16 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; !r.CheckBreak(); yyj4604++ { if yyj4604 >= len(yyv4604) { - yyv4604 = append(yyv4604, "") // var yyz4604 FinalizerName + yyv4604 = append(yyv4604, Node{}) // var yyz4604 Node yyc4604 = true } yyh4604.ElemContainerState(yyj4604) if yyj4604 < len(yyv4604) { if r.TryDecodeAsNil() { - yyv4604[yyj4604] = "" + yyv4604[yyj4604] = Node{} } else { - yyv4604[yyj4604] = FinalizerName(r.DecodeString()) + yyv4607 := &yyv4604[yyj4604] + yyv4607.CodecDecodeSelf(d) } } else { @@ -59088,7 +59029,7 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. yyv4604 = yyv4604[:yyj4604] yyc4604 = true } else if yyj4604 == 0 && yyv4604 == nil { - yyv4604 = []FinalizerName{} + yyv4604 = []Node{} yyc4604 = true } } @@ -59098,101 +59039,92 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } -func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4608 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4609 := &yyv4608 - yy4609.CodecEncodeSelf(e) + yyv4608.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4610 := *v - yyh4610, yyl4610 := z.DecSliceHelperStart() - var yyc4610 bool - if yyl4610 == 0 { - if yyv4610 == nil { - yyv4610 = []Namespace{} - yyc4610 = true - } else if len(yyv4610) != 0 { - yyv4610 = yyv4610[:0] - yyc4610 = true + yyv4609 := *v + yyh4609, yyl4609 := z.DecSliceHelperStart() + var yyc4609 bool + if yyl4609 == 0 { + if yyv4609 == nil { + yyv4609 = []FinalizerName{} + yyc4609 = true + } else if len(yyv4609) != 0 { + yyv4609 = yyv4609[:0] + yyc4609 = true } - } else if yyl4610 > 0 { - var yyrr4610, yyrl4610 int - var yyrt4610 bool - if yyl4610 > cap(yyv4610) { + } else if yyl4609 > 0 { + var yyrr4609, yyrl4609 int + var yyrt4609 bool + if yyl4609 > cap(yyv4609) { - yyrg4610 := len(yyv4610) > 0 - yyv24610 := yyv4610 - yyrl4610, yyrt4610 = z.DecInferLen(yyl4610, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4610 { - if yyrl4610 <= cap(yyv4610) { - yyv4610 = yyv4610[:yyrl4610] + yyrl4609, yyrt4609 = z.DecInferLen(yyl4609, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4609 { + if yyrl4609 <= cap(yyv4609) { + yyv4609 = yyv4609[:yyrl4609] } else { - yyv4610 = make([]Namespace, yyrl4610) + yyv4609 = make([]FinalizerName, yyrl4609) } } else { - yyv4610 = make([]Namespace, yyrl4610) - } - yyc4610 = true - yyrr4610 = len(yyv4610) - if yyrg4610 { - copy(yyv4610, yyv24610) + yyv4609 = make([]FinalizerName, yyrl4609) } - } else if yyl4610 != len(yyv4610) { - yyv4610 = yyv4610[:yyl4610] - yyc4610 = true + yyc4609 = true + yyrr4609 = len(yyv4609) + } else if yyl4609 != len(yyv4609) { + yyv4609 = yyv4609[:yyl4609] + yyc4609 = true } - yyj4610 := 0 - for ; yyj4610 < yyrr4610; yyj4610++ { - yyh4610.ElemContainerState(yyj4610) + yyj4609 := 0 + for ; yyj4609 < yyrr4609; yyj4609++ { + yyh4609.ElemContainerState(yyj4609) if r.TryDecodeAsNil() { - yyv4610[yyj4610] = Namespace{} + yyv4609[yyj4609] = "" } else { - yyv4611 := &yyv4610[yyj4610] - yyv4611.CodecDecodeSelf(d) + yyv4609[yyj4609] = FinalizerName(r.DecodeString()) } } - if yyrt4610 { - for ; yyj4610 < yyl4610; yyj4610++ { - yyv4610 = append(yyv4610, Namespace{}) - yyh4610.ElemContainerState(yyj4610) + if yyrt4609 { + for ; yyj4609 < yyl4609; yyj4609++ { + yyv4609 = append(yyv4609, "") + yyh4609.ElemContainerState(yyj4609) if r.TryDecodeAsNil() { - yyv4610[yyj4610] = Namespace{} + yyv4609[yyj4609] = "" } else { - yyv4612 := &yyv4610[yyj4610] - yyv4612.CodecDecodeSelf(d) + yyv4609[yyj4609] = FinalizerName(r.DecodeString()) } } } } else { - yyj4610 := 0 - for ; !r.CheckBreak(); yyj4610++ { + yyj4609 := 0 + for ; !r.CheckBreak(); yyj4609++ { - if yyj4610 >= len(yyv4610) { - yyv4610 = append(yyv4610, Namespace{}) // var yyz4610 Namespace - yyc4610 = true + if yyj4609 >= len(yyv4609) { + yyv4609 = append(yyv4609, "") // var yyz4609 FinalizerName + yyc4609 = true } - yyh4610.ElemContainerState(yyj4610) - if yyj4610 < len(yyv4610) { + yyh4609.ElemContainerState(yyj4609) + if yyj4609 < len(yyv4609) { if r.TryDecodeAsNil() { - yyv4610[yyj4610] = Namespace{} + yyv4609[yyj4609] = "" } else { - yyv4613 := &yyv4610[yyj4610] - yyv4613.CodecDecodeSelf(d) + yyv4609[yyj4609] = FinalizerName(r.DecodeString()) } } else { @@ -59200,115 +59132,115 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4610 < len(yyv4610) { - yyv4610 = yyv4610[:yyj4610] - yyc4610 = true - } else if yyj4610 == 0 && yyv4610 == nil { - yyv4610 = []Namespace{} - yyc4610 = true + if yyj4609 < len(yyv4609) { + yyv4609 = yyv4609[:yyj4609] + yyc4609 = true + } else if yyj4609 == 0 && yyv4609 == nil { + yyv4609 = []FinalizerName{} + yyc4609 = true } } - yyh4610.End() - if yyc4610 { - *v = yyv4610 + yyh4609.End() + if yyc4609 { + *v = yyv4609 } } -func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4614 := range v { + for _, yyv4613 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4615 := &yyv4614 - yy4615.CodecEncodeSelf(e) + yy4614 := &yyv4613 + yy4614.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4616 := *v - yyh4616, yyl4616 := z.DecSliceHelperStart() - var yyc4616 bool - if yyl4616 == 0 { - if yyv4616 == nil { - yyv4616 = []Event{} - yyc4616 = true - } else if len(yyv4616) != 0 { - yyv4616 = yyv4616[:0] - yyc4616 = true + yyv4615 := *v + yyh4615, yyl4615 := z.DecSliceHelperStart() + var yyc4615 bool + if yyl4615 == 0 { + if yyv4615 == nil { + yyv4615 = []Namespace{} + yyc4615 = true + } else if len(yyv4615) != 0 { + yyv4615 = yyv4615[:0] + yyc4615 = true } - } else if yyl4616 > 0 { - var yyrr4616, yyrl4616 int - var yyrt4616 bool - if yyl4616 > cap(yyv4616) { + } else if yyl4615 > 0 { + var yyrr4615, yyrl4615 int + var yyrt4615 bool + if yyl4615 > cap(yyv4615) { - yyrg4616 := len(yyv4616) > 0 - yyv24616 := yyv4616 - yyrl4616, yyrt4616 = z.DecInferLen(yyl4616, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4616 { - if yyrl4616 <= cap(yyv4616) { - yyv4616 = yyv4616[:yyrl4616] + yyrg4615 := len(yyv4615) > 0 + yyv24615 := yyv4615 + yyrl4615, yyrt4615 = z.DecInferLen(yyl4615, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4615 { + if yyrl4615 <= cap(yyv4615) { + yyv4615 = yyv4615[:yyrl4615] } else { - yyv4616 = make([]Event, yyrl4616) + yyv4615 = make([]Namespace, yyrl4615) } } else { - yyv4616 = make([]Event, yyrl4616) + yyv4615 = make([]Namespace, yyrl4615) } - yyc4616 = true - yyrr4616 = len(yyv4616) - if yyrg4616 { - copy(yyv4616, yyv24616) + yyc4615 = true + yyrr4615 = len(yyv4615) + if yyrg4615 { + copy(yyv4615, yyv24615) } - } else if yyl4616 != len(yyv4616) { - yyv4616 = yyv4616[:yyl4616] - yyc4616 = true + } else if yyl4615 != len(yyv4615) { + yyv4615 = yyv4615[:yyl4615] + yyc4615 = true } - yyj4616 := 0 - for ; yyj4616 < yyrr4616; yyj4616++ { - yyh4616.ElemContainerState(yyj4616) + yyj4615 := 0 + for ; yyj4615 < yyrr4615; yyj4615++ { + yyh4615.ElemContainerState(yyj4615) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = Event{} + yyv4615[yyj4615] = Namespace{} } else { - yyv4617 := &yyv4616[yyj4616] - yyv4617.CodecDecodeSelf(d) + yyv4616 := &yyv4615[yyj4615] + yyv4616.CodecDecodeSelf(d) } } - if yyrt4616 { - for ; yyj4616 < yyl4616; yyj4616++ { - yyv4616 = append(yyv4616, Event{}) - yyh4616.ElemContainerState(yyj4616) + if yyrt4615 { + for ; yyj4615 < yyl4615; yyj4615++ { + yyv4615 = append(yyv4615, Namespace{}) + yyh4615.ElemContainerState(yyj4615) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = Event{} + yyv4615[yyj4615] = Namespace{} } else { - yyv4618 := &yyv4616[yyj4616] - yyv4618.CodecDecodeSelf(d) + yyv4617 := &yyv4615[yyj4615] + yyv4617.CodecDecodeSelf(d) } } } } else { - yyj4616 := 0 - for ; !r.CheckBreak(); yyj4616++ { + yyj4615 := 0 + for ; !r.CheckBreak(); yyj4615++ { - if yyj4616 >= len(yyv4616) { - yyv4616 = append(yyv4616, Event{}) // var yyz4616 Event - yyc4616 = true + if yyj4615 >= len(yyv4615) { + yyv4615 = append(yyv4615, Namespace{}) // var yyz4615 Namespace + yyc4615 = true } - yyh4616.ElemContainerState(yyj4616) - if yyj4616 < len(yyv4616) { + yyh4615.ElemContainerState(yyj4615) + if yyj4615 < len(yyv4615) { if r.TryDecodeAsNil() { - yyv4616[yyj4616] = Event{} + yyv4615[yyj4615] = Namespace{} } else { - yyv4619 := &yyv4616[yyj4616] - yyv4619.CodecDecodeSelf(d) + yyv4618 := &yyv4615[yyj4615] + yyv4618.CodecDecodeSelf(d) } } else { @@ -59316,147 +59248,115 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4616 < len(yyv4616) { - yyv4616 = yyv4616[:yyj4616] - yyc4616 = true - } else if yyj4616 == 0 && yyv4616 == nil { - yyv4616 = []Event{} - yyc4616 = true + if yyj4615 < len(yyv4615) { + yyv4615 = yyv4615[:yyj4615] + yyc4615 = true + } else if yyj4615 == 0 && yyv4615 == nil { + yyv4615 = []Namespace{} + yyc4615 = true } } - yyh4616.End() - if yyc4616 { - *v = yyv4616 + yyh4615.End() + if yyc4615 { + *v = yyv4615 } } -func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtension, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4620 := range v { + for _, yyv4619 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4621 := &yyv4620 - yym4622 := z.EncBinary() - _ = yym4622 - if false { - } else if z.HasExtensions() && z.EncExt(yy4621) { - } else if !yym4622 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4621) - } else { - z.EncFallback(yy4621) - } + yy4620 := &yyv4619 + yy4620.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExtension, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4623 := *v - yyh4623, yyl4623 := z.DecSliceHelperStart() - var yyc4623 bool - if yyl4623 == 0 { - if yyv4623 == nil { - yyv4623 = []pkg5_runtime.RawExtension{} - yyc4623 = true - } else if len(yyv4623) != 0 { - yyv4623 = yyv4623[:0] - yyc4623 = true + yyv4621 := *v + yyh4621, yyl4621 := z.DecSliceHelperStart() + var yyc4621 bool + if yyl4621 == 0 { + if yyv4621 == nil { + yyv4621 = []Event{} + yyc4621 = true + } else if len(yyv4621) != 0 { + yyv4621 = yyv4621[:0] + yyc4621 = true } - } else if yyl4623 > 0 { - var yyrr4623, yyrl4623 int - var yyrt4623 bool - if yyl4623 > cap(yyv4623) { + } else if yyl4621 > 0 { + var yyrr4621, yyrl4621 int + var yyrt4621 bool + if yyl4621 > cap(yyv4621) { - yyrg4623 := len(yyv4623) > 0 - yyv24623 := yyv4623 - yyrl4623, yyrt4623 = z.DecInferLen(yyl4623, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4623 { - if yyrl4623 <= cap(yyv4623) { - yyv4623 = yyv4623[:yyrl4623] + yyrg4621 := len(yyv4621) > 0 + yyv24621 := yyv4621 + yyrl4621, yyrt4621 = z.DecInferLen(yyl4621, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4621 { + if yyrl4621 <= cap(yyv4621) { + yyv4621 = yyv4621[:yyrl4621] } else { - yyv4623 = make([]pkg5_runtime.RawExtension, yyrl4623) + yyv4621 = make([]Event, yyrl4621) } } else { - yyv4623 = make([]pkg5_runtime.RawExtension, yyrl4623) + yyv4621 = make([]Event, yyrl4621) } - yyc4623 = true - yyrr4623 = len(yyv4623) - if yyrg4623 { - copy(yyv4623, yyv24623) + yyc4621 = true + yyrr4621 = len(yyv4621) + if yyrg4621 { + copy(yyv4621, yyv24621) } - } else if yyl4623 != len(yyv4623) { - yyv4623 = yyv4623[:yyl4623] - yyc4623 = true + } else if yyl4621 != len(yyv4621) { + yyv4621 = yyv4621[:yyl4621] + yyc4621 = true } - yyj4623 := 0 - for ; yyj4623 < yyrr4623; yyj4623++ { - yyh4623.ElemContainerState(yyj4623) + yyj4621 := 0 + for ; yyj4621 < yyrr4621; yyj4621++ { + yyh4621.ElemContainerState(yyj4621) if r.TryDecodeAsNil() { - yyv4623[yyj4623] = pkg5_runtime.RawExtension{} + yyv4621[yyj4621] = Event{} } else { - yyv4624 := &yyv4623[yyj4623] - yym4625 := z.DecBinary() - _ = yym4625 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4624) { - } else if !yym4625 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4624) - } else { - z.DecFallback(yyv4624, false) - } + yyv4622 := &yyv4621[yyj4621] + yyv4622.CodecDecodeSelf(d) } } - if yyrt4623 { - for ; yyj4623 < yyl4623; yyj4623++ { - yyv4623 = append(yyv4623, pkg5_runtime.RawExtension{}) - yyh4623.ElemContainerState(yyj4623) + if yyrt4621 { + for ; yyj4621 < yyl4621; yyj4621++ { + yyv4621 = append(yyv4621, Event{}) + yyh4621.ElemContainerState(yyj4621) if r.TryDecodeAsNil() { - yyv4623[yyj4623] = pkg5_runtime.RawExtension{} + yyv4621[yyj4621] = Event{} } else { - yyv4626 := &yyv4623[yyj4623] - yym4627 := z.DecBinary() - _ = yym4627 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4626) { - } else if !yym4627 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4626) - } else { - z.DecFallback(yyv4626, false) - } + yyv4623 := &yyv4621[yyj4621] + yyv4623.CodecDecodeSelf(d) } } } } else { - yyj4623 := 0 - for ; !r.CheckBreak(); yyj4623++ { + yyj4621 := 0 + for ; !r.CheckBreak(); yyj4621++ { - if yyj4623 >= len(yyv4623) { - yyv4623 = append(yyv4623, pkg5_runtime.RawExtension{}) // var yyz4623 pkg5_runtime.RawExtension - yyc4623 = true + if yyj4621 >= len(yyv4621) { + yyv4621 = append(yyv4621, Event{}) // var yyz4621 Event + yyc4621 = true } - yyh4623.ElemContainerState(yyj4623) - if yyj4623 < len(yyv4623) { + yyh4621.ElemContainerState(yyj4621) + if yyj4621 < len(yyv4621) { if r.TryDecodeAsNil() { - yyv4623[yyj4623] = pkg5_runtime.RawExtension{} + yyv4621[yyj4621] = Event{} } else { - yyv4628 := &yyv4623[yyj4623] - yym4629 := z.DecBinary() - _ = yym4629 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4628) { - } else if !yym4629 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4628) - } else { - z.DecFallback(yyv4628, false) - } + yyv4624 := &yyv4621[yyj4621] + yyv4624.CodecDecodeSelf(d) } } else { @@ -59464,115 +59364,147 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } - if yyj4623 < len(yyv4623) { - yyv4623 = yyv4623[:yyj4623] - yyc4623 = true - } else if yyj4623 == 0 && yyv4623 == nil { - yyv4623 = []pkg5_runtime.RawExtension{} - yyc4623 = true + if yyj4621 < len(yyv4621) { + yyv4621 = yyv4621[:yyj4621] + yyc4621 = true + } else if yyj4621 == 0 && yyv4621 == nil { + yyv4621 = []Event{} + yyc4621 = true } } - yyh4623.End() - if yyc4623 { - *v = yyv4623 + yyh4621.End() + if yyc4621 { + *v = yyv4621 } } -func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtension, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4630 := range v { + for _, yyv4625 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4631 := &yyv4630 - yy4631.CodecEncodeSelf(e) + yy4626 := &yyv4625 + yym4627 := z.EncBinary() + _ = yym4627 + if false { + } else if z.HasExtensions() && z.EncExt(yy4626) { + } else if !yym4627 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4626) + } else { + z.EncFallback(yy4626) + } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExtension, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4632 := *v - yyh4632, yyl4632 := z.DecSliceHelperStart() - var yyc4632 bool - if yyl4632 == 0 { - if yyv4632 == nil { - yyv4632 = []LimitRangeItem{} - yyc4632 = true - } else if len(yyv4632) != 0 { - yyv4632 = yyv4632[:0] - yyc4632 = true + yyv4628 := *v + yyh4628, yyl4628 := z.DecSliceHelperStart() + var yyc4628 bool + if yyl4628 == 0 { + if yyv4628 == nil { + yyv4628 = []pkg5_runtime.RawExtension{} + yyc4628 = true + } else if len(yyv4628) != 0 { + yyv4628 = yyv4628[:0] + yyc4628 = true } - } else if yyl4632 > 0 { - var yyrr4632, yyrl4632 int - var yyrt4632 bool - if yyl4632 > cap(yyv4632) { + } else if yyl4628 > 0 { + var yyrr4628, yyrl4628 int + var yyrt4628 bool + if yyl4628 > cap(yyv4628) { - yyrg4632 := len(yyv4632) > 0 - yyv24632 := yyv4632 - yyrl4632, yyrt4632 = z.DecInferLen(yyl4632, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4632 { - if yyrl4632 <= cap(yyv4632) { - yyv4632 = yyv4632[:yyrl4632] + yyrg4628 := len(yyv4628) > 0 + yyv24628 := yyv4628 + yyrl4628, yyrt4628 = z.DecInferLen(yyl4628, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4628 { + if yyrl4628 <= cap(yyv4628) { + yyv4628 = yyv4628[:yyrl4628] } else { - yyv4632 = make([]LimitRangeItem, yyrl4632) + yyv4628 = make([]pkg5_runtime.RawExtension, yyrl4628) } } else { - yyv4632 = make([]LimitRangeItem, yyrl4632) + yyv4628 = make([]pkg5_runtime.RawExtension, yyrl4628) } - yyc4632 = true - yyrr4632 = len(yyv4632) - if yyrg4632 { - copy(yyv4632, yyv24632) + yyc4628 = true + yyrr4628 = len(yyv4628) + if yyrg4628 { + copy(yyv4628, yyv24628) } - } else if yyl4632 != len(yyv4632) { - yyv4632 = yyv4632[:yyl4632] - yyc4632 = true + } else if yyl4628 != len(yyv4628) { + yyv4628 = yyv4628[:yyl4628] + yyc4628 = true } - yyj4632 := 0 - for ; yyj4632 < yyrr4632; yyj4632++ { - yyh4632.ElemContainerState(yyj4632) + yyj4628 := 0 + for ; yyj4628 < yyrr4628; yyj4628++ { + yyh4628.ElemContainerState(yyj4628) if r.TryDecodeAsNil() { - yyv4632[yyj4632] = LimitRangeItem{} + yyv4628[yyj4628] = pkg5_runtime.RawExtension{} } else { - yyv4633 := &yyv4632[yyj4632] - yyv4633.CodecDecodeSelf(d) + yyv4629 := &yyv4628[yyj4628] + yym4630 := z.DecBinary() + _ = yym4630 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4629) { + } else if !yym4630 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4629) + } else { + z.DecFallback(yyv4629, false) + } } } - if yyrt4632 { - for ; yyj4632 < yyl4632; yyj4632++ { - yyv4632 = append(yyv4632, LimitRangeItem{}) - yyh4632.ElemContainerState(yyj4632) + if yyrt4628 { + for ; yyj4628 < yyl4628; yyj4628++ { + yyv4628 = append(yyv4628, pkg5_runtime.RawExtension{}) + yyh4628.ElemContainerState(yyj4628) if r.TryDecodeAsNil() { - yyv4632[yyj4632] = LimitRangeItem{} + yyv4628[yyj4628] = pkg5_runtime.RawExtension{} } else { - yyv4634 := &yyv4632[yyj4632] - yyv4634.CodecDecodeSelf(d) + yyv4631 := &yyv4628[yyj4628] + yym4632 := z.DecBinary() + _ = yym4632 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4631) { + } else if !yym4632 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4631) + } else { + z.DecFallback(yyv4631, false) + } } } } } else { - yyj4632 := 0 - for ; !r.CheckBreak(); yyj4632++ { + yyj4628 := 0 + for ; !r.CheckBreak(); yyj4628++ { - if yyj4632 >= len(yyv4632) { - yyv4632 = append(yyv4632, LimitRangeItem{}) // var yyz4632 LimitRangeItem - yyc4632 = true + if yyj4628 >= len(yyv4628) { + yyv4628 = append(yyv4628, pkg5_runtime.RawExtension{}) // var yyz4628 pkg5_runtime.RawExtension + yyc4628 = true } - yyh4632.ElemContainerState(yyj4632) - if yyj4632 < len(yyv4632) { + yyh4628.ElemContainerState(yyj4628) + if yyj4628 < len(yyv4628) { if r.TryDecodeAsNil() { - yyv4632[yyj4632] = LimitRangeItem{} + yyv4628[yyj4628] = pkg5_runtime.RawExtension{} } else { - yyv4635 := &yyv4632[yyj4632] - yyv4635.CodecDecodeSelf(d) + yyv4633 := &yyv4628[yyj4628] + yym4634 := z.DecBinary() + _ = yym4634 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4633) { + } else if !yym4634 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4633) + } else { + z.DecFallback(yyv4633, false) + } } } else { @@ -59580,115 +59512,115 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4632 < len(yyv4632) { - yyv4632 = yyv4632[:yyj4632] - yyc4632 = true - } else if yyj4632 == 0 && yyv4632 == nil { - yyv4632 = []LimitRangeItem{} - yyc4632 = true + if yyj4628 < len(yyv4628) { + yyv4628 = yyv4628[:yyj4628] + yyc4628 = true + } else if yyj4628 == 0 && yyv4628 == nil { + yyv4628 = []pkg5_runtime.RawExtension{} + yyc4628 = true } } - yyh4632.End() - if yyc4632 { - *v = yyv4632 + yyh4628.End() + if yyc4628 { + *v = yyv4628 } } -func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4636 := range v { + for _, yyv4635 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4637 := &yyv4636 - yy4637.CodecEncodeSelf(e) + yy4636 := &yyv4635 + yy4636.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4638 := *v - yyh4638, yyl4638 := z.DecSliceHelperStart() - var yyc4638 bool - if yyl4638 == 0 { - if yyv4638 == nil { - yyv4638 = []LimitRange{} - yyc4638 = true - } else if len(yyv4638) != 0 { - yyv4638 = yyv4638[:0] - yyc4638 = true + yyv4637 := *v + yyh4637, yyl4637 := z.DecSliceHelperStart() + var yyc4637 bool + if yyl4637 == 0 { + if yyv4637 == nil { + yyv4637 = []LimitRangeItem{} + yyc4637 = true + } else if len(yyv4637) != 0 { + yyv4637 = yyv4637[:0] + yyc4637 = true } - } else if yyl4638 > 0 { - var yyrr4638, yyrl4638 int - var yyrt4638 bool - if yyl4638 > cap(yyv4638) { + } else if yyl4637 > 0 { + var yyrr4637, yyrl4637 int + var yyrt4637 bool + if yyl4637 > cap(yyv4637) { - yyrg4638 := len(yyv4638) > 0 - yyv24638 := yyv4638 - yyrl4638, yyrt4638 = z.DecInferLen(yyl4638, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4638 { - if yyrl4638 <= cap(yyv4638) { - yyv4638 = yyv4638[:yyrl4638] + yyrg4637 := len(yyv4637) > 0 + yyv24637 := yyv4637 + yyrl4637, yyrt4637 = z.DecInferLen(yyl4637, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4637 { + if yyrl4637 <= cap(yyv4637) { + yyv4637 = yyv4637[:yyrl4637] } else { - yyv4638 = make([]LimitRange, yyrl4638) + yyv4637 = make([]LimitRangeItem, yyrl4637) } } else { - yyv4638 = make([]LimitRange, yyrl4638) + yyv4637 = make([]LimitRangeItem, yyrl4637) } - yyc4638 = true - yyrr4638 = len(yyv4638) - if yyrg4638 { - copy(yyv4638, yyv24638) + yyc4637 = true + yyrr4637 = len(yyv4637) + if yyrg4637 { + copy(yyv4637, yyv24637) } - } else if yyl4638 != len(yyv4638) { - yyv4638 = yyv4638[:yyl4638] - yyc4638 = true + } else if yyl4637 != len(yyv4637) { + yyv4637 = yyv4637[:yyl4637] + yyc4637 = true } - yyj4638 := 0 - for ; yyj4638 < yyrr4638; yyj4638++ { - yyh4638.ElemContainerState(yyj4638) + yyj4637 := 0 + for ; yyj4637 < yyrr4637; yyj4637++ { + yyh4637.ElemContainerState(yyj4637) if r.TryDecodeAsNil() { - yyv4638[yyj4638] = LimitRange{} + yyv4637[yyj4637] = LimitRangeItem{} } else { - yyv4639 := &yyv4638[yyj4638] - yyv4639.CodecDecodeSelf(d) + yyv4638 := &yyv4637[yyj4637] + yyv4638.CodecDecodeSelf(d) } } - if yyrt4638 { - for ; yyj4638 < yyl4638; yyj4638++ { - yyv4638 = append(yyv4638, LimitRange{}) - yyh4638.ElemContainerState(yyj4638) + if yyrt4637 { + for ; yyj4637 < yyl4637; yyj4637++ { + yyv4637 = append(yyv4637, LimitRangeItem{}) + yyh4637.ElemContainerState(yyj4637) if r.TryDecodeAsNil() { - yyv4638[yyj4638] = LimitRange{} + yyv4637[yyj4637] = LimitRangeItem{} } else { - yyv4640 := &yyv4638[yyj4638] - yyv4640.CodecDecodeSelf(d) + yyv4639 := &yyv4637[yyj4637] + yyv4639.CodecDecodeSelf(d) } } } } else { - yyj4638 := 0 - for ; !r.CheckBreak(); yyj4638++ { + yyj4637 := 0 + for ; !r.CheckBreak(); yyj4637++ { - if yyj4638 >= len(yyv4638) { - yyv4638 = append(yyv4638, LimitRange{}) // var yyz4638 LimitRange - yyc4638 = true + if yyj4637 >= len(yyv4637) { + yyv4637 = append(yyv4637, LimitRangeItem{}) // var yyz4637 LimitRangeItem + yyc4637 = true } - yyh4638.ElemContainerState(yyj4638) - if yyj4638 < len(yyv4638) { + yyh4637.ElemContainerState(yyj4637) + if yyj4637 < len(yyv4637) { if r.TryDecodeAsNil() { - yyv4638[yyj4638] = LimitRange{} + yyv4637[yyj4637] = LimitRangeItem{} } else { - yyv4641 := &yyv4638[yyj4638] - yyv4641.CodecDecodeSelf(d) + yyv4640 := &yyv4637[yyj4637] + yyv4640.CodecDecodeSelf(d) } } else { @@ -59696,33 +59628,34 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4638 < len(yyv4638) { - yyv4638 = yyv4638[:yyj4638] - yyc4638 = true - } else if yyj4638 == 0 && yyv4638 == nil { - yyv4638 = []LimitRange{} - yyc4638 = true + if yyj4637 < len(yyv4637) { + yyv4637 = yyv4637[:yyj4637] + yyc4637 = true + } else if yyj4637 == 0 && yyv4637 == nil { + yyv4637 = []LimitRangeItem{} + yyc4637 = true } } - yyh4638.End() - if yyc4638 { - *v = yyv4638 + yyh4637.End() + if yyc4637 { + *v = yyv4637 } } -func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4642 := range v { + for _, yyv4641 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4642.CodecEncodeSelf(e) + yy4642 := &yyv4641 + yy4642.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -59732,7 +59665,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyc4643 bool if yyl4643 == 0 { if yyv4643 == nil { - yyv4643 = []ResourceQuotaScope{} + yyv4643 = []LimitRange{} yyc4643 = true } else if len(yyv4643) != 0 { yyv4643 = yyv4643[:0] @@ -59743,18 +59676,23 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyrt4643 bool if yyl4643 > cap(yyv4643) { - yyrl4643, yyrt4643 = z.DecInferLen(yyl4643, z.DecBasicHandle().MaxInitLen, 16) + yyrg4643 := len(yyv4643) > 0 + yyv24643 := yyv4643 + yyrl4643, yyrt4643 = z.DecInferLen(yyl4643, z.DecBasicHandle().MaxInitLen, 264) if yyrt4643 { if yyrl4643 <= cap(yyv4643) { yyv4643 = yyv4643[:yyrl4643] } else { - yyv4643 = make([]ResourceQuotaScope, yyrl4643) + yyv4643 = make([]LimitRange, yyrl4643) } } else { - yyv4643 = make([]ResourceQuotaScope, yyrl4643) + yyv4643 = make([]LimitRange, yyrl4643) } yyc4643 = true yyrr4643 = len(yyv4643) + if yyrg4643 { + copy(yyv4643, yyv24643) + } } else if yyl4643 != len(yyv4643) { yyv4643 = yyv4643[:yyl4643] yyc4643 = true @@ -59763,20 +59701,22 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; yyj4643 < yyrr4643; yyj4643++ { yyh4643.ElemContainerState(yyj4643) if r.TryDecodeAsNil() { - yyv4643[yyj4643] = "" + yyv4643[yyj4643] = LimitRange{} } else { - yyv4643[yyj4643] = ResourceQuotaScope(r.DecodeString()) + yyv4644 := &yyv4643[yyj4643] + yyv4644.CodecDecodeSelf(d) } } if yyrt4643 { for ; yyj4643 < yyl4643; yyj4643++ { - yyv4643 = append(yyv4643, "") + yyv4643 = append(yyv4643, LimitRange{}) yyh4643.ElemContainerState(yyj4643) if r.TryDecodeAsNil() { - yyv4643[yyj4643] = "" + yyv4643[yyj4643] = LimitRange{} } else { - yyv4643[yyj4643] = ResourceQuotaScope(r.DecodeString()) + yyv4645 := &yyv4643[yyj4643] + yyv4645.CodecDecodeSelf(d) } } @@ -59787,15 +59727,16 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; !r.CheckBreak(); yyj4643++ { if yyj4643 >= len(yyv4643) { - yyv4643 = append(yyv4643, "") // var yyz4643 ResourceQuotaScope + yyv4643 = append(yyv4643, LimitRange{}) // var yyz4643 LimitRange yyc4643 = true } yyh4643.ElemContainerState(yyj4643) if yyj4643 < len(yyv4643) { if r.TryDecodeAsNil() { - yyv4643[yyj4643] = "" + yyv4643[yyj4643] = LimitRange{} } else { - yyv4643[yyj4643] = ResourceQuotaScope(r.DecodeString()) + yyv4646 := &yyv4643[yyj4643] + yyv4646.CodecDecodeSelf(d) } } else { @@ -59807,7 +59748,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * yyv4643 = yyv4643[:yyj4643] yyc4643 = true } else if yyj4643 == 0 && yyv4643 == nil { - yyv4643 = []ResourceQuotaScope{} + yyv4643 = []LimitRange{} yyc4643 = true } } @@ -59817,15 +59758,122 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } -func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4647 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4648 := &yyv4647 - yy4648.CodecEncodeSelf(e) + yyv4647.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4648 := *v + yyh4648, yyl4648 := z.DecSliceHelperStart() + var yyc4648 bool + if yyl4648 == 0 { + if yyv4648 == nil { + yyv4648 = []ResourceQuotaScope{} + yyc4648 = true + } else if len(yyv4648) != 0 { + yyv4648 = yyv4648[:0] + yyc4648 = true + } + } else if yyl4648 > 0 { + var yyrr4648, yyrl4648 int + var yyrt4648 bool + if yyl4648 > cap(yyv4648) { + + yyrl4648, yyrt4648 = z.DecInferLen(yyl4648, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4648 { + if yyrl4648 <= cap(yyv4648) { + yyv4648 = yyv4648[:yyrl4648] + } else { + yyv4648 = make([]ResourceQuotaScope, yyrl4648) + } + } else { + yyv4648 = make([]ResourceQuotaScope, yyrl4648) + } + yyc4648 = true + yyrr4648 = len(yyv4648) + } else if yyl4648 != len(yyv4648) { + yyv4648 = yyv4648[:yyl4648] + yyc4648 = true + } + yyj4648 := 0 + for ; yyj4648 < yyrr4648; yyj4648++ { + yyh4648.ElemContainerState(yyj4648) + if r.TryDecodeAsNil() { + yyv4648[yyj4648] = "" + } else { + yyv4648[yyj4648] = ResourceQuotaScope(r.DecodeString()) + } + + } + if yyrt4648 { + for ; yyj4648 < yyl4648; yyj4648++ { + yyv4648 = append(yyv4648, "") + yyh4648.ElemContainerState(yyj4648) + if r.TryDecodeAsNil() { + yyv4648[yyj4648] = "" + } else { + yyv4648[yyj4648] = ResourceQuotaScope(r.DecodeString()) + } + + } + } + + } else { + yyj4648 := 0 + for ; !r.CheckBreak(); yyj4648++ { + + if yyj4648 >= len(yyv4648) { + yyv4648 = append(yyv4648, "") // var yyz4648 ResourceQuotaScope + yyc4648 = true + } + yyh4648.ElemContainerState(yyj4648) + if yyj4648 < len(yyv4648) { + if r.TryDecodeAsNil() { + yyv4648[yyj4648] = "" + } else { + yyv4648[yyj4648] = ResourceQuotaScope(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4648 < len(yyv4648) { + yyv4648 = yyv4648[:yyj4648] + yyc4648 = true + } else if yyj4648 == 0 && yyv4648 == nil { + yyv4648 = []ResourceQuotaScope{} + yyc4648 = true + } + } + yyh4648.End() + if yyc4648 { + *v = yyv4648 + } +} + +func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4652 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4653 := &yyv4652 + yy4653.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59835,83 +59883,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4649 := *v - yyh4649, yyl4649 := z.DecSliceHelperStart() - var yyc4649 bool - if yyl4649 == 0 { - if yyv4649 == nil { - yyv4649 = []ResourceQuota{} - yyc4649 = true - } else if len(yyv4649) != 0 { - yyv4649 = yyv4649[:0] - yyc4649 = true + yyv4654 := *v + yyh4654, yyl4654 := z.DecSliceHelperStart() + var yyc4654 bool + if yyl4654 == 0 { + if yyv4654 == nil { + yyv4654 = []ResourceQuota{} + yyc4654 = true + } else if len(yyv4654) != 0 { + yyv4654 = yyv4654[:0] + yyc4654 = true } - } else if yyl4649 > 0 { - var yyrr4649, yyrl4649 int - var yyrt4649 bool - if yyl4649 > cap(yyv4649) { + } else if yyl4654 > 0 { + var yyrr4654, yyrl4654 int + var yyrt4654 bool + if yyl4654 > cap(yyv4654) { - yyrg4649 := len(yyv4649) > 0 - yyv24649 := yyv4649 - yyrl4649, yyrt4649 = z.DecInferLen(yyl4649, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4649 { - if yyrl4649 <= cap(yyv4649) { - yyv4649 = yyv4649[:yyrl4649] + yyrg4654 := len(yyv4654) > 0 + yyv24654 := yyv4654 + yyrl4654, yyrt4654 = z.DecInferLen(yyl4654, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4654 { + if yyrl4654 <= cap(yyv4654) { + yyv4654 = yyv4654[:yyrl4654] } else { - yyv4649 = make([]ResourceQuota, yyrl4649) + yyv4654 = make([]ResourceQuota, yyrl4654) } } else { - yyv4649 = make([]ResourceQuota, yyrl4649) + yyv4654 = make([]ResourceQuota, yyrl4654) } - yyc4649 = true - yyrr4649 = len(yyv4649) - if yyrg4649 { - copy(yyv4649, yyv24649) + yyc4654 = true + yyrr4654 = len(yyv4654) + if yyrg4654 { + copy(yyv4654, yyv24654) } - } else if yyl4649 != len(yyv4649) { - yyv4649 = yyv4649[:yyl4649] - yyc4649 = true + } else if yyl4654 != len(yyv4654) { + yyv4654 = yyv4654[:yyl4654] + yyc4654 = true } - yyj4649 := 0 - for ; yyj4649 < yyrr4649; yyj4649++ { - yyh4649.ElemContainerState(yyj4649) + yyj4654 := 0 + for ; yyj4654 < yyrr4654; yyj4654++ { + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = ResourceQuota{} + yyv4654[yyj4654] = ResourceQuota{} } else { - yyv4650 := &yyv4649[yyj4649] - yyv4650.CodecDecodeSelf(d) + yyv4655 := &yyv4654[yyj4654] + yyv4655.CodecDecodeSelf(d) } } - if yyrt4649 { - for ; yyj4649 < yyl4649; yyj4649++ { - yyv4649 = append(yyv4649, ResourceQuota{}) - yyh4649.ElemContainerState(yyj4649) + if yyrt4654 { + for ; yyj4654 < yyl4654; yyj4654++ { + yyv4654 = append(yyv4654, ResourceQuota{}) + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = ResourceQuota{} + yyv4654[yyj4654] = ResourceQuota{} } else { - yyv4651 := &yyv4649[yyj4649] - yyv4651.CodecDecodeSelf(d) + yyv4656 := &yyv4654[yyj4654] + yyv4656.CodecDecodeSelf(d) } } } } else { - yyj4649 := 0 - for ; !r.CheckBreak(); yyj4649++ { + yyj4654 := 0 + for ; !r.CheckBreak(); yyj4654++ { - if yyj4649 >= len(yyv4649) { - yyv4649 = append(yyv4649, ResourceQuota{}) // var yyz4649 ResourceQuota - yyc4649 = true + if yyj4654 >= len(yyv4654) { + yyv4654 = append(yyv4654, ResourceQuota{}) // var yyz4654 ResourceQuota + yyc4654 = true } - yyh4649.ElemContainerState(yyj4649) - if yyj4649 < len(yyv4649) { + yyh4654.ElemContainerState(yyj4654) + if yyj4654 < len(yyv4654) { if r.TryDecodeAsNil() { - yyv4649[yyj4649] = ResourceQuota{} + yyv4654[yyj4654] = ResourceQuota{} } else { - yyv4652 := &yyv4649[yyj4649] - yyv4652.CodecDecodeSelf(d) + yyv4657 := &yyv4654[yyj4654] + yyv4657.CodecDecodeSelf(d) } } else { @@ -59919,17 +59967,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4649 < len(yyv4649) { - yyv4649 = yyv4649[:yyj4649] - yyc4649 = true - } else if yyj4649 == 0 && yyv4649 == nil { - yyv4649 = []ResourceQuota{} - yyc4649 = true + if yyj4654 < len(yyv4654) { + yyv4654 = yyv4654[:yyj4654] + yyc4654 = true + } else if yyj4654 == 0 && yyv4654 == nil { + yyv4654 = []ResourceQuota{} + yyc4654 = true } } - yyh4649.End() - if yyc4649 { - *v = yyv4649 + yyh4654.End() + if yyc4654 { + *v = yyv4654 } } @@ -59938,23 +59986,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4653, yyv4653 := range v { + for yyk4658, yyv4658 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4654 := z.EncBinary() - _ = yym4654 + yym4659 := z.EncBinary() + _ = yym4659 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4653)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4658)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4653 == nil { + if yyv4658 == nil { r.EncodeNil() } else { - yym4655 := z.EncBinary() - _ = yym4655 + yym4660 := z.EncBinary() + _ = yym4660 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4653)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4658)) } } } @@ -59966,80 +60014,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4656 := *v - yyl4656 := r.ReadMapStart() - yybh4656 := z.DecBasicHandle() - if yyv4656 == nil { - yyrl4656, _ := z.DecInferLen(yyl4656, yybh4656.MaxInitLen, 40) - yyv4656 = make(map[string][]uint8, yyrl4656) - *v = yyv4656 + yyv4661 := *v + yyl4661 := r.ReadMapStart() + yybh4661 := z.DecBasicHandle() + if yyv4661 == nil { + yyrl4661, _ := z.DecInferLen(yyl4661, yybh4661.MaxInitLen, 40) + yyv4661 = make(map[string][]uint8, yyrl4661) + *v = yyv4661 } - var yymk4656 string - var yymv4656 []uint8 - var yymg4656 bool - if yybh4656.MapValueReset { - yymg4656 = true + var yymk4661 string + var yymv4661 []uint8 + var yymg4661 bool + if yybh4661.MapValueReset { + yymg4661 = true } - if yyl4656 > 0 { - for yyj4656 := 0; yyj4656 < yyl4656; yyj4656++ { + if yyl4661 > 0 { + for yyj4661 := 0; yyj4661 < yyl4661; yyj4661++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4656 = "" + yymk4661 = "" } else { - yymk4656 = string(r.DecodeString()) + yymk4661 = string(r.DecodeString()) } - if yymg4656 { - yymv4656 = yyv4656[yymk4656] + if yymg4661 { + yymv4661 = yyv4661[yymk4661] } else { - yymv4656 = nil + yymv4661 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4656 = nil + yymv4661 = nil } else { - yyv4658 := &yymv4656 - yym4659 := z.DecBinary() - _ = yym4659 + yyv4663 := &yymv4661 + yym4664 := z.DecBinary() + _ = yym4664 if false { } else { - *yyv4658 = r.DecodeBytes(*(*[]byte)(yyv4658), false, false) + *yyv4663 = r.DecodeBytes(*(*[]byte)(yyv4663), false, false) } } - if yyv4656 != nil { - yyv4656[yymk4656] = yymv4656 + if yyv4661 != nil { + yyv4661[yymk4661] = yymv4661 } } - } else if yyl4656 < 0 { - for yyj4656 := 0; !r.CheckBreak(); yyj4656++ { + } else if yyl4661 < 0 { + for yyj4661 := 0; !r.CheckBreak(); yyj4661++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4656 = "" + yymk4661 = "" } else { - yymk4656 = string(r.DecodeString()) + yymk4661 = string(r.DecodeString()) } - if yymg4656 { - yymv4656 = yyv4656[yymk4656] + if yymg4661 { + yymv4661 = yyv4661[yymk4661] } else { - yymv4656 = nil + yymv4661 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4656 = nil + yymv4661 = nil } else { - yyv4661 := &yymv4656 - yym4662 := z.DecBinary() - _ = yym4662 + yyv4666 := &yymv4661 + yym4667 := z.DecBinary() + _ = yym4667 if false { } else { - *yyv4661 = r.DecodeBytes(*(*[]byte)(yyv4661), false, false) + *yyv4666 = r.DecodeBytes(*(*[]byte)(yyv4666), false, false) } } - if yyv4656 != nil { - yyv4656[yymk4656] = yymv4656 + if yyv4661 != nil { + yyv4661[yymk4661] = yymv4661 } } } // else len==0: TODO: Should we clear map entries? @@ -60051,10 +60099,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4663 := range v { + for _, yyv4668 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4664 := &yyv4663 - yy4664.CodecEncodeSelf(e) + yy4669 := &yyv4668 + yy4669.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60064,83 +60112,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4665 := *v - yyh4665, yyl4665 := z.DecSliceHelperStart() - var yyc4665 bool - if yyl4665 == 0 { - if yyv4665 == nil { - yyv4665 = []Secret{} - yyc4665 = true - } else if len(yyv4665) != 0 { - yyv4665 = yyv4665[:0] - yyc4665 = true + yyv4670 := *v + yyh4670, yyl4670 := z.DecSliceHelperStart() + var yyc4670 bool + if yyl4670 == 0 { + if yyv4670 == nil { + yyv4670 = []Secret{} + yyc4670 = true + } else if len(yyv4670) != 0 { + yyv4670 = yyv4670[:0] + yyc4670 = true } - } else if yyl4665 > 0 { - var yyrr4665, yyrl4665 int - var yyrt4665 bool - if yyl4665 > cap(yyv4665) { + } else if yyl4670 > 0 { + var yyrr4670, yyrl4670 int + var yyrt4670 bool + if yyl4670 > cap(yyv4670) { - yyrg4665 := len(yyv4665) > 0 - yyv24665 := yyv4665 - yyrl4665, yyrt4665 = z.DecInferLen(yyl4665, z.DecBasicHandle().MaxInitLen, 272) - if yyrt4665 { - if yyrl4665 <= cap(yyv4665) { - yyv4665 = yyv4665[:yyrl4665] + yyrg4670 := len(yyv4670) > 0 + yyv24670 := yyv4670 + yyrl4670, yyrt4670 = z.DecInferLen(yyl4670, z.DecBasicHandle().MaxInitLen, 272) + if yyrt4670 { + if yyrl4670 <= cap(yyv4670) { + yyv4670 = yyv4670[:yyrl4670] } else { - yyv4665 = make([]Secret, yyrl4665) + yyv4670 = make([]Secret, yyrl4670) } } else { - yyv4665 = make([]Secret, yyrl4665) + yyv4670 = make([]Secret, yyrl4670) } - yyc4665 = true - yyrr4665 = len(yyv4665) - if yyrg4665 { - copy(yyv4665, yyv24665) + yyc4670 = true + yyrr4670 = len(yyv4670) + if yyrg4670 { + copy(yyv4670, yyv24670) } - } else if yyl4665 != len(yyv4665) { - yyv4665 = yyv4665[:yyl4665] - yyc4665 = true + } else if yyl4670 != len(yyv4670) { + yyv4670 = yyv4670[:yyl4670] + yyc4670 = true } - yyj4665 := 0 - for ; yyj4665 < yyrr4665; yyj4665++ { - yyh4665.ElemContainerState(yyj4665) + yyj4670 := 0 + for ; yyj4670 < yyrr4670; yyj4670++ { + yyh4670.ElemContainerState(yyj4670) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = Secret{} + yyv4670[yyj4670] = Secret{} } else { - yyv4666 := &yyv4665[yyj4665] - yyv4666.CodecDecodeSelf(d) + yyv4671 := &yyv4670[yyj4670] + yyv4671.CodecDecodeSelf(d) } } - if yyrt4665 { - for ; yyj4665 < yyl4665; yyj4665++ { - yyv4665 = append(yyv4665, Secret{}) - yyh4665.ElemContainerState(yyj4665) + if yyrt4670 { + for ; yyj4670 < yyl4670; yyj4670++ { + yyv4670 = append(yyv4670, Secret{}) + yyh4670.ElemContainerState(yyj4670) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = Secret{} + yyv4670[yyj4670] = Secret{} } else { - yyv4667 := &yyv4665[yyj4665] - yyv4667.CodecDecodeSelf(d) + yyv4672 := &yyv4670[yyj4670] + yyv4672.CodecDecodeSelf(d) } } } } else { - yyj4665 := 0 - for ; !r.CheckBreak(); yyj4665++ { + yyj4670 := 0 + for ; !r.CheckBreak(); yyj4670++ { - if yyj4665 >= len(yyv4665) { - yyv4665 = append(yyv4665, Secret{}) // var yyz4665 Secret - yyc4665 = true + if yyj4670 >= len(yyv4670) { + yyv4670 = append(yyv4670, Secret{}) // var yyz4670 Secret + yyc4670 = true } - yyh4665.ElemContainerState(yyj4665) - if yyj4665 < len(yyv4665) { + yyh4670.ElemContainerState(yyj4670) + if yyj4670 < len(yyv4670) { if r.TryDecodeAsNil() { - yyv4665[yyj4665] = Secret{} + yyv4670[yyj4670] = Secret{} } else { - yyv4668 := &yyv4665[yyj4665] - yyv4668.CodecDecodeSelf(d) + yyv4673 := &yyv4670[yyj4670] + yyv4673.CodecDecodeSelf(d) } } else { @@ -60148,17 +60196,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4665 < len(yyv4665) { - yyv4665 = yyv4665[:yyj4665] - yyc4665 = true - } else if yyj4665 == 0 && yyv4665 == nil { - yyv4665 = []Secret{} - yyc4665 = true + if yyj4670 < len(yyv4670) { + yyv4670 = yyv4670[:yyj4670] + yyc4670 = true + } else if yyj4670 == 0 && yyv4670 == nil { + yyv4670 = []Secret{} + yyc4670 = true } } - yyh4665.End() - if yyc4665 { - *v = yyv4665 + yyh4670.End() + if yyc4670 { + *v = yyv4670 } } @@ -60167,10 +60215,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4669 := range v { + for _, yyv4674 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4670 := &yyv4669 - yy4670.CodecEncodeSelf(e) + yy4675 := &yyv4674 + yy4675.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60180,83 +60228,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4671 := *v - yyh4671, yyl4671 := z.DecSliceHelperStart() - var yyc4671 bool - if yyl4671 == 0 { - if yyv4671 == nil { - yyv4671 = []ConfigMap{} - yyc4671 = true - } else if len(yyv4671) != 0 { - yyv4671 = yyv4671[:0] - yyc4671 = true + yyv4676 := *v + yyh4676, yyl4676 := z.DecSliceHelperStart() + var yyc4676 bool + if yyl4676 == 0 { + if yyv4676 == nil { + yyv4676 = []ConfigMap{} + yyc4676 = true + } else if len(yyv4676) != 0 { + yyv4676 = yyv4676[:0] + yyc4676 = true } - } else if yyl4671 > 0 { - var yyrr4671, yyrl4671 int - var yyrt4671 bool - if yyl4671 > cap(yyv4671) { + } else if yyl4676 > 0 { + var yyrr4676, yyrl4676 int + var yyrt4676 bool + if yyl4676 > cap(yyv4676) { - yyrg4671 := len(yyv4671) > 0 - yyv24671 := yyv4671 - yyrl4671, yyrt4671 = z.DecInferLen(yyl4671, z.DecBasicHandle().MaxInitLen, 248) - if yyrt4671 { - if yyrl4671 <= cap(yyv4671) { - yyv4671 = yyv4671[:yyrl4671] + yyrg4676 := len(yyv4676) > 0 + yyv24676 := yyv4676 + yyrl4676, yyrt4676 = z.DecInferLen(yyl4676, z.DecBasicHandle().MaxInitLen, 248) + if yyrt4676 { + if yyrl4676 <= cap(yyv4676) { + yyv4676 = yyv4676[:yyrl4676] } else { - yyv4671 = make([]ConfigMap, yyrl4671) + yyv4676 = make([]ConfigMap, yyrl4676) } } else { - yyv4671 = make([]ConfigMap, yyrl4671) + yyv4676 = make([]ConfigMap, yyrl4676) } - yyc4671 = true - yyrr4671 = len(yyv4671) - if yyrg4671 { - copy(yyv4671, yyv24671) + yyc4676 = true + yyrr4676 = len(yyv4676) + if yyrg4676 { + copy(yyv4676, yyv24676) } - } else if yyl4671 != len(yyv4671) { - yyv4671 = yyv4671[:yyl4671] - yyc4671 = true + } else if yyl4676 != len(yyv4676) { + yyv4676 = yyv4676[:yyl4676] + yyc4676 = true } - yyj4671 := 0 - for ; yyj4671 < yyrr4671; yyj4671++ { - yyh4671.ElemContainerState(yyj4671) + yyj4676 := 0 + for ; yyj4676 < yyrr4676; yyj4676++ { + yyh4676.ElemContainerState(yyj4676) if r.TryDecodeAsNil() { - yyv4671[yyj4671] = ConfigMap{} + yyv4676[yyj4676] = ConfigMap{} } else { - yyv4672 := &yyv4671[yyj4671] - yyv4672.CodecDecodeSelf(d) + yyv4677 := &yyv4676[yyj4676] + yyv4677.CodecDecodeSelf(d) } } - if yyrt4671 { - for ; yyj4671 < yyl4671; yyj4671++ { - yyv4671 = append(yyv4671, ConfigMap{}) - yyh4671.ElemContainerState(yyj4671) + if yyrt4676 { + for ; yyj4676 < yyl4676; yyj4676++ { + yyv4676 = append(yyv4676, ConfigMap{}) + yyh4676.ElemContainerState(yyj4676) if r.TryDecodeAsNil() { - yyv4671[yyj4671] = ConfigMap{} + yyv4676[yyj4676] = ConfigMap{} } else { - yyv4673 := &yyv4671[yyj4671] - yyv4673.CodecDecodeSelf(d) + yyv4678 := &yyv4676[yyj4676] + yyv4678.CodecDecodeSelf(d) } } } } else { - yyj4671 := 0 - for ; !r.CheckBreak(); yyj4671++ { + yyj4676 := 0 + for ; !r.CheckBreak(); yyj4676++ { - if yyj4671 >= len(yyv4671) { - yyv4671 = append(yyv4671, ConfigMap{}) // var yyz4671 ConfigMap - yyc4671 = true + if yyj4676 >= len(yyv4676) { + yyv4676 = append(yyv4676, ConfigMap{}) // var yyz4676 ConfigMap + yyc4676 = true } - yyh4671.ElemContainerState(yyj4671) - if yyj4671 < len(yyv4671) { + yyh4676.ElemContainerState(yyj4676) + if yyj4676 < len(yyv4676) { if r.TryDecodeAsNil() { - yyv4671[yyj4671] = ConfigMap{} + yyv4676[yyj4676] = ConfigMap{} } else { - yyv4674 := &yyv4671[yyj4671] - yyv4674.CodecDecodeSelf(d) + yyv4679 := &yyv4676[yyj4676] + yyv4679.CodecDecodeSelf(d) } } else { @@ -60264,17 +60312,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4671 < len(yyv4671) { - yyv4671 = yyv4671[:yyj4671] - yyc4671 = true - } else if yyj4671 == 0 && yyv4671 == nil { - yyv4671 = []ConfigMap{} - yyc4671 = true + if yyj4676 < len(yyv4676) { + yyv4676 = yyv4676[:yyj4676] + yyc4676 = true + } else if yyj4676 == 0 && yyv4676 == nil { + yyv4676 = []ConfigMap{} + yyc4676 = true } } - yyh4671.End() - if yyc4671 { - *v = yyv4671 + yyh4676.End() + if yyc4676 { + *v = yyv4676 } } @@ -60283,10 +60331,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4675 := range v { + for _, yyv4680 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4676 := &yyv4675 - yy4676.CodecEncodeSelf(e) + yy4681 := &yyv4680 + yy4681.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60296,83 +60344,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4677 := *v - yyh4677, yyl4677 := z.DecSliceHelperStart() - var yyc4677 bool - if yyl4677 == 0 { - if yyv4677 == nil { - yyv4677 = []ComponentCondition{} - yyc4677 = true - } else if len(yyv4677) != 0 { - yyv4677 = yyv4677[:0] - yyc4677 = true + yyv4682 := *v + yyh4682, yyl4682 := z.DecSliceHelperStart() + var yyc4682 bool + if yyl4682 == 0 { + if yyv4682 == nil { + yyv4682 = []ComponentCondition{} + yyc4682 = true + } else if len(yyv4682) != 0 { + yyv4682 = yyv4682[:0] + yyc4682 = true } - } else if yyl4677 > 0 { - var yyrr4677, yyrl4677 int - var yyrt4677 bool - if yyl4677 > cap(yyv4677) { + } else if yyl4682 > 0 { + var yyrr4682, yyrl4682 int + var yyrt4682 bool + if yyl4682 > cap(yyv4682) { - yyrg4677 := len(yyv4677) > 0 - yyv24677 := yyv4677 - yyrl4677, yyrt4677 = z.DecInferLen(yyl4677, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4677 { - if yyrl4677 <= cap(yyv4677) { - yyv4677 = yyv4677[:yyrl4677] + yyrg4682 := len(yyv4682) > 0 + yyv24682 := yyv4682 + yyrl4682, yyrt4682 = z.DecInferLen(yyl4682, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4682 { + if yyrl4682 <= cap(yyv4682) { + yyv4682 = yyv4682[:yyrl4682] } else { - yyv4677 = make([]ComponentCondition, yyrl4677) + yyv4682 = make([]ComponentCondition, yyrl4682) } } else { - yyv4677 = make([]ComponentCondition, yyrl4677) + yyv4682 = make([]ComponentCondition, yyrl4682) } - yyc4677 = true - yyrr4677 = len(yyv4677) - if yyrg4677 { - copy(yyv4677, yyv24677) + yyc4682 = true + yyrr4682 = len(yyv4682) + if yyrg4682 { + copy(yyv4682, yyv24682) } - } else if yyl4677 != len(yyv4677) { - yyv4677 = yyv4677[:yyl4677] - yyc4677 = true + } else if yyl4682 != len(yyv4682) { + yyv4682 = yyv4682[:yyl4682] + yyc4682 = true } - yyj4677 := 0 - for ; yyj4677 < yyrr4677; yyj4677++ { - yyh4677.ElemContainerState(yyj4677) + yyj4682 := 0 + for ; yyj4682 < yyrr4682; yyj4682++ { + yyh4682.ElemContainerState(yyj4682) if r.TryDecodeAsNil() { - yyv4677[yyj4677] = ComponentCondition{} + yyv4682[yyj4682] = ComponentCondition{} } else { - yyv4678 := &yyv4677[yyj4677] - yyv4678.CodecDecodeSelf(d) + yyv4683 := &yyv4682[yyj4682] + yyv4683.CodecDecodeSelf(d) } } - if yyrt4677 { - for ; yyj4677 < yyl4677; yyj4677++ { - yyv4677 = append(yyv4677, ComponentCondition{}) - yyh4677.ElemContainerState(yyj4677) + if yyrt4682 { + for ; yyj4682 < yyl4682; yyj4682++ { + yyv4682 = append(yyv4682, ComponentCondition{}) + yyh4682.ElemContainerState(yyj4682) if r.TryDecodeAsNil() { - yyv4677[yyj4677] = ComponentCondition{} + yyv4682[yyj4682] = ComponentCondition{} } else { - yyv4679 := &yyv4677[yyj4677] - yyv4679.CodecDecodeSelf(d) + yyv4684 := &yyv4682[yyj4682] + yyv4684.CodecDecodeSelf(d) } } } } else { - yyj4677 := 0 - for ; !r.CheckBreak(); yyj4677++ { + yyj4682 := 0 + for ; !r.CheckBreak(); yyj4682++ { - if yyj4677 >= len(yyv4677) { - yyv4677 = append(yyv4677, ComponentCondition{}) // var yyz4677 ComponentCondition - yyc4677 = true + if yyj4682 >= len(yyv4682) { + yyv4682 = append(yyv4682, ComponentCondition{}) // var yyz4682 ComponentCondition + yyc4682 = true } - yyh4677.ElemContainerState(yyj4677) - if yyj4677 < len(yyv4677) { + yyh4682.ElemContainerState(yyj4682) + if yyj4682 < len(yyv4682) { if r.TryDecodeAsNil() { - yyv4677[yyj4677] = ComponentCondition{} + yyv4682[yyj4682] = ComponentCondition{} } else { - yyv4680 := &yyv4677[yyj4677] - yyv4680.CodecDecodeSelf(d) + yyv4685 := &yyv4682[yyj4682] + yyv4685.CodecDecodeSelf(d) } } else { @@ -60380,17 +60428,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4677 < len(yyv4677) { - yyv4677 = yyv4677[:yyj4677] - yyc4677 = true - } else if yyj4677 == 0 && yyv4677 == nil { - yyv4677 = []ComponentCondition{} - yyc4677 = true + if yyj4682 < len(yyv4682) { + yyv4682 = yyv4682[:yyj4682] + yyc4682 = true + } else if yyj4682 == 0 && yyv4682 == nil { + yyv4682 = []ComponentCondition{} + yyc4682 = true } } - yyh4677.End() - if yyc4677 { - *v = yyv4677 + yyh4682.End() + if yyc4682 { + *v = yyv4682 } } @@ -60399,10 +60447,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4681 := range v { + for _, yyv4686 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4682 := &yyv4681 - yy4682.CodecEncodeSelf(e) + yy4687 := &yyv4686 + yy4687.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60412,83 +60460,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4683 := *v - yyh4683, yyl4683 := z.DecSliceHelperStart() - var yyc4683 bool - if yyl4683 == 0 { - if yyv4683 == nil { - yyv4683 = []ComponentStatus{} - yyc4683 = true - } else if len(yyv4683) != 0 { - yyv4683 = yyv4683[:0] - yyc4683 = true + yyv4688 := *v + yyh4688, yyl4688 := z.DecSliceHelperStart() + var yyc4688 bool + if yyl4688 == 0 { + if yyv4688 == nil { + yyv4688 = []ComponentStatus{} + yyc4688 = true + } else if len(yyv4688) != 0 { + yyv4688 = yyv4688[:0] + yyc4688 = true } - } else if yyl4683 > 0 { - var yyrr4683, yyrl4683 int - var yyrt4683 bool - if yyl4683 > cap(yyv4683) { + } else if yyl4688 > 0 { + var yyrr4688, yyrl4688 int + var yyrt4688 bool + if yyl4688 > cap(yyv4688) { - yyrg4683 := len(yyv4683) > 0 - yyv24683 := yyv4683 - yyrl4683, yyrt4683 = z.DecInferLen(yyl4683, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4683 { - if yyrl4683 <= cap(yyv4683) { - yyv4683 = yyv4683[:yyrl4683] + yyrg4688 := len(yyv4688) > 0 + yyv24688 := yyv4688 + yyrl4688, yyrt4688 = z.DecInferLen(yyl4688, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4688 { + if yyrl4688 <= cap(yyv4688) { + yyv4688 = yyv4688[:yyrl4688] } else { - yyv4683 = make([]ComponentStatus, yyrl4683) + yyv4688 = make([]ComponentStatus, yyrl4688) } } else { - yyv4683 = make([]ComponentStatus, yyrl4683) + yyv4688 = make([]ComponentStatus, yyrl4688) } - yyc4683 = true - yyrr4683 = len(yyv4683) - if yyrg4683 { - copy(yyv4683, yyv24683) + yyc4688 = true + yyrr4688 = len(yyv4688) + if yyrg4688 { + copy(yyv4688, yyv24688) } - } else if yyl4683 != len(yyv4683) { - yyv4683 = yyv4683[:yyl4683] - yyc4683 = true + } else if yyl4688 != len(yyv4688) { + yyv4688 = yyv4688[:yyl4688] + yyc4688 = true } - yyj4683 := 0 - for ; yyj4683 < yyrr4683; yyj4683++ { - yyh4683.ElemContainerState(yyj4683) + yyj4688 := 0 + for ; yyj4688 < yyrr4688; yyj4688++ { + yyh4688.ElemContainerState(yyj4688) if r.TryDecodeAsNil() { - yyv4683[yyj4683] = ComponentStatus{} + yyv4688[yyj4688] = ComponentStatus{} } else { - yyv4684 := &yyv4683[yyj4683] - yyv4684.CodecDecodeSelf(d) + yyv4689 := &yyv4688[yyj4688] + yyv4689.CodecDecodeSelf(d) } } - if yyrt4683 { - for ; yyj4683 < yyl4683; yyj4683++ { - yyv4683 = append(yyv4683, ComponentStatus{}) - yyh4683.ElemContainerState(yyj4683) + if yyrt4688 { + for ; yyj4688 < yyl4688; yyj4688++ { + yyv4688 = append(yyv4688, ComponentStatus{}) + yyh4688.ElemContainerState(yyj4688) if r.TryDecodeAsNil() { - yyv4683[yyj4683] = ComponentStatus{} + yyv4688[yyj4688] = ComponentStatus{} } else { - yyv4685 := &yyv4683[yyj4683] - yyv4685.CodecDecodeSelf(d) + yyv4690 := &yyv4688[yyj4688] + yyv4690.CodecDecodeSelf(d) } } } } else { - yyj4683 := 0 - for ; !r.CheckBreak(); yyj4683++ { + yyj4688 := 0 + for ; !r.CheckBreak(); yyj4688++ { - if yyj4683 >= len(yyv4683) { - yyv4683 = append(yyv4683, ComponentStatus{}) // var yyz4683 ComponentStatus - yyc4683 = true + if yyj4688 >= len(yyv4688) { + yyv4688 = append(yyv4688, ComponentStatus{}) // var yyz4688 ComponentStatus + yyc4688 = true } - yyh4683.ElemContainerState(yyj4683) - if yyj4683 < len(yyv4683) { + yyh4688.ElemContainerState(yyj4688) + if yyj4688 < len(yyv4688) { if r.TryDecodeAsNil() { - yyv4683[yyj4683] = ComponentStatus{} + yyv4688[yyj4688] = ComponentStatus{} } else { - yyv4686 := &yyv4683[yyj4683] - yyv4686.CodecDecodeSelf(d) + yyv4691 := &yyv4688[yyj4688] + yyv4691.CodecDecodeSelf(d) } } else { @@ -60496,17 +60544,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4683 < len(yyv4683) { - yyv4683 = yyv4683[:yyj4683] - yyc4683 = true - } else if yyj4683 == 0 && yyv4683 == nil { - yyv4683 = []ComponentStatus{} - yyc4683 = true + if yyj4688 < len(yyv4688) { + yyv4688 = yyv4688[:yyj4688] + yyc4688 = true + } else if yyj4688 == 0 && yyv4688 == nil { + yyv4688 = []ComponentStatus{} + yyc4688 = true } } - yyh4683.End() - if yyc4683 { - *v = yyv4683 + yyh4688.End() + if yyc4688 { + *v = yyv4688 } } @@ -60515,10 +60563,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4687 := range v { + for _, yyv4692 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4688 := &yyv4687 - yy4688.CodecEncodeSelf(e) + yy4693 := &yyv4692 + yy4693.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60528,83 +60576,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4689 := *v - yyh4689, yyl4689 := z.DecSliceHelperStart() - var yyc4689 bool - if yyl4689 == 0 { - if yyv4689 == nil { - yyv4689 = []DownwardAPIVolumeFile{} - yyc4689 = true - } else if len(yyv4689) != 0 { - yyv4689 = yyv4689[:0] - yyc4689 = true + yyv4694 := *v + yyh4694, yyl4694 := z.DecSliceHelperStart() + var yyc4694 bool + if yyl4694 == 0 { + if yyv4694 == nil { + yyv4694 = []DownwardAPIVolumeFile{} + yyc4694 = true + } else if len(yyv4694) != 0 { + yyv4694 = yyv4694[:0] + yyc4694 = true } - } else if yyl4689 > 0 { - var yyrr4689, yyrl4689 int - var yyrt4689 bool - if yyl4689 > cap(yyv4689) { + } else if yyl4694 > 0 { + var yyrr4694, yyrl4694 int + var yyrt4694 bool + if yyl4694 > cap(yyv4694) { - yyrg4689 := len(yyv4689) > 0 - yyv24689 := yyv4689 - yyrl4689, yyrt4689 = z.DecInferLen(yyl4689, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4689 { - if yyrl4689 <= cap(yyv4689) { - yyv4689 = yyv4689[:yyrl4689] + yyrg4694 := len(yyv4694) > 0 + yyv24694 := yyv4694 + yyrl4694, yyrt4694 = z.DecInferLen(yyl4694, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4694 { + if yyrl4694 <= cap(yyv4694) { + yyv4694 = yyv4694[:yyrl4694] } else { - yyv4689 = make([]DownwardAPIVolumeFile, yyrl4689) + yyv4694 = make([]DownwardAPIVolumeFile, yyrl4694) } } else { - yyv4689 = make([]DownwardAPIVolumeFile, yyrl4689) + yyv4694 = make([]DownwardAPIVolumeFile, yyrl4694) } - yyc4689 = true - yyrr4689 = len(yyv4689) - if yyrg4689 { - copy(yyv4689, yyv24689) + yyc4694 = true + yyrr4694 = len(yyv4694) + if yyrg4694 { + copy(yyv4694, yyv24694) } - } else if yyl4689 != len(yyv4689) { - yyv4689 = yyv4689[:yyl4689] - yyc4689 = true + } else if yyl4694 != len(yyv4694) { + yyv4694 = yyv4694[:yyl4694] + yyc4694 = true } - yyj4689 := 0 - for ; yyj4689 < yyrr4689; yyj4689++ { - yyh4689.ElemContainerState(yyj4689) + yyj4694 := 0 + for ; yyj4694 < yyrr4694; yyj4694++ { + yyh4694.ElemContainerState(yyj4694) if r.TryDecodeAsNil() { - yyv4689[yyj4689] = DownwardAPIVolumeFile{} + yyv4694[yyj4694] = DownwardAPIVolumeFile{} } else { - yyv4690 := &yyv4689[yyj4689] - yyv4690.CodecDecodeSelf(d) + yyv4695 := &yyv4694[yyj4694] + yyv4695.CodecDecodeSelf(d) } } - if yyrt4689 { - for ; yyj4689 < yyl4689; yyj4689++ { - yyv4689 = append(yyv4689, DownwardAPIVolumeFile{}) - yyh4689.ElemContainerState(yyj4689) + if yyrt4694 { + for ; yyj4694 < yyl4694; yyj4694++ { + yyv4694 = append(yyv4694, DownwardAPIVolumeFile{}) + yyh4694.ElemContainerState(yyj4694) if r.TryDecodeAsNil() { - yyv4689[yyj4689] = DownwardAPIVolumeFile{} + yyv4694[yyj4694] = DownwardAPIVolumeFile{} } else { - yyv4691 := &yyv4689[yyj4689] - yyv4691.CodecDecodeSelf(d) + yyv4696 := &yyv4694[yyj4694] + yyv4696.CodecDecodeSelf(d) } } } } else { - yyj4689 := 0 - for ; !r.CheckBreak(); yyj4689++ { + yyj4694 := 0 + for ; !r.CheckBreak(); yyj4694++ { - if yyj4689 >= len(yyv4689) { - yyv4689 = append(yyv4689, DownwardAPIVolumeFile{}) // var yyz4689 DownwardAPIVolumeFile - yyc4689 = true + if yyj4694 >= len(yyv4694) { + yyv4694 = append(yyv4694, DownwardAPIVolumeFile{}) // var yyz4694 DownwardAPIVolumeFile + yyc4694 = true } - yyh4689.ElemContainerState(yyj4689) - if yyj4689 < len(yyv4689) { + yyh4694.ElemContainerState(yyj4694) + if yyj4694 < len(yyv4694) { if r.TryDecodeAsNil() { - yyv4689[yyj4689] = DownwardAPIVolumeFile{} + yyv4694[yyj4694] = DownwardAPIVolumeFile{} } else { - yyv4692 := &yyv4689[yyj4689] - yyv4692.CodecDecodeSelf(d) + yyv4697 := &yyv4694[yyj4694] + yyv4697.CodecDecodeSelf(d) } } else { @@ -60612,16 +60660,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4689 < len(yyv4689) { - yyv4689 = yyv4689[:yyj4689] - yyc4689 = true - } else if yyj4689 == 0 && yyv4689 == nil { - yyv4689 = []DownwardAPIVolumeFile{} - yyc4689 = true + if yyj4694 < len(yyv4694) { + yyv4694 = yyv4694[:yyj4694] + yyc4694 = true + } else if yyj4694 == 0 && yyv4694 == nil { + yyv4694 = []DownwardAPIVolumeFile{} + yyc4694 = true } } - yyh4689.End() - if yyc4689 { - *v = yyv4689 + yyh4694.End() + if yyc4694 { + *v = yyv4694 } } diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 064eed7f385f3..85ccc937514a8 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -2017,6 +2017,11 @@ const ( // external load balancer (if the cloud provider supports it), in addition // to 'NodePort' type. ServiceTypeLoadBalancer ServiceType = "LoadBalancer" + + // ServiceTypeExternalName means a service consists of only a reference to + // an external name that kubedns or equivalent will return as a CNAME + // record, with no exposing or proxying of any pods involved. + ServiceTypeExternalName ServiceType = "ExternalName" ) // ServiceStatus represents the current status of a service. @@ -2051,24 +2056,29 @@ type ServiceSpec struct { // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies Ports []ServicePort `json:"ports" patchStrategy:"merge" patchMergeKey:"port" protobuf:"bytes,1,rep,name=ports"` - // This service will route traffic to pods having labels matching this selector. - // Label keys and values that must match in order to receive traffic for this service. - // If not specified, endpoints must be manually specified and the system will not automatically manage them. + // Route service traffic to pods with label keys and values matching this + // selector. If empty or not present, the service is assumed to have an + // external process managing its endpoints, which Kubernetes will not + // modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + // Ignored if type is ExternalName. // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview Selector map[string]string `json:"selector,omitempty" protobuf:"bytes,2,rep,name=selector"` - // ClusterIP is usually assigned by the master and is the IP address of the service. - // If specified, it will be allocated to the service if it is unused - // or else creation of the service will fail. - // Valid values are None, empty string (""), or a valid IP address. - // 'None' can be specified for a headless service when proxying is not required. - // Cannot be updated. + // clusterIP is the IP address of the service and is usually assigned + // randomly by the master. If an address is specified manually and is not in + // use by others, it will be allocated to the service; otherwise, creation + // of the service will fail. This field can not be changed through updates. + // Valid values are "None", empty string (""), or a valid IP address. "None" + // can be specified for headless services when proxying is not required. + // Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if + // type is ExternalName. // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies ClusterIP string `json:"clusterIP,omitempty" protobuf:"bytes,3,opt,name=clusterIP"` - // Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. - // Defaults to ClusterIP. - // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services + // type determines how to expose the service. Defaults to ClusterIP and only + // applies if clusterIP != "None". Valid options are ClusterIP, NodePort, + // LoadBalancer, ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview Type ServiceType `json:"type,omitempty" protobuf:"bytes,4,opt,name=type,casttype=ServiceType"` // externalIPs is a list of IP addresses for which nodes in the cluster @@ -2107,6 +2117,11 @@ type ServiceSpec struct { // cloud-provider does not support the feature." // More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md LoadBalancerSourceRanges []string `json:"loadBalancerSourceRanges,omitempty" protobuf:"bytes,9,opt,name=loadBalancerSourceRanges"` + + // externalName is the external reference that kubedns or equivalent will + // return as a CNAME record for this service. No proxying will be involved. + // Must be a valid DNS name and requires Type to be ExternalName. + ExternalName string `json:"externalName,omitempty" protobuf:"bytes,10,opt,name=externalName"` } // ServicePort contains information on service's port. diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index d41c5865d78df..c98c55f9fc7cb 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -1646,14 +1646,15 @@ func (ServiceProxyOptions) SwaggerDoc() map[string]string { var map_ServiceSpec = map[string]string{ "": "ServiceSpec describes the attributes that a user creates on a service.", "ports": "The list of ports that are exposed by this service. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies", - "selector": "This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If not specified, endpoints must be manually specified and the system will not automatically manage them. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview", - "clusterIP": "ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (\"\"), or a valid IP address. 'None' can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies", - "type": "Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services", + "selector": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview", + "clusterIP": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies", + "type": "type determines how to expose the service. Defaults to ClusterIP and only applies if clusterIP != \"None\". Valid options are ClusterIP, NodePort, LoadBalancer, ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview", "externalIPs": "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. A previous form of this functionality exists as the deprecatedPublicIPs field. When using this field, callers should also clear the deprecatedPublicIPs field.", "deprecatedPublicIPs": "deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics. This field is retained in the v1 API for compatibility until at least 8/20/2016. It will be removed from any new API revisions. If both deprecatedPublicIPs *and* externalIPs are set, deprecatedPublicIPs is used.", "sessionAffinity": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies", "loadBalancerIP": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.", "loadBalancerSourceRanges": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md", + "externalName": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName.", } func (ServiceSpec) SwaggerDoc() map[string]string { diff --git a/pkg/api/v1/zz_generated.conversion.go b/pkg/api/v1/zz_generated.conversion.go index 5ef869d769d97..ddb861f7a80b6 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -6384,6 +6384,7 @@ func autoConvert_v1_ServiceSpec_To_api_ServiceSpec(in *ServiceSpec, out *api.Ser out.SessionAffinity = api.ServiceAffinity(in.SessionAffinity) out.LoadBalancerIP = in.LoadBalancerIP out.LoadBalancerSourceRanges = in.LoadBalancerSourceRanges + out.ExternalName = in.ExternalName return nil } @@ -6402,6 +6403,7 @@ func autoConvert_api_ServiceSpec_To_v1_ServiceSpec(in *api.ServiceSpec, out *Ser } out.Selector = in.Selector out.ClusterIP = in.ClusterIP + out.ExternalName = in.ExternalName out.ExternalIPs = in.ExternalIPs out.LoadBalancerIP = in.LoadBalancerIP out.SessionAffinity = ServiceAffinity(in.SessionAffinity) diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index 0249a75a6c76f..6c1c69d8e7dd1 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -3327,6 +3327,7 @@ func DeepCopy_v1_ServiceSpec(in interface{}, out interface{}, c *conversion.Clon } else { out.LoadBalancerSourceRanges = nil } + out.ExternalName = in.ExternalName return nil } } diff --git a/pkg/api/validation/validation.go b/pkg/api/validation/validation.go index ce206aad21552..51321d46e43c1 100644 --- a/pkg/api/validation/validation.go +++ b/pkg/api/validation/validation.go @@ -100,6 +100,15 @@ func ValidateDNS1123Label(value string, fldPath *field.Path) field.ErrorList { return allErrs } +// ValidateDNS1123Subdomain validates that a name is a proper DNS subdomain. +func ValidateDNS1123Subdomain(value string, fldPath *field.Path) field.ErrorList { + allErrs := field.ErrorList{} + for _, msg := range validation.IsDNS1123Subdomain(value) { + allErrs = append(allErrs, field.Invalid(fldPath, value, msg)) + } + return allErrs +} + func ValidatePodSpecificAnnotations(annotations map[string]string, fldPath *field.Path) field.ErrorList { allErrs := field.ErrorList{} if annotations[api.AffinityAnnotationKey] != "" { @@ -2118,17 +2127,19 @@ func ValidatePodTemplateUpdate(newPod, oldPod *api.PodTemplate) field.ErrorList var supportedSessionAffinityType = sets.NewString(string(api.ServiceAffinityClientIP), string(api.ServiceAffinityNone)) var supportedServiceType = sets.NewString(string(api.ServiceTypeClusterIP), string(api.ServiceTypeNodePort), - string(api.ServiceTypeLoadBalancer)) + string(api.ServiceTypeLoadBalancer), string(api.ServiceTypeExternalName)) // ValidateService tests if required fields in the service are set. func ValidateService(service *api.Service) field.ErrorList { allErrs := ValidateObjectMeta(&service.ObjectMeta, true, ValidateServiceName, field.NewPath("metadata")) specPath := field.NewPath("spec") - if len(service.Spec.Ports) == 0 && service.Spec.ClusterIP != api.ClusterIPNone { + isHeadlessService := service.Spec.ClusterIP == api.ClusterIPNone + if len(service.Spec.Ports) == 0 && !isHeadlessService { allErrs = append(allErrs, field.Required(specPath.Child("ports"), "")) } - if service.Spec.Type == api.ServiceTypeLoadBalancer { + switch service.Spec.Type { + case api.ServiceTypeLoadBalancer: for ix := range service.Spec.Ports { port := &service.Spec.Ports[ix] // This is a workaround for broken cloud environments that @@ -2139,9 +2150,17 @@ func ValidateService(service *api.Service) field.ErrorList { allErrs = append(allErrs, field.Invalid(portPath, port.Port, "may not expose port 10250 externally since it is used by kubelet")) } } + case api.ServiceTypeExternalName: + if !isHeadlessService { + allErrs = append(allErrs, field.Invalid(specPath.Child("clusterIP"), service.Spec.ClusterIP, "must be 'None'")) + } + if len(service.Spec.ExternalName) > 0 { + allErrs = append(allErrs, ValidateDNS1123Subdomain(service.Spec.ExternalName, specPath.Child("externalName"))...) + } else { + allErrs = append(allErrs, field.Invalid(specPath.Child("externalName"), service.Spec.ExternalName, "externalName must not be empty")) + } } - isHeadlessService := service.Spec.ClusterIP == api.ClusterIPNone allPortNames := sets.String{} portsPath := specPath.Child("ports") for i := range service.Spec.Ports { diff --git a/pkg/api/validation/validation_test.go b/pkg/api/validation/validation_test.go index 8d0b10b8131dd..fef6df9ee66da 100644 --- a/pkg/api/validation/validation_test.go +++ b/pkg/api/validation/validation_test.go @@ -4697,6 +4697,40 @@ func TestValidateService(t *testing.T) { }, numErrs: 1, }, + { + name: "valid ExternalName", + tweakSvc: func(s *api.Service) { + s.Spec.Type = api.ServiceTypeExternalName + s.Spec.ClusterIP = api.ClusterIPNone + s.Spec.ExternalName = "foo.bar.example.com" + }, + numErrs: 0, + }, + { + name: "invalid ExternalName clusterIP (valid IP)", + tweakSvc: func(s *api.Service) { + s.Spec.Type = api.ServiceTypeExternalName + s.Spec.ClusterIP = "1.2.3.4" + }, + numErrs: 1, + }, + { + name: "invalid ExternalName clusterIP (empty IP)", + tweakSvc: func(s *api.Service) { + s.Spec.Type = api.ServiceTypeExternalName + s.Spec.ClusterIP = "" + }, + numErrs: 1, + }, + { + name: "invalid ExternalName (not a DNS name)", + tweakSvc: func(s *api.Service) { + s.Spec.Type = api.ServiceTypeExternalName + s.Spec.ClusterIP = api.ClusterIPNone + s.Spec.ExternalName = "-123" + }, + numErrs: 1, + }, } for _, tc := range testCases { diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index deff0133fd524..e96669f00a720 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -3346,6 +3346,7 @@ func DeepCopy_api_ServiceSpec(in interface{}, out interface{}, c *conversion.Clo out.Selector = nil } out.ClusterIP = in.ClusterIP + out.ExternalName = in.ExternalName if in.ExternalIPs != nil { in, out := &in.ExternalIPs, &out.ExternalIPs *out = make([]string, len(*in))