From 4d20408887f7b0deb6979731bf9a6fa669bbe6df Mon Sep 17 00:00:00 2001 From: Rudi Chiarito Date: Fri, 19 Aug 2016 09:09:14 -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/helpers.go | 4 + pkg/api/types.generated.go | 21363 +++++++++---------- pkg/api/types.go | 48 +- pkg/api/v1/generated.pb.go | 839 +- pkg/api/v1/generated.proto | 44 +- pkg/api/v1/types.generated.go | 21990 ++++++++++---------- pkg/api/v1/types.go | 49 +- 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 | 36 + pkg/api/zz_generated.deepcopy.go | 1 + 15 files changed, 22356 insertions(+), 22080 deletions(-) diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 2c44724e2b34..597b35d08b5b 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -19310,15 +19310,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 the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ExternalName\" maps to the specified externalName. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview" }, "externalIPs": { "type": "array", @@ -19348,6 +19348,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 58163a8c5e1e..e6cc1e4f8132 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -8003,21 +8003,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 the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview

false

string

@@ -8057,6 +8057,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

+ + @@ -8278,7 +8285,7 @@

any

diff --git a/pkg/api/helpers.go b/pkg/api/helpers.go index 77227a8405f2..28fe81b9596c 100644 --- a/pkg/api/helpers.go +++ b/pkg/api/helpers.go @@ -222,6 +222,10 @@ func IsServiceIPSet(service *Service) bool { // this function aims to check if the service's cluster IP is requested or not func IsServiceIPRequested(service *Service) bool { + // ExternalName services are CNAME aliases to external ones. Ignore the IP. + if service.Spec.Type == ServiceTypeExternalName { + return false + } return service.Spec.ClusterIP == "" } diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index 582e6b10427f..e19f28c5d906 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -32928,20 +32928,20 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2513 := !z.EncBinary() yy2arr2513 := z.EncBasicHandle().StructToArray - var yyq2513 [8]bool + var yyq2513 [9]bool _, _, _ = yysep2513, yyq2513, yy2arr2513 const yyr2513 bool = false yyq2513[0] = x.Type != "" yyq2513[3] = x.ClusterIP != "" - yyq2513[4] = len(x.ExternalIPs) != 0 - yyq2513[5] = x.LoadBalancerIP != "" - yyq2513[6] = x.SessionAffinity != "" - yyq2513[7] = len(x.LoadBalancerSourceRanges) != 0 + yyq2513[5] = len(x.ExternalIPs) != 0 + yyq2513[6] = x.LoadBalancerIP != "" + yyq2513[7] = x.SessionAffinity != "" + yyq2513[8] = len(x.LoadBalancerSourceRanges) != 0 var yynn2513 int if yyr2513 || yy2arr2513 { - r.EncodeArrayStart(8) + r.EncodeArrayStart(9) } else { - yynn2513 = 2 + yynn2513 = 3 for _, b := range yyq2513 { if b { yynn2513++ @@ -33046,12 +33046,31 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2513[4] { + yym2525 := z.EncBinary() + _ = yym2525 + 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) + yym2526 := z.EncBinary() + _ = yym2526 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } + if yyr2513 || yy2arr2513 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2513[5] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2525 := z.EncBinary() - _ = yym2525 + yym2528 := z.EncBinary() + _ = yym2528 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -33061,15 +33080,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2513[4] { + if yyq2513[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2526 := z.EncBinary() - _ = yym2526 + yym2529 := z.EncBinary() + _ = yym2529 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -33079,9 +33098,9 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2513[5] { - yym2528 := z.EncBinary() - _ = yym2528 + if yyq2513[6] { + yym2531 := z.EncBinary() + _ = yym2531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -33090,12 +33109,12 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2513[5] { + if yyq2513[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2529 := z.EncBinary() - _ = yym2529 + yym2532 := z.EncBinary() + _ = yym2532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -33104,13 +33123,13 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2513[6] { + if yyq2513[7] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2513[6] { + if yyq2513[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -33119,12 +33138,12 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2513[7] { + if yyq2513[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2532 := z.EncBinary() - _ = yym2532 + yym2535 := z.EncBinary() + _ = yym2535 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -33134,15 +33153,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2513[7] { + if yyq2513[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2533 := z.EncBinary() - _ = yym2533 + yym2536 := z.EncBinary() + _ = yym2536 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -33163,25 +33182,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2534 := z.DecBinary() - _ = yym2534 + yym2537 := z.DecBinary() + _ = yym2537 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2535 := r.ContainerType() - if yyct2535 == codecSelferValueTypeMap1234 { - yyl2535 := r.ReadMapStart() - if yyl2535 == 0 { + yyct2538 := r.ContainerType() + if yyct2538 == codecSelferValueTypeMap1234 { + yyl2538 := r.ReadMapStart() + if yyl2538 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2535, d) + x.codecDecodeSelfFromMap(yyl2538, d) } - } else if yyct2535 == codecSelferValueTypeArray1234 { - yyl2535 := r.ReadArrayStart() - if yyl2535 == 0 { + } else if yyct2538 == codecSelferValueTypeArray1234 { + yyl2538 := r.ReadArrayStart() + if yyl2538 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2535, d) + x.codecDecodeSelfFromArray(yyl2538, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33193,12 +33212,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2536Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2536Slc - var yyhl2536 bool = l >= 0 - for yyj2536 := 0; ; yyj2536++ { - if yyhl2536 { - if yyj2536 >= l { + var yys2539Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2539Slc + var yyhl2539 bool = l >= 0 + for yyj2539 := 0; ; yyj2539++ { + if yyhl2539 { + if yyj2539 >= l { break } } else { @@ -33207,10 +33226,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2536Slc = r.DecodeBytes(yys2536Slc, true, true) - yys2536 := string(yys2536Slc) + yys2539Slc = r.DecodeBytes(yys2539Slc, true, true) + yys2539 := string(yys2539Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2536 { + switch yys2539 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -33221,24 +33240,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2538 := &x.Ports - yym2539 := z.DecBinary() - _ = yym2539 + yyv2541 := &x.Ports + yym2542 := z.DecBinary() + _ = yym2542 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2538), d) + h.decSliceServicePort((*[]ServicePort)(yyv2541), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2540 := &x.Selector - yym2541 := z.DecBinary() - _ = yym2541 + yyv2543 := &x.Selector + yym2544 := z.DecBinary() + _ = yym2544 if false { } else { - z.F.DecMapStringStringX(yyv2540, false, d) + z.F.DecMapStringStringX(yyv2543, false, d) } } case "clusterIP": @@ -33247,16 +33266,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 { - yyv2543 := &x.ExternalIPs - yym2544 := z.DecBinary() - _ = yym2544 + yyv2547 := &x.ExternalIPs + yym2548 := z.DecBinary() + _ = yym2548 if false { } else { - z.F.DecSliceStringX(yyv2543, false, d) + z.F.DecSliceStringX(yyv2547, false, d) } } case "loadBalancerIP": @@ -33275,18 +33300,18 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2547 := &x.LoadBalancerSourceRanges - yym2548 := z.DecBinary() - _ = yym2548 + yyv2551 := &x.LoadBalancerSourceRanges + yym2552 := z.DecBinary() + _ = yym2552 if false { } else { - z.F.DecSliceStringX(yyv2547, false, d) + z.F.DecSliceStringX(yyv2551, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2536) - } // end switch yys2536 - } // end for yyj2536 + z.DecStructFieldNotFound(-1, yys2539) + } // end switch yys2539 + } // end for yyj2539 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33294,16 +33319,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2549 int - var yyb2549 bool - var yyhl2549 bool = l >= 0 - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + var yyj2553 int + var yyb2553 bool + var yyhl2553 bool = l >= 0 + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33313,13 +33338,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33327,21 +33352,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2551 := &x.Ports - yym2552 := z.DecBinary() - _ = yym2552 + yyv2555 := &x.Ports + yym2556 := z.DecBinary() + _ = yym2556 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2551), d) + h.decSliceServicePort((*[]ServicePort)(yyv2555), d) } } - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33349,21 +33374,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2553 := &x.Selector - yym2554 := z.DecBinary() - _ = yym2554 + yyv2557 := &x.Selector + yym2558 := z.DecBinary() + _ = yym2558 if false { } else { - z.F.DecMapStringStringX(yyv2553, false, d) + z.F.DecMapStringStringX(yyv2557, false, d) } } - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33373,13 +33398,29 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l + } else { + yyb2553 = r.CheckBreak() + } + if yyb2553 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33387,21 +33428,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2556 := &x.ExternalIPs - yym2557 := z.DecBinary() - _ = yym2557 + yyv2561 := &x.ExternalIPs + yym2562 := z.DecBinary() + _ = yym2562 if false { } else { - z.F.DecSliceStringX(yyv2556, false, d) + z.F.DecSliceStringX(yyv2561, false, d) } } - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33411,13 +33452,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33427,13 +33468,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33441,26 +33482,26 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2560 := &x.LoadBalancerSourceRanges - yym2561 := z.DecBinary() - _ = yym2561 + yyv2565 := &x.LoadBalancerSourceRanges + yym2566 := z.DecBinary() + _ = yym2566 if false { } else { - z.F.DecSliceStringX(yyv2560, false, d) + z.F.DecSliceStringX(yyv2565, false, d) } } for { - yyj2549++ - if yyhl2549 { - yyb2549 = yyj2549 > l + yyj2553++ + if yyhl2553 { + yyb2553 = yyj2553 > l } else { - yyb2549 = r.CheckBreak() + yyb2553 = r.CheckBreak() } - if yyb2549 { + if yyb2553 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2549-1, "") + z.DecStructFieldNotFound(yyj2553-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33472,33 +33513,33 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2562 := z.EncBinary() - _ = yym2562 + yym2567 := z.EncBinary() + _ = yym2567 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2563 := !z.EncBinary() - yy2arr2563 := z.EncBasicHandle().StructToArray - var yyq2563 [5]bool - _, _, _ = yysep2563, yyq2563, yy2arr2563 - const yyr2563 bool = false - var yynn2563 int - if yyr2563 || yy2arr2563 { + yysep2568 := !z.EncBinary() + yy2arr2568 := z.EncBasicHandle().StructToArray + var yyq2568 [5]bool + _, _, _ = yysep2568, yyq2568, yy2arr2568 + const yyr2568 bool = false + var yynn2568 int + if yyr2568 || yy2arr2568 { r.EncodeArrayStart(5) } else { - yynn2563 = 5 - for _, b := range yyq2563 { + yynn2568 = 5 + for _, b := range yyq2568 { if b { - yynn2563++ + yynn2568++ } } - r.EncodeMapStart(yynn2563) - yynn2563 = 0 + r.EncodeMapStart(yynn2568) + yynn2568 = 0 } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2565 := z.EncBinary() - _ = yym2565 + yym2570 := z.EncBinary() + _ = yym2570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -33507,14 +33548,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2566 := z.EncBinary() - _ = yym2566 + yym2571 := z.EncBinary() + _ = yym2571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -33523,10 +33564,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2569 := z.EncBinary() - _ = yym2569 + yym2574 := z.EncBinary() + _ = yym2574 if false { } else { r.EncodeInt(int64(x.Port)) @@ -33535,44 +33576,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2570 := z.EncBinary() - _ = yym2570 + yym2575 := z.EncBinary() + _ = yym2575 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2572 := &x.TargetPort - yym2573 := z.EncBinary() - _ = yym2573 + yy2577 := &x.TargetPort + yym2578 := z.EncBinary() + _ = yym2578 if false { - } else if z.HasExtensions() && z.EncExt(yy2572) { - } else if !yym2573 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2572) + } else if z.HasExtensions() && z.EncExt(yy2577) { + } else if !yym2578 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2577) } else { - z.EncFallback(yy2572) + z.EncFallback(yy2577) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2574 := &x.TargetPort - yym2575 := z.EncBinary() - _ = yym2575 + yy2579 := &x.TargetPort + yym2580 := z.EncBinary() + _ = yym2580 if false { - } else if z.HasExtensions() && z.EncExt(yy2574) { - } else if !yym2575 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2574) + } else if z.HasExtensions() && z.EncExt(yy2579) { + } else if !yym2580 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2579) } else { - z.EncFallback(yy2574) + z.EncFallback(yy2579) } } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2577 := z.EncBinary() - _ = yym2577 + yym2582 := z.EncBinary() + _ = yym2582 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -33581,14 +33622,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2578 := z.EncBinary() - _ = yym2578 + yym2583 := z.EncBinary() + _ = yym2583 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33601,25 +33642,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2579 := z.DecBinary() - _ = yym2579 + yym2584 := z.DecBinary() + _ = yym2584 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2580 := r.ContainerType() - if yyct2580 == codecSelferValueTypeMap1234 { - yyl2580 := r.ReadMapStart() - if yyl2580 == 0 { + yyct2585 := r.ContainerType() + if yyct2585 == codecSelferValueTypeMap1234 { + yyl2585 := r.ReadMapStart() + if yyl2585 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2580, d) + x.codecDecodeSelfFromMap(yyl2585, d) } - } else if yyct2580 == codecSelferValueTypeArray1234 { - yyl2580 := r.ReadArrayStart() - if yyl2580 == 0 { + } else if yyct2585 == codecSelferValueTypeArray1234 { + yyl2585 := r.ReadArrayStart() + if yyl2585 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2580, d) + x.codecDecodeSelfFromArray(yyl2585, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33631,12 +33672,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2581Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2581Slc - var yyhl2581 bool = l >= 0 - for yyj2581 := 0; ; yyj2581++ { - if yyhl2581 { - if yyj2581 >= l { + var yys2586Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2586Slc + var yyhl2586 bool = l >= 0 + for yyj2586 := 0; ; yyj2586++ { + if yyhl2586 { + if yyj2586 >= l { break } } else { @@ -33645,10 +33686,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2581Slc = r.DecodeBytes(yys2581Slc, true, true) - yys2581 := string(yys2581Slc) + yys2586Slc = r.DecodeBytes(yys2586Slc, true, true) + yys2586 := string(yys2586Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2581 { + switch yys2586 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -33671,15 +33712,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2585 := &x.TargetPort - yym2586 := z.DecBinary() - _ = yym2586 + yyv2590 := &x.TargetPort + yym2591 := z.DecBinary() + _ = yym2591 if false { - } else if z.HasExtensions() && z.DecExt(yyv2585) { - } else if !yym2586 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2585) + } else if z.HasExtensions() && z.DecExt(yyv2590) { + } else if !yym2591 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2590) } else { - z.DecFallback(yyv2585, false) + z.DecFallback(yyv2590, false) } } case "nodePort": @@ -33689,9 +33730,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2581) - } // end switch yys2581 - } // end for yyj2581 + z.DecStructFieldNotFound(-1, yys2586) + } // end switch yys2586 + } // end for yyj2586 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33699,16 +33740,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2588 int - var yyb2588 bool - var yyhl2588 bool = l >= 0 - yyj2588++ - if yyhl2588 { - yyb2588 = yyj2588 > l + var yyj2593 int + var yyb2593 bool + var yyhl2593 bool = l >= 0 + yyj2593++ + if yyhl2593 { + yyb2593 = yyj2593 > l } else { - yyb2588 = r.CheckBreak() + yyb2593 = r.CheckBreak() } - if yyb2588 { + if yyb2593 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33718,13 +33759,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2588++ - if yyhl2588 { - yyb2588 = yyj2588 > l + yyj2593++ + if yyhl2593 { + yyb2593 = yyj2593 > l } else { - yyb2588 = r.CheckBreak() + yyb2593 = r.CheckBreak() } - if yyb2588 { + if yyb2593 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33734,13 +33775,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2588++ - if yyhl2588 { - yyb2588 = yyj2588 > l + yyj2593++ + if yyhl2593 { + yyb2593 = yyj2593 > l } else { - yyb2588 = r.CheckBreak() + yyb2593 = r.CheckBreak() } - if yyb2588 { + if yyb2593 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33750,13 +33791,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2588++ - if yyhl2588 { - yyb2588 = yyj2588 > l + yyj2593++ + if yyhl2593 { + yyb2593 = yyj2593 > l } else { - yyb2588 = r.CheckBreak() + yyb2593 = r.CheckBreak() } - if yyb2588 { + if yyb2593 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33764,24 +33805,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2592 := &x.TargetPort - yym2593 := z.DecBinary() - _ = yym2593 + yyv2597 := &x.TargetPort + yym2598 := z.DecBinary() + _ = yym2598 if false { - } else if z.HasExtensions() && z.DecExt(yyv2592) { - } else if !yym2593 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2592) + } else if z.HasExtensions() && z.DecExt(yyv2597) { + } else if !yym2598 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2597) } else { - z.DecFallback(yyv2592, false) + z.DecFallback(yyv2597, false) } } - yyj2588++ - if yyhl2588 { - yyb2588 = yyj2588 > l + yyj2593++ + if yyhl2593 { + yyb2593 = yyj2593 > l } else { - yyb2588 = r.CheckBreak() + yyb2593 = r.CheckBreak() } - if yyb2588 { + if yyb2593 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33792,17 +33833,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2588++ - if yyhl2588 { - yyb2588 = yyj2588 > l + yyj2593++ + if yyhl2593 { + yyb2593 = yyj2593 > l } else { - yyb2588 = r.CheckBreak() + yyb2593 = r.CheckBreak() } - if yyb2588 { + if yyb2593 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2588-1, "") + z.DecStructFieldNotFound(yyj2593-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33814,39 +33855,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2595 := z.EncBinary() - _ = yym2595 + yym2600 := z.EncBinary() + _ = yym2600 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2596 := !z.EncBinary() - yy2arr2596 := z.EncBasicHandle().StructToArray - var yyq2596 [5]bool - _, _, _ = yysep2596, yyq2596, yy2arr2596 - const yyr2596 bool = false - yyq2596[0] = x.Kind != "" - yyq2596[1] = x.APIVersion != "" - yyq2596[2] = true - yyq2596[3] = true - yyq2596[4] = true - var yynn2596 int - if yyr2596 || yy2arr2596 { + yysep2601 := !z.EncBinary() + yy2arr2601 := z.EncBasicHandle().StructToArray + var yyq2601 [5]bool + _, _, _ = yysep2601, yyq2601, yy2arr2601 + const yyr2601 bool = false + yyq2601[0] = x.Kind != "" + yyq2601[1] = x.APIVersion != "" + yyq2601[2] = true + yyq2601[3] = true + yyq2601[4] = true + var yynn2601 int + if yyr2601 || yy2arr2601 { r.EncodeArrayStart(5) } else { - yynn2596 = 0 - for _, b := range yyq2596 { + yynn2601 = 0 + for _, b := range yyq2601 { if b { - yynn2596++ + yynn2601++ } } - r.EncodeMapStart(yynn2596) - yynn2596 = 0 + r.EncodeMapStart(yynn2601) + yynn2601 = 0 } - if yyr2596 || yy2arr2596 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[0] { - yym2598 := z.EncBinary() - _ = yym2598 + if yyq2601[0] { + yym2603 := z.EncBinary() + _ = yym2603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33855,23 +33896,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2596[0] { + if yyq2601[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2599 := z.EncBinary() - _ = yym2599 + yym2604 := z.EncBinary() + _ = yym2604 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2596 || yy2arr2596 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[1] { - yym2601 := z.EncBinary() - _ = yym2601 + if yyq2601[1] { + yym2606 := z.EncBinary() + _ = yym2606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33880,70 +33921,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2596[1] { + if yyq2601[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2602 := z.EncBinary() - _ = yym2602 + yym2607 := z.EncBinary() + _ = yym2607 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2596 || yy2arr2596 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[2] { - yy2604 := &x.ObjectMeta - yy2604.CodecEncodeSelf(e) + if yyq2601[2] { + yy2609 := &x.ObjectMeta + yy2609.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2596[2] { + if yyq2601[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2605 := &x.ObjectMeta - yy2605.CodecEncodeSelf(e) + yy2610 := &x.ObjectMeta + yy2610.CodecEncodeSelf(e) } } - if yyr2596 || yy2arr2596 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[3] { - yy2607 := &x.Spec - yy2607.CodecEncodeSelf(e) + if yyq2601[3] { + yy2612 := &x.Spec + yy2612.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2596[3] { + if yyq2601[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2608 := &x.Spec - yy2608.CodecEncodeSelf(e) + yy2613 := &x.Spec + yy2613.CodecEncodeSelf(e) } } - if yyr2596 || yy2arr2596 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[4] { - yy2610 := &x.Status - yy2610.CodecEncodeSelf(e) + if yyq2601[4] { + yy2615 := &x.Status + yy2615.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2596[4] { + if yyq2601[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2611 := &x.Status - yy2611.CodecEncodeSelf(e) + yy2616 := &x.Status + yy2616.CodecEncodeSelf(e) } } - if yyr2596 || yy2arr2596 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33956,25 +33997,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2612 := z.DecBinary() - _ = yym2612 + yym2617 := z.DecBinary() + _ = yym2617 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2613 := r.ContainerType() - if yyct2613 == codecSelferValueTypeMap1234 { - yyl2613 := r.ReadMapStart() - if yyl2613 == 0 { + yyct2618 := r.ContainerType() + if yyct2618 == codecSelferValueTypeMap1234 { + yyl2618 := r.ReadMapStart() + if yyl2618 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2613, d) + x.codecDecodeSelfFromMap(yyl2618, d) } - } else if yyct2613 == codecSelferValueTypeArray1234 { - yyl2613 := r.ReadArrayStart() - if yyl2613 == 0 { + } else if yyct2618 == codecSelferValueTypeArray1234 { + yyl2618 := r.ReadArrayStart() + if yyl2618 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2613, d) + x.codecDecodeSelfFromArray(yyl2618, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33986,12 +34027,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2614Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2614Slc - var yyhl2614 bool = l >= 0 - for yyj2614 := 0; ; yyj2614++ { - if yyhl2614 { - if yyj2614 >= l { + var yys2619Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2619Slc + var yyhl2619 bool = l >= 0 + for yyj2619 := 0; ; yyj2619++ { + if yyhl2619 { + if yyj2619 >= l { break } } else { @@ -34000,10 +34041,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2614Slc = r.DecodeBytes(yys2614Slc, true, true) - yys2614 := string(yys2614Slc) + yys2619Slc = r.DecodeBytes(yys2619Slc, true, true) + yys2619 := string(yys2619Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2614 { + switch yys2619 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34020,27 +34061,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2617 := &x.ObjectMeta - yyv2617.CodecDecodeSelf(d) + yyv2622 := &x.ObjectMeta + yyv2622.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2618 := &x.Spec - yyv2618.CodecDecodeSelf(d) + yyv2623 := &x.Spec + yyv2623.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2619 := &x.Status - yyv2619.CodecDecodeSelf(d) + yyv2624 := &x.Status + yyv2624.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2614) - } // end switch yys2614 - } // end for yyj2614 + z.DecStructFieldNotFound(-1, yys2619) + } // end switch yys2619 + } // end for yyj2619 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34048,16 +34089,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2620 int - var yyb2620 bool - var yyhl2620 bool = l >= 0 - yyj2620++ - if yyhl2620 { - yyb2620 = yyj2620 > l + var yyj2625 int + var yyb2625 bool + var yyhl2625 bool = l >= 0 + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2620 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2620 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34067,13 +34108,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2620++ - if yyhl2620 { - yyb2620 = yyj2620 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2620 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2620 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34083,13 +34124,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2620++ - if yyhl2620 { - yyb2620 = yyj2620 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2620 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2620 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34097,16 +34138,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2623 := &x.ObjectMeta - yyv2623.CodecDecodeSelf(d) + yyv2628 := &x.ObjectMeta + yyv2628.CodecDecodeSelf(d) } - yyj2620++ - if yyhl2620 { - yyb2620 = yyj2620 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2620 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2620 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34114,16 +34155,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2624 := &x.Spec - yyv2624.CodecDecodeSelf(d) + yyv2629 := &x.Spec + yyv2629.CodecDecodeSelf(d) } - yyj2620++ - if yyhl2620 { - yyb2620 = yyj2620 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2620 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2620 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34131,21 +34172,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2625 := &x.Status - yyv2625.CodecDecodeSelf(d) + yyv2630 := &x.Status + yyv2630.CodecDecodeSelf(d) } for { - yyj2620++ - if yyhl2620 { - yyb2620 = yyj2620 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2620 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2620 { + if yyb2625 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2620-1, "") + z.DecStructFieldNotFound(yyj2625-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34157,38 +34198,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2626 := z.EncBinary() - _ = yym2626 + yym2631 := z.EncBinary() + _ = yym2631 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2627 := !z.EncBinary() - yy2arr2627 := z.EncBasicHandle().StructToArray - var yyq2627 [5]bool - _, _, _ = yysep2627, yyq2627, yy2arr2627 - const yyr2627 bool = false - yyq2627[0] = x.Kind != "" - yyq2627[1] = x.APIVersion != "" - yyq2627[2] = true - yyq2627[4] = len(x.ImagePullSecrets) != 0 - var yynn2627 int - if yyr2627 || yy2arr2627 { + yysep2632 := !z.EncBinary() + yy2arr2632 := z.EncBasicHandle().StructToArray + var yyq2632 [5]bool + _, _, _ = yysep2632, yyq2632, yy2arr2632 + const yyr2632 bool = false + yyq2632[0] = x.Kind != "" + yyq2632[1] = x.APIVersion != "" + yyq2632[2] = true + yyq2632[4] = len(x.ImagePullSecrets) != 0 + var yynn2632 int + if yyr2632 || yy2arr2632 { r.EncodeArrayStart(5) } else { - yynn2627 = 1 - for _, b := range yyq2627 { + yynn2632 = 1 + for _, b := range yyq2632 { if b { - yynn2627++ + yynn2632++ } } - r.EncodeMapStart(yynn2627) - yynn2627 = 0 + r.EncodeMapStart(yynn2632) + yynn2632 = 0 } - if yyr2627 || yy2arr2627 { + if yyr2632 || yy2arr2632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2627[0] { - yym2629 := z.EncBinary() - _ = yym2629 + if yyq2632[0] { + yym2634 := z.EncBinary() + _ = yym2634 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34197,23 +34238,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2627[0] { + if yyq2632[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2630 := z.EncBinary() - _ = yym2630 + yym2635 := z.EncBinary() + _ = yym2635 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2627 || yy2arr2627 { + if yyr2632 || yy2arr2632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2627[1] { - yym2632 := z.EncBinary() - _ = yym2632 + if yyq2632[1] { + yym2637 := z.EncBinary() + _ = yym2637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34222,42 +34263,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2627[1] { + if yyq2632[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2633 := z.EncBinary() - _ = yym2633 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2627 || yy2arr2627 { + if yyr2632 || yy2arr2632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2627[2] { - yy2635 := &x.ObjectMeta - yy2635.CodecEncodeSelf(e) + if yyq2632[2] { + yy2640 := &x.ObjectMeta + yy2640.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2627[2] { + if yyq2632[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2636 := &x.ObjectMeta - yy2636.CodecEncodeSelf(e) + yy2641 := &x.ObjectMeta + yy2641.CodecEncodeSelf(e) } } - if yyr2627 || yy2arr2627 { + if yyr2632 || yy2arr2632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2638 := z.EncBinary() - _ = yym2638 + yym2643 := z.EncBinary() + _ = yym2643 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -34270,22 +34311,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2639 := z.EncBinary() - _ = yym2639 + yym2644 := z.EncBinary() + _ = yym2644 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2627 || yy2arr2627 { + if yyr2632 || yy2arr2632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2627[4] { + if yyq2632[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2641 := z.EncBinary() - _ = yym2641 + yym2646 := z.EncBinary() + _ = yym2646 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -34295,15 +34336,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2627[4] { + if yyq2632[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2642 := z.EncBinary() - _ = yym2642 + yym2647 := z.EncBinary() + _ = yym2647 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -34311,7 +34352,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2627 || yy2arr2627 { + if yyr2632 || yy2arr2632 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34324,25 +34365,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2643 := z.DecBinary() - _ = yym2643 + yym2648 := z.DecBinary() + _ = yym2648 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2644 := r.ContainerType() - if yyct2644 == codecSelferValueTypeMap1234 { - yyl2644 := r.ReadMapStart() - if yyl2644 == 0 { + yyct2649 := r.ContainerType() + if yyct2649 == codecSelferValueTypeMap1234 { + yyl2649 := r.ReadMapStart() + if yyl2649 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2644, d) + x.codecDecodeSelfFromMap(yyl2649, d) } - } else if yyct2644 == codecSelferValueTypeArray1234 { - yyl2644 := r.ReadArrayStart() - if yyl2644 == 0 { + } else if yyct2649 == codecSelferValueTypeArray1234 { + yyl2649 := r.ReadArrayStart() + if yyl2649 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2644, d) + x.codecDecodeSelfFromArray(yyl2649, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34354,12 +34395,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2645Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2645Slc - var yyhl2645 bool = l >= 0 - for yyj2645 := 0; ; yyj2645++ { - if yyhl2645 { - if yyj2645 >= l { + var yys2650Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2650Slc + var yyhl2650 bool = l >= 0 + for yyj2650 := 0; ; yyj2650++ { + if yyhl2650 { + if yyj2650 >= l { break } } else { @@ -34368,10 +34409,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2645Slc = r.DecodeBytes(yys2645Slc, true, true) - yys2645 := string(yys2645Slc) + yys2650Slc = r.DecodeBytes(yys2650Slc, true, true) + yys2650 := string(yys2650Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2645 { + switch yys2650 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34388,37 +34429,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2648 := &x.ObjectMeta - yyv2648.CodecDecodeSelf(d) + yyv2653 := &x.ObjectMeta + yyv2653.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2649 := &x.Secrets - yym2650 := z.DecBinary() - _ = yym2650 + yyv2654 := &x.Secrets + yym2655 := z.DecBinary() + _ = yym2655 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2649), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2654), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2651 := &x.ImagePullSecrets - yym2652 := z.DecBinary() - _ = yym2652 + yyv2656 := &x.ImagePullSecrets + yym2657 := z.DecBinary() + _ = yym2657 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2651), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2656), d) } } default: - z.DecStructFieldNotFound(-1, yys2645) - } // end switch yys2645 - } // end for yyj2645 + z.DecStructFieldNotFound(-1, yys2650) + } // end switch yys2650 + } // end for yyj2650 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34426,16 +34467,16 @@ func (x *ServiceAccount) 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 } @@ -34445,13 +34486,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - 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 } @@ -34461,13 +34502,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - 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 } @@ -34475,16 +34516,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2656 := &x.ObjectMeta - yyv2656.CodecDecodeSelf(d) + yyv2661 := &x.ObjectMeta + yyv2661.CodecDecodeSelf(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 } @@ -34492,21 +34533,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2657 := &x.Secrets - yym2658 := z.DecBinary() - _ = yym2658 + yyv2662 := &x.Secrets + yym2663 := z.DecBinary() + _ = yym2663 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2657), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2662), 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 } @@ -34514,26 +34555,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2659 := &x.ImagePullSecrets - yym2660 := z.DecBinary() - _ = yym2660 + yyv2664 := &x.ImagePullSecrets + yym2665 := z.DecBinary() + _ = yym2665 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2659), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2664), 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) } @@ -34545,37 +34586,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2661 := z.EncBinary() - _ = yym2661 + yym2666 := z.EncBinary() + _ = yym2666 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2662 := !z.EncBinary() - yy2arr2662 := z.EncBasicHandle().StructToArray - var yyq2662 [4]bool - _, _, _ = yysep2662, yyq2662, yy2arr2662 - const yyr2662 bool = false - yyq2662[0] = x.Kind != "" - yyq2662[1] = x.APIVersion != "" - yyq2662[2] = true - var yynn2662 int - if yyr2662 || yy2arr2662 { + yysep2667 := !z.EncBinary() + yy2arr2667 := z.EncBasicHandle().StructToArray + var yyq2667 [4]bool + _, _, _ = yysep2667, yyq2667, yy2arr2667 + const yyr2667 bool = false + yyq2667[0] = x.Kind != "" + yyq2667[1] = x.APIVersion != "" + yyq2667[2] = true + var yynn2667 int + if yyr2667 || yy2arr2667 { r.EncodeArrayStart(4) } else { - yynn2662 = 1 - for _, b := range yyq2662 { + yynn2667 = 1 + for _, b := range yyq2667 { if b { - yynn2662++ + yynn2667++ } } - r.EncodeMapStart(yynn2662) - yynn2662 = 0 + r.EncodeMapStart(yynn2667) + yynn2667 = 0 } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2662[0] { - yym2664 := z.EncBinary() - _ = yym2664 + if yyq2667[0] { + yym2669 := z.EncBinary() + _ = yym2669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34584,23 +34625,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2662[0] { + if yyq2667[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2665 := z.EncBinary() - _ = yym2665 + yym2670 := z.EncBinary() + _ = yym2670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2662[1] { - yym2667 := z.EncBinary() - _ = yym2667 + if yyq2667[1] { + yym2672 := z.EncBinary() + _ = yym2672 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34609,54 +34650,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2662[1] { + if yyq2667[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2668 := z.EncBinary() - _ = yym2668 + yym2673 := z.EncBinary() + _ = yym2673 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2662[2] { - yy2670 := &x.ListMeta - yym2671 := z.EncBinary() - _ = yym2671 + if yyq2667[2] { + yy2675 := &x.ListMeta + yym2676 := z.EncBinary() + _ = yym2676 if false { - } else if z.HasExtensions() && z.EncExt(yy2670) { + } else if z.HasExtensions() && z.EncExt(yy2675) { } else { - z.EncFallback(yy2670) + z.EncFallback(yy2675) } } else { r.EncodeNil() } } else { - if yyq2662[2] { + if yyq2667[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2672 := &x.ListMeta - yym2673 := z.EncBinary() - _ = yym2673 + yy2677 := &x.ListMeta + yym2678 := z.EncBinary() + _ = yym2678 if false { - } else if z.HasExtensions() && z.EncExt(yy2672) { + } else if z.HasExtensions() && z.EncExt(yy2677) { } else { - z.EncFallback(yy2672) + z.EncFallback(yy2677) } } } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2675 := z.EncBinary() - _ = yym2675 + yym2680 := z.EncBinary() + _ = yym2680 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -34669,15 +34710,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2676 := z.EncBinary() - _ = yym2676 + yym2681 := z.EncBinary() + _ = yym2681 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34690,25 +34731,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2677 := z.DecBinary() - _ = yym2677 + yym2682 := z.DecBinary() + _ = yym2682 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2678 := r.ContainerType() - if yyct2678 == codecSelferValueTypeMap1234 { - yyl2678 := r.ReadMapStart() - if yyl2678 == 0 { + yyct2683 := r.ContainerType() + if yyct2683 == codecSelferValueTypeMap1234 { + yyl2683 := r.ReadMapStart() + if yyl2683 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2678, d) + x.codecDecodeSelfFromMap(yyl2683, d) } - } else if yyct2678 == codecSelferValueTypeArray1234 { - yyl2678 := r.ReadArrayStart() - if yyl2678 == 0 { + } else if yyct2683 == codecSelferValueTypeArray1234 { + yyl2683 := r.ReadArrayStart() + if yyl2683 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2678, d) + x.codecDecodeSelfFromArray(yyl2683, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34720,12 +34761,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2679Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2679Slc - var yyhl2679 bool = l >= 0 - for yyj2679 := 0; ; yyj2679++ { - if yyhl2679 { - if yyj2679 >= l { + var yys2684Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2684Slc + var yyhl2684 bool = l >= 0 + for yyj2684 := 0; ; yyj2684++ { + if yyhl2684 { + if yyj2684 >= l { break } } else { @@ -34734,10 +34775,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2679Slc = r.DecodeBytes(yys2679Slc, true, true) - yys2679 := string(yys2679Slc) + yys2684Slc = r.DecodeBytes(yys2684Slc, true, true) + yys2684 := string(yys2684Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2679 { + switch yys2684 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34754,31 +34795,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2682 := &x.ListMeta - yym2683 := z.DecBinary() - _ = yym2683 + yyv2687 := &x.ListMeta + yym2688 := z.DecBinary() + _ = yym2688 if false { - } else if z.HasExtensions() && z.DecExt(yyv2682) { + } else if z.HasExtensions() && z.DecExt(yyv2687) { } else { - z.DecFallback(yyv2682, false) + z.DecFallback(yyv2687, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2684 := &x.Items - yym2685 := z.DecBinary() - _ = yym2685 + yyv2689 := &x.Items + yym2690 := z.DecBinary() + _ = yym2690 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2684), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2689), d) } } default: - z.DecStructFieldNotFound(-1, yys2679) - } // end switch yys2679 - } // end for yyj2679 + z.DecStructFieldNotFound(-1, yys2684) + } // end switch yys2684 + } // end for yyj2684 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34786,16 +34827,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2686 int - var yyb2686 bool - var yyhl2686 bool = l >= 0 - yyj2686++ - if yyhl2686 { - yyb2686 = yyj2686 > l + var yyj2691 int + var yyb2691 bool + var yyhl2691 bool = l >= 0 + yyj2691++ + if yyhl2691 { + yyb2691 = yyj2691 > l } else { - yyb2686 = r.CheckBreak() + yyb2691 = r.CheckBreak() } - if yyb2686 { + if yyb2691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34805,13 +34846,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2686++ - if yyhl2686 { - yyb2686 = yyj2686 > l + yyj2691++ + if yyhl2691 { + yyb2691 = yyj2691 > l } else { - yyb2686 = r.CheckBreak() + yyb2691 = r.CheckBreak() } - if yyb2686 { + if yyb2691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34821,13 +34862,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2686++ - if yyhl2686 { - yyb2686 = yyj2686 > l + yyj2691++ + if yyhl2691 { + yyb2691 = yyj2691 > l } else { - yyb2686 = r.CheckBreak() + yyb2691 = r.CheckBreak() } - if yyb2686 { + if yyb2691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34835,22 +34876,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2689 := &x.ListMeta - yym2690 := z.DecBinary() - _ = yym2690 + yyv2694 := &x.ListMeta + yym2695 := z.DecBinary() + _ = yym2695 if false { - } else if z.HasExtensions() && z.DecExt(yyv2689) { + } else if z.HasExtensions() && z.DecExt(yyv2694) { } else { - z.DecFallback(yyv2689, false) + z.DecFallback(yyv2694, false) } } - yyj2686++ - if yyhl2686 { - yyb2686 = yyj2686 > l + yyj2691++ + if yyhl2691 { + yyb2691 = yyj2691 > l } else { - yyb2686 = r.CheckBreak() + yyb2691 = r.CheckBreak() } - if yyb2686 { + if yyb2691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34858,26 +34899,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2691 := &x.Items - yym2692 := z.DecBinary() - _ = yym2692 + yyv2696 := &x.Items + yym2697 := z.DecBinary() + _ = yym2697 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2691), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2696), d) } } for { - yyj2686++ - if yyhl2686 { - yyb2686 = yyj2686 > l + yyj2691++ + if yyhl2691 { + yyb2691 = yyj2691 > l } else { - yyb2686 = r.CheckBreak() + yyb2691 = r.CheckBreak() } - if yyb2686 { + if yyb2691 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2686-1, "") + z.DecStructFieldNotFound(yyj2691-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34889,37 +34930,37 @@ func (x *Endpoints) 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)) @@ -34928,23 +34969,23 @@ func (x *Endpoints) 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)) @@ -34953,42 +34994,42 @@ func (x *Endpoints) 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.ObjectMeta - yy2702.CodecEncodeSelf(e) + if yyq2699[2] { + yy2707 := &x.ObjectMeta + yy2707.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2694[2] { + if yyq2699[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2703 := &x.ObjectMeta - yy2703.CodecEncodeSelf(e) + yy2708 := &x.ObjectMeta + yy2708.CodecEncodeSelf(e) } } - if yyr2694 || yy2arr2694 { + if yyr2699 || yy2arr2699 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2705 := z.EncBinary() - _ = yym2705 + yym2710 := z.EncBinary() + _ = yym2710 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -35001,15 +35042,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2706 := z.EncBinary() - _ = yym2706 + yym2711 := z.EncBinary() + _ = yym2711 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2694 || yy2arr2694 { + if yyr2699 || yy2arr2699 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35022,25 +35063,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2707 := z.DecBinary() - _ = yym2707 + yym2712 := z.DecBinary() + _ = yym2712 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2708 := r.ContainerType() - if yyct2708 == codecSelferValueTypeMap1234 { - yyl2708 := r.ReadMapStart() - if yyl2708 == 0 { + yyct2713 := r.ContainerType() + if yyct2713 == codecSelferValueTypeMap1234 { + yyl2713 := r.ReadMapStart() + if yyl2713 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2708, d) + x.codecDecodeSelfFromMap(yyl2713, d) } - } else if yyct2708 == codecSelferValueTypeArray1234 { - yyl2708 := r.ReadArrayStart() - if yyl2708 == 0 { + } else if yyct2713 == codecSelferValueTypeArray1234 { + yyl2713 := r.ReadArrayStart() + if yyl2713 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2708, d) + x.codecDecodeSelfFromArray(yyl2713, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35052,12 +35093,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2709Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2709Slc - var yyhl2709 bool = l >= 0 - for yyj2709 := 0; ; yyj2709++ { - if yyhl2709 { - if yyj2709 >= l { + var yys2714Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2714Slc + var yyhl2714 bool = l >= 0 + for yyj2714 := 0; ; yyj2714++ { + if yyhl2714 { + if yyj2714 >= l { break } } else { @@ -35066,10 +35107,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2709Slc = r.DecodeBytes(yys2709Slc, true, true) - yys2709 := string(yys2709Slc) + yys2714Slc = r.DecodeBytes(yys2714Slc, true, true) + yys2714 := string(yys2714Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2709 { + switch yys2714 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35086,25 +35127,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2712 := &x.ObjectMeta - yyv2712.CodecDecodeSelf(d) + yyv2717 := &x.ObjectMeta + yyv2717.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2713 := &x.Subsets - yym2714 := z.DecBinary() - _ = yym2714 + yyv2718 := &x.Subsets + yym2719 := z.DecBinary() + _ = yym2719 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2713), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2718), d) } } default: - z.DecStructFieldNotFound(-1, yys2709) - } // end switch yys2709 - } // end for yyj2709 + z.DecStructFieldNotFound(-1, yys2714) + } // end switch yys2714 + } // end for yyj2714 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35112,16 +35153,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2715 int - var yyb2715 bool - var yyhl2715 bool = l >= 0 - yyj2715++ - if yyhl2715 { - yyb2715 = yyj2715 > l + var yyj2720 int + var yyb2720 bool + var yyhl2720 bool = l >= 0 + yyj2720++ + if yyhl2720 { + yyb2720 = yyj2720 > l } else { - yyb2715 = r.CheckBreak() + yyb2720 = r.CheckBreak() } - if yyb2715 { + if yyb2720 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35131,13 +35172,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2715++ - if yyhl2715 { - yyb2715 = yyj2715 > l + yyj2720++ + if yyhl2720 { + yyb2720 = yyj2720 > l } else { - yyb2715 = r.CheckBreak() + yyb2720 = r.CheckBreak() } - if yyb2715 { + if yyb2720 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35147,13 +35188,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2715++ - if yyhl2715 { - yyb2715 = yyj2715 > l + yyj2720++ + if yyhl2720 { + yyb2720 = yyj2720 > l } else { - yyb2715 = r.CheckBreak() + yyb2720 = r.CheckBreak() } - if yyb2715 { + if yyb2720 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35161,16 +35202,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2718 := &x.ObjectMeta - yyv2718.CodecDecodeSelf(d) + yyv2723 := &x.ObjectMeta + yyv2723.CodecDecodeSelf(d) } - yyj2715++ - if yyhl2715 { - yyb2715 = yyj2715 > l + yyj2720++ + if yyhl2720 { + yyb2720 = yyj2720 > l } else { - yyb2715 = r.CheckBreak() + yyb2720 = r.CheckBreak() } - if yyb2715 { + if yyb2720 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35178,26 +35219,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2719 := &x.Subsets - yym2720 := z.DecBinary() - _ = yym2720 + yyv2724 := &x.Subsets + yym2725 := z.DecBinary() + _ = yym2725 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2719), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2724), d) } } for { - yyj2715++ - if yyhl2715 { - yyb2715 = yyj2715 > l + yyj2720++ + if yyhl2720 { + yyb2720 = yyj2720 > l } else { - yyb2715 = r.CheckBreak() + yyb2720 = r.CheckBreak() } - if yyb2715 { + if yyb2720 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2715-1, "") + z.DecStructFieldNotFound(yyj2720-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35209,36 +35250,36 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2721 := z.EncBinary() - _ = yym2721 + yym2726 := z.EncBinary() + _ = yym2726 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2722 := !z.EncBinary() - yy2arr2722 := z.EncBasicHandle().StructToArray - var yyq2722 [3]bool - _, _, _ = yysep2722, yyq2722, yy2arr2722 - const yyr2722 bool = false - var yynn2722 int - if yyr2722 || yy2arr2722 { + yysep2727 := !z.EncBinary() + yy2arr2727 := z.EncBasicHandle().StructToArray + var yyq2727 [3]bool + _, _, _ = yysep2727, yyq2727, yy2arr2727 + const yyr2727 bool = false + var yynn2727 int + if yyr2727 || yy2arr2727 { r.EncodeArrayStart(3) } else { - yynn2722 = 3 - for _, b := range yyq2722 { + yynn2727 = 3 + for _, b := range yyq2727 { if b { - yynn2722++ + yynn2727++ } } - r.EncodeMapStart(yynn2722) - yynn2722 = 0 + r.EncodeMapStart(yynn2727) + yynn2727 = 0 } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2724 := z.EncBinary() - _ = yym2724 + yym2729 := z.EncBinary() + _ = yym2729 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -35251,21 +35292,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2725 := z.EncBinary() - _ = yym2725 + yym2730 := z.EncBinary() + _ = yym2730 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2727 := z.EncBinary() - _ = yym2727 + yym2732 := z.EncBinary() + _ = yym2732 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -35278,21 +35319,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2728 := z.EncBinary() - _ = yym2728 + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2730 := z.EncBinary() - _ = yym2730 + yym2735 := z.EncBinary() + _ = yym2735 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -35305,15 +35346,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2731 := z.EncBinary() - _ = yym2731 + yym2736 := z.EncBinary() + _ = yym2736 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35326,25 +35367,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2732 := z.DecBinary() - _ = yym2732 + yym2737 := z.DecBinary() + _ = yym2737 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2733 := r.ContainerType() - if yyct2733 == codecSelferValueTypeMap1234 { - yyl2733 := r.ReadMapStart() - if yyl2733 == 0 { + yyct2738 := r.ContainerType() + if yyct2738 == codecSelferValueTypeMap1234 { + yyl2738 := r.ReadMapStart() + if yyl2738 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2733, d) + x.codecDecodeSelfFromMap(yyl2738, d) } - } else if yyct2733 == codecSelferValueTypeArray1234 { - yyl2733 := r.ReadArrayStart() - if yyl2733 == 0 { + } else if yyct2738 == codecSelferValueTypeArray1234 { + yyl2738 := r.ReadArrayStart() + if yyl2738 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2733, d) + x.codecDecodeSelfFromArray(yyl2738, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35356,12 +35397,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2734Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2734Slc - var yyhl2734 bool = l >= 0 - for yyj2734 := 0; ; yyj2734++ { - if yyhl2734 { - if yyj2734 >= l { + var yys2739Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2739Slc + var yyhl2739 bool = l >= 0 + for yyj2739 := 0; ; yyj2739++ { + if yyhl2739 { + if yyj2739 >= l { break } } else { @@ -35370,50 +35411,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2734Slc = r.DecodeBytes(yys2734Slc, true, true) - yys2734 := string(yys2734Slc) + yys2739Slc = r.DecodeBytes(yys2739Slc, true, true) + yys2739 := string(yys2739Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2734 { + switch yys2739 { case "Addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2735 := &x.Addresses - yym2736 := z.DecBinary() - _ = yym2736 + yyv2740 := &x.Addresses + yym2741 := z.DecBinary() + _ = yym2741 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2735), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2740), d) } } case "NotReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2737 := &x.NotReadyAddresses - yym2738 := z.DecBinary() - _ = yym2738 + yyv2742 := &x.NotReadyAddresses + yym2743 := z.DecBinary() + _ = yym2743 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2737), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2742), d) } } case "Ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2739 := &x.Ports - yym2740 := z.DecBinary() - _ = yym2740 + yyv2744 := &x.Ports + yym2745 := z.DecBinary() + _ = yym2745 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2739), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2744), d) } } default: - z.DecStructFieldNotFound(-1, yys2734) - } // end switch yys2734 - } // end for yyj2734 + z.DecStructFieldNotFound(-1, yys2739) + } // end switch yys2739 + } // end for yyj2739 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35421,16 +35462,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2741 int - var yyb2741 bool - var yyhl2741 bool = l >= 0 - yyj2741++ - if yyhl2741 { - yyb2741 = yyj2741 > l + var yyj2746 int + var yyb2746 bool + var yyhl2746 bool = l >= 0 + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2741 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2741 { + if yyb2746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35438,21 +35479,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2742 := &x.Addresses - yym2743 := z.DecBinary() - _ = yym2743 + yyv2747 := &x.Addresses + yym2748 := z.DecBinary() + _ = yym2748 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2742), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2747), d) } } - yyj2741++ - if yyhl2741 { - yyb2741 = yyj2741 > l + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2741 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2741 { + if yyb2746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35460,21 +35501,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2744 := &x.NotReadyAddresses - yym2745 := z.DecBinary() - _ = yym2745 + yyv2749 := &x.NotReadyAddresses + yym2750 := z.DecBinary() + _ = yym2750 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2744), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2749), d) } } - yyj2741++ - if yyhl2741 { - yyb2741 = yyj2741 > l + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2741 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2741 { + if yyb2746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35482,26 +35523,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2746 := &x.Ports - yym2747 := z.DecBinary() - _ = yym2747 + yyv2751 := &x.Ports + yym2752 := z.DecBinary() + _ = yym2752 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2746), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2751), d) } } for { - yyj2741++ - if yyhl2741 { - yyb2741 = yyj2741 > l + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2741 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2741 { + if yyb2746 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2741-1, "") + z.DecStructFieldNotFound(yyj2746-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35513,35 +35554,35 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2748 := z.EncBinary() - _ = yym2748 + yym2753 := z.EncBinary() + _ = yym2753 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2749 := !z.EncBinary() - yy2arr2749 := z.EncBasicHandle().StructToArray - var yyq2749 [4]bool - _, _, _ = yysep2749, yyq2749, yy2arr2749 - const yyr2749 bool = false - yyq2749[1] = x.Hostname != "" - yyq2749[2] = x.NodeName != nil - var yynn2749 int - if yyr2749 || yy2arr2749 { + yysep2754 := !z.EncBinary() + yy2arr2754 := z.EncBasicHandle().StructToArray + var yyq2754 [4]bool + _, _, _ = yysep2754, yyq2754, yy2arr2754 + const yyr2754 bool = false + yyq2754[1] = x.Hostname != "" + yyq2754[2] = x.NodeName != nil + var yynn2754 int + if yyr2754 || yy2arr2754 { r.EncodeArrayStart(4) } else { - yynn2749 = 2 - for _, b := range yyq2749 { + yynn2754 = 2 + for _, b := range yyq2754 { if b { - yynn2749++ + yynn2754++ } } - r.EncodeMapStart(yynn2749) - yynn2749 = 0 + r.EncodeMapStart(yynn2754) + yynn2754 = 0 } - if yyr2749 || yy2arr2749 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2751 := z.EncBinary() - _ = yym2751 + yym2756 := z.EncBinary() + _ = yym2756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -35550,18 +35591,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("IP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2752 := z.EncBinary() - _ = yym2752 + yym2757 := z.EncBinary() + _ = yym2757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2749 || yy2arr2749 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2749[1] { - yym2754 := z.EncBinary() - _ = yym2754 + if yyq2754[1] { + yym2759 := z.EncBinary() + _ = yym2759 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -35570,54 +35611,54 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2749[1] { + if yyq2754[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2755 := z.EncBinary() - _ = yym2755 + yym2760 := z.EncBinary() + _ = yym2760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2749 || yy2arr2749 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2749[2] { + if yyq2754[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2757 := *x.NodeName - yym2758 := z.EncBinary() - _ = yym2758 + yy2762 := *x.NodeName + yym2763 := z.EncBinary() + _ = yym2763 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2757)) + r.EncodeString(codecSelferC_UTF81234, string(yy2762)) } } } else { r.EncodeNil() } } else { - if yyq2749[2] { + if yyq2754[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2759 := *x.NodeName - yym2760 := z.EncBinary() - _ = yym2760 + yy2764 := *x.NodeName + yym2765 := z.EncBinary() + _ = yym2765 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2759)) + r.EncodeString(codecSelferC_UTF81234, string(yy2764)) } } } } - if yyr2749 || yy2arr2749 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetRef == nil { r.EncodeNil() @@ -35634,7 +35675,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { x.TargetRef.CodecEncodeSelf(e) } } - if yyr2749 || yy2arr2749 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35647,25 +35688,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2762 := z.DecBinary() - _ = yym2762 + yym2767 := z.DecBinary() + _ = yym2767 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2763 := r.ContainerType() - if yyct2763 == codecSelferValueTypeMap1234 { - yyl2763 := r.ReadMapStart() - if yyl2763 == 0 { + yyct2768 := r.ContainerType() + if yyct2768 == codecSelferValueTypeMap1234 { + yyl2768 := r.ReadMapStart() + if yyl2768 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2763, d) + x.codecDecodeSelfFromMap(yyl2768, d) } - } else if yyct2763 == codecSelferValueTypeArray1234 { - yyl2763 := r.ReadArrayStart() - if yyl2763 == 0 { + } else if yyct2768 == codecSelferValueTypeArray1234 { + yyl2768 := r.ReadArrayStart() + if yyl2768 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2763, d) + x.codecDecodeSelfFromArray(yyl2768, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35677,12 +35718,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2764Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2764Slc - var yyhl2764 bool = l >= 0 - for yyj2764 := 0; ; yyj2764++ { - if yyhl2764 { - if yyj2764 >= l { + var yys2769Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2769Slc + var yyhl2769 bool = l >= 0 + for yyj2769 := 0; ; yyj2769++ { + if yyhl2769 { + if yyj2769 >= l { break } } else { @@ -35691,10 +35732,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2764Slc = r.DecodeBytes(yys2764Slc, true, true) - yys2764 := string(yys2764Slc) + yys2769Slc = r.DecodeBytes(yys2769Slc, true, true) + yys2769 := string(yys2769Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2764 { + switch yys2769 { case "IP": if r.TryDecodeAsNil() { x.IP = "" @@ -35716,8 +35757,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2768 := z.DecBinary() - _ = yym2768 + yym2773 := z.DecBinary() + _ = yym2773 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -35735,9 +35776,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2764) - } // end switch yys2764 - } // end for yyj2764 + z.DecStructFieldNotFound(-1, yys2769) + } // end switch yys2769 + } // end for yyj2769 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35745,16 +35786,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2770 int - var yyb2770 bool - var yyhl2770 bool = l >= 0 - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + var yyj2775 int + var yyb2775 bool + var yyhl2775 bool = l >= 0 + yyj2775++ + if yyhl2775 { + yyb2775 = yyj2775 > l } else { - yyb2770 = r.CheckBreak() + yyb2775 = r.CheckBreak() } - if yyb2770 { + if yyb2775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35764,13 +35805,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + yyj2775++ + if yyhl2775 { + yyb2775 = yyj2775 > l } else { - yyb2770 = r.CheckBreak() + yyb2775 = r.CheckBreak() } - if yyb2770 { + if yyb2775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35780,13 +35821,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + yyj2775++ + if yyhl2775 { + yyb2775 = yyj2775 > l } else { - yyb2770 = r.CheckBreak() + yyb2775 = r.CheckBreak() } - if yyb2770 { + if yyb2775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35799,20 +35840,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2774 := z.DecBinary() - _ = yym2774 + yym2779 := z.DecBinary() + _ = yym2779 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + yyj2775++ + if yyhl2775 { + yyb2775 = yyj2775 > l } else { - yyb2770 = r.CheckBreak() + yyb2775 = r.CheckBreak() } - if yyb2770 { + if yyb2775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35828,17 +35869,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + yyj2775++ + if yyhl2775 { + yyb2775 = yyj2775 > l } else { - yyb2770 = r.CheckBreak() + yyb2775 = r.CheckBreak() } - if yyb2770 { + if yyb2775 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2770-1, "") + z.DecStructFieldNotFound(yyj2775-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35850,33 +35891,33 @@ func (x *EndpointPort) 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 [3]bool - _, _, _ = yysep2777, yyq2777, yy2arr2777 - const yyr2777 bool = false - var yynn2777 int - if yyr2777 || yy2arr2777 { + yysep2782 := !z.EncBinary() + yy2arr2782 := z.EncBasicHandle().StructToArray + var yyq2782 [3]bool + _, _, _ = yysep2782, yyq2782, yy2arr2782 + const yyr2782 bool = false + var yynn2782 int + if yyr2782 || yy2arr2782 { r.EncodeArrayStart(3) } else { - yynn2777 = 3 - for _, b := range yyq2777 { + yynn2782 = 3 + 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) - yym2779 := z.EncBinary() - _ = yym2779 + yym2784 := z.EncBinary() + _ = yym2784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -35885,17 +35926,17 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2780 := z.EncBinary() - _ = yym2780 + yym2785 := z.EncBinary() + _ = yym2785 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2777 || yy2arr2777 { + if yyr2782 || yy2arr2782 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2782 := z.EncBinary() - _ = yym2782 + yym2787 := z.EncBinary() + _ = yym2787 if false { } else { r.EncodeInt(int64(x.Port)) @@ -35904,14 +35945,14 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2783 := z.EncBinary() - _ = yym2783 + yym2788 := z.EncBinary() + _ = yym2788 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2777 || yy2arr2777 { + if yyr2782 || yy2arr2782 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -35920,7 +35961,7 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2777 || yy2arr2777 { + if yyr2782 || yy2arr2782 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35933,25 +35974,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2785 := z.DecBinary() - _ = yym2785 + yym2790 := z.DecBinary() + _ = yym2790 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2786 := r.ContainerType() - if yyct2786 == codecSelferValueTypeMap1234 { - yyl2786 := r.ReadMapStart() - if yyl2786 == 0 { + yyct2791 := r.ContainerType() + if yyct2791 == codecSelferValueTypeMap1234 { + yyl2791 := r.ReadMapStart() + if yyl2791 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2786, d) + x.codecDecodeSelfFromMap(yyl2791, d) } - } else if yyct2786 == codecSelferValueTypeArray1234 { - yyl2786 := r.ReadArrayStart() - if yyl2786 == 0 { + } else if yyct2791 == codecSelferValueTypeArray1234 { + yyl2791 := r.ReadArrayStart() + if yyl2791 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2786, d) + x.codecDecodeSelfFromArray(yyl2791, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35963,12 +36004,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2787Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2787Slc - var yyhl2787 bool = l >= 0 - for yyj2787 := 0; ; yyj2787++ { - if yyhl2787 { - if yyj2787 >= l { + var yys2792Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2792Slc + var yyhl2792 bool = l >= 0 + for yyj2792 := 0; ; yyj2792++ { + if yyhl2792 { + if yyj2792 >= l { break } } else { @@ -35977,10 +36018,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2787Slc = r.DecodeBytes(yys2787Slc, true, true) - yys2787 := string(yys2787Slc) + yys2792Slc = r.DecodeBytes(yys2792Slc, true, true) + yys2792 := string(yys2792Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2787 { + switch yys2792 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -36000,9 +36041,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2787) - } // end switch yys2787 - } // end for yyj2787 + z.DecStructFieldNotFound(-1, yys2792) + } // end switch yys2792 + } // end for yyj2792 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36010,16 +36051,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2791 int - var yyb2791 bool - var yyhl2791 bool = l >= 0 - yyj2791++ - if yyhl2791 { - yyb2791 = yyj2791 > l + var yyj2796 int + var yyb2796 bool + var yyhl2796 bool = l >= 0 + yyj2796++ + if yyhl2796 { + yyb2796 = yyj2796 > l } else { - yyb2791 = r.CheckBreak() + yyb2796 = r.CheckBreak() } - if yyb2791 { + if yyb2796 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36029,13 +36070,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2791++ - if yyhl2791 { - yyb2791 = yyj2791 > l + yyj2796++ + if yyhl2796 { + yyb2796 = yyj2796 > l } else { - yyb2791 = r.CheckBreak() + yyb2796 = r.CheckBreak() } - if yyb2791 { + if yyb2796 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36045,13 +36086,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2791++ - if yyhl2791 { - yyb2791 = yyj2791 > l + yyj2796++ + if yyhl2796 { + yyb2796 = yyj2796 > l } else { - yyb2791 = r.CheckBreak() + yyb2796 = r.CheckBreak() } - if yyb2791 { + if yyb2796 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36062,17 +36103,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2791++ - if yyhl2791 { - yyb2791 = yyj2791 > l + yyj2796++ + if yyhl2796 { + yyb2796 = yyj2796 > l } else { - yyb2791 = r.CheckBreak() + yyb2796 = r.CheckBreak() } - if yyb2791 { + if yyb2796 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2791-1, "") + z.DecStructFieldNotFound(yyj2796-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36084,37 +36125,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2795 := z.EncBinary() - _ = yym2795 + yym2800 := z.EncBinary() + _ = yym2800 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2796 := !z.EncBinary() - yy2arr2796 := z.EncBasicHandle().StructToArray - var yyq2796 [4]bool - _, _, _ = yysep2796, yyq2796, yy2arr2796 - const yyr2796 bool = false - yyq2796[0] = x.Kind != "" - yyq2796[1] = x.APIVersion != "" - yyq2796[2] = true - var yynn2796 int - if yyr2796 || yy2arr2796 { + yysep2801 := !z.EncBinary() + yy2arr2801 := z.EncBasicHandle().StructToArray + var yyq2801 [4]bool + _, _, _ = yysep2801, yyq2801, yy2arr2801 + const yyr2801 bool = false + yyq2801[0] = x.Kind != "" + yyq2801[1] = x.APIVersion != "" + yyq2801[2] = true + var yynn2801 int + if yyr2801 || yy2arr2801 { r.EncodeArrayStart(4) } else { - yynn2796 = 1 - for _, b := range yyq2796 { + yynn2801 = 1 + for _, b := range yyq2801 { if b { - yynn2796++ + yynn2801++ } } - r.EncodeMapStart(yynn2796) - yynn2796 = 0 + r.EncodeMapStart(yynn2801) + yynn2801 = 0 } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2796[0] { - yym2798 := z.EncBinary() - _ = yym2798 + if yyq2801[0] { + yym2803 := z.EncBinary() + _ = yym2803 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36123,23 +36164,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2796[0] { + if yyq2801[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2799 := z.EncBinary() - _ = yym2799 + yym2804 := z.EncBinary() + _ = yym2804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2796[1] { - yym2801 := z.EncBinary() - _ = yym2801 + if yyq2801[1] { + yym2806 := z.EncBinary() + _ = yym2806 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36148,54 +36189,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2796[1] { + if yyq2801[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2802 := z.EncBinary() - _ = yym2802 + yym2807 := z.EncBinary() + _ = yym2807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2796[2] { - yy2804 := &x.ListMeta - yym2805 := z.EncBinary() - _ = yym2805 + if yyq2801[2] { + yy2809 := &x.ListMeta + yym2810 := z.EncBinary() + _ = yym2810 if false { - } else if z.HasExtensions() && z.EncExt(yy2804) { + } else if z.HasExtensions() && z.EncExt(yy2809) { } else { - z.EncFallback(yy2804) + z.EncFallback(yy2809) } } else { r.EncodeNil() } } else { - if yyq2796[2] { + if yyq2801[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2806 := &x.ListMeta - yym2807 := z.EncBinary() - _ = yym2807 + yy2811 := &x.ListMeta + yym2812 := z.EncBinary() + _ = yym2812 if false { - } else if z.HasExtensions() && z.EncExt(yy2806) { + } else if z.HasExtensions() && z.EncExt(yy2811) { } else { - z.EncFallback(yy2806) + z.EncFallback(yy2811) } } } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2809 := z.EncBinary() - _ = yym2809 + yym2814 := z.EncBinary() + _ = yym2814 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -36208,15 +36249,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2810 := z.EncBinary() - _ = yym2810 + yym2815 := z.EncBinary() + _ = yym2815 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36229,25 +36270,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2811 := z.DecBinary() - _ = yym2811 + yym2816 := z.DecBinary() + _ = yym2816 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2812 := r.ContainerType() - if yyct2812 == codecSelferValueTypeMap1234 { - yyl2812 := r.ReadMapStart() - if yyl2812 == 0 { + yyct2817 := r.ContainerType() + if yyct2817 == codecSelferValueTypeMap1234 { + yyl2817 := r.ReadMapStart() + if yyl2817 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2812, d) + x.codecDecodeSelfFromMap(yyl2817, d) } - } else if yyct2812 == codecSelferValueTypeArray1234 { - yyl2812 := r.ReadArrayStart() - if yyl2812 == 0 { + } else if yyct2817 == codecSelferValueTypeArray1234 { + yyl2817 := r.ReadArrayStart() + if yyl2817 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2812, d) + x.codecDecodeSelfFromArray(yyl2817, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36259,12 +36300,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2813Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2813Slc - var yyhl2813 bool = l >= 0 - for yyj2813 := 0; ; yyj2813++ { - if yyhl2813 { - if yyj2813 >= l { + var yys2818Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2818Slc + var yyhl2818 bool = l >= 0 + for yyj2818 := 0; ; yyj2818++ { + if yyhl2818 { + if yyj2818 >= l { break } } else { @@ -36273,10 +36314,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2813Slc = r.DecodeBytes(yys2813Slc, true, true) - yys2813 := string(yys2813Slc) + yys2818Slc = r.DecodeBytes(yys2818Slc, true, true) + yys2818 := string(yys2818Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2813 { + switch yys2818 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36293,31 +36334,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2816 := &x.ListMeta - yym2817 := z.DecBinary() - _ = yym2817 + yyv2821 := &x.ListMeta + yym2822 := z.DecBinary() + _ = yym2822 if false { - } else if z.HasExtensions() && z.DecExt(yyv2816) { + } else if z.HasExtensions() && z.DecExt(yyv2821) { } else { - z.DecFallback(yyv2816, false) + z.DecFallback(yyv2821, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2818 := &x.Items - yym2819 := z.DecBinary() - _ = yym2819 + yyv2823 := &x.Items + yym2824 := z.DecBinary() + _ = yym2824 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2818), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2823), d) } } default: - z.DecStructFieldNotFound(-1, yys2813) - } // end switch yys2813 - } // end for yyj2813 + z.DecStructFieldNotFound(-1, yys2818) + } // end switch yys2818 + } // end for yyj2818 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36325,16 +36366,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2820 int - var yyb2820 bool - var yyhl2820 bool = l >= 0 - yyj2820++ - if yyhl2820 { - yyb2820 = yyj2820 > l + var yyj2825 int + var yyb2825 bool + var yyhl2825 bool = l >= 0 + yyj2825++ + if yyhl2825 { + yyb2825 = yyj2825 > l } else { - yyb2820 = r.CheckBreak() + yyb2825 = r.CheckBreak() } - if yyb2820 { + if yyb2825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36344,13 +36385,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2820++ - if yyhl2820 { - yyb2820 = yyj2820 > l + yyj2825++ + if yyhl2825 { + yyb2825 = yyj2825 > l } else { - yyb2820 = r.CheckBreak() + yyb2825 = r.CheckBreak() } - if yyb2820 { + if yyb2825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36360,13 +36401,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2820++ - if yyhl2820 { - yyb2820 = yyj2820 > l + yyj2825++ + if yyhl2825 { + yyb2825 = yyj2825 > l } else { - yyb2820 = r.CheckBreak() + yyb2825 = r.CheckBreak() } - if yyb2820 { + if yyb2825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36374,22 +36415,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2823 := &x.ListMeta - yym2824 := z.DecBinary() - _ = yym2824 + yyv2828 := &x.ListMeta + yym2829 := z.DecBinary() + _ = yym2829 if false { - } else if z.HasExtensions() && z.DecExt(yyv2823) { + } else if z.HasExtensions() && z.DecExt(yyv2828) { } else { - z.DecFallback(yyv2823, false) + z.DecFallback(yyv2828, false) } } - yyj2820++ - if yyhl2820 { - yyb2820 = yyj2820 > l + yyj2825++ + if yyhl2825 { + yyb2825 = yyj2825 > l } else { - yyb2820 = r.CheckBreak() + yyb2825 = r.CheckBreak() } - if yyb2820 { + if yyb2825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36397,26 +36438,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2825 := &x.Items - yym2826 := z.DecBinary() - _ = yym2826 + yyv2830 := &x.Items + yym2831 := z.DecBinary() + _ = yym2831 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2825), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2830), d) } } for { - yyj2820++ - if yyhl2820 { - yyb2820 = yyj2820 > l + yyj2825++ + if yyhl2825 { + yyb2825 = yyj2825 > l } else { - yyb2820 = r.CheckBreak() + yyb2825 = r.CheckBreak() } - if yyb2820 { + if yyb2825 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2820-1, "") + z.DecStructFieldNotFound(yyj2825-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36428,38 +36469,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2827 := z.EncBinary() - _ = yym2827 + yym2832 := z.EncBinary() + _ = yym2832 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2828 := !z.EncBinary() - yy2arr2828 := z.EncBasicHandle().StructToArray - var yyq2828 [4]bool - _, _, _ = yysep2828, yyq2828, yy2arr2828 - const yyr2828 bool = false - yyq2828[0] = x.PodCIDR != "" - yyq2828[1] = x.ExternalID != "" - yyq2828[2] = x.ProviderID != "" - yyq2828[3] = x.Unschedulable != false - var yynn2828 int - if yyr2828 || yy2arr2828 { + yysep2833 := !z.EncBinary() + yy2arr2833 := z.EncBasicHandle().StructToArray + var yyq2833 [4]bool + _, _, _ = yysep2833, yyq2833, yy2arr2833 + const yyr2833 bool = false + yyq2833[0] = x.PodCIDR != "" + yyq2833[1] = x.ExternalID != "" + yyq2833[2] = x.ProviderID != "" + yyq2833[3] = x.Unschedulable != false + var yynn2833 int + if yyr2833 || yy2arr2833 { r.EncodeArrayStart(4) } else { - yynn2828 = 0 - for _, b := range yyq2828 { + yynn2833 = 0 + for _, b := range yyq2833 { if b { - yynn2828++ + yynn2833++ } } - r.EncodeMapStart(yynn2828) - yynn2828 = 0 + r.EncodeMapStart(yynn2833) + yynn2833 = 0 } - if yyr2828 || yy2arr2828 { + if yyr2833 || yy2arr2833 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2828[0] { - yym2830 := z.EncBinary() - _ = yym2830 + if yyq2833[0] { + yym2835 := z.EncBinary() + _ = yym2835 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -36468,23 +36509,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2828[0] { + if yyq2833[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2831 := z.EncBinary() - _ = yym2831 + yym2836 := z.EncBinary() + _ = yym2836 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2828 || yy2arr2828 { + if yyr2833 || yy2arr2833 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2828[1] { - yym2833 := z.EncBinary() - _ = yym2833 + if yyq2833[1] { + yym2838 := z.EncBinary() + _ = yym2838 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -36493,23 +36534,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2828[1] { + if yyq2833[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2834 := z.EncBinary() - _ = yym2834 + yym2839 := z.EncBinary() + _ = yym2839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2828 || yy2arr2828 { + if yyr2833 || yy2arr2833 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2828[2] { - yym2836 := z.EncBinary() - _ = yym2836 + if yyq2833[2] { + yym2841 := z.EncBinary() + _ = yym2841 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -36518,23 +36559,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2828[2] { + if yyq2833[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2837 := z.EncBinary() - _ = yym2837 + yym2842 := z.EncBinary() + _ = yym2842 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2828 || yy2arr2828 { + if yyr2833 || yy2arr2833 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2828[3] { - yym2839 := z.EncBinary() - _ = yym2839 + if yyq2833[3] { + yym2844 := z.EncBinary() + _ = yym2844 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -36543,19 +36584,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2828[3] { + if yyq2833[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2840 := z.EncBinary() - _ = yym2840 + yym2845 := z.EncBinary() + _ = yym2845 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2828 || yy2arr2828 { + if yyr2833 || yy2arr2833 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36568,25 +36609,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2841 := z.DecBinary() - _ = yym2841 + yym2846 := z.DecBinary() + _ = yym2846 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2842 := r.ContainerType() - if yyct2842 == codecSelferValueTypeMap1234 { - yyl2842 := r.ReadMapStart() - if yyl2842 == 0 { + yyct2847 := r.ContainerType() + if yyct2847 == codecSelferValueTypeMap1234 { + yyl2847 := r.ReadMapStart() + if yyl2847 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2842, d) + x.codecDecodeSelfFromMap(yyl2847, d) } - } else if yyct2842 == codecSelferValueTypeArray1234 { - yyl2842 := r.ReadArrayStart() - if yyl2842 == 0 { + } else if yyct2847 == codecSelferValueTypeArray1234 { + yyl2847 := r.ReadArrayStart() + if yyl2847 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2842, d) + x.codecDecodeSelfFromArray(yyl2847, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36598,12 +36639,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2843Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2843Slc - var yyhl2843 bool = l >= 0 - for yyj2843 := 0; ; yyj2843++ { - if yyhl2843 { - if yyj2843 >= l { + var yys2848Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2848Slc + var yyhl2848 bool = l >= 0 + for yyj2848 := 0; ; yyj2848++ { + if yyhl2848 { + if yyj2848 >= l { break } } else { @@ -36612,10 +36653,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2843Slc = r.DecodeBytes(yys2843Slc, true, true) - yys2843 := string(yys2843Slc) + yys2848Slc = r.DecodeBytes(yys2848Slc, true, true) + yys2848 := string(yys2848Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2843 { + switch yys2848 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -36641,9 +36682,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2843) - } // end switch yys2843 - } // end for yyj2843 + z.DecStructFieldNotFound(-1, yys2848) + } // end switch yys2848 + } // end for yyj2848 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36651,16 +36692,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2848 int - var yyb2848 bool - var yyhl2848 bool = l >= 0 - yyj2848++ - if yyhl2848 { - yyb2848 = yyj2848 > l + var yyj2853 int + var yyb2853 bool + var yyhl2853 bool = l >= 0 + yyj2853++ + if yyhl2853 { + yyb2853 = yyj2853 > l } else { - yyb2848 = r.CheckBreak() + yyb2853 = r.CheckBreak() } - if yyb2848 { + if yyb2853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36670,13 +36711,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2848++ - if yyhl2848 { - yyb2848 = yyj2848 > l + yyj2853++ + if yyhl2853 { + yyb2853 = yyj2853 > l } else { - yyb2848 = r.CheckBreak() + yyb2853 = r.CheckBreak() } - if yyb2848 { + if yyb2853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36686,13 +36727,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2848++ - if yyhl2848 { - yyb2848 = yyj2848 > l + yyj2853++ + if yyhl2853 { + yyb2853 = yyj2853 > l } else { - yyb2848 = r.CheckBreak() + yyb2853 = r.CheckBreak() } - if yyb2848 { + if yyb2853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36702,13 +36743,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2848++ - if yyhl2848 { - yyb2848 = yyj2848 > l + yyj2853++ + if yyhl2853 { + yyb2853 = yyj2853 > l } else { - yyb2848 = r.CheckBreak() + yyb2853 = r.CheckBreak() } - if yyb2848 { + if yyb2853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36719,17 +36760,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2848++ - if yyhl2848 { - yyb2848 = yyj2848 > l + yyj2853++ + if yyhl2853 { + yyb2853 = yyj2853 > l } else { - yyb2848 = r.CheckBreak() + yyb2853 = r.CheckBreak() } - if yyb2848 { + if yyb2853 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2848-1, "") + z.DecStructFieldNotFound(yyj2853-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36741,33 +36782,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2853 := z.EncBinary() - _ = yym2853 + yym2858 := z.EncBinary() + _ = yym2858 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2854 := !z.EncBinary() - yy2arr2854 := z.EncBasicHandle().StructToArray - var yyq2854 [1]bool - _, _, _ = yysep2854, yyq2854, yy2arr2854 - const yyr2854 bool = false - var yynn2854 int - if yyr2854 || yy2arr2854 { + yysep2859 := !z.EncBinary() + yy2arr2859 := z.EncBasicHandle().StructToArray + var yyq2859 [1]bool + _, _, _ = yysep2859, yyq2859, yy2arr2859 + const yyr2859 bool = false + var yynn2859 int + if yyr2859 || yy2arr2859 { r.EncodeArrayStart(1) } else { - yynn2854 = 1 - for _, b := range yyq2854 { + yynn2859 = 1 + for _, b := range yyq2859 { if b { - yynn2854++ + yynn2859++ } } - r.EncodeMapStart(yynn2854) - yynn2854 = 0 + r.EncodeMapStart(yynn2859) + yynn2859 = 0 } - if yyr2854 || yy2arr2854 { + if yyr2859 || yy2arr2859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2856 := z.EncBinary() - _ = yym2856 + yym2861 := z.EncBinary() + _ = yym2861 if false { } else { r.EncodeInt(int64(x.Port)) @@ -36776,14 +36817,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2857 := z.EncBinary() - _ = yym2857 + yym2862 := z.EncBinary() + _ = yym2862 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2854 || yy2arr2854 { + if yyr2859 || yy2arr2859 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36796,25 +36837,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2858 := z.DecBinary() - _ = yym2858 + yym2863 := z.DecBinary() + _ = yym2863 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2859 := r.ContainerType() - if yyct2859 == codecSelferValueTypeMap1234 { - yyl2859 := r.ReadMapStart() - if yyl2859 == 0 { + yyct2864 := r.ContainerType() + if yyct2864 == codecSelferValueTypeMap1234 { + yyl2864 := r.ReadMapStart() + if yyl2864 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2859, d) + x.codecDecodeSelfFromMap(yyl2864, d) } - } else if yyct2859 == codecSelferValueTypeArray1234 { - yyl2859 := r.ReadArrayStart() - if yyl2859 == 0 { + } else if yyct2864 == codecSelferValueTypeArray1234 { + yyl2864 := r.ReadArrayStart() + if yyl2864 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2859, d) + x.codecDecodeSelfFromArray(yyl2864, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36826,12 +36867,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2860Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2860Slc - var yyhl2860 bool = l >= 0 - for yyj2860 := 0; ; yyj2860++ { - if yyhl2860 { - if yyj2860 >= l { + var yys2865Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2865Slc + var yyhl2865 bool = l >= 0 + for yyj2865 := 0; ; yyj2865++ { + if yyhl2865 { + if yyj2865 >= l { break } } else { @@ -36840,10 +36881,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2860Slc = r.DecodeBytes(yys2860Slc, true, true) - yys2860 := string(yys2860Slc) + yys2865Slc = r.DecodeBytes(yys2865Slc, true, true) + yys2865 := string(yys2865Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2860 { + switch yys2865 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -36851,9 +36892,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2860) - } // end switch yys2860 - } // end for yyj2860 + z.DecStructFieldNotFound(-1, yys2865) + } // end switch yys2865 + } // end for yyj2865 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36861,16 +36902,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2862 int - var yyb2862 bool - var yyhl2862 bool = l >= 0 - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + var yyj2867 int + var yyb2867 bool + var yyhl2867 bool = l >= 0 + yyj2867++ + if yyhl2867 { + yyb2867 = yyj2867 > l } else { - yyb2862 = r.CheckBreak() + yyb2867 = r.CheckBreak() } - if yyb2862 { + if yyb2867 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36881,17 +36922,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + yyj2867++ + if yyhl2867 { + yyb2867 = yyj2867 > l } else { - yyb2862 = r.CheckBreak() + yyb2867 = r.CheckBreak() } - if yyb2862 { + if yyb2867 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2862-1, "") + z.DecStructFieldNotFound(yyj2867-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36903,48 +36944,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2864 := z.EncBinary() - _ = yym2864 + yym2869 := z.EncBinary() + _ = yym2869 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2865 := !z.EncBinary() - yy2arr2865 := z.EncBasicHandle().StructToArray - var yyq2865 [1]bool - _, _, _ = yysep2865, yyq2865, yy2arr2865 - const yyr2865 bool = false - yyq2865[0] = true - var yynn2865 int - if yyr2865 || yy2arr2865 { + yysep2870 := !z.EncBinary() + yy2arr2870 := z.EncBasicHandle().StructToArray + var yyq2870 [1]bool + _, _, _ = yysep2870, yyq2870, yy2arr2870 + const yyr2870 bool = false + yyq2870[0] = true + var yynn2870 int + if yyr2870 || yy2arr2870 { r.EncodeArrayStart(1) } else { - yynn2865 = 0 - for _, b := range yyq2865 { + yynn2870 = 0 + for _, b := range yyq2870 { if b { - yynn2865++ + yynn2870++ } } - r.EncodeMapStart(yynn2865) - yynn2865 = 0 + r.EncodeMapStart(yynn2870) + yynn2870 = 0 } - if yyr2865 || yy2arr2865 { + if yyr2870 || yy2arr2870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2865[0] { - yy2867 := &x.KubeletEndpoint - yy2867.CodecEncodeSelf(e) + if yyq2870[0] { + yy2872 := &x.KubeletEndpoint + yy2872.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2865[0] { + if yyq2870[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2868 := &x.KubeletEndpoint - yy2868.CodecEncodeSelf(e) + yy2873 := &x.KubeletEndpoint + yy2873.CodecEncodeSelf(e) } } - if yyr2865 || yy2arr2865 { + if yyr2870 || yy2arr2870 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36957,25 +36998,25 @@ func (x *NodeDaemonEndpoints) 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) @@ -36987,12 +37028,12 @@ func (x *NodeDaemonEndpoints) 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 { @@ -37001,21 +37042,21 @@ func (x *NodeDaemonEndpoints) 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 "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2872 := &x.KubeletEndpoint - yyv2872.CodecDecodeSelf(d) + yyv2877 := &x.KubeletEndpoint + yyv2877.CodecDecodeSelf(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) } @@ -37023,16 +37064,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod 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 } @@ -37040,21 +37081,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2874 := &x.KubeletEndpoint - yyv2874.CodecDecodeSelf(d) + yyv2879 := &x.KubeletEndpoint + yyv2879.CodecDecodeSelf(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) } @@ -37066,33 +37107,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2875 := z.EncBinary() - _ = yym2875 + yym2880 := z.EncBinary() + _ = yym2880 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2876 := !z.EncBinary() - yy2arr2876 := z.EncBasicHandle().StructToArray - var yyq2876 [10]bool - _, _, _ = yysep2876, yyq2876, yy2arr2876 - const yyr2876 bool = false - var yynn2876 int - if yyr2876 || yy2arr2876 { + yysep2881 := !z.EncBinary() + yy2arr2881 := z.EncBasicHandle().StructToArray + var yyq2881 [10]bool + _, _, _ = yysep2881, yyq2881, yy2arr2881 + const yyr2881 bool = false + var yynn2881 int + if yyr2881 || yy2arr2881 { r.EncodeArrayStart(10) } else { - yynn2876 = 10 - for _, b := range yyq2876 { + yynn2881 = 10 + for _, b := range yyq2881 { if b { - yynn2876++ + yynn2881++ } } - r.EncodeMapStart(yynn2876) - yynn2876 = 0 + r.EncodeMapStart(yynn2881) + yynn2881 = 0 } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2878 := z.EncBinary() - _ = yym2878 + yym2883 := z.EncBinary() + _ = yym2883 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -37101,17 +37142,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2879 := z.EncBinary() - _ = yym2879 + yym2884 := z.EncBinary() + _ = yym2884 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2881 := z.EncBinary() - _ = yym2881 + yym2886 := z.EncBinary() + _ = yym2886 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -37120,17 +37161,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2882 := z.EncBinary() - _ = yym2882 + yym2887 := z.EncBinary() + _ = yym2887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2884 := z.EncBinary() - _ = yym2884 + yym2889 := z.EncBinary() + _ = yym2889 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -37139,17 +37180,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2885 := z.EncBinary() - _ = yym2885 + yym2890 := z.EncBinary() + _ = yym2890 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2887 := z.EncBinary() - _ = yym2887 + yym2892 := z.EncBinary() + _ = yym2892 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -37158,17 +37199,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2888 := z.EncBinary() - _ = yym2888 + yym2893 := z.EncBinary() + _ = yym2893 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2890 := z.EncBinary() - _ = yym2890 + yym2895 := z.EncBinary() + _ = yym2895 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -37177,17 +37218,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2891 := z.EncBinary() - _ = yym2891 + yym2896 := z.EncBinary() + _ = yym2896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2893 := z.EncBinary() - _ = yym2893 + yym2898 := z.EncBinary() + _ = yym2898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -37196,17 +37237,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2894 := z.EncBinary() - _ = yym2894 + yym2899 := z.EncBinary() + _ = yym2899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2896 := z.EncBinary() - _ = yym2896 + yym2901 := z.EncBinary() + _ = yym2901 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -37215,17 +37256,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2897 := z.EncBinary() - _ = yym2897 + yym2902 := z.EncBinary() + _ = yym2902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2899 := z.EncBinary() - _ = yym2899 + yym2904 := z.EncBinary() + _ = yym2904 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -37234,17 +37275,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2900 := z.EncBinary() - _ = yym2900 + yym2905 := z.EncBinary() + _ = yym2905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2902 := z.EncBinary() - _ = yym2902 + yym2907 := z.EncBinary() + _ = yym2907 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -37253,17 +37294,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2903 := z.EncBinary() - _ = yym2903 + yym2908 := z.EncBinary() + _ = yym2908 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2905 := z.EncBinary() - _ = yym2905 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -37272,14 +37313,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2906 := z.EncBinary() - _ = yym2906 + yym2911 := z.EncBinary() + _ = yym2911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2876 || yy2arr2876 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37292,25 +37333,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2907 := z.DecBinary() - _ = yym2907 + yym2912 := z.DecBinary() + _ = yym2912 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2908 := r.ContainerType() - if yyct2908 == codecSelferValueTypeMap1234 { - yyl2908 := r.ReadMapStart() - if yyl2908 == 0 { + yyct2913 := r.ContainerType() + if yyct2913 == codecSelferValueTypeMap1234 { + yyl2913 := r.ReadMapStart() + if yyl2913 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2908, d) + x.codecDecodeSelfFromMap(yyl2913, d) } - } else if yyct2908 == codecSelferValueTypeArray1234 { - yyl2908 := r.ReadArrayStart() - if yyl2908 == 0 { + } else if yyct2913 == codecSelferValueTypeArray1234 { + yyl2913 := r.ReadArrayStart() + if yyl2913 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2908, d) + x.codecDecodeSelfFromArray(yyl2913, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37322,12 +37363,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2909Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2909Slc - var yyhl2909 bool = l >= 0 - for yyj2909 := 0; ; yyj2909++ { - if yyhl2909 { - if yyj2909 >= l { + var yys2914Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2914Slc + var yyhl2914 bool = l >= 0 + for yyj2914 := 0; ; yyj2914++ { + if yyhl2914 { + if yyj2914 >= l { break } } else { @@ -37336,10 +37377,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2909Slc = r.DecodeBytes(yys2909Slc, true, true) - yys2909 := string(yys2909Slc) + yys2914Slc = r.DecodeBytes(yys2914Slc, true, true) + yys2914 := string(yys2914Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2909 { + switch yys2914 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -37401,9 +37442,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2909) - } // end switch yys2909 - } // end for yyj2909 + z.DecStructFieldNotFound(-1, yys2914) + } // end switch yys2914 + } // end for yyj2914 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37411,16 +37452,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2920 int - var yyb2920 bool - var yyhl2920 bool = l >= 0 - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + var yyj2925 int + var yyb2925 bool + var yyhl2925 bool = l >= 0 + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37430,13 +37471,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37446,13 +37487,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37462,13 +37503,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37478,13 +37519,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37494,13 +37535,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37510,13 +37551,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37526,13 +37567,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37542,13 +37583,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37558,13 +37599,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37575,17 +37616,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2920-1, "") + z.DecStructFieldNotFound(yyj2925-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37597,42 +37638,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2931 := z.EncBinary() - _ = yym2931 + yym2936 := z.EncBinary() + _ = yym2936 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2932 := !z.EncBinary() - yy2arr2932 := z.EncBasicHandle().StructToArray - var yyq2932 [10]bool - _, _, _ = yysep2932, yyq2932, yy2arr2932 - const yyr2932 bool = false - yyq2932[0] = len(x.Capacity) != 0 - yyq2932[1] = len(x.Allocatable) != 0 - yyq2932[2] = x.Phase != "" - yyq2932[3] = len(x.Conditions) != 0 - yyq2932[4] = len(x.Addresses) != 0 - yyq2932[5] = true - yyq2932[6] = true - yyq2932[7] = len(x.Images) != 0 - yyq2932[8] = len(x.VolumesInUse) != 0 - yyq2932[9] = len(x.VolumesAttached) != 0 - var yynn2932 int - if yyr2932 || yy2arr2932 { + yysep2937 := !z.EncBinary() + yy2arr2937 := z.EncBasicHandle().StructToArray + var yyq2937 [10]bool + _, _, _ = yysep2937, yyq2937, yy2arr2937 + const yyr2937 bool = false + yyq2937[0] = len(x.Capacity) != 0 + yyq2937[1] = len(x.Allocatable) != 0 + yyq2937[2] = x.Phase != "" + yyq2937[3] = len(x.Conditions) != 0 + yyq2937[4] = len(x.Addresses) != 0 + yyq2937[5] = true + yyq2937[6] = true + yyq2937[7] = len(x.Images) != 0 + yyq2937[8] = len(x.VolumesInUse) != 0 + yyq2937[9] = len(x.VolumesAttached) != 0 + var yynn2937 int + if yyr2937 || yy2arr2937 { r.EncodeArrayStart(10) } else { - yynn2932 = 0 - for _, b := range yyq2932 { + yynn2937 = 0 + for _, b := range yyq2937 { if b { - yynn2932++ + yynn2937++ } } - r.EncodeMapStart(yynn2932) - yynn2932 = 0 + r.EncodeMapStart(yynn2937) + yynn2937 = 0 } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[0] { + if yyq2937[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -37642,7 +37683,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2932[0] { + if yyq2937[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37653,9 +37694,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[1] { + if yyq2937[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -37665,7 +37706,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2932[1] { + if yyq2937[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37676,29 +37717,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[2] { + if yyq2937[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2932[2] { + if yyq2937[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[3] { + if yyq2937[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2937 := z.EncBinary() - _ = yym2937 + yym2942 := z.EncBinary() + _ = yym2942 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37708,15 +37749,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2932[3] { + if yyq2937[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2938 := z.EncBinary() - _ = yym2938 + yym2943 := z.EncBinary() + _ = yym2943 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37724,14 +37765,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[4] { + if yyq2937[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2940 := z.EncBinary() - _ = yym2940 + yym2945 := z.EncBinary() + _ = yym2945 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37741,15 +37782,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2932[4] { + if yyq2937[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2941 := z.EncBinary() - _ = yym2941 + yym2946 := z.EncBinary() + _ = yym2946 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37757,48 +37798,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[5] { - yy2943 := &x.DaemonEndpoints - yy2943.CodecEncodeSelf(e) + if yyq2937[5] { + yy2948 := &x.DaemonEndpoints + yy2948.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2932[5] { + if yyq2937[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2944 := &x.DaemonEndpoints - yy2944.CodecEncodeSelf(e) + yy2949 := &x.DaemonEndpoints + yy2949.CodecEncodeSelf(e) } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[6] { - yy2946 := &x.NodeInfo - yy2946.CodecEncodeSelf(e) + if yyq2937[6] { + yy2951 := &x.NodeInfo + yy2951.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2932[6] { + if yyq2937[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2947 := &x.NodeInfo - yy2947.CodecEncodeSelf(e) + yy2952 := &x.NodeInfo + yy2952.CodecEncodeSelf(e) } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[7] { + if yyq2937[7] { if x.Images == nil { r.EncodeNil() } else { - yym2949 := z.EncBinary() - _ = yym2949 + yym2954 := z.EncBinary() + _ = yym2954 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37808,15 +37849,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2932[7] { + if yyq2937[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2950 := z.EncBinary() - _ = yym2950 + yym2955 := z.EncBinary() + _ = yym2955 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37824,14 +37865,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[8] { + if yyq2937[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2952 := z.EncBinary() - _ = yym2952 + yym2957 := z.EncBinary() + _ = yym2957 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37841,15 +37882,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2932[8] { + if yyq2937[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2953 := z.EncBinary() - _ = yym2953 + yym2958 := z.EncBinary() + _ = yym2958 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37857,14 +37898,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2932[9] { + if yyq2937[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2955 := z.EncBinary() - _ = yym2955 + yym2960 := z.EncBinary() + _ = yym2960 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -37874,15 +37915,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2932[9] { + if yyq2937[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2956 := z.EncBinary() - _ = yym2956 + yym2961 := z.EncBinary() + _ = yym2961 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -37890,7 +37931,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2932 || yy2arr2932 { + if yyr2937 || yy2arr2937 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37903,25 +37944,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2957 := z.DecBinary() - _ = yym2957 + yym2962 := z.DecBinary() + _ = yym2962 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2958 := r.ContainerType() - if yyct2958 == codecSelferValueTypeMap1234 { - yyl2958 := r.ReadMapStart() - if yyl2958 == 0 { + yyct2963 := r.ContainerType() + if yyct2963 == codecSelferValueTypeMap1234 { + yyl2963 := r.ReadMapStart() + if yyl2963 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2958, d) + x.codecDecodeSelfFromMap(yyl2963, d) } - } else if yyct2958 == codecSelferValueTypeArray1234 { - yyl2958 := r.ReadArrayStart() - if yyl2958 == 0 { + } else if yyct2963 == codecSelferValueTypeArray1234 { + yyl2963 := r.ReadArrayStart() + if yyl2963 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2958, d) + x.codecDecodeSelfFromArray(yyl2963, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37933,12 +37974,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2959Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2959Slc - var yyhl2959 bool = l >= 0 - for yyj2959 := 0; ; yyj2959++ { - if yyhl2959 { - if yyj2959 >= l { + var yys2964Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2964Slc + var yyhl2964 bool = l >= 0 + for yyj2964 := 0; ; yyj2964++ { + if yyhl2964 { + if yyj2964 >= l { break } } else { @@ -37947,23 +37988,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2959Slc = r.DecodeBytes(yys2959Slc, true, true) - yys2959 := string(yys2959Slc) + yys2964Slc = r.DecodeBytes(yys2964Slc, true, true) + yys2964 := string(yys2964Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2959 { + switch yys2964 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2960 := &x.Capacity - yyv2960.CodecDecodeSelf(d) + yyv2965 := &x.Capacity + yyv2965.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2961 := &x.Allocatable - yyv2961.CodecDecodeSelf(d) + yyv2966 := &x.Allocatable + yyv2966.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -37975,80 +38016,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2963 := &x.Conditions - yym2964 := z.DecBinary() - _ = yym2964 + yyv2968 := &x.Conditions + yym2969 := z.DecBinary() + _ = yym2969 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2963), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2968), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2965 := &x.Addresses - yym2966 := z.DecBinary() - _ = yym2966 + yyv2970 := &x.Addresses + yym2971 := z.DecBinary() + _ = yym2971 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2965), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2970), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2967 := &x.DaemonEndpoints - yyv2967.CodecDecodeSelf(d) + yyv2972 := &x.DaemonEndpoints + yyv2972.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2968 := &x.NodeInfo - yyv2968.CodecDecodeSelf(d) + yyv2973 := &x.NodeInfo + yyv2973.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2969 := &x.Images - yym2970 := z.DecBinary() - _ = yym2970 + yyv2974 := &x.Images + yym2975 := z.DecBinary() + _ = yym2975 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2969), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2974), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2971 := &x.VolumesInUse - yym2972 := z.DecBinary() - _ = yym2972 + yyv2976 := &x.VolumesInUse + yym2977 := z.DecBinary() + _ = yym2977 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2971), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2976), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2973 := &x.VolumesAttached - yym2974 := z.DecBinary() - _ = yym2974 + yyv2978 := &x.VolumesAttached + yym2979 := z.DecBinary() + _ = yym2979 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2973), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2978), d) } } default: - z.DecStructFieldNotFound(-1, yys2959) - } // end switch yys2959 - } // end for yyj2959 + z.DecStructFieldNotFound(-1, yys2964) + } // end switch yys2964 + } // end for yyj2964 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38056,16 +38097,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2975 int - var yyb2975 bool - var yyhl2975 bool = l >= 0 - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + var yyj2980 int + var yyb2980 bool + var yyhl2980 bool = l >= 0 + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38073,16 +38114,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2976 := &x.Capacity - yyv2976.CodecDecodeSelf(d) + yyv2981 := &x.Capacity + yyv2981.CodecDecodeSelf(d) } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38090,16 +38131,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2977 := &x.Allocatable - yyv2977.CodecDecodeSelf(d) + yyv2982 := &x.Allocatable + yyv2982.CodecDecodeSelf(d) } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38109,13 +38150,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38123,21 +38164,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2979 := &x.Conditions - yym2980 := z.DecBinary() - _ = yym2980 + yyv2984 := &x.Conditions + yym2985 := z.DecBinary() + _ = yym2985 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2979), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2984), d) } } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38145,21 +38186,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2981 := &x.Addresses - yym2982 := z.DecBinary() - _ = yym2982 + yyv2986 := &x.Addresses + yym2987 := z.DecBinary() + _ = yym2987 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2981), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2986), d) } } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38167,16 +38208,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2983 := &x.DaemonEndpoints - yyv2983.CodecDecodeSelf(d) + yyv2988 := &x.DaemonEndpoints + yyv2988.CodecDecodeSelf(d) } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38184,16 +38225,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2984 := &x.NodeInfo - yyv2984.CodecDecodeSelf(d) + yyv2989 := &x.NodeInfo + yyv2989.CodecDecodeSelf(d) } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38201,21 +38242,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2985 := &x.Images - yym2986 := z.DecBinary() - _ = yym2986 + yyv2990 := &x.Images + yym2991 := z.DecBinary() + _ = yym2991 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2985), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2990), d) } } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38223,21 +38264,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2987 := &x.VolumesInUse - yym2988 := z.DecBinary() - _ = yym2988 + yyv2992 := &x.VolumesInUse + yym2993 := z.DecBinary() + _ = yym2993 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2987), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2992), d) } } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38245,26 +38286,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2989 := &x.VolumesAttached - yym2990 := z.DecBinary() - _ = yym2990 + yyv2994 := &x.VolumesAttached + yym2995 := z.DecBinary() + _ = yym2995 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2989), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2994), d) } } for { - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj2980++ + if yyhl2980 { + yyb2980 = yyj2980 > l } else { - yyb2975 = r.CheckBreak() + yyb2980 = r.CheckBreak() } - if yyb2975 { + if yyb2980 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2975-1, "") + z.DecStructFieldNotFound(yyj2980-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38273,8 +38314,8 @@ func (x UniqueVolumeName) 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 { @@ -38286,8 +38327,8 @@ func (x *UniqueVolumeName) 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 { @@ -38302,30 +38343,30 @@ func (x *AttachedVolume) 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 [2]bool - _, _, _ = yysep2994, yyq2994, yy2arr2994 - const yyr2994 bool = false - var yynn2994 int - if yyr2994 || yy2arr2994 { + yysep2999 := !z.EncBinary() + yy2arr2999 := z.EncBasicHandle().StructToArray + var yyq2999 [2]bool + _, _, _ = yysep2999, yyq2999, yy2arr2999 + const yyr2999 bool = false + var yynn2999 int + if yyr2999 || yy2arr2999 { r.EncodeArrayStart(2) } 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.Name.CodecEncodeSelf(e) } else { @@ -38334,10 +38375,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2997 := z.EncBinary() - _ = yym2997 + yym3002 := z.EncBinary() + _ = yym3002 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -38346,14 +38387,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2998 := z.EncBinary() - _ = yym2998 + yym3003 := z.EncBinary() + _ = yym3003 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2994 || yy2arr2994 { + if yyr2999 || yy2arr2999 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38366,25 +38407,25 @@ func (x *AttachedVolume) 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) @@ -38396,12 +38437,12 @@ func (x *AttachedVolume) 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 { @@ -38410,10 +38451,10 @@ func (x *AttachedVolume) 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 "name": if r.TryDecodeAsNil() { x.Name = "" @@ -38427,9 +38468,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = 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) } @@ -38437,16 +38478,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3004 int - var yyb3004 bool - var yyhl3004 bool = l >= 0 - yyj3004++ - if yyhl3004 { - yyb3004 = yyj3004 > l + var yyj3009 int + var yyb3009 bool + var yyhl3009 bool = l >= 0 + yyj3009++ + if yyhl3009 { + yyb3009 = yyj3009 > l } else { - yyb3004 = r.CheckBreak() + yyb3009 = r.CheckBreak() } - if yyb3004 { + if yyb3009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38456,13 +38497,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj3004++ - if yyhl3004 { - yyb3004 = yyj3004 > l + yyj3009++ + if yyhl3009 { + yyb3009 = yyj3009 > l } else { - yyb3004 = r.CheckBreak() + yyb3009 = r.CheckBreak() } - if yyb3004 { + if yyb3009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38473,17 +38514,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj3004++ - if yyhl3004 { - yyb3004 = yyj3004 > l + yyj3009++ + if yyhl3009 { + yyb3009 = yyj3009 > l } else { - yyb3004 = r.CheckBreak() + yyb3009 = r.CheckBreak() } - if yyb3004 { + if yyb3009 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3004-1, "") + z.DecStructFieldNotFound(yyj3009-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38495,38 +38536,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3007 := z.EncBinary() - _ = yym3007 + yym3012 := z.EncBinary() + _ = yym3012 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3008 := !z.EncBinary() - yy2arr3008 := z.EncBasicHandle().StructToArray - var yyq3008 [1]bool - _, _, _ = yysep3008, yyq3008, yy2arr3008 - const yyr3008 bool = false - yyq3008[0] = len(x.PreferAvoidPods) != 0 - var yynn3008 int - if yyr3008 || yy2arr3008 { + yysep3013 := !z.EncBinary() + yy2arr3013 := z.EncBasicHandle().StructToArray + var yyq3013 [1]bool + _, _, _ = yysep3013, yyq3013, yy2arr3013 + const yyr3013 bool = false + yyq3013[0] = len(x.PreferAvoidPods) != 0 + var yynn3013 int + if yyr3013 || yy2arr3013 { r.EncodeArrayStart(1) } else { - yynn3008 = 0 - for _, b := range yyq3008 { + yynn3013 = 0 + for _, b := range yyq3013 { if b { - yynn3008++ + yynn3013++ } } - r.EncodeMapStart(yynn3008) - yynn3008 = 0 + r.EncodeMapStart(yynn3013) + yynn3013 = 0 } - if yyr3008 || yy2arr3008 { + if yyr3013 || yy2arr3013 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3008[0] { + if yyq3013[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3010 := z.EncBinary() - _ = yym3010 + yym3015 := z.EncBinary() + _ = yym3015 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -38536,15 +38577,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3008[0] { + if yyq3013[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3011 := z.EncBinary() - _ = yym3011 + yym3016 := z.EncBinary() + _ = yym3016 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -38552,7 +38593,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3008 || yy2arr3008 { + if yyr3013 || yy2arr3013 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38565,25 +38606,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3012 := z.DecBinary() - _ = yym3012 + yym3017 := z.DecBinary() + _ = yym3017 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3013 := r.ContainerType() - if yyct3013 == codecSelferValueTypeMap1234 { - yyl3013 := r.ReadMapStart() - if yyl3013 == 0 { + yyct3018 := r.ContainerType() + if yyct3018 == codecSelferValueTypeMap1234 { + yyl3018 := r.ReadMapStart() + if yyl3018 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3013, d) + x.codecDecodeSelfFromMap(yyl3018, d) } - } else if yyct3013 == codecSelferValueTypeArray1234 { - yyl3013 := r.ReadArrayStart() - if yyl3013 == 0 { + } else if yyct3018 == codecSelferValueTypeArray1234 { + yyl3018 := r.ReadArrayStart() + if yyl3018 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3013, d) + x.codecDecodeSelfFromArray(yyl3018, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38595,12 +38636,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3014Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3014Slc - var yyhl3014 bool = l >= 0 - for yyj3014 := 0; ; yyj3014++ { - if yyhl3014 { - if yyj3014 >= l { + var yys3019Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3019Slc + var yyhl3019 bool = l >= 0 + for yyj3019 := 0; ; yyj3019++ { + if yyhl3019 { + if yyj3019 >= l { break } } else { @@ -38609,26 +38650,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3014Slc = r.DecodeBytes(yys3014Slc, true, true) - yys3014 := string(yys3014Slc) + yys3019Slc = r.DecodeBytes(yys3019Slc, true, true) + yys3019 := string(yys3019Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3014 { + switch yys3019 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3015 := &x.PreferAvoidPods - yym3016 := z.DecBinary() - _ = yym3016 + yyv3020 := &x.PreferAvoidPods + yym3021 := z.DecBinary() + _ = yym3021 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3015), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3020), d) } } default: - z.DecStructFieldNotFound(-1, yys3014) - } // end switch yys3014 - } // end for yyj3014 + z.DecStructFieldNotFound(-1, yys3019) + } // end switch yys3019 + } // end for yyj3019 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38636,16 +38677,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3017 int - var yyb3017 bool - var yyhl3017 bool = l >= 0 - yyj3017++ - if yyhl3017 { - yyb3017 = yyj3017 > l + var yyj3022 int + var yyb3022 bool + var yyhl3022 bool = l >= 0 + yyj3022++ + if yyhl3022 { + yyb3022 = yyj3022 > l } else { - yyb3017 = r.CheckBreak() + yyb3022 = r.CheckBreak() } - if yyb3017 { + if yyb3022 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38653,26 +38694,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3018 := &x.PreferAvoidPods - yym3019 := z.DecBinary() - _ = yym3019 + yyv3023 := &x.PreferAvoidPods + yym3024 := z.DecBinary() + _ = yym3024 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3018), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3023), d) } } for { - yyj3017++ - if yyhl3017 { - yyb3017 = yyj3017 > l + yyj3022++ + if yyhl3022 { + yyb3022 = yyj3022 > l } else { - yyb3017 = r.CheckBreak() + yyb3022 = r.CheckBreak() } - if yyb3017 { + if yyb3022 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3017-1, "") + z.DecStructFieldNotFound(yyj3022-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38684,85 +38725,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3020 := z.EncBinary() - _ = yym3020 + yym3025 := z.EncBinary() + _ = yym3025 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3021 := !z.EncBinary() - yy2arr3021 := z.EncBasicHandle().StructToArray - var yyq3021 [4]bool - _, _, _ = yysep3021, yyq3021, yy2arr3021 - const yyr3021 bool = false - yyq3021[1] = true - yyq3021[2] = x.Reason != "" - yyq3021[3] = x.Message != "" - var yynn3021 int - if yyr3021 || yy2arr3021 { + yysep3026 := !z.EncBinary() + yy2arr3026 := z.EncBasicHandle().StructToArray + var yyq3026 [4]bool + _, _, _ = yysep3026, yyq3026, yy2arr3026 + const yyr3026 bool = false + yyq3026[1] = true + yyq3026[2] = x.Reason != "" + yyq3026[3] = x.Message != "" + var yynn3026 int + if yyr3026 || yy2arr3026 { r.EncodeArrayStart(4) } else { - yynn3021 = 1 - for _, b := range yyq3021 { + yynn3026 = 1 + for _, b := range yyq3026 { if b { - yynn3021++ + yynn3026++ } } - r.EncodeMapStart(yynn3021) - yynn3021 = 0 + r.EncodeMapStart(yynn3026) + yynn3026 = 0 } - if yyr3021 || yy2arr3021 { + if yyr3026 || yy2arr3026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3023 := &x.PodSignature - yy3023.CodecEncodeSelf(e) + yy3028 := &x.PodSignature + yy3028.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3024 := &x.PodSignature - yy3024.CodecEncodeSelf(e) + yy3029 := &x.PodSignature + yy3029.CodecEncodeSelf(e) } - if yyr3021 || yy2arr3021 { + if yyr3026 || yy2arr3026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3021[1] { - yy3026 := &x.EvictionTime - yym3027 := z.EncBinary() - _ = yym3027 + if yyq3026[1] { + yy3031 := &x.EvictionTime + yym3032 := z.EncBinary() + _ = yym3032 if false { - } else if z.HasExtensions() && z.EncExt(yy3026) { - } else if yym3027 { - z.EncBinaryMarshal(yy3026) - } else if !yym3027 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3026) + } else if z.HasExtensions() && z.EncExt(yy3031) { + } else if yym3032 { + z.EncBinaryMarshal(yy3031) + } else if !yym3032 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3031) } else { - z.EncFallback(yy3026) + z.EncFallback(yy3031) } } else { r.EncodeNil() } } else { - if yyq3021[1] { + if yyq3026[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3028 := &x.EvictionTime - yym3029 := z.EncBinary() - _ = yym3029 + yy3033 := &x.EvictionTime + yym3034 := z.EncBinary() + _ = yym3034 if false { - } else if z.HasExtensions() && z.EncExt(yy3028) { - } else if yym3029 { - z.EncBinaryMarshal(yy3028) - } else if !yym3029 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3028) + } else if z.HasExtensions() && z.EncExt(yy3033) { + } else if yym3034 { + z.EncBinaryMarshal(yy3033) + } else if !yym3034 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3033) } else { - z.EncFallback(yy3028) + z.EncFallback(yy3033) } } } - if yyr3021 || yy2arr3021 { + if yyr3026 || yy2arr3026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3021[2] { - yym3031 := z.EncBinary() - _ = yym3031 + if yyq3026[2] { + yym3036 := z.EncBinary() + _ = yym3036 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38771,23 +38812,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3021[2] { + if yyq3026[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3032 := z.EncBinary() - _ = yym3032 + yym3037 := z.EncBinary() + _ = yym3037 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3021 || yy2arr3021 { + if yyr3026 || yy2arr3026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3021[3] { - yym3034 := z.EncBinary() - _ = yym3034 + if yyq3026[3] { + yym3039 := z.EncBinary() + _ = yym3039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -38796,19 +38837,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3021[3] { + if yyq3026[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3035 := z.EncBinary() - _ = yym3035 + yym3040 := z.EncBinary() + _ = yym3040 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3021 || yy2arr3021 { + if yyr3026 || yy2arr3026 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38821,25 +38862,25 @@ func (x *PreferAvoidPodsEntry) 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 { - yyct3037 := r.ContainerType() - if yyct3037 == codecSelferValueTypeMap1234 { - yyl3037 := r.ReadMapStart() - if yyl3037 == 0 { + yyct3042 := r.ContainerType() + if yyct3042 == codecSelferValueTypeMap1234 { + yyl3042 := r.ReadMapStart() + if yyl3042 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3037, d) + x.codecDecodeSelfFromMap(yyl3042, d) } - } else if yyct3037 == codecSelferValueTypeArray1234 { - yyl3037 := r.ReadArrayStart() - if yyl3037 == 0 { + } else if yyct3042 == codecSelferValueTypeArray1234 { + yyl3042 := r.ReadArrayStart() + if yyl3042 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3037, d) + x.codecDecodeSelfFromArray(yyl3042, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38851,12 +38892,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3038Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3038Slc - var yyhl3038 bool = l >= 0 - for yyj3038 := 0; ; yyj3038++ { - if yyhl3038 { - if yyj3038 >= l { + var yys3043Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3043Slc + var yyhl3043 bool = l >= 0 + for yyj3043 := 0; ; yyj3043++ { + if yyhl3043 { + if yyj3043 >= l { break } } else { @@ -38865,32 +38906,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3038Slc = r.DecodeBytes(yys3038Slc, true, true) - yys3038 := string(yys3038Slc) + yys3043Slc = r.DecodeBytes(yys3043Slc, true, true) + yys3043 := string(yys3043Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3038 { + switch yys3043 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3039 := &x.PodSignature - yyv3039.CodecDecodeSelf(d) + yyv3044 := &x.PodSignature + yyv3044.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3040 := &x.EvictionTime - yym3041 := z.DecBinary() - _ = yym3041 + yyv3045 := &x.EvictionTime + yym3046 := z.DecBinary() + _ = yym3046 if false { - } else if z.HasExtensions() && z.DecExt(yyv3040) { - } else if yym3041 { - z.DecBinaryUnmarshal(yyv3040) - } else if !yym3041 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3040) + } else if z.HasExtensions() && z.DecExt(yyv3045) { + } else if yym3046 { + z.DecBinaryUnmarshal(yyv3045) + } else if !yym3046 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3045) } else { - z.DecFallback(yyv3040, false) + z.DecFallback(yyv3045, false) } } case "reason": @@ -38906,9 +38947,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3038) - } // end switch yys3038 - } // end for yyj3038 + z.DecStructFieldNotFound(-1, yys3043) + } // end switch yys3043 + } // end for yyj3043 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38916,16 +38957,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3044 int - var yyb3044 bool - var yyhl3044 bool = l >= 0 - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + var yyj3049 int + var yyb3049 bool + var yyhl3049 bool = l >= 0 + yyj3049++ + if yyhl3049 { + yyb3049 = yyj3049 > l } else { - yyb3044 = r.CheckBreak() + yyb3049 = r.CheckBreak() } - if yyb3044 { + if yyb3049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38933,16 +38974,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3045 := &x.PodSignature - yyv3045.CodecDecodeSelf(d) + yyv3050 := &x.PodSignature + yyv3050.CodecDecodeSelf(d) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3049++ + if yyhl3049 { + yyb3049 = yyj3049 > l } else { - yyb3044 = r.CheckBreak() + yyb3049 = r.CheckBreak() } - if yyb3044 { + if yyb3049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38950,26 +38991,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3046 := &x.EvictionTime - yym3047 := z.DecBinary() - _ = yym3047 + yyv3051 := &x.EvictionTime + yym3052 := z.DecBinary() + _ = yym3052 if false { - } else if z.HasExtensions() && z.DecExt(yyv3046) { - } else if yym3047 { - z.DecBinaryUnmarshal(yyv3046) - } else if !yym3047 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3046) + } else if z.HasExtensions() && z.DecExt(yyv3051) { + } else if yym3052 { + z.DecBinaryUnmarshal(yyv3051) + } else if !yym3052 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3051) } else { - z.DecFallback(yyv3046, false) + z.DecFallback(yyv3051, false) } } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3049++ + if yyhl3049 { + yyb3049 = yyj3049 > l } else { - yyb3044 = r.CheckBreak() + yyb3049 = r.CheckBreak() } - if yyb3044 { + if yyb3049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38979,13 +39020,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3049++ + if yyhl3049 { + yyb3049 = yyj3049 > l } else { - yyb3044 = r.CheckBreak() + yyb3049 = r.CheckBreak() } - if yyb3044 { + if yyb3049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38996,17 +39037,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3049++ + if yyhl3049 { + yyb3049 = yyj3049 > l } else { - yyb3044 = r.CheckBreak() + yyb3049 = r.CheckBreak() } - if yyb3044 { + if yyb3049 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3044-1, "") + z.DecStructFieldNotFound(yyj3049-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39018,33 +39059,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3050 := z.EncBinary() - _ = yym3050 + yym3055 := z.EncBinary() + _ = yym3055 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3051 := !z.EncBinary() - yy2arr3051 := z.EncBasicHandle().StructToArray - var yyq3051 [1]bool - _, _, _ = yysep3051, yyq3051, yy2arr3051 - const yyr3051 bool = false - yyq3051[0] = x.PodController != nil - var yynn3051 int - if yyr3051 || yy2arr3051 { + yysep3056 := !z.EncBinary() + yy2arr3056 := z.EncBasicHandle().StructToArray + var yyq3056 [1]bool + _, _, _ = yysep3056, yyq3056, yy2arr3056 + const yyr3056 bool = false + yyq3056[0] = x.PodController != nil + var yynn3056 int + if yyr3056 || yy2arr3056 { r.EncodeArrayStart(1) } else { - yynn3051 = 0 - for _, b := range yyq3051 { + yynn3056 = 0 + for _, b := range yyq3056 { if b { - yynn3051++ + yynn3056++ } } - r.EncodeMapStart(yynn3051) - yynn3051 = 0 + r.EncodeMapStart(yynn3056) + yynn3056 = 0 } - if yyr3051 || yy2arr3051 { + if yyr3056 || yy2arr3056 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3051[0] { + if yyq3056[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -39054,7 +39095,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3051[0] { + if yyq3056[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39065,7 +39106,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3051 || yy2arr3051 { + if yyr3056 || yy2arr3056 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39078,25 +39119,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3053 := z.DecBinary() - _ = yym3053 + yym3058 := z.DecBinary() + _ = yym3058 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3054 := r.ContainerType() - if yyct3054 == codecSelferValueTypeMap1234 { - yyl3054 := r.ReadMapStart() - if yyl3054 == 0 { + yyct3059 := r.ContainerType() + if yyct3059 == codecSelferValueTypeMap1234 { + yyl3059 := r.ReadMapStart() + if yyl3059 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3054, d) + x.codecDecodeSelfFromMap(yyl3059, d) } - } else if yyct3054 == codecSelferValueTypeArray1234 { - yyl3054 := r.ReadArrayStart() - if yyl3054 == 0 { + } else if yyct3059 == codecSelferValueTypeArray1234 { + yyl3059 := r.ReadArrayStart() + if yyl3059 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3054, d) + x.codecDecodeSelfFromArray(yyl3059, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39108,12 +39149,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3055Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3055Slc - var yyhl3055 bool = l >= 0 - for yyj3055 := 0; ; yyj3055++ { - if yyhl3055 { - if yyj3055 >= l { + var yys3060Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3060Slc + var yyhl3060 bool = l >= 0 + for yyj3060 := 0; ; yyj3060++ { + if yyhl3060 { + if yyj3060 >= l { break } } else { @@ -39122,10 +39163,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3055Slc = r.DecodeBytes(yys3055Slc, true, true) - yys3055 := string(yys3055Slc) + yys3060Slc = r.DecodeBytes(yys3060Slc, true, true) + yys3060 := string(yys3060Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3055 { + switch yys3060 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -39138,9 +39179,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3055) - } // end switch yys3055 - } // end for yyj3055 + z.DecStructFieldNotFound(-1, yys3060) + } // end switch yys3060 + } // end for yyj3060 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39148,16 +39189,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3057 int - var yyb3057 bool - var yyhl3057 bool = l >= 0 - yyj3057++ - if yyhl3057 { - yyb3057 = yyj3057 > l + var yyj3062 int + var yyb3062 bool + var yyhl3062 bool = l >= 0 + yyj3062++ + if yyhl3062 { + yyb3062 = yyj3062 > l } else { - yyb3057 = r.CheckBreak() + yyb3062 = r.CheckBreak() } - if yyb3057 { + if yyb3062 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39173,17 +39214,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj3057++ - if yyhl3057 { - yyb3057 = yyj3057 > l + yyj3062++ + if yyhl3062 { + yyb3062 = yyj3062 > l } else { - yyb3057 = r.CheckBreak() + yyb3062 = r.CheckBreak() } - if yyb3057 { + if yyb3062 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3057-1, "") + z.DecStructFieldNotFound(yyj3062-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39195,37 +39236,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3059 := z.EncBinary() - _ = yym3059 + yym3064 := z.EncBinary() + _ = yym3064 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3060 := !z.EncBinary() - yy2arr3060 := z.EncBasicHandle().StructToArray - var yyq3060 [2]bool - _, _, _ = yysep3060, yyq3060, yy2arr3060 - const yyr3060 bool = false - yyq3060[1] = x.SizeBytes != 0 - var yynn3060 int - if yyr3060 || yy2arr3060 { + yysep3065 := !z.EncBinary() + yy2arr3065 := z.EncBasicHandle().StructToArray + var yyq3065 [2]bool + _, _, _ = yysep3065, yyq3065, yy2arr3065 + const yyr3065 bool = false + yyq3065[1] = x.SizeBytes != 0 + var yynn3065 int + if yyr3065 || yy2arr3065 { r.EncodeArrayStart(2) } else { - yynn3060 = 1 - for _, b := range yyq3060 { + yynn3065 = 1 + for _, b := range yyq3065 { if b { - yynn3060++ + yynn3065++ } } - r.EncodeMapStart(yynn3060) - yynn3060 = 0 + r.EncodeMapStart(yynn3065) + yynn3065 = 0 } - if yyr3060 || yy2arr3060 { + if yyr3065 || yy2arr3065 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3062 := z.EncBinary() - _ = yym3062 + yym3067 := z.EncBinary() + _ = yym3067 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -39238,19 +39279,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3063 := z.EncBinary() - _ = yym3063 + yym3068 := z.EncBinary() + _ = yym3068 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3060 || yy2arr3060 { + if yyr3065 || yy2arr3065 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3060[1] { - yym3065 := z.EncBinary() - _ = yym3065 + if yyq3065[1] { + yym3070 := z.EncBinary() + _ = yym3070 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -39259,19 +39300,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3060[1] { + if yyq3065[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3066 := z.EncBinary() - _ = yym3066 + yym3071 := z.EncBinary() + _ = yym3071 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3060 || yy2arr3060 { + if yyr3065 || yy2arr3065 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39284,25 +39325,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3067 := z.DecBinary() - _ = yym3067 + yym3072 := z.DecBinary() + _ = yym3072 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3068 := r.ContainerType() - if yyct3068 == codecSelferValueTypeMap1234 { - yyl3068 := r.ReadMapStart() - if yyl3068 == 0 { + yyct3073 := r.ContainerType() + if yyct3073 == codecSelferValueTypeMap1234 { + yyl3073 := r.ReadMapStart() + if yyl3073 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3068, d) + x.codecDecodeSelfFromMap(yyl3073, d) } - } else if yyct3068 == codecSelferValueTypeArray1234 { - yyl3068 := r.ReadArrayStart() - if yyl3068 == 0 { + } else if yyct3073 == codecSelferValueTypeArray1234 { + yyl3073 := r.ReadArrayStart() + if yyl3073 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3068, d) + x.codecDecodeSelfFromArray(yyl3073, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39314,12 +39355,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3069Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3069Slc - var yyhl3069 bool = l >= 0 - for yyj3069 := 0; ; yyj3069++ { - if yyhl3069 { - if yyj3069 >= l { + var yys3074Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3074Slc + var yyhl3074 bool = l >= 0 + for yyj3074 := 0; ; yyj3074++ { + if yyhl3074 { + if yyj3074 >= l { break } } else { @@ -39328,20 +39369,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3069Slc = r.DecodeBytes(yys3069Slc, true, true) - yys3069 := string(yys3069Slc) + yys3074Slc = r.DecodeBytes(yys3074Slc, true, true) + yys3074 := string(yys3074Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3069 { + switch yys3074 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3070 := &x.Names - yym3071 := z.DecBinary() - _ = yym3071 + yyv3075 := &x.Names + yym3076 := z.DecBinary() + _ = yym3076 if false { } else { - z.F.DecSliceStringX(yyv3070, false, d) + z.F.DecSliceStringX(yyv3075, false, d) } } case "sizeBytes": @@ -39351,9 +39392,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3069) - } // end switch yys3069 - } // end for yyj3069 + z.DecStructFieldNotFound(-1, yys3074) + } // end switch yys3074 + } // end for yyj3074 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39361,16 +39402,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3073 int - var yyb3073 bool - var yyhl3073 bool = l >= 0 - yyj3073++ - if yyhl3073 { - yyb3073 = yyj3073 > l + var yyj3078 int + var yyb3078 bool + var yyhl3078 bool = l >= 0 + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3073 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3073 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39378,21 +39419,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3074 := &x.Names - yym3075 := z.DecBinary() - _ = yym3075 + yyv3079 := &x.Names + yym3080 := z.DecBinary() + _ = yym3080 if false { } else { - z.F.DecSliceStringX(yyv3074, false, d) + z.F.DecSliceStringX(yyv3079, false, d) } } - yyj3073++ - if yyhl3073 { - yyb3073 = yyj3073 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3073 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3073 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39403,17 +39444,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3073++ - if yyhl3073 { - yyb3073 = yyj3073 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3073 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3073 { + if yyb3078 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3073-1, "") + z.DecStructFieldNotFound(yyj3078-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39422,8 +39463,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3077 := z.EncBinary() - _ = yym3077 + yym3082 := z.EncBinary() + _ = yym3082 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39435,8 +39476,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3078 := z.DecBinary() - _ = yym3078 + yym3083 := z.DecBinary() + _ = yym3083 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39448,8 +39489,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3079 := z.EncBinary() - _ = yym3079 + yym3084 := z.EncBinary() + _ = yym3084 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39461,8 +39502,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3080 := z.DecBinary() - _ = yym3080 + yym3085 := z.DecBinary() + _ = yym3085 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39477,34 +39518,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3081 := z.EncBinary() - _ = yym3081 + yym3086 := z.EncBinary() + _ = yym3086 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3082 := !z.EncBinary() - yy2arr3082 := z.EncBasicHandle().StructToArray - var yyq3082 [6]bool - _, _, _ = yysep3082, yyq3082, yy2arr3082 - const yyr3082 bool = false - yyq3082[2] = true - yyq3082[3] = true - yyq3082[4] = x.Reason != "" - yyq3082[5] = x.Message != "" - var yynn3082 int - if yyr3082 || yy2arr3082 { + yysep3087 := !z.EncBinary() + yy2arr3087 := z.EncBasicHandle().StructToArray + var yyq3087 [6]bool + _, _, _ = yysep3087, yyq3087, yy2arr3087 + const yyr3087 bool = false + yyq3087[2] = true + yyq3087[3] = true + yyq3087[4] = x.Reason != "" + yyq3087[5] = x.Message != "" + var yynn3087 int + if yyr3087 || yy2arr3087 { r.EncodeArrayStart(6) } else { - yynn3082 = 2 - for _, b := range yyq3082 { + yynn3087 = 2 + for _, b := range yyq3087 { if b { - yynn3082++ + yynn3087++ } } - r.EncodeMapStart(yynn3082) - yynn3082 = 0 + r.EncodeMapStart(yynn3087) + yynn3087 = 0 } - if yyr3082 || yy2arr3082 { + if yyr3087 || yy2arr3087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -39513,7 +39554,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3082 || yy2arr3082 { + if yyr3087 || yy2arr3087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -39522,85 +39563,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3082 || yy2arr3082 { + if yyr3087 || yy2arr3087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3082[2] { - yy3086 := &x.LastHeartbeatTime - yym3087 := z.EncBinary() - _ = yym3087 + if yyq3087[2] { + yy3091 := &x.LastHeartbeatTime + yym3092 := z.EncBinary() + _ = yym3092 if false { - } else if z.HasExtensions() && z.EncExt(yy3086) { - } else if yym3087 { - z.EncBinaryMarshal(yy3086) - } else if !yym3087 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3086) + } else if z.HasExtensions() && z.EncExt(yy3091) { + } else if yym3092 { + z.EncBinaryMarshal(yy3091) + } else if !yym3092 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3091) } else { - z.EncFallback(yy3086) + z.EncFallback(yy3091) } } else { r.EncodeNil() } } else { - if yyq3082[2] { + if yyq3087[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3088 := &x.LastHeartbeatTime - yym3089 := z.EncBinary() - _ = yym3089 + yy3093 := &x.LastHeartbeatTime + yym3094 := z.EncBinary() + _ = yym3094 if false { - } else if z.HasExtensions() && z.EncExt(yy3088) { - } else if yym3089 { - z.EncBinaryMarshal(yy3088) - } else if !yym3089 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3088) + } else if z.HasExtensions() && z.EncExt(yy3093) { + } else if yym3094 { + z.EncBinaryMarshal(yy3093) + } else if !yym3094 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3093) } else { - z.EncFallback(yy3088) + z.EncFallback(yy3093) } } } - if yyr3082 || yy2arr3082 { + if yyr3087 || yy2arr3087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3082[3] { - yy3091 := &x.LastTransitionTime - yym3092 := z.EncBinary() - _ = yym3092 + if yyq3087[3] { + yy3096 := &x.LastTransitionTime + yym3097 := z.EncBinary() + _ = yym3097 if false { - } else if z.HasExtensions() && z.EncExt(yy3091) { - } else if yym3092 { - z.EncBinaryMarshal(yy3091) - } else if !yym3092 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3091) + } else if z.HasExtensions() && z.EncExt(yy3096) { + } else if yym3097 { + z.EncBinaryMarshal(yy3096) + } else if !yym3097 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3096) } else { - z.EncFallback(yy3091) + z.EncFallback(yy3096) } } else { r.EncodeNil() } } else { - if yyq3082[3] { + if yyq3087[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3093 := &x.LastTransitionTime - yym3094 := z.EncBinary() - _ = yym3094 + yy3098 := &x.LastTransitionTime + yym3099 := z.EncBinary() + _ = yym3099 if false { - } else if z.HasExtensions() && z.EncExt(yy3093) { - } else if yym3094 { - z.EncBinaryMarshal(yy3093) - } else if !yym3094 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3093) + } else if z.HasExtensions() && z.EncExt(yy3098) { + } else if yym3099 { + z.EncBinaryMarshal(yy3098) + } else if !yym3099 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3098) } else { - z.EncFallback(yy3093) + z.EncFallback(yy3098) } } } - if yyr3082 || yy2arr3082 { + if yyr3087 || yy2arr3087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3082[4] { - yym3096 := z.EncBinary() - _ = yym3096 + if yyq3087[4] { + yym3101 := z.EncBinary() + _ = yym3101 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -39609,23 +39650,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3082[4] { + if yyq3087[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3097 := z.EncBinary() - _ = yym3097 + yym3102 := z.EncBinary() + _ = yym3102 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3082 || yy2arr3082 { + if yyr3087 || yy2arr3087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3082[5] { - yym3099 := z.EncBinary() - _ = yym3099 + if yyq3087[5] { + yym3104 := z.EncBinary() + _ = yym3104 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39634,19 +39675,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3082[5] { + if yyq3087[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3100 := z.EncBinary() - _ = yym3100 + yym3105 := z.EncBinary() + _ = yym3105 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3082 || yy2arr3082 { + if yyr3087 || yy2arr3087 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39659,25 +39700,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3101 := z.DecBinary() - _ = yym3101 + yym3106 := z.DecBinary() + _ = yym3106 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3102 := r.ContainerType() - if yyct3102 == codecSelferValueTypeMap1234 { - yyl3102 := r.ReadMapStart() - if yyl3102 == 0 { + yyct3107 := r.ContainerType() + if yyct3107 == codecSelferValueTypeMap1234 { + yyl3107 := r.ReadMapStart() + if yyl3107 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3102, d) + x.codecDecodeSelfFromMap(yyl3107, d) } - } else if yyct3102 == codecSelferValueTypeArray1234 { - yyl3102 := r.ReadArrayStart() - if yyl3102 == 0 { + } else if yyct3107 == codecSelferValueTypeArray1234 { + yyl3107 := r.ReadArrayStart() + if yyl3107 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3102, d) + x.codecDecodeSelfFromArray(yyl3107, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39689,12 +39730,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3103Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3103Slc - var yyhl3103 bool = l >= 0 - for yyj3103 := 0; ; yyj3103++ { - if yyhl3103 { - if yyj3103 >= l { + var yys3108Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3108Slc + var yyhl3108 bool = l >= 0 + for yyj3108 := 0; ; yyj3108++ { + if yyhl3108 { + if yyj3108 >= l { break } } else { @@ -39703,10 +39744,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3103Slc = r.DecodeBytes(yys3103Slc, true, true) - yys3103 := string(yys3103Slc) + yys3108Slc = r.DecodeBytes(yys3108Slc, true, true) + yys3108 := string(yys3108Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3103 { + switch yys3108 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39723,34 +39764,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3106 := &x.LastHeartbeatTime - yym3107 := z.DecBinary() - _ = yym3107 + yyv3111 := &x.LastHeartbeatTime + yym3112 := z.DecBinary() + _ = yym3112 if false { - } else if z.HasExtensions() && z.DecExt(yyv3106) { - } else if yym3107 { - z.DecBinaryUnmarshal(yyv3106) - } else if !yym3107 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3106) + } else if z.HasExtensions() && z.DecExt(yyv3111) { + } else if yym3112 { + z.DecBinaryUnmarshal(yyv3111) + } else if !yym3112 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3111) } else { - z.DecFallback(yyv3106, false) + z.DecFallback(yyv3111, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3108 := &x.LastTransitionTime - yym3109 := z.DecBinary() - _ = yym3109 + yyv3113 := &x.LastTransitionTime + yym3114 := z.DecBinary() + _ = yym3114 if false { - } else if z.HasExtensions() && z.DecExt(yyv3108) { - } else if yym3109 { - z.DecBinaryUnmarshal(yyv3108) - } else if !yym3109 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3108) + } else if z.HasExtensions() && z.DecExt(yyv3113) { + } else if yym3114 { + z.DecBinaryUnmarshal(yyv3113) + } else if !yym3114 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3113) } else { - z.DecFallback(yyv3108, false) + z.DecFallback(yyv3113, false) } } case "reason": @@ -39766,9 +39807,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3103) - } // end switch yys3103 - } // end for yyj3103 + z.DecStructFieldNotFound(-1, yys3108) + } // end switch yys3108 + } // end for yyj3108 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39776,16 +39817,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3112 int - var yyb3112 bool - var yyhl3112 bool = l >= 0 - yyj3112++ - if yyhl3112 { - yyb3112 = yyj3112 > l + var yyj3117 int + var yyb3117 bool + var yyhl3117 bool = l >= 0 + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3112 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3112 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39795,13 +39836,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3112++ - if yyhl3112 { - yyb3112 = yyj3112 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3112 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3112 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39811,13 +39852,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3112++ - if yyhl3112 { - yyb3112 = yyj3112 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3112 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3112 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39825,26 +39866,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3115 := &x.LastHeartbeatTime - yym3116 := z.DecBinary() - _ = yym3116 + yyv3120 := &x.LastHeartbeatTime + yym3121 := z.DecBinary() + _ = yym3121 if false { - } else if z.HasExtensions() && z.DecExt(yyv3115) { - } else if yym3116 { - z.DecBinaryUnmarshal(yyv3115) - } else if !yym3116 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3115) + } else if z.HasExtensions() && z.DecExt(yyv3120) { + } else if yym3121 { + z.DecBinaryUnmarshal(yyv3120) + } else if !yym3121 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3120) } else { - z.DecFallback(yyv3115, false) + z.DecFallback(yyv3120, false) } } - yyj3112++ - if yyhl3112 { - yyb3112 = yyj3112 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3112 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3112 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39852,26 +39893,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3117 := &x.LastTransitionTime - yym3118 := z.DecBinary() - _ = yym3118 + yyv3122 := &x.LastTransitionTime + yym3123 := z.DecBinary() + _ = yym3123 if false { - } else if z.HasExtensions() && z.DecExt(yyv3117) { - } else if yym3118 { - z.DecBinaryUnmarshal(yyv3117) - } else if !yym3118 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3117) + } else if z.HasExtensions() && z.DecExt(yyv3122) { + } else if yym3123 { + z.DecBinaryUnmarshal(yyv3122) + } else if !yym3123 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3122) } else { - z.DecFallback(yyv3117, false) + z.DecFallback(yyv3122, false) } } - yyj3112++ - if yyhl3112 { - yyb3112 = yyj3112 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3112 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3112 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39881,13 +39922,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3112++ - if yyhl3112 { - yyb3112 = yyj3112 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3112 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3112 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39898,17 +39939,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3112++ - if yyhl3112 { - yyb3112 = yyj3112 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3112 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3112 { + if yyb3117 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3112-1, "") + z.DecStructFieldNotFound(yyj3117-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39917,8 +39958,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3121 := z.EncBinary() - _ = yym3121 + yym3126 := z.EncBinary() + _ = yym3126 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39930,8 +39971,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3122 := z.DecBinary() - _ = yym3122 + yym3127 := z.DecBinary() + _ = yym3127 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39946,30 +39987,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3123 := z.EncBinary() - _ = yym3123 + yym3128 := z.EncBinary() + _ = yym3128 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3124 := !z.EncBinary() - yy2arr3124 := z.EncBasicHandle().StructToArray - var yyq3124 [2]bool - _, _, _ = yysep3124, yyq3124, yy2arr3124 - const yyr3124 bool = false - var yynn3124 int - if yyr3124 || yy2arr3124 { + yysep3129 := !z.EncBinary() + yy2arr3129 := z.EncBasicHandle().StructToArray + var yyq3129 [2]bool + _, _, _ = yysep3129, yyq3129, yy2arr3129 + const yyr3129 bool = false + var yynn3129 int + if yyr3129 || yy2arr3129 { r.EncodeArrayStart(2) } else { - yynn3124 = 2 - for _, b := range yyq3124 { + yynn3129 = 2 + for _, b := range yyq3129 { if b { - yynn3124++ + yynn3129++ } } - r.EncodeMapStart(yynn3124) - yynn3124 = 0 + r.EncodeMapStart(yynn3129) + yynn3129 = 0 } - if yyr3124 || yy2arr3124 { + if yyr3129 || yy2arr3129 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -39978,10 +40019,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3124 || yy2arr3124 { + if yyr3129 || yy2arr3129 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3127 := z.EncBinary() - _ = yym3127 + yym3132 := z.EncBinary() + _ = yym3132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -39990,14 +40031,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3128 := z.EncBinary() - _ = yym3128 + yym3133 := z.EncBinary() + _ = yym3133 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3124 || yy2arr3124 { + if yyr3129 || yy2arr3129 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40010,25 +40051,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3129 := z.DecBinary() - _ = yym3129 + yym3134 := z.DecBinary() + _ = yym3134 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3130 := r.ContainerType() - if yyct3130 == codecSelferValueTypeMap1234 { - yyl3130 := r.ReadMapStart() - if yyl3130 == 0 { + yyct3135 := r.ContainerType() + if yyct3135 == codecSelferValueTypeMap1234 { + yyl3135 := r.ReadMapStart() + if yyl3135 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3130, d) + x.codecDecodeSelfFromMap(yyl3135, d) } - } else if yyct3130 == codecSelferValueTypeArray1234 { - yyl3130 := r.ReadArrayStart() - if yyl3130 == 0 { + } else if yyct3135 == codecSelferValueTypeArray1234 { + yyl3135 := r.ReadArrayStart() + if yyl3135 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3130, d) + x.codecDecodeSelfFromArray(yyl3135, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40040,12 +40081,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3131Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3131Slc - var yyhl3131 bool = l >= 0 - for yyj3131 := 0; ; yyj3131++ { - if yyhl3131 { - if yyj3131 >= l { + var yys3136Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3136Slc + var yyhl3136 bool = l >= 0 + for yyj3136 := 0; ; yyj3136++ { + if yyhl3136 { + if yyj3136 >= l { break } } else { @@ -40054,10 +40095,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3131Slc = r.DecodeBytes(yys3131Slc, true, true) - yys3131 := string(yys3131Slc) + yys3136Slc = r.DecodeBytes(yys3136Slc, true, true) + yys3136 := string(yys3136Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3131 { + switch yys3136 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -40071,9 +40112,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3131) - } // end switch yys3131 - } // end for yyj3131 + z.DecStructFieldNotFound(-1, yys3136) + } // end switch yys3136 + } // end for yyj3136 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40081,16 +40122,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3134 int - var yyb3134 bool - var yyhl3134 bool = l >= 0 - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + var yyj3139 int + var yyb3139 bool + var yyhl3139 bool = l >= 0 + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40100,13 +40141,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40117,17 +40158,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3134-1, "") + z.DecStructFieldNotFound(yyj3139-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40139,33 +40180,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3137 := z.EncBinary() - _ = yym3137 + yym3142 := z.EncBinary() + _ = yym3142 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3138 := !z.EncBinary() - yy2arr3138 := z.EncBasicHandle().StructToArray - var yyq3138 [1]bool - _, _, _ = yysep3138, yyq3138, yy2arr3138 - const yyr3138 bool = false - yyq3138[0] = len(x.Capacity) != 0 - var yynn3138 int - if yyr3138 || yy2arr3138 { + yysep3143 := !z.EncBinary() + yy2arr3143 := z.EncBasicHandle().StructToArray + var yyq3143 [1]bool + _, _, _ = yysep3143, yyq3143, yy2arr3143 + const yyr3143 bool = false + yyq3143[0] = len(x.Capacity) != 0 + var yynn3143 int + if yyr3143 || yy2arr3143 { r.EncodeArrayStart(1) } else { - yynn3138 = 0 - for _, b := range yyq3138 { + yynn3143 = 0 + for _, b := range yyq3143 { if b { - yynn3138++ + yynn3143++ } } - r.EncodeMapStart(yynn3138) - yynn3138 = 0 + r.EncodeMapStart(yynn3143) + yynn3143 = 0 } - if yyr3138 || yy2arr3138 { + if yyr3143 || yy2arr3143 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3138[0] { + if yyq3143[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -40175,7 +40216,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3138[0] { + if yyq3143[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -40186,7 +40227,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3138 || yy2arr3138 { + if yyr3143 || yy2arr3143 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40199,25 +40240,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3140 := z.DecBinary() - _ = yym3140 + yym3145 := z.DecBinary() + _ = yym3145 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3141 := r.ContainerType() - if yyct3141 == codecSelferValueTypeMap1234 { - yyl3141 := r.ReadMapStart() - if yyl3141 == 0 { + yyct3146 := r.ContainerType() + if yyct3146 == codecSelferValueTypeMap1234 { + yyl3146 := r.ReadMapStart() + if yyl3146 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3141, d) + x.codecDecodeSelfFromMap(yyl3146, d) } - } else if yyct3141 == codecSelferValueTypeArray1234 { - yyl3141 := r.ReadArrayStart() - if yyl3141 == 0 { + } else if yyct3146 == codecSelferValueTypeArray1234 { + yyl3146 := r.ReadArrayStart() + if yyl3146 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3141, d) + x.codecDecodeSelfFromArray(yyl3146, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40229,12 +40270,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3142Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3142Slc - var yyhl3142 bool = l >= 0 - for yyj3142 := 0; ; yyj3142++ { - if yyhl3142 { - if yyj3142 >= l { + var yys3147Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3147Slc + var yyhl3147 bool = l >= 0 + for yyj3147 := 0; ; yyj3147++ { + if yyhl3147 { + if yyj3147 >= l { break } } else { @@ -40243,21 +40284,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3142Slc = r.DecodeBytes(yys3142Slc, true, true) - yys3142 := string(yys3142Slc) + yys3147Slc = r.DecodeBytes(yys3147Slc, true, true) + yys3147 := string(yys3147Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3142 { + switch yys3147 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3143 := &x.Capacity - yyv3143.CodecDecodeSelf(d) + yyv3148 := &x.Capacity + yyv3148.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3142) - } // end switch yys3142 - } // end for yyj3142 + z.DecStructFieldNotFound(-1, yys3147) + } // end switch yys3147 + } // end for yyj3147 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40265,16 +40306,16 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3144 int - var yyb3144 bool - var yyhl3144 bool = l >= 0 - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + var yyj3149 int + var yyb3149 bool + var yyhl3149 bool = l >= 0 + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3144 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3144 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40282,21 +40323,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3145 := &x.Capacity - yyv3145.CodecDecodeSelf(d) + yyv3150 := &x.Capacity + yyv3150.CodecDecodeSelf(d) } for { - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3144 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3144 { + if yyb3149 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3144-1, "") + z.DecStructFieldNotFound(yyj3149-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40305,8 +40346,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3146 := z.EncBinary() - _ = yym3146 + yym3151 := z.EncBinary() + _ = yym3151 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40318,8 +40359,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3147 := z.DecBinary() - _ = yym3147 + yym3152 := z.DecBinary() + _ = yym3152 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40334,8 +40375,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3148 := z.EncBinary() - _ = yym3148 + yym3153 := z.EncBinary() + _ = yym3153 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40348,8 +40389,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3149 := z.DecBinary() - _ = yym3149 + yym3154 := z.DecBinary() + _ = yym3154 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40364,39 +40405,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3150 := z.EncBinary() - _ = yym3150 + yym3155 := z.EncBinary() + _ = yym3155 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3151 := !z.EncBinary() - yy2arr3151 := z.EncBasicHandle().StructToArray - var yyq3151 [5]bool - _, _, _ = yysep3151, yyq3151, yy2arr3151 - const yyr3151 bool = false - yyq3151[0] = x.Kind != "" - yyq3151[1] = x.APIVersion != "" - yyq3151[2] = true - yyq3151[3] = true - yyq3151[4] = true - var yynn3151 int - if yyr3151 || yy2arr3151 { + yysep3156 := !z.EncBinary() + yy2arr3156 := z.EncBasicHandle().StructToArray + var yyq3156 [5]bool + _, _, _ = yysep3156, yyq3156, yy2arr3156 + const yyr3156 bool = false + yyq3156[0] = x.Kind != "" + yyq3156[1] = x.APIVersion != "" + yyq3156[2] = true + yyq3156[3] = true + yyq3156[4] = true + var yynn3156 int + if yyr3156 || yy2arr3156 { r.EncodeArrayStart(5) } else { - yynn3151 = 0 - for _, b := range yyq3151 { + yynn3156 = 0 + for _, b := range yyq3156 { if b { - yynn3151++ + yynn3156++ } } - r.EncodeMapStart(yynn3151) - yynn3151 = 0 + r.EncodeMapStart(yynn3156) + yynn3156 = 0 } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[0] { - yym3153 := z.EncBinary() - _ = yym3153 + if yyq3156[0] { + yym3158 := z.EncBinary() + _ = yym3158 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40405,23 +40446,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3151[0] { + if yyq3156[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3154 := z.EncBinary() - _ = yym3154 + yym3159 := z.EncBinary() + _ = yym3159 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[1] { - yym3156 := z.EncBinary() - _ = yym3156 + if yyq3156[1] { + yym3161 := z.EncBinary() + _ = yym3161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40430,70 +40471,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3151[1] { + if yyq3156[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3157 := z.EncBinary() - _ = yym3157 + yym3162 := z.EncBinary() + _ = yym3162 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[2] { - yy3159 := &x.ObjectMeta - yy3159.CodecEncodeSelf(e) + if yyq3156[2] { + yy3164 := &x.ObjectMeta + yy3164.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3151[2] { + if yyq3156[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3160 := &x.ObjectMeta - yy3160.CodecEncodeSelf(e) + yy3165 := &x.ObjectMeta + yy3165.CodecEncodeSelf(e) } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[3] { - yy3162 := &x.Spec - yy3162.CodecEncodeSelf(e) + if yyq3156[3] { + yy3167 := &x.Spec + yy3167.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3151[3] { + if yyq3156[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3163 := &x.Spec - yy3163.CodecEncodeSelf(e) + yy3168 := &x.Spec + yy3168.CodecEncodeSelf(e) } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[4] { - yy3165 := &x.Status - yy3165.CodecEncodeSelf(e) + if yyq3156[4] { + yy3170 := &x.Status + yy3170.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3151[4] { + if yyq3156[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3166 := &x.Status - yy3166.CodecEncodeSelf(e) + yy3171 := &x.Status + yy3171.CodecEncodeSelf(e) } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40506,25 +40547,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3167 := z.DecBinary() - _ = yym3167 + yym3172 := z.DecBinary() + _ = yym3172 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3168 := r.ContainerType() - if yyct3168 == codecSelferValueTypeMap1234 { - yyl3168 := r.ReadMapStart() - if yyl3168 == 0 { + yyct3173 := r.ContainerType() + if yyct3173 == codecSelferValueTypeMap1234 { + yyl3173 := r.ReadMapStart() + if yyl3173 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3168, d) + x.codecDecodeSelfFromMap(yyl3173, d) } - } else if yyct3168 == codecSelferValueTypeArray1234 { - yyl3168 := r.ReadArrayStart() - if yyl3168 == 0 { + } else if yyct3173 == codecSelferValueTypeArray1234 { + yyl3173 := r.ReadArrayStart() + if yyl3173 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3168, d) + x.codecDecodeSelfFromArray(yyl3173, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40536,12 +40577,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3169Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3169Slc - var yyhl3169 bool = l >= 0 - for yyj3169 := 0; ; yyj3169++ { - if yyhl3169 { - if yyj3169 >= l { + var yys3174Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3174Slc + var yyhl3174 bool = l >= 0 + for yyj3174 := 0; ; yyj3174++ { + if yyhl3174 { + if yyj3174 >= l { break } } else { @@ -40550,10 +40591,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3169Slc = r.DecodeBytes(yys3169Slc, true, true) - yys3169 := string(yys3169Slc) + yys3174Slc = r.DecodeBytes(yys3174Slc, true, true) + yys3174 := string(yys3174Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3169 { + switch yys3174 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40570,27 +40611,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3172 := &x.ObjectMeta - yyv3172.CodecDecodeSelf(d) + yyv3177 := &x.ObjectMeta + yyv3177.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3173 := &x.Spec - yyv3173.CodecDecodeSelf(d) + yyv3178 := &x.Spec + yyv3178.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3174 := &x.Status - yyv3174.CodecDecodeSelf(d) + yyv3179 := &x.Status + yyv3179.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3169) - } // end switch yys3169 - } // end for yyj3169 + z.DecStructFieldNotFound(-1, yys3174) + } // end switch yys3174 + } // end for yyj3174 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40598,16 +40639,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3175 int - var yyb3175 bool - var yyhl3175 bool = l >= 0 - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + var yyj3180 int + var yyb3180 bool + var yyhl3180 bool = l >= 0 + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40617,13 +40658,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40633,13 +40674,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40647,16 +40688,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3178 := &x.ObjectMeta - yyv3178.CodecDecodeSelf(d) + yyv3183 := &x.ObjectMeta + yyv3183.CodecDecodeSelf(d) } - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40664,16 +40705,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3179 := &x.Spec - yyv3179.CodecDecodeSelf(d) + yyv3184 := &x.Spec + yyv3184.CodecDecodeSelf(d) } - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40681,21 +40722,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3180 := &x.Status - yyv3180.CodecDecodeSelf(d) + yyv3185 := &x.Status + yyv3185.CodecDecodeSelf(d) } for { - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3175-1, "") + z.DecStructFieldNotFound(yyj3180-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40707,37 +40748,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3181 := z.EncBinary() - _ = yym3181 + yym3186 := z.EncBinary() + _ = yym3186 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3182 := !z.EncBinary() - yy2arr3182 := z.EncBasicHandle().StructToArray - var yyq3182 [4]bool - _, _, _ = yysep3182, yyq3182, yy2arr3182 - const yyr3182 bool = false - yyq3182[0] = x.Kind != "" - yyq3182[1] = x.APIVersion != "" - yyq3182[2] = true - var yynn3182 int - if yyr3182 || yy2arr3182 { + yysep3187 := !z.EncBinary() + yy2arr3187 := z.EncBasicHandle().StructToArray + var yyq3187 [4]bool + _, _, _ = yysep3187, yyq3187, yy2arr3187 + const yyr3187 bool = false + yyq3187[0] = x.Kind != "" + yyq3187[1] = x.APIVersion != "" + yyq3187[2] = true + var yynn3187 int + if yyr3187 || yy2arr3187 { r.EncodeArrayStart(4) } else { - yynn3182 = 1 - for _, b := range yyq3182 { + yynn3187 = 1 + for _, b := range yyq3187 { if b { - yynn3182++ + yynn3187++ } } - r.EncodeMapStart(yynn3182) - yynn3182 = 0 + r.EncodeMapStart(yynn3187) + yynn3187 = 0 } - if yyr3182 || yy2arr3182 { + if yyr3187 || yy2arr3187 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3182[0] { - yym3184 := z.EncBinary() - _ = yym3184 + if yyq3187[0] { + yym3189 := z.EncBinary() + _ = yym3189 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40746,23 +40787,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3182[0] { + if yyq3187[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3185 := z.EncBinary() - _ = yym3185 + yym3190 := z.EncBinary() + _ = yym3190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3182 || yy2arr3182 { + if yyr3187 || yy2arr3187 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3182[1] { - yym3187 := z.EncBinary() - _ = yym3187 + if yyq3187[1] { + yym3192 := z.EncBinary() + _ = yym3192 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40771,54 +40812,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3182[1] { + if yyq3187[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3188 := z.EncBinary() - _ = yym3188 + yym3193 := z.EncBinary() + _ = yym3193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3182 || yy2arr3182 { + if yyr3187 || yy2arr3187 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3182[2] { - yy3190 := &x.ListMeta - yym3191 := z.EncBinary() - _ = yym3191 + if yyq3187[2] { + yy3195 := &x.ListMeta + yym3196 := z.EncBinary() + _ = yym3196 if false { - } else if z.HasExtensions() && z.EncExt(yy3190) { + } else if z.HasExtensions() && z.EncExt(yy3195) { } else { - z.EncFallback(yy3190) + z.EncFallback(yy3195) } } else { r.EncodeNil() } } else { - if yyq3182[2] { + if yyq3187[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3192 := &x.ListMeta - yym3193 := z.EncBinary() - _ = yym3193 + yy3197 := &x.ListMeta + yym3198 := z.EncBinary() + _ = yym3198 if false { - } else if z.HasExtensions() && z.EncExt(yy3192) { + } else if z.HasExtensions() && z.EncExt(yy3197) { } else { - z.EncFallback(yy3192) + z.EncFallback(yy3197) } } } - if yyr3182 || yy2arr3182 { + if yyr3187 || yy2arr3187 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3195 := z.EncBinary() - _ = yym3195 + yym3200 := z.EncBinary() + _ = yym3200 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -40831,15 +40872,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3196 := z.EncBinary() - _ = yym3196 + yym3201 := z.EncBinary() + _ = yym3201 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3182 || yy2arr3182 { + if yyr3187 || yy2arr3187 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40852,25 +40893,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3197 := z.DecBinary() - _ = yym3197 + yym3202 := z.DecBinary() + _ = yym3202 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3198 := r.ContainerType() - if yyct3198 == codecSelferValueTypeMap1234 { - yyl3198 := r.ReadMapStart() - if yyl3198 == 0 { + yyct3203 := r.ContainerType() + if yyct3203 == codecSelferValueTypeMap1234 { + yyl3203 := r.ReadMapStart() + if yyl3203 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3198, d) + x.codecDecodeSelfFromMap(yyl3203, d) } - } else if yyct3198 == codecSelferValueTypeArray1234 { - yyl3198 := r.ReadArrayStart() - if yyl3198 == 0 { + } else if yyct3203 == codecSelferValueTypeArray1234 { + yyl3203 := r.ReadArrayStart() + if yyl3203 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3198, d) + x.codecDecodeSelfFromArray(yyl3203, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40882,12 +40923,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3199Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3199Slc - var yyhl3199 bool = l >= 0 - for yyj3199 := 0; ; yyj3199++ { - if yyhl3199 { - if yyj3199 >= l { + var yys3204Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3204Slc + var yyhl3204 bool = l >= 0 + for yyj3204 := 0; ; yyj3204++ { + if yyhl3204 { + if yyj3204 >= l { break } } else { @@ -40896,10 +40937,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3199Slc = r.DecodeBytes(yys3199Slc, true, true) - yys3199 := string(yys3199Slc) + yys3204Slc = r.DecodeBytes(yys3204Slc, true, true) + yys3204 := string(yys3204Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3199 { + switch yys3204 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40916,31 +40957,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3202 := &x.ListMeta - yym3203 := z.DecBinary() - _ = yym3203 + yyv3207 := &x.ListMeta + yym3208 := z.DecBinary() + _ = yym3208 if false { - } else if z.HasExtensions() && z.DecExt(yyv3202) { + } else if z.HasExtensions() && z.DecExt(yyv3207) { } else { - z.DecFallback(yyv3202, false) + z.DecFallback(yyv3207, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3204 := &x.Items - yym3205 := z.DecBinary() - _ = yym3205 + yyv3209 := &x.Items + yym3210 := z.DecBinary() + _ = yym3210 if false { } else { - h.decSliceNode((*[]Node)(yyv3204), d) + h.decSliceNode((*[]Node)(yyv3209), d) } } default: - z.DecStructFieldNotFound(-1, yys3199) - } // end switch yys3199 - } // end for yyj3199 + z.DecStructFieldNotFound(-1, yys3204) + } // end switch yys3204 + } // end for yyj3204 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40948,16 +40989,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3206 int - var yyb3206 bool - var yyhl3206 bool = l >= 0 - yyj3206++ - if yyhl3206 { - yyb3206 = yyj3206 > l + var yyj3211 int + var yyb3211 bool + var yyhl3211 bool = l >= 0 + yyj3211++ + if yyhl3211 { + yyb3211 = yyj3211 > l } else { - yyb3206 = r.CheckBreak() + yyb3211 = r.CheckBreak() } - if yyb3206 { + if yyb3211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40967,13 +41008,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3206++ - if yyhl3206 { - yyb3206 = yyj3206 > l + yyj3211++ + if yyhl3211 { + yyb3211 = yyj3211 > l } else { - yyb3206 = r.CheckBreak() + yyb3211 = r.CheckBreak() } - if yyb3206 { + if yyb3211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40983,13 +41024,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3206++ - if yyhl3206 { - yyb3206 = yyj3206 > l + yyj3211++ + if yyhl3211 { + yyb3211 = yyj3211 > l } else { - yyb3206 = r.CheckBreak() + yyb3211 = r.CheckBreak() } - if yyb3206 { + if yyb3211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40997,22 +41038,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3209 := &x.ListMeta - yym3210 := z.DecBinary() - _ = yym3210 + yyv3214 := &x.ListMeta + yym3215 := z.DecBinary() + _ = yym3215 if false { - } else if z.HasExtensions() && z.DecExt(yyv3209) { + } else if z.HasExtensions() && z.DecExt(yyv3214) { } else { - z.DecFallback(yyv3209, false) + z.DecFallback(yyv3214, false) } } - yyj3206++ - if yyhl3206 { - yyb3206 = yyj3206 > l + yyj3211++ + if yyhl3211 { + yyb3211 = yyj3211 > l } else { - yyb3206 = r.CheckBreak() + yyb3211 = r.CheckBreak() } - if yyb3206 { + if yyb3211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41020,26 +41061,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3211 := &x.Items - yym3212 := z.DecBinary() - _ = yym3212 + yyv3216 := &x.Items + yym3217 := z.DecBinary() + _ = yym3217 if false { } else { - h.decSliceNode((*[]Node)(yyv3211), d) + h.decSliceNode((*[]Node)(yyv3216), d) } } for { - yyj3206++ - if yyhl3206 { - yyb3206 = yyj3206 > l + yyj3211++ + if yyhl3211 { + yyb3211 = yyj3211 > l } else { - yyb3206 = r.CheckBreak() + yyb3211 = r.CheckBreak() } - if yyb3206 { + if yyb3211 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3206-1, "") + z.DecStructFieldNotFound(yyj3211-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41051,36 +41092,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3213 := z.EncBinary() - _ = yym3213 + yym3218 := z.EncBinary() + _ = yym3218 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3214 := !z.EncBinary() - yy2arr3214 := z.EncBasicHandle().StructToArray - var yyq3214 [1]bool - _, _, _ = yysep3214, yyq3214, yy2arr3214 - const yyr3214 bool = false - var yynn3214 int - if yyr3214 || yy2arr3214 { + yysep3219 := !z.EncBinary() + yy2arr3219 := z.EncBasicHandle().StructToArray + var yyq3219 [1]bool + _, _, _ = yysep3219, yyq3219, yy2arr3219 + const yyr3219 bool = false + var yynn3219 int + if yyr3219 || yy2arr3219 { r.EncodeArrayStart(1) } else { - yynn3214 = 1 - for _, b := range yyq3214 { + yynn3219 = 1 + for _, b := range yyq3219 { if b { - yynn3214++ + yynn3219++ } } - r.EncodeMapStart(yynn3214) - yynn3214 = 0 + r.EncodeMapStart(yynn3219) + yynn3219 = 0 } - if yyr3214 || yy2arr3214 { + if yyr3219 || yy2arr3219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3216 := z.EncBinary() - _ = yym3216 + yym3221 := z.EncBinary() + _ = yym3221 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -41093,15 +41134,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym3217 := z.EncBinary() - _ = yym3217 + yym3222 := z.EncBinary() + _ = yym3222 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr3214 || yy2arr3214 { + if yyr3219 || yy2arr3219 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41114,25 +41155,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3218 := z.DecBinary() - _ = yym3218 + yym3223 := z.DecBinary() + _ = yym3223 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3219 := r.ContainerType() - if yyct3219 == codecSelferValueTypeMap1234 { - yyl3219 := r.ReadMapStart() - if yyl3219 == 0 { + yyct3224 := r.ContainerType() + if yyct3224 == codecSelferValueTypeMap1234 { + yyl3224 := r.ReadMapStart() + if yyl3224 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3219, d) + x.codecDecodeSelfFromMap(yyl3224, d) } - } else if yyct3219 == codecSelferValueTypeArray1234 { - yyl3219 := r.ReadArrayStart() - if yyl3219 == 0 { + } else if yyct3224 == codecSelferValueTypeArray1234 { + yyl3224 := r.ReadArrayStart() + if yyl3224 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3219, d) + x.codecDecodeSelfFromArray(yyl3224, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41144,12 +41185,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3220Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3220Slc - var yyhl3220 bool = l >= 0 - for yyj3220 := 0; ; yyj3220++ { - if yyhl3220 { - if yyj3220 >= l { + var yys3225Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3225Slc + var yyhl3225 bool = l >= 0 + for yyj3225 := 0; ; yyj3225++ { + if yyhl3225 { + if yyj3225 >= l { break } } else { @@ -41158,26 +41199,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3220Slc = r.DecodeBytes(yys3220Slc, true, true) - yys3220 := string(yys3220Slc) + yys3225Slc = r.DecodeBytes(yys3225Slc, true, true) + yys3225 := string(yys3225Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3220 { + switch yys3225 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3221 := &x.Finalizers - yym3222 := z.DecBinary() - _ = yym3222 + yyv3226 := &x.Finalizers + yym3227 := z.DecBinary() + _ = yym3227 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3221), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3226), d) } } default: - z.DecStructFieldNotFound(-1, yys3220) - } // end switch yys3220 - } // end for yyj3220 + z.DecStructFieldNotFound(-1, yys3225) + } // end switch yys3225 + } // end for yyj3225 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41185,16 +41226,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3223 int - var yyb3223 bool - var yyhl3223 bool = l >= 0 - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + var yyj3228 int + var yyb3228 bool + var yyhl3228 bool = l >= 0 + yyj3228++ + if yyhl3228 { + yyb3228 = yyj3228 > l } else { - yyb3223 = r.CheckBreak() + yyb3228 = r.CheckBreak() } - if yyb3223 { + if yyb3228 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41202,26 +41243,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3224 := &x.Finalizers - yym3225 := z.DecBinary() - _ = yym3225 + yyv3229 := &x.Finalizers + yym3230 := z.DecBinary() + _ = yym3230 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3224), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3229), d) } } for { - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3228++ + if yyhl3228 { + yyb3228 = yyj3228 > l } else { - yyb3223 = r.CheckBreak() + yyb3228 = r.CheckBreak() } - if yyb3223 { + if yyb3228 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3223-1, "") + z.DecStructFieldNotFound(yyj3228-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41230,8 +41271,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3226 := z.EncBinary() - _ = yym3226 + yym3231 := z.EncBinary() + _ = yym3231 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41243,8 +41284,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3227 := z.DecBinary() - _ = yym3227 + yym3232 := z.DecBinary() + _ = yym3232 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41259,46 +41300,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3228 := z.EncBinary() - _ = yym3228 + yym3233 := z.EncBinary() + _ = yym3233 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3229 := !z.EncBinary() - yy2arr3229 := z.EncBasicHandle().StructToArray - var yyq3229 [1]bool - _, _, _ = yysep3229, yyq3229, yy2arr3229 - const yyr3229 bool = false - yyq3229[0] = x.Phase != "" - var yynn3229 int - if yyr3229 || yy2arr3229 { + yysep3234 := !z.EncBinary() + yy2arr3234 := z.EncBasicHandle().StructToArray + var yyq3234 [1]bool + _, _, _ = yysep3234, yyq3234, yy2arr3234 + const yyr3234 bool = false + yyq3234[0] = x.Phase != "" + var yynn3234 int + if yyr3234 || yy2arr3234 { r.EncodeArrayStart(1) } else { - yynn3229 = 0 - for _, b := range yyq3229 { + yynn3234 = 0 + for _, b := range yyq3234 { if b { - yynn3229++ + yynn3234++ } } - r.EncodeMapStart(yynn3229) - yynn3229 = 0 + r.EncodeMapStart(yynn3234) + yynn3234 = 0 } - if yyr3229 || yy2arr3229 { + if yyr3234 || yy2arr3234 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3229[0] { + if yyq3234[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3229[0] { + if yyq3234[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3229 || yy2arr3229 { + if yyr3234 || yy2arr3234 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41311,25 +41352,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3231 := z.DecBinary() - _ = yym3231 + yym3236 := z.DecBinary() + _ = yym3236 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3232 := r.ContainerType() - if yyct3232 == codecSelferValueTypeMap1234 { - yyl3232 := r.ReadMapStart() - if yyl3232 == 0 { + yyct3237 := r.ContainerType() + if yyct3237 == codecSelferValueTypeMap1234 { + yyl3237 := r.ReadMapStart() + if yyl3237 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3232, d) + x.codecDecodeSelfFromMap(yyl3237, d) } - } else if yyct3232 == codecSelferValueTypeArray1234 { - yyl3232 := r.ReadArrayStart() - if yyl3232 == 0 { + } else if yyct3237 == codecSelferValueTypeArray1234 { + yyl3237 := r.ReadArrayStart() + if yyl3237 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3232, d) + x.codecDecodeSelfFromArray(yyl3237, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41341,12 +41382,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3233Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3233Slc - var yyhl3233 bool = l >= 0 - for yyj3233 := 0; ; yyj3233++ { - if yyhl3233 { - if yyj3233 >= l { + var yys3238Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3238Slc + var yyhl3238 bool = l >= 0 + for yyj3238 := 0; ; yyj3238++ { + if yyhl3238 { + if yyj3238 >= l { break } } else { @@ -41355,10 +41396,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3233Slc = r.DecodeBytes(yys3233Slc, true, true) - yys3233 := string(yys3233Slc) + yys3238Slc = r.DecodeBytes(yys3238Slc, true, true) + yys3238 := string(yys3238Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3233 { + switch yys3238 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -41366,9 +41407,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3233) - } // end switch yys3233 - } // end for yyj3233 + z.DecStructFieldNotFound(-1, yys3238) + } // end switch yys3238 + } // end for yyj3238 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41376,16 +41417,16 @@ func (x *NamespaceStatus) 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 } @@ -41396,17 +41437,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } 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) } @@ -41415,8 +41456,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3237 := z.EncBinary() - _ = yym3237 + yym3242 := z.EncBinary() + _ = yym3242 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41428,8 +41469,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3238 := z.DecBinary() - _ = yym3238 + yym3243 := z.DecBinary() + _ = yym3243 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41444,39 +41485,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3239 := z.EncBinary() - _ = yym3239 + yym3244 := z.EncBinary() + _ = yym3244 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3240 := !z.EncBinary() - yy2arr3240 := z.EncBasicHandle().StructToArray - var yyq3240 [5]bool - _, _, _ = yysep3240, yyq3240, yy2arr3240 - const yyr3240 bool = false - yyq3240[0] = x.Kind != "" - yyq3240[1] = x.APIVersion != "" - yyq3240[2] = true - yyq3240[3] = true - yyq3240[4] = true - var yynn3240 int - if yyr3240 || yy2arr3240 { + yysep3245 := !z.EncBinary() + yy2arr3245 := z.EncBasicHandle().StructToArray + var yyq3245 [5]bool + _, _, _ = yysep3245, yyq3245, yy2arr3245 + const yyr3245 bool = false + yyq3245[0] = x.Kind != "" + yyq3245[1] = x.APIVersion != "" + yyq3245[2] = true + yyq3245[3] = true + yyq3245[4] = true + var yynn3245 int + if yyr3245 || yy2arr3245 { r.EncodeArrayStart(5) } else { - yynn3240 = 0 - for _, b := range yyq3240 { + yynn3245 = 0 + for _, b := range yyq3245 { if b { - yynn3240++ + yynn3245++ } } - r.EncodeMapStart(yynn3240) - yynn3240 = 0 + r.EncodeMapStart(yynn3245) + yynn3245 = 0 } - if yyr3240 || yy2arr3240 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3240[0] { - yym3242 := z.EncBinary() - _ = yym3242 + if yyq3245[0] { + yym3247 := z.EncBinary() + _ = yym3247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41485,23 +41526,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3240[0] { + if yyq3245[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3243 := z.EncBinary() - _ = yym3243 + yym3248 := z.EncBinary() + _ = yym3248 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3240 || yy2arr3240 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3240[1] { - yym3245 := z.EncBinary() - _ = yym3245 + if yyq3245[1] { + yym3250 := z.EncBinary() + _ = yym3250 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41510,70 +41551,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3240[1] { + if yyq3245[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3246 := z.EncBinary() - _ = yym3246 + yym3251 := z.EncBinary() + _ = yym3251 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3240 || yy2arr3240 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3240[2] { - yy3248 := &x.ObjectMeta - yy3248.CodecEncodeSelf(e) + if yyq3245[2] { + yy3253 := &x.ObjectMeta + yy3253.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3240[2] { + if yyq3245[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3249 := &x.ObjectMeta - yy3249.CodecEncodeSelf(e) + yy3254 := &x.ObjectMeta + yy3254.CodecEncodeSelf(e) } } - if yyr3240 || yy2arr3240 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3240[3] { - yy3251 := &x.Spec - yy3251.CodecEncodeSelf(e) + if yyq3245[3] { + yy3256 := &x.Spec + yy3256.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3240[3] { + if yyq3245[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3252 := &x.Spec - yy3252.CodecEncodeSelf(e) + yy3257 := &x.Spec + yy3257.CodecEncodeSelf(e) } } - if yyr3240 || yy2arr3240 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3240[4] { - yy3254 := &x.Status - yy3254.CodecEncodeSelf(e) + if yyq3245[4] { + yy3259 := &x.Status + yy3259.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3240[4] { + if yyq3245[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3255 := &x.Status - yy3255.CodecEncodeSelf(e) + yy3260 := &x.Status + yy3260.CodecEncodeSelf(e) } } - if yyr3240 || yy2arr3240 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41586,25 +41627,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3256 := z.DecBinary() - _ = yym3256 + yym3261 := z.DecBinary() + _ = yym3261 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3257 := r.ContainerType() - if yyct3257 == codecSelferValueTypeMap1234 { - yyl3257 := r.ReadMapStart() - if yyl3257 == 0 { + yyct3262 := r.ContainerType() + if yyct3262 == codecSelferValueTypeMap1234 { + yyl3262 := r.ReadMapStart() + if yyl3262 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3257, d) + x.codecDecodeSelfFromMap(yyl3262, d) } - } else if yyct3257 == codecSelferValueTypeArray1234 { - yyl3257 := r.ReadArrayStart() - if yyl3257 == 0 { + } else if yyct3262 == codecSelferValueTypeArray1234 { + yyl3262 := r.ReadArrayStart() + if yyl3262 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3257, d) + x.codecDecodeSelfFromArray(yyl3262, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41616,12 +41657,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3258Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3258Slc - var yyhl3258 bool = l >= 0 - for yyj3258 := 0; ; yyj3258++ { - if yyhl3258 { - if yyj3258 >= l { + var yys3263Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3263Slc + var yyhl3263 bool = l >= 0 + for yyj3263 := 0; ; yyj3263++ { + if yyhl3263 { + if yyj3263 >= l { break } } else { @@ -41630,10 +41671,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3258Slc = r.DecodeBytes(yys3258Slc, true, true) - yys3258 := string(yys3258Slc) + yys3263Slc = r.DecodeBytes(yys3263Slc, true, true) + yys3263 := string(yys3263Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3258 { + switch yys3263 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41650,27 +41691,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3261 := &x.ObjectMeta - yyv3261.CodecDecodeSelf(d) + yyv3266 := &x.ObjectMeta + yyv3266.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3262 := &x.Spec - yyv3262.CodecDecodeSelf(d) + yyv3267 := &x.Spec + yyv3267.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3263 := &x.Status - yyv3263.CodecDecodeSelf(d) + yyv3268 := &x.Status + yyv3268.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3258) - } // end switch yys3258 - } // end for yyj3258 + z.DecStructFieldNotFound(-1, yys3263) + } // end switch yys3263 + } // end for yyj3263 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41678,16 +41719,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3264 int - var yyb3264 bool - var yyhl3264 bool = l >= 0 - yyj3264++ - if yyhl3264 { - yyb3264 = yyj3264 > l + var yyj3269 int + var yyb3269 bool + var yyhl3269 bool = l >= 0 + yyj3269++ + if yyhl3269 { + yyb3269 = yyj3269 > l } else { - yyb3264 = r.CheckBreak() + yyb3269 = r.CheckBreak() } - if yyb3264 { + if yyb3269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41697,13 +41738,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3264++ - if yyhl3264 { - yyb3264 = yyj3264 > l + yyj3269++ + if yyhl3269 { + yyb3269 = yyj3269 > l } else { - yyb3264 = r.CheckBreak() + yyb3269 = r.CheckBreak() } - if yyb3264 { + if yyb3269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41713,13 +41754,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3264++ - if yyhl3264 { - yyb3264 = yyj3264 > l + yyj3269++ + if yyhl3269 { + yyb3269 = yyj3269 > l } else { - yyb3264 = r.CheckBreak() + yyb3269 = r.CheckBreak() } - if yyb3264 { + if yyb3269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41727,16 +41768,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3267 := &x.ObjectMeta - yyv3267.CodecDecodeSelf(d) + yyv3272 := &x.ObjectMeta + yyv3272.CodecDecodeSelf(d) } - yyj3264++ - if yyhl3264 { - yyb3264 = yyj3264 > l + yyj3269++ + if yyhl3269 { + yyb3269 = yyj3269 > l } else { - yyb3264 = r.CheckBreak() + yyb3269 = r.CheckBreak() } - if yyb3264 { + if yyb3269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41744,16 +41785,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3268 := &x.Spec - yyv3268.CodecDecodeSelf(d) + yyv3273 := &x.Spec + yyv3273.CodecDecodeSelf(d) } - yyj3264++ - if yyhl3264 { - yyb3264 = yyj3264 > l + yyj3269++ + if yyhl3269 { + yyb3269 = yyj3269 > l } else { - yyb3264 = r.CheckBreak() + yyb3269 = r.CheckBreak() } - if yyb3264 { + if yyb3269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41761,21 +41802,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3269 := &x.Status - yyv3269.CodecDecodeSelf(d) + yyv3274 := &x.Status + yyv3274.CodecDecodeSelf(d) } for { - yyj3264++ - if yyhl3264 { - yyb3264 = yyj3264 > l + yyj3269++ + if yyhl3269 { + yyb3269 = yyj3269 > l } else { - yyb3264 = r.CheckBreak() + yyb3269 = r.CheckBreak() } - if yyb3264 { + if yyb3269 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3264-1, "") + z.DecStructFieldNotFound(yyj3269-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41787,37 +41828,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3270 := z.EncBinary() - _ = yym3270 + yym3275 := z.EncBinary() + _ = yym3275 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3271 := !z.EncBinary() - yy2arr3271 := z.EncBasicHandle().StructToArray - var yyq3271 [4]bool - _, _, _ = yysep3271, yyq3271, yy2arr3271 - const yyr3271 bool = false - yyq3271[0] = x.Kind != "" - yyq3271[1] = x.APIVersion != "" - yyq3271[2] = true - var yynn3271 int - if yyr3271 || yy2arr3271 { + yysep3276 := !z.EncBinary() + yy2arr3276 := z.EncBasicHandle().StructToArray + var yyq3276 [4]bool + _, _, _ = yysep3276, yyq3276, yy2arr3276 + const yyr3276 bool = false + yyq3276[0] = x.Kind != "" + yyq3276[1] = x.APIVersion != "" + yyq3276[2] = true + var yynn3276 int + if yyr3276 || yy2arr3276 { r.EncodeArrayStart(4) } else { - yynn3271 = 1 - for _, b := range yyq3271 { + yynn3276 = 1 + for _, b := range yyq3276 { if b { - yynn3271++ + yynn3276++ } } - r.EncodeMapStart(yynn3271) - yynn3271 = 0 + r.EncodeMapStart(yynn3276) + yynn3276 = 0 } - if yyr3271 || yy2arr3271 { + if yyr3276 || yy2arr3276 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3271[0] { - yym3273 := z.EncBinary() - _ = yym3273 + if yyq3276[0] { + yym3278 := z.EncBinary() + _ = yym3278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41826,23 +41867,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3271[0] { + if yyq3276[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3274 := z.EncBinary() - _ = yym3274 + yym3279 := z.EncBinary() + _ = yym3279 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3271 || yy2arr3271 { + if yyr3276 || yy2arr3276 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3271[1] { - yym3276 := z.EncBinary() - _ = yym3276 + if yyq3276[1] { + yym3281 := z.EncBinary() + _ = yym3281 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41851,54 +41892,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3271[1] { + if yyq3276[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3277 := z.EncBinary() - _ = yym3277 + yym3282 := z.EncBinary() + _ = yym3282 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3271 || yy2arr3271 { + if yyr3276 || yy2arr3276 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3271[2] { - yy3279 := &x.ListMeta - yym3280 := z.EncBinary() - _ = yym3280 + if yyq3276[2] { + yy3284 := &x.ListMeta + yym3285 := z.EncBinary() + _ = yym3285 if false { - } else if z.HasExtensions() && z.EncExt(yy3279) { + } else if z.HasExtensions() && z.EncExt(yy3284) { } else { - z.EncFallback(yy3279) + z.EncFallback(yy3284) } } else { r.EncodeNil() } } else { - if yyq3271[2] { + if yyq3276[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3281 := &x.ListMeta - yym3282 := z.EncBinary() - _ = yym3282 + yy3286 := &x.ListMeta + yym3287 := z.EncBinary() + _ = yym3287 if false { - } else if z.HasExtensions() && z.EncExt(yy3281) { + } else if z.HasExtensions() && z.EncExt(yy3286) { } else { - z.EncFallback(yy3281) + z.EncFallback(yy3286) } } } - if yyr3271 || yy2arr3271 { + if yyr3276 || yy2arr3276 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3284 := z.EncBinary() - _ = yym3284 + yym3289 := z.EncBinary() + _ = yym3289 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -41911,15 +41952,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3285 := z.EncBinary() - _ = yym3285 + yym3290 := z.EncBinary() + _ = yym3290 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3271 || yy2arr3271 { + if yyr3276 || yy2arr3276 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41932,25 +41973,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3286 := z.DecBinary() - _ = yym3286 + yym3291 := z.DecBinary() + _ = yym3291 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3287 := r.ContainerType() - if yyct3287 == codecSelferValueTypeMap1234 { - yyl3287 := r.ReadMapStart() - if yyl3287 == 0 { + yyct3292 := r.ContainerType() + if yyct3292 == codecSelferValueTypeMap1234 { + yyl3292 := r.ReadMapStart() + if yyl3292 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3287, d) + x.codecDecodeSelfFromMap(yyl3292, d) } - } else if yyct3287 == codecSelferValueTypeArray1234 { - yyl3287 := r.ReadArrayStart() - if yyl3287 == 0 { + } else if yyct3292 == codecSelferValueTypeArray1234 { + yyl3292 := r.ReadArrayStart() + if yyl3292 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3287, d) + x.codecDecodeSelfFromArray(yyl3292, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41962,12 +42003,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3288Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3288Slc - var yyhl3288 bool = l >= 0 - for yyj3288 := 0; ; yyj3288++ { - if yyhl3288 { - if yyj3288 >= l { + var yys3293Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3293Slc + var yyhl3293 bool = l >= 0 + for yyj3293 := 0; ; yyj3293++ { + if yyhl3293 { + if yyj3293 >= l { break } } else { @@ -41976,10 +42017,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3288Slc = r.DecodeBytes(yys3288Slc, true, true) - yys3288 := string(yys3288Slc) + yys3293Slc = r.DecodeBytes(yys3293Slc, true, true) + yys3293 := string(yys3293Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3288 { + switch yys3293 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41996,31 +42037,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3291 := &x.ListMeta - yym3292 := z.DecBinary() - _ = yym3292 + yyv3296 := &x.ListMeta + yym3297 := z.DecBinary() + _ = yym3297 if false { - } else if z.HasExtensions() && z.DecExt(yyv3291) { + } else if z.HasExtensions() && z.DecExt(yyv3296) { } else { - z.DecFallback(yyv3291, false) + z.DecFallback(yyv3296, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3293 := &x.Items - yym3294 := z.DecBinary() - _ = yym3294 + yyv3298 := &x.Items + yym3299 := z.DecBinary() + _ = yym3299 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3293), d) + h.decSliceNamespace((*[]Namespace)(yyv3298), d) } } default: - z.DecStructFieldNotFound(-1, yys3288) - } // end switch yys3288 - } // end for yyj3288 + z.DecStructFieldNotFound(-1, yys3293) + } // end switch yys3293 + } // end for yyj3293 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42028,16 +42069,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3295 int - var yyb3295 bool - var yyhl3295 bool = l >= 0 - yyj3295++ - if yyhl3295 { - yyb3295 = yyj3295 > l + var yyj3300 int + var yyb3300 bool + var yyhl3300 bool = l >= 0 + yyj3300++ + if yyhl3300 { + yyb3300 = yyj3300 > l } else { - yyb3295 = r.CheckBreak() + yyb3300 = r.CheckBreak() } - if yyb3295 { + if yyb3300 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42047,13 +42088,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3295++ - if yyhl3295 { - yyb3295 = yyj3295 > l + yyj3300++ + if yyhl3300 { + yyb3300 = yyj3300 > l } else { - yyb3295 = r.CheckBreak() + yyb3300 = r.CheckBreak() } - if yyb3295 { + if yyb3300 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42063,13 +42104,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3295++ - if yyhl3295 { - yyb3295 = yyj3295 > l + yyj3300++ + if yyhl3300 { + yyb3300 = yyj3300 > l } else { - yyb3295 = r.CheckBreak() + yyb3300 = r.CheckBreak() } - if yyb3295 { + if yyb3300 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42077,22 +42118,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3298 := &x.ListMeta - yym3299 := z.DecBinary() - _ = yym3299 + yyv3303 := &x.ListMeta + yym3304 := z.DecBinary() + _ = yym3304 if false { - } else if z.HasExtensions() && z.DecExt(yyv3298) { + } else if z.HasExtensions() && z.DecExt(yyv3303) { } else { - z.DecFallback(yyv3298, false) + z.DecFallback(yyv3303, false) } } - yyj3295++ - if yyhl3295 { - yyb3295 = yyj3295 > l + yyj3300++ + if yyhl3300 { + yyb3300 = yyj3300 > l } else { - yyb3295 = r.CheckBreak() + yyb3300 = r.CheckBreak() } - if yyb3295 { + if yyb3300 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42100,26 +42141,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3300 := &x.Items - yym3301 := z.DecBinary() - _ = yym3301 + yyv3305 := &x.Items + yym3306 := z.DecBinary() + _ = yym3306 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3300), d) + h.decSliceNamespace((*[]Namespace)(yyv3305), d) } } for { - yyj3295++ - if yyhl3295 { - yyb3295 = yyj3295 > l + yyj3300++ + if yyhl3300 { + yyb3300 = yyj3300 > l } else { - yyb3295 = r.CheckBreak() + yyb3300 = r.CheckBreak() } - if yyb3295 { + if yyb3300 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3295-1, "") + z.DecStructFieldNotFound(yyj3300-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42131,37 +42172,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3302 := z.EncBinary() - _ = yym3302 + yym3307 := z.EncBinary() + _ = yym3307 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3303 := !z.EncBinary() - yy2arr3303 := z.EncBasicHandle().StructToArray - var yyq3303 [4]bool - _, _, _ = yysep3303, yyq3303, yy2arr3303 - const yyr3303 bool = false - yyq3303[0] = x.Kind != "" - yyq3303[1] = x.APIVersion != "" - yyq3303[2] = true - var yynn3303 int - if yyr3303 || yy2arr3303 { + yysep3308 := !z.EncBinary() + yy2arr3308 := z.EncBasicHandle().StructToArray + var yyq3308 [4]bool + _, _, _ = yysep3308, yyq3308, yy2arr3308 + const yyr3308 bool = false + yyq3308[0] = x.Kind != "" + yyq3308[1] = x.APIVersion != "" + yyq3308[2] = true + var yynn3308 int + if yyr3308 || yy2arr3308 { r.EncodeArrayStart(4) } else { - yynn3303 = 1 - for _, b := range yyq3303 { + yynn3308 = 1 + for _, b := range yyq3308 { if b { - yynn3303++ + yynn3308++ } } - r.EncodeMapStart(yynn3303) - yynn3303 = 0 + r.EncodeMapStart(yynn3308) + yynn3308 = 0 } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[0] { - yym3305 := z.EncBinary() - _ = yym3305 + if yyq3308[0] { + yym3310 := z.EncBinary() + _ = yym3310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42170,23 +42211,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3303[0] { + if yyq3308[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3306 := z.EncBinary() - _ = yym3306 + yym3311 := z.EncBinary() + _ = yym3311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[1] { - yym3308 := z.EncBinary() - _ = yym3308 + if yyq3308[1] { + yym3313 := z.EncBinary() + _ = yym3313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42195,47 +42236,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3303[1] { + if yyq3308[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3309 := z.EncBinary() - _ = yym3309 + yym3314 := z.EncBinary() + _ = yym3314 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[2] { - yy3311 := &x.ObjectMeta - yy3311.CodecEncodeSelf(e) + if yyq3308[2] { + yy3316 := &x.ObjectMeta + yy3316.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3303[2] { + if yyq3308[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3312 := &x.ObjectMeta - yy3312.CodecEncodeSelf(e) + yy3317 := &x.ObjectMeta + yy3317.CodecEncodeSelf(e) } } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3314 := &x.Target - yy3314.CodecEncodeSelf(e) + yy3319 := &x.Target + yy3319.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3315 := &x.Target - yy3315.CodecEncodeSelf(e) + yy3320 := &x.Target + yy3320.CodecEncodeSelf(e) } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42248,25 +42289,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3316 := z.DecBinary() - _ = yym3316 + yym3321 := z.DecBinary() + _ = yym3321 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3317 := r.ContainerType() - if yyct3317 == codecSelferValueTypeMap1234 { - yyl3317 := r.ReadMapStart() - if yyl3317 == 0 { + yyct3322 := r.ContainerType() + if yyct3322 == codecSelferValueTypeMap1234 { + yyl3322 := r.ReadMapStart() + if yyl3322 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3317, d) + x.codecDecodeSelfFromMap(yyl3322, d) } - } else if yyct3317 == codecSelferValueTypeArray1234 { - yyl3317 := r.ReadArrayStart() - if yyl3317 == 0 { + } else if yyct3322 == codecSelferValueTypeArray1234 { + yyl3322 := r.ReadArrayStart() + if yyl3322 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3317, d) + x.codecDecodeSelfFromArray(yyl3322, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42278,12 +42319,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3318Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3318Slc - var yyhl3318 bool = l >= 0 - for yyj3318 := 0; ; yyj3318++ { - if yyhl3318 { - if yyj3318 >= l { + var yys3323Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3323Slc + var yyhl3323 bool = l >= 0 + for yyj3323 := 0; ; yyj3323++ { + if yyhl3323 { + if yyj3323 >= l { break } } else { @@ -42292,10 +42333,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3318Slc = r.DecodeBytes(yys3318Slc, true, true) - yys3318 := string(yys3318Slc) + yys3323Slc = r.DecodeBytes(yys3323Slc, true, true) + yys3323 := string(yys3323Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3318 { + switch yys3323 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42312,20 +42353,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3321 := &x.ObjectMeta - yyv3321.CodecDecodeSelf(d) + yyv3326 := &x.ObjectMeta + yyv3326.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3322 := &x.Target - yyv3322.CodecDecodeSelf(d) + yyv3327 := &x.Target + yyv3327.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3318) - } // end switch yys3318 - } // end for yyj3318 + z.DecStructFieldNotFound(-1, yys3323) + } // end switch yys3323 + } // end for yyj3323 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42333,16 +42374,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3323 int - var yyb3323 bool - var yyhl3323 bool = l >= 0 - yyj3323++ - if yyhl3323 { - yyb3323 = yyj3323 > l + var yyj3328 int + var yyb3328 bool + var yyhl3328 bool = l >= 0 + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3323 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3323 { + if yyb3328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42352,13 +42393,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3323++ - if yyhl3323 { - yyb3323 = yyj3323 > l + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3323 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3323 { + if yyb3328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42368,13 +42409,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3323++ - if yyhl3323 { - yyb3323 = yyj3323 > l + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3323 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3323 { + if yyb3328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42382,16 +42423,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3326 := &x.ObjectMeta - yyv3326.CodecDecodeSelf(d) + yyv3331 := &x.ObjectMeta + yyv3331.CodecDecodeSelf(d) } - yyj3323++ - if yyhl3323 { - yyb3323 = yyj3323 > l + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3323 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3323 { + if yyb3328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42399,21 +42440,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3327 := &x.Target - yyv3327.CodecDecodeSelf(d) + yyv3332 := &x.Target + yyv3332.CodecDecodeSelf(d) } for { - yyj3323++ - if yyhl3323 { - yyb3323 = yyj3323 > l + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3323 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3323 { + if yyb3328 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3323-1, "") + z.DecStructFieldNotFound(yyj3328-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42425,68 +42466,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3328 := z.EncBinary() - _ = yym3328 + yym3333 := z.EncBinary() + _ = yym3333 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3329 := !z.EncBinary() - yy2arr3329 := z.EncBasicHandle().StructToArray - var yyq3329 [1]bool - _, _, _ = yysep3329, yyq3329, yy2arr3329 - const yyr3329 bool = false - yyq3329[0] = x.UID != nil - var yynn3329 int - if yyr3329 || yy2arr3329 { + yysep3334 := !z.EncBinary() + yy2arr3334 := z.EncBasicHandle().StructToArray + var yyq3334 [1]bool + _, _, _ = yysep3334, yyq3334, yy2arr3334 + const yyr3334 bool = false + yyq3334[0] = x.UID != nil + var yynn3334 int + if yyr3334 || yy2arr3334 { r.EncodeArrayStart(1) } else { - yynn3329 = 0 - for _, b := range yyq3329 { + yynn3334 = 0 + for _, b := range yyq3334 { if b { - yynn3329++ + yynn3334++ } } - r.EncodeMapStart(yynn3329) - yynn3329 = 0 + r.EncodeMapStart(yynn3334) + yynn3334 = 0 } - if yyr3329 || yy2arr3329 { + if yyr3334 || yy2arr3334 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3329[0] { + if yyq3334[0] { if x.UID == nil { r.EncodeNil() } else { - yy3331 := *x.UID - yym3332 := z.EncBinary() - _ = yym3332 + yy3336 := *x.UID + yym3337 := z.EncBinary() + _ = yym3337 if false { - } else if z.HasExtensions() && z.EncExt(yy3331) { + } else if z.HasExtensions() && z.EncExt(yy3336) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3331)) + r.EncodeString(codecSelferC_UTF81234, string(yy3336)) } } } else { r.EncodeNil() } } else { - if yyq3329[0] { + if yyq3334[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3333 := *x.UID - yym3334 := z.EncBinary() - _ = yym3334 + yy3338 := *x.UID + yym3339 := z.EncBinary() + _ = yym3339 if false { - } else if z.HasExtensions() && z.EncExt(yy3333) { + } else if z.HasExtensions() && z.EncExt(yy3338) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3333)) + r.EncodeString(codecSelferC_UTF81234, string(yy3338)) } } } } - if yyr3329 || yy2arr3329 { + if yyr3334 || yy2arr3334 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42499,25 +42540,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3335 := z.DecBinary() - _ = yym3335 + yym3340 := z.DecBinary() + _ = yym3340 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3336 := r.ContainerType() - if yyct3336 == codecSelferValueTypeMap1234 { - yyl3336 := r.ReadMapStart() - if yyl3336 == 0 { + yyct3341 := r.ContainerType() + if yyct3341 == codecSelferValueTypeMap1234 { + yyl3341 := r.ReadMapStart() + if yyl3341 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3336, d) + x.codecDecodeSelfFromMap(yyl3341, d) } - } else if yyct3336 == codecSelferValueTypeArray1234 { - yyl3336 := r.ReadArrayStart() - if yyl3336 == 0 { + } else if yyct3341 == codecSelferValueTypeArray1234 { + yyl3341 := r.ReadArrayStart() + if yyl3341 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3336, d) + x.codecDecodeSelfFromArray(yyl3341, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42529,12 +42570,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3337Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3337Slc - var yyhl3337 bool = l >= 0 - for yyj3337 := 0; ; yyj3337++ { - if yyhl3337 { - if yyj3337 >= l { + var yys3342Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3342Slc + var yyhl3342 bool = l >= 0 + for yyj3342 := 0; ; yyj3342++ { + if yyhl3342 { + if yyj3342 >= l { break } } else { @@ -42543,10 +42584,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3337Slc = r.DecodeBytes(yys3337Slc, true, true) - yys3337 := string(yys3337Slc) + yys3342Slc = r.DecodeBytes(yys3342Slc, true, true) + yys3342 := string(yys3342Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3337 { + switch yys3342 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -42556,8 +42597,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3339 := z.DecBinary() - _ = yym3339 + yym3344 := z.DecBinary() + _ = yym3344 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -42565,9 +42606,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3337) - } // end switch yys3337 - } // end for yyj3337 + z.DecStructFieldNotFound(-1, yys3342) + } // end switch yys3342 + } // end for yyj3342 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42575,16 +42616,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3340 int - var yyb3340 bool - var yyhl3340 bool = l >= 0 - yyj3340++ - if yyhl3340 { - yyb3340 = yyj3340 > l + var yyj3345 int + var yyb3345 bool + var yyhl3345 bool = l >= 0 + yyj3345++ + if yyhl3345 { + yyb3345 = yyj3345 > l } else { - yyb3340 = r.CheckBreak() + yyb3345 = r.CheckBreak() } - if yyb3340 { + if yyb3345 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42597,8 +42638,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3342 := z.DecBinary() - _ = yym3342 + yym3347 := z.DecBinary() + _ = yym3347 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -42606,17 +42647,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3340++ - if yyhl3340 { - yyb3340 = yyj3340 > l + yyj3345++ + if yyhl3345 { + yyb3345 = yyj3345 > l } else { - yyb3340 = r.CheckBreak() + yyb3345 = r.CheckBreak() } - if yyb3340 { + if yyb3345 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3340-1, "") + z.DecStructFieldNotFound(yyj3345-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42628,39 +42669,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3343 := z.EncBinary() - _ = yym3343 + yym3348 := z.EncBinary() + _ = yym3348 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3344 := !z.EncBinary() - yy2arr3344 := z.EncBasicHandle().StructToArray - var yyq3344 [5]bool - _, _, _ = yysep3344, yyq3344, yy2arr3344 - const yyr3344 bool = false - yyq3344[0] = x.Kind != "" - yyq3344[1] = x.APIVersion != "" - yyq3344[2] = x.GracePeriodSeconds != nil - yyq3344[3] = x.Preconditions != nil - yyq3344[4] = x.OrphanDependents != nil - var yynn3344 int - if yyr3344 || yy2arr3344 { + yysep3349 := !z.EncBinary() + yy2arr3349 := z.EncBasicHandle().StructToArray + var yyq3349 [5]bool + _, _, _ = yysep3349, yyq3349, yy2arr3349 + const yyr3349 bool = false + yyq3349[0] = x.Kind != "" + yyq3349[1] = x.APIVersion != "" + yyq3349[2] = x.GracePeriodSeconds != nil + yyq3349[3] = x.Preconditions != nil + yyq3349[4] = x.OrphanDependents != nil + var yynn3349 int + if yyr3349 || yy2arr3349 { r.EncodeArrayStart(5) } else { - yynn3344 = 0 - for _, b := range yyq3344 { + yynn3349 = 0 + for _, b := range yyq3349 { if b { - yynn3344++ + yynn3349++ } } - r.EncodeMapStart(yynn3344) - yynn3344 = 0 + r.EncodeMapStart(yynn3349) + yynn3349 = 0 } - if yyr3344 || yy2arr3344 { + if yyr3349 || yy2arr3349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3344[0] { - yym3346 := z.EncBinary() - _ = yym3346 + if yyq3349[0] { + yym3351 := z.EncBinary() + _ = yym3351 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42669,23 +42710,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3344[0] { + if yyq3349[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3347 := z.EncBinary() - _ = yym3347 + yym3352 := z.EncBinary() + _ = yym3352 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3344 || yy2arr3344 { + if yyr3349 || yy2arr3349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3344[1] { - yym3349 := z.EncBinary() - _ = yym3349 + if yyq3349[1] { + yym3354 := z.EncBinary() + _ = yym3354 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42694,56 +42735,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3344[1] { + if yyq3349[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3350 := z.EncBinary() - _ = yym3350 + yym3355 := z.EncBinary() + _ = yym3355 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3344 || yy2arr3344 { + if yyr3349 || yy2arr3349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3344[2] { + if yyq3349[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3352 := *x.GracePeriodSeconds - yym3353 := z.EncBinary() - _ = yym3353 + yy3357 := *x.GracePeriodSeconds + yym3358 := z.EncBinary() + _ = yym3358 if false { } else { - r.EncodeInt(int64(yy3352)) + r.EncodeInt(int64(yy3357)) } } } else { r.EncodeNil() } } else { - if yyq3344[2] { + if yyq3349[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3354 := *x.GracePeriodSeconds - yym3355 := z.EncBinary() - _ = yym3355 + yy3359 := *x.GracePeriodSeconds + yym3360 := z.EncBinary() + _ = yym3360 if false { } else { - r.EncodeInt(int64(yy3354)) + r.EncodeInt(int64(yy3359)) } } } } - if yyr3344 || yy2arr3344 { + if yyr3349 || yy2arr3349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3344[3] { + if yyq3349[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -42753,7 +42794,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3344[3] { + if yyq3349[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42764,42 +42805,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3344 || yy2arr3344 { + if yyr3349 || yy2arr3349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3344[4] { + if yyq3349[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3358 := *x.OrphanDependents - yym3359 := z.EncBinary() - _ = yym3359 + yy3363 := *x.OrphanDependents + yym3364 := z.EncBinary() + _ = yym3364 if false { } else { - r.EncodeBool(bool(yy3358)) + r.EncodeBool(bool(yy3363)) } } } else { r.EncodeNil() } } else { - if yyq3344[4] { + if yyq3349[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3360 := *x.OrphanDependents - yym3361 := z.EncBinary() - _ = yym3361 + yy3365 := *x.OrphanDependents + yym3366 := z.EncBinary() + _ = yym3366 if false { } else { - r.EncodeBool(bool(yy3360)) + r.EncodeBool(bool(yy3365)) } } } } - if yyr3344 || yy2arr3344 { + if yyr3349 || yy2arr3349 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42812,25 +42853,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3362 := z.DecBinary() - _ = yym3362 + yym3367 := z.DecBinary() + _ = yym3367 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3363 := r.ContainerType() - if yyct3363 == codecSelferValueTypeMap1234 { - yyl3363 := r.ReadMapStart() - if yyl3363 == 0 { + yyct3368 := r.ContainerType() + if yyct3368 == codecSelferValueTypeMap1234 { + yyl3368 := r.ReadMapStart() + if yyl3368 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3363, d) + x.codecDecodeSelfFromMap(yyl3368, d) } - } else if yyct3363 == codecSelferValueTypeArray1234 { - yyl3363 := r.ReadArrayStart() - if yyl3363 == 0 { + } else if yyct3368 == codecSelferValueTypeArray1234 { + yyl3368 := r.ReadArrayStart() + if yyl3368 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3363, d) + x.codecDecodeSelfFromArray(yyl3368, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42842,12 +42883,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3364Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3364Slc - var yyhl3364 bool = l >= 0 - for yyj3364 := 0; ; yyj3364++ { - if yyhl3364 { - if yyj3364 >= l { + var yys3369Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3369Slc + var yyhl3369 bool = l >= 0 + for yyj3369 := 0; ; yyj3369++ { + if yyhl3369 { + if yyj3369 >= l { break } } else { @@ -42856,10 +42897,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3364Slc = r.DecodeBytes(yys3364Slc, true, true) - yys3364 := string(yys3364Slc) + yys3369Slc = r.DecodeBytes(yys3369Slc, true, true) + yys3369 := string(yys3369Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3364 { + switch yys3369 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42881,8 +42922,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3368 := z.DecBinary() - _ = yym3368 + yym3373 := z.DecBinary() + _ = yym3373 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -42908,17 +42949,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3371 := z.DecBinary() - _ = yym3371 + yym3376 := z.DecBinary() + _ = yym3376 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3364) - } // end switch yys3364 - } // end for yyj3364 + z.DecStructFieldNotFound(-1, yys3369) + } // end switch yys3369 + } // end for yyj3369 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42926,16 +42967,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3372 int - var yyb3372 bool - var yyhl3372 bool = l >= 0 - yyj3372++ - if yyhl3372 { - yyb3372 = yyj3372 > l + var yyj3377 int + var yyb3377 bool + var yyhl3377 bool = l >= 0 + yyj3377++ + if yyhl3377 { + yyb3377 = yyj3377 > l } else { - yyb3372 = r.CheckBreak() + yyb3377 = r.CheckBreak() } - if yyb3372 { + if yyb3377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42945,13 +42986,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3372++ - if yyhl3372 { - yyb3372 = yyj3372 > l + yyj3377++ + if yyhl3377 { + yyb3377 = yyj3377 > l } else { - yyb3372 = r.CheckBreak() + yyb3377 = r.CheckBreak() } - if yyb3372 { + if yyb3377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42961,13 +43002,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3372++ - if yyhl3372 { - yyb3372 = yyj3372 > l + yyj3377++ + if yyhl3377 { + yyb3377 = yyj3377 > l } else { - yyb3372 = r.CheckBreak() + yyb3377 = r.CheckBreak() } - if yyb3372 { + if yyb3377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42980,20 +43021,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3376 := z.DecBinary() - _ = yym3376 + yym3381 := z.DecBinary() + _ = yym3381 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3372++ - if yyhl3372 { - yyb3372 = yyj3372 > l + yyj3377++ + if yyhl3377 { + yyb3377 = yyj3377 > l } else { - yyb3372 = r.CheckBreak() + yyb3377 = r.CheckBreak() } - if yyb3372 { + if yyb3377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43008,13 +43049,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3372++ - if yyhl3372 { - yyb3372 = yyj3372 > l + yyj3377++ + if yyhl3377 { + yyb3377 = yyj3377 > l } else { - yyb3372 = r.CheckBreak() + yyb3377 = r.CheckBreak() } - if yyb3372 { + if yyb3377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43027,25 +43068,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3379 := z.DecBinary() - _ = yym3379 + yym3384 := z.DecBinary() + _ = yym3384 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3372++ - if yyhl3372 { - yyb3372 = yyj3372 > l + yyj3377++ + if yyhl3377 { + yyb3377 = yyj3377 > l } else { - yyb3372 = r.CheckBreak() + yyb3377 = r.CheckBreak() } - if yyb3372 { + if yyb3377 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3372-1, "") + z.DecStructFieldNotFound(yyj3377-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43057,36 +43098,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3380 := z.EncBinary() - _ = yym3380 + yym3385 := z.EncBinary() + _ = yym3385 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3381 := !z.EncBinary() - yy2arr3381 := z.EncBasicHandle().StructToArray - var yyq3381 [4]bool - _, _, _ = yysep3381, yyq3381, yy2arr3381 - const yyr3381 bool = false - yyq3381[0] = x.Kind != "" - yyq3381[1] = x.APIVersion != "" - var yynn3381 int - if yyr3381 || yy2arr3381 { + yysep3386 := !z.EncBinary() + yy2arr3386 := z.EncBasicHandle().StructToArray + var yyq3386 [4]bool + _, _, _ = yysep3386, yyq3386, yy2arr3386 + const yyr3386 bool = false + yyq3386[0] = x.Kind != "" + yyq3386[1] = x.APIVersion != "" + var yynn3386 int + if yyr3386 || yy2arr3386 { r.EncodeArrayStart(4) } else { - yynn3381 = 2 - for _, b := range yyq3381 { + yynn3386 = 2 + for _, b := range yyq3386 { if b { - yynn3381++ + yynn3386++ } } - r.EncodeMapStart(yynn3381) - yynn3381 = 0 + r.EncodeMapStart(yynn3386) + yynn3386 = 0 } - if yyr3381 || yy2arr3381 { + if yyr3386 || yy2arr3386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[0] { - yym3383 := z.EncBinary() - _ = yym3383 + if yyq3386[0] { + yym3388 := z.EncBinary() + _ = yym3388 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43095,23 +43136,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3381[0] { + if yyq3386[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3384 := z.EncBinary() - _ = yym3384 + yym3389 := z.EncBinary() + _ = yym3389 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3381 || yy2arr3381 { + if yyr3386 || yy2arr3386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[1] { - yym3386 := z.EncBinary() - _ = yym3386 + if yyq3386[1] { + yym3391 := z.EncBinary() + _ = yym3391 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43120,22 +43161,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3381[1] { + if yyq3386[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3387 := z.EncBinary() - _ = yym3387 + yym3392 := z.EncBinary() + _ = yym3392 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3381 || yy2arr3381 { + if yyr3386 || yy2arr3386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3389 := z.EncBinary() - _ = yym3389 + yym3394 := z.EncBinary() + _ = yym3394 if false { } else { r.EncodeBool(bool(x.Export)) @@ -43144,17 +43185,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3390 := z.EncBinary() - _ = yym3390 + yym3395 := z.EncBinary() + _ = yym3395 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3381 || yy2arr3381 { + if yyr3386 || yy2arr3386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3392 := z.EncBinary() - _ = yym3392 + yym3397 := z.EncBinary() + _ = yym3397 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -43163,14 +43204,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3393 := z.EncBinary() - _ = yym3393 + yym3398 := z.EncBinary() + _ = yym3398 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3381 || yy2arr3381 { + if yyr3386 || yy2arr3386 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43183,25 +43224,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3394 := z.DecBinary() - _ = yym3394 + yym3399 := z.DecBinary() + _ = yym3399 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3395 := r.ContainerType() - if yyct3395 == codecSelferValueTypeMap1234 { - yyl3395 := r.ReadMapStart() - if yyl3395 == 0 { + yyct3400 := r.ContainerType() + if yyct3400 == codecSelferValueTypeMap1234 { + yyl3400 := r.ReadMapStart() + if yyl3400 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3395, d) + x.codecDecodeSelfFromMap(yyl3400, d) } - } else if yyct3395 == codecSelferValueTypeArray1234 { - yyl3395 := r.ReadArrayStart() - if yyl3395 == 0 { + } else if yyct3400 == codecSelferValueTypeArray1234 { + yyl3400 := r.ReadArrayStart() + if yyl3400 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3395, d) + x.codecDecodeSelfFromArray(yyl3400, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43213,12 +43254,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3396Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3396Slc - var yyhl3396 bool = l >= 0 - for yyj3396 := 0; ; yyj3396++ { - if yyhl3396 { - if yyj3396 >= l { + var yys3401Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3401Slc + var yyhl3401 bool = l >= 0 + for yyj3401 := 0; ; yyj3401++ { + if yyhl3401 { + if yyj3401 >= l { break } } else { @@ -43227,10 +43268,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3396Slc = r.DecodeBytes(yys3396Slc, true, true) - yys3396 := string(yys3396Slc) + yys3401Slc = r.DecodeBytes(yys3401Slc, true, true) + yys3401 := string(yys3401Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3396 { + switch yys3401 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43256,9 +43297,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3396) - } // end switch yys3396 - } // end for yyj3396 + z.DecStructFieldNotFound(-1, yys3401) + } // end switch yys3401 + } // end for yyj3401 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43266,16 +43307,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3401 int - var yyb3401 bool - var yyhl3401 bool = l >= 0 - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + var yyj3406 int + var yyb3406 bool + var yyhl3406 bool = l >= 0 + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43285,13 +43326,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43301,13 +43342,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43317,13 +43358,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43334,17 +43375,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3401-1, "") + z.DecStructFieldNotFound(yyj3406-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43356,36 +43397,36 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3406 := z.EncBinary() - _ = yym3406 + yym3411 := z.EncBinary() + _ = yym3411 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3407 := !z.EncBinary() - yy2arr3407 := z.EncBasicHandle().StructToArray - var yyq3407 [7]bool - _, _, _ = yysep3407, yyq3407, yy2arr3407 - const yyr3407 bool = false - yyq3407[0] = x.Kind != "" - yyq3407[1] = x.APIVersion != "" - var yynn3407 int - if yyr3407 || yy2arr3407 { + yysep3412 := !z.EncBinary() + yy2arr3412 := z.EncBasicHandle().StructToArray + var yyq3412 [7]bool + _, _, _ = yysep3412, yyq3412, yy2arr3412 + const yyr3412 bool = false + yyq3412[0] = x.Kind != "" + yyq3412[1] = x.APIVersion != "" + var yynn3412 int + if yyr3412 || yy2arr3412 { r.EncodeArrayStart(7) } else { - yynn3407 = 5 - for _, b := range yyq3407 { + yynn3412 = 5 + for _, b := range yyq3412 { if b { - yynn3407++ + yynn3412++ } } - r.EncodeMapStart(yynn3407) - yynn3407 = 0 + r.EncodeMapStart(yynn3412) + yynn3412 = 0 } - if yyr3407 || yy2arr3407 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3407[0] { - yym3409 := z.EncBinary() - _ = yym3409 + if yyq3412[0] { + yym3414 := z.EncBinary() + _ = yym3414 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43394,23 +43435,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3407[0] { + if yyq3412[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3410 := z.EncBinary() - _ = yym3410 + yym3415 := z.EncBinary() + _ = yym3415 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3407 || yy2arr3407 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3407[1] { - yym3412 := z.EncBinary() - _ = yym3412 + if yyq3412[1] { + yym3417 := z.EncBinary() + _ = yym3417 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43419,25 +43460,25 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3407[1] { + if yyq3412[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3413 := z.EncBinary() - _ = yym3413 + yym3418 := z.EncBinary() + _ = yym3418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3407 || yy2arr3407 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym3415 := z.EncBinary() - _ = yym3415 + yym3420 := z.EncBinary() + _ = yym3420 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -43451,8 +43492,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym3416 := z.EncBinary() - _ = yym3416 + yym3421 := z.EncBinary() + _ = yym3421 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -43460,13 +43501,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3407 || yy2arr3407 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym3418 := z.EncBinary() - _ = yym3418 + yym3423 := z.EncBinary() + _ = yym3423 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -43480,8 +43521,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym3419 := z.EncBinary() - _ = yym3419 + yym3424 := z.EncBinary() + _ = yym3424 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -43489,10 +43530,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3407 || yy2arr3407 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3421 := z.EncBinary() - _ = yym3421 + yym3426 := z.EncBinary() + _ = yym3426 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -43501,17 +43542,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3422 := z.EncBinary() - _ = yym3422 + yym3427 := z.EncBinary() + _ = yym3427 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr3407 || yy2arr3407 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3424 := z.EncBinary() - _ = yym3424 + yym3429 := z.EncBinary() + _ = yym3429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -43520,24 +43561,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3425 := z.EncBinary() - _ = yym3425 + yym3430 := z.EncBinary() + _ = yym3430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr3407 || yy2arr3407 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3427 := *x.TimeoutSeconds - yym3428 := z.EncBinary() - _ = yym3428 + yy3432 := *x.TimeoutSeconds + yym3433 := z.EncBinary() + _ = yym3433 if false { } else { - r.EncodeInt(int64(yy3427)) + r.EncodeInt(int64(yy3432)) } } } else { @@ -43547,16 +43588,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3429 := *x.TimeoutSeconds - yym3430 := z.EncBinary() - _ = yym3430 + yy3434 := *x.TimeoutSeconds + yym3435 := z.EncBinary() + _ = yym3435 if false { } else { - r.EncodeInt(int64(yy3429)) + r.EncodeInt(int64(yy3434)) } } } - if yyr3407 || yy2arr3407 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43569,25 +43610,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3431 := z.DecBinary() - _ = yym3431 + yym3436 := z.DecBinary() + _ = yym3436 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3432 := r.ContainerType() - if yyct3432 == codecSelferValueTypeMap1234 { - yyl3432 := r.ReadMapStart() - if yyl3432 == 0 { + yyct3437 := r.ContainerType() + if yyct3437 == codecSelferValueTypeMap1234 { + yyl3437 := r.ReadMapStart() + if yyl3437 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3432, d) + x.codecDecodeSelfFromMap(yyl3437, d) } - } else if yyct3432 == codecSelferValueTypeArray1234 { - yyl3432 := r.ReadArrayStart() - if yyl3432 == 0 { + } else if yyct3437 == codecSelferValueTypeArray1234 { + yyl3437 := r.ReadArrayStart() + if yyl3437 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3432, d) + x.codecDecodeSelfFromArray(yyl3437, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43599,12 +43640,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3433Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3433Slc - var yyhl3433 bool = l >= 0 - for yyj3433 := 0; ; yyj3433++ { - if yyhl3433 { - if yyj3433 >= l { + var yys3438Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3438Slc + var yyhl3438 bool = l >= 0 + for yyj3438 := 0; ; yyj3438++ { + if yyhl3438 { + if yyj3438 >= l { break } } else { @@ -43613,10 +43654,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3433Slc = r.DecodeBytes(yys3433Slc, true, true) - yys3433 := string(yys3433Slc) + yys3438Slc = r.DecodeBytes(yys3438Slc, true, true) + yys3438 := string(yys3438Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3433 { + switch yys3438 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43633,26 +43674,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3436 := &x.LabelSelector - yym3437 := z.DecBinary() - _ = yym3437 + yyv3441 := &x.LabelSelector + yym3442 := z.DecBinary() + _ = yym3442 if false { - } else if z.HasExtensions() && z.DecExt(yyv3436) { + } else if z.HasExtensions() && z.DecExt(yyv3441) { } else { - z.DecFallback(yyv3436, true) + z.DecFallback(yyv3441, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3438 := &x.FieldSelector - yym3439 := z.DecBinary() - _ = yym3439 + yyv3443 := &x.FieldSelector + yym3444 := z.DecBinary() + _ = yym3444 if false { - } else if z.HasExtensions() && z.DecExt(yyv3438) { + } else if z.HasExtensions() && z.DecExt(yyv3443) { } else { - z.DecFallback(yyv3438, true) + z.DecFallback(yyv3443, true) } } case "Watch": @@ -43676,17 +43717,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3443 := z.DecBinary() - _ = yym3443 + yym3448 := z.DecBinary() + _ = yym3448 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3433) - } // end switch yys3433 - } // end for yyj3433 + z.DecStructFieldNotFound(-1, yys3438) + } // end switch yys3438 + } // end for yyj3438 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43694,16 +43735,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3444 int - var yyb3444 bool - var yyhl3444 bool = l >= 0 - yyj3444++ - if yyhl3444 { - yyb3444 = yyj3444 > l + var yyj3449 int + var yyb3449 bool + var yyhl3449 bool = l >= 0 + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3444 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3444 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43713,13 +43754,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3444++ - if yyhl3444 { - yyb3444 = yyj3444 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3444 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3444 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43729,13 +43770,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3444++ - if yyhl3444 { - yyb3444 = yyj3444 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3444 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3444 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43743,22 +43784,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3447 := &x.LabelSelector - yym3448 := z.DecBinary() - _ = yym3448 + yyv3452 := &x.LabelSelector + yym3453 := z.DecBinary() + _ = yym3453 if false { - } else if z.HasExtensions() && z.DecExt(yyv3447) { + } else if z.HasExtensions() && z.DecExt(yyv3452) { } else { - z.DecFallback(yyv3447, true) + z.DecFallback(yyv3452, true) } } - yyj3444++ - if yyhl3444 { - yyb3444 = yyj3444 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3444 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3444 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43766,22 +43807,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3449 := &x.FieldSelector - yym3450 := z.DecBinary() - _ = yym3450 + yyv3454 := &x.FieldSelector + yym3455 := z.DecBinary() + _ = yym3455 if false { - } else if z.HasExtensions() && z.DecExt(yyv3449) { + } else if z.HasExtensions() && z.DecExt(yyv3454) { } else { - z.DecFallback(yyv3449, true) + z.DecFallback(yyv3454, true) } } - yyj3444++ - if yyhl3444 { - yyb3444 = yyj3444 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3444 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3444 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43791,13 +43832,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3444++ - if yyhl3444 { - yyb3444 = yyj3444 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3444 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3444 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43807,13 +43848,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3444++ - if yyhl3444 { - yyb3444 = yyj3444 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3444 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3444 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43826,25 +43867,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3454 := z.DecBinary() - _ = yym3454 + yym3459 := z.DecBinary() + _ = yym3459 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3444++ - if yyhl3444 { - yyb3444 = yyj3444 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3444 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3444 { + if yyb3449 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3444-1, "") + z.DecStructFieldNotFound(yyj3449-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43856,36 +43897,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3455 := z.EncBinary() - _ = yym3455 + yym3460 := z.EncBinary() + _ = yym3460 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3456 := !z.EncBinary() - yy2arr3456 := z.EncBasicHandle().StructToArray - var yyq3456 [10]bool - _, _, _ = yysep3456, yyq3456, yy2arr3456 - const yyr3456 bool = false - yyq3456[0] = x.Kind != "" - yyq3456[1] = x.APIVersion != "" - var yynn3456 int - if yyr3456 || yy2arr3456 { + yysep3461 := !z.EncBinary() + yy2arr3461 := z.EncBasicHandle().StructToArray + var yyq3461 [10]bool + _, _, _ = yysep3461, yyq3461, yy2arr3461 + const yyr3461 bool = false + yyq3461[0] = x.Kind != "" + yyq3461[1] = x.APIVersion != "" + var yynn3461 int + if yyr3461 || yy2arr3461 { r.EncodeArrayStart(10) } else { - yynn3456 = 8 - for _, b := range yyq3456 { + yynn3461 = 8 + for _, b := range yyq3461 { if b { - yynn3456++ + yynn3461++ } } - r.EncodeMapStart(yynn3456) - yynn3456 = 0 + r.EncodeMapStart(yynn3461) + yynn3461 = 0 } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3456[0] { - yym3458 := z.EncBinary() - _ = yym3458 + if yyq3461[0] { + yym3463 := z.EncBinary() + _ = yym3463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43894,23 +43935,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3456[0] { + if yyq3461[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3459 := z.EncBinary() - _ = yym3459 + yym3464 := z.EncBinary() + _ = yym3464 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3456[1] { - yym3461 := z.EncBinary() - _ = yym3461 + if yyq3461[1] { + yym3466 := z.EncBinary() + _ = yym3466 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43919,22 +43960,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3456[1] { + if yyq3461[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3462 := z.EncBinary() - _ = yym3462 + yym3467 := z.EncBinary() + _ = yym3467 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3464 := z.EncBinary() - _ = yym3464 + yym3469 := z.EncBinary() + _ = yym3469 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43943,17 +43984,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3465 := z.EncBinary() - _ = yym3465 + yym3470 := z.EncBinary() + _ = yym3470 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3467 := z.EncBinary() - _ = yym3467 + yym3472 := z.EncBinary() + _ = yym3472 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -43962,17 +44003,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3468 := z.EncBinary() - _ = yym3468 + yym3473 := z.EncBinary() + _ = yym3473 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3470 := z.EncBinary() - _ = yym3470 + yym3475 := z.EncBinary() + _ = yym3475 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -43981,24 +44022,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3471 := z.EncBinary() - _ = yym3471 + yym3476 := z.EncBinary() + _ = yym3476 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3473 := *x.SinceSeconds - yym3474 := z.EncBinary() - _ = yym3474 + yy3478 := *x.SinceSeconds + yym3479 := z.EncBinary() + _ = yym3479 if false { } else { - r.EncodeInt(int64(yy3473)) + r.EncodeInt(int64(yy3478)) } } } else { @@ -44008,27 +44049,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3475 := *x.SinceSeconds - yym3476 := z.EncBinary() - _ = yym3476 + yy3480 := *x.SinceSeconds + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { - r.EncodeInt(int64(yy3475)) + r.EncodeInt(int64(yy3480)) } } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3478 := z.EncBinary() - _ = yym3478 + yym3483 := z.EncBinary() + _ = yym3483 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3478 { + } else if yym3483 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3478 && z.IsJSONHandle() { + } else if !yym3483 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -44041,23 +44082,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym3479 := z.EncBinary() - _ = yym3479 + yym3484 := z.EncBinary() + _ = yym3484 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3479 { + } else if yym3484 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3479 && z.IsJSONHandle() { + } else if !yym3484 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3481 := z.EncBinary() - _ = yym3481 + yym3486 := z.EncBinary() + _ = yym3486 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -44066,24 +44107,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3482 := z.EncBinary() - _ = yym3482 + yym3487 := z.EncBinary() + _ = yym3487 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3484 := *x.TailLines - yym3485 := z.EncBinary() - _ = yym3485 + yy3489 := *x.TailLines + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { - r.EncodeInt(int64(yy3484)) + r.EncodeInt(int64(yy3489)) } } } else { @@ -44093,26 +44134,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy3486 := *x.TailLines - yym3487 := z.EncBinary() - _ = yym3487 + yy3491 := *x.TailLines + yym3492 := z.EncBinary() + _ = yym3492 if false { } else { - r.EncodeInt(int64(yy3486)) + r.EncodeInt(int64(yy3491)) } } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3489 := *x.LimitBytes - yym3490 := z.EncBinary() - _ = yym3490 + yy3494 := *x.LimitBytes + yym3495 := z.EncBinary() + _ = yym3495 if false { } else { - r.EncodeInt(int64(yy3489)) + r.EncodeInt(int64(yy3494)) } } } else { @@ -44122,16 +44163,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3491 := *x.LimitBytes - yym3492 := z.EncBinary() - _ = yym3492 + yy3496 := *x.LimitBytes + yym3497 := z.EncBinary() + _ = yym3497 if false { } else { - r.EncodeInt(int64(yy3491)) + r.EncodeInt(int64(yy3496)) } } } - if yyr3456 || yy2arr3456 { + if yyr3461 || yy2arr3461 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44144,25 +44185,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3493 := z.DecBinary() - _ = yym3493 + yym3498 := z.DecBinary() + _ = yym3498 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3494 := r.ContainerType() - if yyct3494 == codecSelferValueTypeMap1234 { - yyl3494 := r.ReadMapStart() - if yyl3494 == 0 { + yyct3499 := r.ContainerType() + if yyct3499 == codecSelferValueTypeMap1234 { + yyl3499 := r.ReadMapStart() + if yyl3499 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3494, d) + x.codecDecodeSelfFromMap(yyl3499, d) } - } else if yyct3494 == codecSelferValueTypeArray1234 { - yyl3494 := r.ReadArrayStart() - if yyl3494 == 0 { + } else if yyct3499 == codecSelferValueTypeArray1234 { + yyl3499 := r.ReadArrayStart() + if yyl3499 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3494, d) + x.codecDecodeSelfFromArray(yyl3499, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44174,12 +44215,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3495Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3495Slc - var yyhl3495 bool = l >= 0 - for yyj3495 := 0; ; yyj3495++ { - if yyhl3495 { - if yyj3495 >= l { + var yys3500Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3500Slc + var yyhl3500 bool = l >= 0 + for yyj3500 := 0; ; yyj3500++ { + if yyhl3500 { + if yyj3500 >= l { break } } else { @@ -44188,10 +44229,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3495Slc = r.DecodeBytes(yys3495Slc, true, true) - yys3495 := string(yys3495Slc) + yys3500Slc = r.DecodeBytes(yys3500Slc, true, true) + yys3500 := string(yys3500Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3495 { + switch yys3500 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44231,8 +44272,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3502 := z.DecBinary() - _ = yym3502 + yym3507 := z.DecBinary() + _ = yym3507 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -44247,13 +44288,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3504 := z.DecBinary() - _ = yym3504 - if false { + yym3509 := z.DecBinary() + _ = yym3509 + if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3504 { + } else if yym3509 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3504 && z.IsJSONHandle() { + } else if !yym3509 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -44274,8 +44315,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3507 := z.DecBinary() - _ = yym3507 + yym3512 := z.DecBinary() + _ = yym3512 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -44290,17 +44331,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3509 := z.DecBinary() - _ = yym3509 + yym3514 := z.DecBinary() + _ = yym3514 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3495) - } // end switch yys3495 - } // end for yyj3495 + z.DecStructFieldNotFound(-1, yys3500) + } // end switch yys3500 + } // end for yyj3500 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44308,16 +44349,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3510 int - var yyb3510 bool - var yyhl3510 bool = l >= 0 - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + var yyj3515 int + var yyb3515 bool + var yyhl3515 bool = l >= 0 + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44327,13 +44368,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44343,13 +44384,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44359,13 +44400,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44375,13 +44416,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44391,13 +44432,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44410,20 +44451,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3517 := z.DecBinary() - _ = yym3517 + yym3522 := z.DecBinary() + _ = yym3522 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44436,25 +44477,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3519 := z.DecBinary() - _ = yym3519 + yym3524 := z.DecBinary() + _ = yym3524 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3519 { + } else if yym3524 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3519 && z.IsJSONHandle() { + } else if !yym3524 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44464,13 +44505,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44483,20 +44524,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3522 := z.DecBinary() - _ = yym3522 + yym3527 := z.DecBinary() + _ = yym3527 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44509,25 +44550,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3524 := z.DecBinary() - _ = yym3524 + yym3529 := z.DecBinary() + _ = yym3529 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3510++ - if yyhl3510 { - yyb3510 = yyj3510 > l + yyj3515++ + if yyhl3515 { + yyb3515 = yyj3515 > l } else { - yyb3510 = r.CheckBreak() + yyb3515 = r.CheckBreak() } - if yyb3510 { + if yyb3515 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3510-1, "") + z.DecStructFieldNotFound(yyj3515-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44539,41 +44580,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3525 := z.EncBinary() - _ = yym3525 + yym3530 := z.EncBinary() + _ = yym3530 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3526 := !z.EncBinary() - yy2arr3526 := z.EncBasicHandle().StructToArray - var yyq3526 [7]bool - _, _, _ = yysep3526, yyq3526, yy2arr3526 - const yyr3526 bool = false - yyq3526[0] = x.Kind != "" - yyq3526[1] = x.APIVersion != "" - yyq3526[2] = x.Stdin != false - yyq3526[3] = x.Stdout != false - yyq3526[4] = x.Stderr != false - yyq3526[5] = x.TTY != false - yyq3526[6] = x.Container != "" - var yynn3526 int - if yyr3526 || yy2arr3526 { + yysep3531 := !z.EncBinary() + yy2arr3531 := z.EncBasicHandle().StructToArray + var yyq3531 [7]bool + _, _, _ = yysep3531, yyq3531, yy2arr3531 + const yyr3531 bool = false + yyq3531[0] = x.Kind != "" + yyq3531[1] = x.APIVersion != "" + yyq3531[2] = x.Stdin != false + yyq3531[3] = x.Stdout != false + yyq3531[4] = x.Stderr != false + yyq3531[5] = x.TTY != false + yyq3531[6] = x.Container != "" + var yynn3531 int + if yyr3531 || yy2arr3531 { r.EncodeArrayStart(7) } else { - yynn3526 = 0 - for _, b := range yyq3526 { + yynn3531 = 0 + for _, b := range yyq3531 { if b { - yynn3526++ + yynn3531++ } } - r.EncodeMapStart(yynn3526) - yynn3526 = 0 + r.EncodeMapStart(yynn3531) + yynn3531 = 0 } - if yyr3526 || yy2arr3526 { + if yyr3531 || yy2arr3531 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3526[0] { - yym3528 := z.EncBinary() - _ = yym3528 + if yyq3531[0] { + yym3533 := z.EncBinary() + _ = yym3533 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44582,23 +44623,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3526[0] { + if yyq3531[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3529 := z.EncBinary() - _ = yym3529 + yym3534 := z.EncBinary() + _ = yym3534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3526 || yy2arr3526 { + if yyr3531 || yy2arr3531 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3526[1] { - yym3531 := z.EncBinary() - _ = yym3531 + if yyq3531[1] { + yym3536 := z.EncBinary() + _ = yym3536 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44607,23 +44648,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3526[1] { + if yyq3531[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3532 := z.EncBinary() - _ = yym3532 + yym3537 := z.EncBinary() + _ = yym3537 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3526 || yy2arr3526 { + if yyr3531 || yy2arr3531 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3526[2] { - yym3534 := z.EncBinary() - _ = yym3534 + if yyq3531[2] { + yym3539 := z.EncBinary() + _ = yym3539 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44632,23 +44673,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3526[2] { + if yyq3531[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3535 := z.EncBinary() - _ = yym3535 + yym3540 := z.EncBinary() + _ = yym3540 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3526 || yy2arr3526 { + if yyr3531 || yy2arr3531 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3526[3] { - yym3537 := z.EncBinary() - _ = yym3537 + if yyq3531[3] { + yym3542 := z.EncBinary() + _ = yym3542 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44657,23 +44698,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3526[3] { + if yyq3531[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3538 := z.EncBinary() - _ = yym3538 + yym3543 := z.EncBinary() + _ = yym3543 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3526 || yy2arr3526 { + if yyr3531 || yy2arr3531 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3526[4] { - yym3540 := z.EncBinary() - _ = yym3540 + if yyq3531[4] { + yym3545 := z.EncBinary() + _ = yym3545 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44682,23 +44723,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3526[4] { + if yyq3531[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3541 := z.EncBinary() - _ = yym3541 + yym3546 := z.EncBinary() + _ = yym3546 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3526 || yy2arr3526 { + if yyr3531 || yy2arr3531 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3526[5] { - yym3543 := z.EncBinary() - _ = yym3543 + if yyq3531[5] { + yym3548 := z.EncBinary() + _ = yym3548 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44707,23 +44748,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3526[5] { + if yyq3531[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3544 := z.EncBinary() - _ = yym3544 + yym3549 := z.EncBinary() + _ = yym3549 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3526 || yy2arr3526 { + if yyr3531 || yy2arr3531 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3526[6] { - yym3546 := z.EncBinary() - _ = yym3546 + if yyq3531[6] { + yym3551 := z.EncBinary() + _ = yym3551 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44732,19 +44773,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3526[6] { + if yyq3531[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3547 := z.EncBinary() - _ = yym3547 + yym3552 := z.EncBinary() + _ = yym3552 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3526 || yy2arr3526 { + if yyr3531 || yy2arr3531 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44757,25 +44798,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3548 := z.DecBinary() - _ = yym3548 + yym3553 := z.DecBinary() + _ = yym3553 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3549 := r.ContainerType() - if yyct3549 == codecSelferValueTypeMap1234 { - yyl3549 := r.ReadMapStart() - if yyl3549 == 0 { + yyct3554 := r.ContainerType() + if yyct3554 == codecSelferValueTypeMap1234 { + yyl3554 := r.ReadMapStart() + if yyl3554 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3549, d) + x.codecDecodeSelfFromMap(yyl3554, d) } - } else if yyct3549 == codecSelferValueTypeArray1234 { - yyl3549 := r.ReadArrayStart() - if yyl3549 == 0 { + } else if yyct3554 == codecSelferValueTypeArray1234 { + yyl3554 := r.ReadArrayStart() + if yyl3554 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3549, d) + x.codecDecodeSelfFromArray(yyl3554, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44787,12 +44828,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3550Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3550Slc - var yyhl3550 bool = l >= 0 - for yyj3550 := 0; ; yyj3550++ { - if yyhl3550 { - if yyj3550 >= l { + var yys3555Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3555Slc + var yyhl3555 bool = l >= 0 + for yyj3555 := 0; ; yyj3555++ { + if yyhl3555 { + if yyj3555 >= l { break } } else { @@ -44801,10 +44842,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3550Slc = r.DecodeBytes(yys3550Slc, true, true) - yys3550 := string(yys3550Slc) + yys3555Slc = r.DecodeBytes(yys3555Slc, true, true) + yys3555 := string(yys3555Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3550 { + switch yys3555 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44848,9 +44889,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3550) - } // end switch yys3550 - } // end for yyj3550 + z.DecStructFieldNotFound(-1, yys3555) + } // end switch yys3555 + } // end for yyj3555 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44858,16 +44899,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) 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 } @@ -44877,13 +44918,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } 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 } @@ -44893,13 +44934,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } 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 } @@ -44909,13 +44950,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - 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 } @@ -44925,13 +44966,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - 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 } @@ -44941,13 +44982,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - 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 } @@ -44957,13 +44998,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - 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 } @@ -44974,17 +45015,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = 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) } @@ -44996,36 +45037,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3566 := z.EncBinary() - _ = yym3566 + yym3571 := z.EncBinary() + _ = yym3571 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3567 := !z.EncBinary() - yy2arr3567 := z.EncBasicHandle().StructToArray - var yyq3567 [8]bool - _, _, _ = yysep3567, yyq3567, yy2arr3567 - const yyr3567 bool = false - yyq3567[0] = x.Kind != "" - yyq3567[1] = x.APIVersion != "" - var yynn3567 int - if yyr3567 || yy2arr3567 { + yysep3572 := !z.EncBinary() + yy2arr3572 := z.EncBasicHandle().StructToArray + var yyq3572 [8]bool + _, _, _ = yysep3572, yyq3572, yy2arr3572 + const yyr3572 bool = false + yyq3572[0] = x.Kind != "" + yyq3572[1] = x.APIVersion != "" + var yynn3572 int + if yyr3572 || yy2arr3572 { r.EncodeArrayStart(8) } else { - yynn3567 = 6 - for _, b := range yyq3567 { + yynn3572 = 6 + for _, b := range yyq3572 { if b { - yynn3567++ + yynn3572++ } } - r.EncodeMapStart(yynn3567) - yynn3567 = 0 + r.EncodeMapStart(yynn3572) + yynn3572 = 0 } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3567[0] { - yym3569 := z.EncBinary() - _ = yym3569 + if yyq3572[0] { + yym3574 := z.EncBinary() + _ = yym3574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45034,23 +45075,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3567[0] { + if yyq3572[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3570 := z.EncBinary() - _ = yym3570 + yym3575 := z.EncBinary() + _ = yym3575 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3567[1] { - yym3572 := z.EncBinary() - _ = yym3572 + if yyq3572[1] { + yym3577 := z.EncBinary() + _ = yym3577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45059,22 +45100,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3567[1] { + if yyq3572[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3573 := z.EncBinary() - _ = yym3573 + yym3578 := z.EncBinary() + _ = yym3578 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3575 := z.EncBinary() - _ = yym3575 + yym3580 := z.EncBinary() + _ = yym3580 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -45083,17 +45124,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3576 := z.EncBinary() - _ = yym3576 + yym3581 := z.EncBinary() + _ = yym3581 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3578 := z.EncBinary() - _ = yym3578 + yym3583 := z.EncBinary() + _ = yym3583 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -45102,17 +45143,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3579 := z.EncBinary() - _ = yym3579 + yym3584 := z.EncBinary() + _ = yym3584 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3581 := z.EncBinary() - _ = yym3581 + yym3586 := z.EncBinary() + _ = yym3586 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -45121,17 +45162,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3582 := z.EncBinary() - _ = yym3582 + yym3587 := z.EncBinary() + _ = yym3587 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3584 := z.EncBinary() - _ = yym3584 + yym3589 := z.EncBinary() + _ = yym3589 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -45140,17 +45181,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3585 := z.EncBinary() - _ = yym3585 + yym3590 := z.EncBinary() + _ = yym3590 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3587 := z.EncBinary() - _ = yym3587 + yym3592 := z.EncBinary() + _ = yym3592 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45159,20 +45200,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3588 := z.EncBinary() - _ = yym3588 + yym3593 := z.EncBinary() + _ = yym3593 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3590 := z.EncBinary() - _ = yym3590 + yym3595 := z.EncBinary() + _ = yym3595 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -45185,15 +45226,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3591 := z.EncBinary() - _ = yym3591 + yym3596 := z.EncBinary() + _ = yym3596 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3567 || yy2arr3567 { + if yyr3572 || yy2arr3572 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45206,25 +45247,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3592 := z.DecBinary() - _ = yym3592 + yym3597 := z.DecBinary() + _ = yym3597 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3593 := r.ContainerType() - if yyct3593 == codecSelferValueTypeMap1234 { - yyl3593 := r.ReadMapStart() - if yyl3593 == 0 { + yyct3598 := r.ContainerType() + if yyct3598 == codecSelferValueTypeMap1234 { + yyl3598 := r.ReadMapStart() + if yyl3598 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3593, d) + x.codecDecodeSelfFromMap(yyl3598, d) } - } else if yyct3593 == codecSelferValueTypeArray1234 { - yyl3593 := r.ReadArrayStart() - if yyl3593 == 0 { + } else if yyct3598 == codecSelferValueTypeArray1234 { + yyl3598 := r.ReadArrayStart() + if yyl3598 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3593, d) + x.codecDecodeSelfFromArray(yyl3598, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45236,12 +45277,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3594Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3594Slc - var yyhl3594 bool = l >= 0 - for yyj3594 := 0; ; yyj3594++ { - if yyhl3594 { - if yyj3594 >= l { + var yys3599Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3599Slc + var yyhl3599 bool = l >= 0 + for yyj3599 := 0; ; yyj3599++ { + if yyhl3599 { + if yyj3599 >= l { break } } else { @@ -45250,10 +45291,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3594Slc = r.DecodeBytes(yys3594Slc, true, true) - yys3594 := string(yys3594Slc) + yys3599Slc = r.DecodeBytes(yys3599Slc, true, true) + yys3599 := string(yys3599Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3594 { + switch yys3599 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45300,18 +45341,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3602 := &x.Command - yym3603 := z.DecBinary() - _ = yym3603 + yyv3607 := &x.Command + yym3608 := z.DecBinary() + _ = yym3608 if false { } else { - z.F.DecSliceStringX(yyv3602, false, d) + z.F.DecSliceStringX(yyv3607, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3594) - } // end switch yys3594 - } // end for yyj3594 + z.DecStructFieldNotFound(-1, yys3599) + } // end switch yys3599 + } // end for yyj3599 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45319,16 +45360,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3604 int - var yyb3604 bool - var yyhl3604 bool = l >= 0 - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + var yyj3609 int + var yyb3609 bool + var yyhl3609 bool = l >= 0 + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45338,13 +45379,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45354,13 +45395,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45370,13 +45411,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45386,13 +45427,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45402,13 +45443,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45418,13 +45459,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45434,13 +45475,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45448,26 +45489,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3612 := &x.Command - yym3613 := z.DecBinary() - _ = yym3613 + yyv3617 := &x.Command + yym3618 := z.DecBinary() + _ = yym3618 if false { } else { - z.F.DecSliceStringX(yyv3612, false, d) + z.F.DecSliceStringX(yyv3617, false, d) } } for { - yyj3604++ - if yyhl3604 { - yyb3604 = yyj3604 > l + yyj3609++ + if yyhl3609 { + yyb3609 = yyj3609 > l } else { - yyb3604 = r.CheckBreak() + yyb3609 = r.CheckBreak() } - if yyb3604 { + if yyb3609 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3604-1, "") + z.DecStructFieldNotFound(yyj3609-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45479,36 +45520,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3614 := z.EncBinary() - _ = yym3614 + yym3619 := z.EncBinary() + _ = yym3619 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3615 := !z.EncBinary() - yy2arr3615 := z.EncBasicHandle().StructToArray - var yyq3615 [3]bool - _, _, _ = yysep3615, yyq3615, yy2arr3615 - const yyr3615 bool = false - yyq3615[0] = x.Kind != "" - yyq3615[1] = x.APIVersion != "" - var yynn3615 int - if yyr3615 || yy2arr3615 { + yysep3620 := !z.EncBinary() + yy2arr3620 := z.EncBasicHandle().StructToArray + var yyq3620 [3]bool + _, _, _ = yysep3620, yyq3620, yy2arr3620 + const yyr3620 bool = false + yyq3620[0] = x.Kind != "" + yyq3620[1] = x.APIVersion != "" + var yynn3620 int + if yyr3620 || yy2arr3620 { r.EncodeArrayStart(3) } else { - yynn3615 = 1 - for _, b := range yyq3615 { + yynn3620 = 1 + for _, b := range yyq3620 { if b { - yynn3615++ + yynn3620++ } } - r.EncodeMapStart(yynn3615) - yynn3615 = 0 + r.EncodeMapStart(yynn3620) + yynn3620 = 0 } - if yyr3615 || yy2arr3615 { + if yyr3620 || yy2arr3620 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[0] { - yym3617 := z.EncBinary() - _ = yym3617 + if yyq3620[0] { + yym3622 := z.EncBinary() + _ = yym3622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45517,23 +45558,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3615[0] { + if yyq3620[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3618 := z.EncBinary() - _ = yym3618 + yym3623 := z.EncBinary() + _ = yym3623 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3615 || yy2arr3615 { + if yyr3620 || yy2arr3620 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[1] { - yym3620 := z.EncBinary() - _ = yym3620 + if yyq3620[1] { + yym3625 := z.EncBinary() + _ = yym3625 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45542,22 +45583,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3615[1] { + if yyq3620[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3621 := z.EncBinary() - _ = yym3621 + yym3626 := z.EncBinary() + _ = yym3626 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3615 || yy2arr3615 { + if yyr3620 || yy2arr3620 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3623 := z.EncBinary() - _ = yym3623 + yym3628 := z.EncBinary() + _ = yym3628 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45566,14 +45607,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3624 := z.EncBinary() - _ = yym3624 + yym3629 := z.EncBinary() + _ = yym3629 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3615 || yy2arr3615 { + if yyr3620 || yy2arr3620 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45586,25 +45627,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3625 := z.DecBinary() - _ = yym3625 + yym3630 := z.DecBinary() + _ = yym3630 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3626 := r.ContainerType() - if yyct3626 == codecSelferValueTypeMap1234 { - yyl3626 := r.ReadMapStart() - if yyl3626 == 0 { + yyct3631 := r.ContainerType() + if yyct3631 == codecSelferValueTypeMap1234 { + yyl3631 := r.ReadMapStart() + if yyl3631 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3626, d) + x.codecDecodeSelfFromMap(yyl3631, d) } - } else if yyct3626 == codecSelferValueTypeArray1234 { - yyl3626 := r.ReadArrayStart() - if yyl3626 == 0 { + } else if yyct3631 == codecSelferValueTypeArray1234 { + yyl3631 := r.ReadArrayStart() + if yyl3631 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3626, d) + x.codecDecodeSelfFromArray(yyl3631, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45616,12 +45657,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3627Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3627Slc - var yyhl3627 bool = l >= 0 - for yyj3627 := 0; ; yyj3627++ { - if yyhl3627 { - if yyj3627 >= l { + var yys3632Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3632Slc + var yyhl3632 bool = l >= 0 + for yyj3632 := 0; ; yyj3632++ { + if yyhl3632 { + if yyj3632 >= l { break } } else { @@ -45630,10 +45671,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3627Slc = r.DecodeBytes(yys3627Slc, true, true) - yys3627 := string(yys3627Slc) + yys3632Slc = r.DecodeBytes(yys3632Slc, true, true) + yys3632 := string(yys3632Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3627 { + switch yys3632 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45653,9 +45694,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3627) - } // end switch yys3627 - } // end for yyj3627 + z.DecStructFieldNotFound(-1, yys3632) + } // end switch yys3632 + } // end for yyj3632 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45663,16 +45704,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3631 int - var yyb3631 bool - var yyhl3631 bool = l >= 0 - yyj3631++ - if yyhl3631 { - yyb3631 = yyj3631 > l + var yyj3636 int + var yyb3636 bool + var yyhl3636 bool = l >= 0 + yyj3636++ + if yyhl3636 { + yyb3636 = yyj3636 > l } else { - yyb3631 = r.CheckBreak() + yyb3636 = r.CheckBreak() } - if yyb3631 { + if yyb3636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45682,13 +45723,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3631++ - if yyhl3631 { - yyb3631 = yyj3631 > l + yyj3636++ + if yyhl3636 { + yyb3636 = yyj3636 > l } else { - yyb3631 = r.CheckBreak() + yyb3636 = r.CheckBreak() } - if yyb3631 { + if yyb3636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45698,13 +45739,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3631++ - if yyhl3631 { - yyb3631 = yyj3631 > l + yyj3636++ + if yyhl3636 { + yyb3636 = yyj3636 > l } else { - yyb3631 = r.CheckBreak() + yyb3636 = r.CheckBreak() } - if yyb3631 { + if yyb3636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45715,17 +45756,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3631++ - if yyhl3631 { - yyb3631 = yyj3631 > l + yyj3636++ + if yyhl3636 { + yyb3636 = yyj3636 > l } else { - yyb3631 = r.CheckBreak() + yyb3636 = r.CheckBreak() } - if yyb3631 { + if yyb3636 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3631-1, "") + z.DecStructFieldNotFound(yyj3636-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45737,36 +45778,36 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3635 := z.EncBinary() - _ = yym3635 + yym3640 := z.EncBinary() + _ = yym3640 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3636 := !z.EncBinary() - yy2arr3636 := z.EncBasicHandle().StructToArray - var yyq3636 [3]bool - _, _, _ = yysep3636, yyq3636, yy2arr3636 - const yyr3636 bool = false - yyq3636[0] = x.Kind != "" - yyq3636[1] = x.APIVersion != "" - var yynn3636 int - if yyr3636 || yy2arr3636 { + yysep3641 := !z.EncBinary() + yy2arr3641 := z.EncBasicHandle().StructToArray + var yyq3641 [3]bool + _, _, _ = yysep3641, yyq3641, yy2arr3641 + const yyr3641 bool = false + yyq3641[0] = x.Kind != "" + yyq3641[1] = x.APIVersion != "" + var yynn3641 int + if yyr3641 || yy2arr3641 { r.EncodeArrayStart(3) } else { - yynn3636 = 1 - for _, b := range yyq3636 { + yynn3641 = 1 + for _, b := range yyq3641 { if b { - yynn3636++ + yynn3641++ } } - r.EncodeMapStart(yynn3636) - yynn3636 = 0 + r.EncodeMapStart(yynn3641) + yynn3641 = 0 } - if yyr3636 || yy2arr3636 { + if yyr3641 || yy2arr3641 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3636[0] { - yym3638 := z.EncBinary() - _ = yym3638 + if yyq3641[0] { + yym3643 := z.EncBinary() + _ = yym3643 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45775,23 +45816,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3636[0] { + if yyq3641[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3639 := z.EncBinary() - _ = yym3639 + yym3644 := z.EncBinary() + _ = yym3644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3636 || yy2arr3636 { + if yyr3641 || yy2arr3641 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3636[1] { - yym3641 := z.EncBinary() - _ = yym3641 + if yyq3641[1] { + yym3646 := z.EncBinary() + _ = yym3646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45800,22 +45841,22 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3636[1] { + if yyq3641[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3642 := z.EncBinary() - _ = yym3642 + yym3647 := z.EncBinary() + _ = yym3647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3636 || yy2arr3636 { + if yyr3641 || yy2arr3641 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3644 := z.EncBinary() - _ = yym3644 + yym3649 := z.EncBinary() + _ = yym3649 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45824,14 +45865,14 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3645 := z.EncBinary() - _ = yym3645 + yym3650 := z.EncBinary() + _ = yym3650 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3636 || yy2arr3636 { + if yyr3641 || yy2arr3641 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45844,25 +45885,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3646 := z.DecBinary() - _ = yym3646 + yym3651 := z.DecBinary() + _ = yym3651 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3647 := r.ContainerType() - if yyct3647 == codecSelferValueTypeMap1234 { - yyl3647 := r.ReadMapStart() - if yyl3647 == 0 { + yyct3652 := r.ContainerType() + if yyct3652 == codecSelferValueTypeMap1234 { + yyl3652 := r.ReadMapStart() + if yyl3652 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3647, d) + x.codecDecodeSelfFromMap(yyl3652, d) } - } else if yyct3647 == codecSelferValueTypeArray1234 { - yyl3647 := r.ReadArrayStart() - if yyl3647 == 0 { + } else if yyct3652 == codecSelferValueTypeArray1234 { + yyl3652 := r.ReadArrayStart() + if yyl3652 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3647, d) + x.codecDecodeSelfFromArray(yyl3652, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45874,12 +45915,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3648Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3648Slc - var yyhl3648 bool = l >= 0 - for yyj3648 := 0; ; yyj3648++ { - if yyhl3648 { - if yyj3648 >= l { + var yys3653Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3653Slc + var yyhl3653 bool = l >= 0 + for yyj3653 := 0; ; yyj3653++ { + if yyhl3653 { + if yyj3653 >= l { break } } else { @@ -45888,10 +45929,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3648Slc = r.DecodeBytes(yys3648Slc, true, true) - yys3648 := string(yys3648Slc) + yys3653Slc = r.DecodeBytes(yys3653Slc, true, true) + yys3653 := string(yys3653Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3648 { + switch yys3653 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45911,9 +45952,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3648) - } // end switch yys3648 - } // end for yyj3648 + z.DecStructFieldNotFound(-1, yys3653) + } // end switch yys3653 + } // end for yyj3653 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45921,16 +45962,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3652 int - var yyb3652 bool - var yyhl3652 bool = l >= 0 - yyj3652++ - if yyhl3652 { - yyb3652 = yyj3652 > l + var yyj3657 int + var yyb3657 bool + var yyhl3657 bool = l >= 0 + yyj3657++ + if yyhl3657 { + yyb3657 = yyj3657 > l } else { - yyb3652 = r.CheckBreak() + yyb3657 = r.CheckBreak() } - if yyb3652 { + if yyb3657 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45940,13 +45981,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3652++ - if yyhl3652 { - yyb3652 = yyj3652 > l + yyj3657++ + if yyhl3657 { + yyb3657 = yyj3657 > l } else { - yyb3652 = r.CheckBreak() + yyb3657 = r.CheckBreak() } - if yyb3652 { + if yyb3657 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45956,13 +45997,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3652++ - if yyhl3652 { - yyb3652 = yyj3652 > l + yyj3657++ + if yyhl3657 { + yyb3657 = yyj3657 > l } else { - yyb3652 = r.CheckBreak() + yyb3657 = r.CheckBreak() } - if yyb3652 { + if yyb3657 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45973,17 +46014,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3652++ - if yyhl3652 { - yyb3652 = yyj3652 > l + yyj3657++ + if yyhl3657 { + yyb3657 = yyj3657 > l } else { - yyb3652 = r.CheckBreak() + yyb3657 = r.CheckBreak() } - if yyb3652 { + if yyb3657 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3652-1, "") + z.DecStructFieldNotFound(yyj3657-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45995,36 +46036,36 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3656 := z.EncBinary() - _ = yym3656 + yym3661 := z.EncBinary() + _ = yym3661 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3657 := !z.EncBinary() - yy2arr3657 := z.EncBasicHandle().StructToArray - var yyq3657 [3]bool - _, _, _ = yysep3657, yyq3657, yy2arr3657 - const yyr3657 bool = false - yyq3657[0] = x.Kind != "" - yyq3657[1] = x.APIVersion != "" - var yynn3657 int - if yyr3657 || yy2arr3657 { + yysep3662 := !z.EncBinary() + yy2arr3662 := z.EncBasicHandle().StructToArray + var yyq3662 [3]bool + _, _, _ = yysep3662, yyq3662, yy2arr3662 + const yyr3662 bool = false + yyq3662[0] = x.Kind != "" + yyq3662[1] = x.APIVersion != "" + var yynn3662 int + if yyr3662 || yy2arr3662 { r.EncodeArrayStart(3) } else { - yynn3657 = 1 - for _, b := range yyq3657 { + yynn3662 = 1 + for _, b := range yyq3662 { if b { - yynn3657++ + yynn3662++ } } - r.EncodeMapStart(yynn3657) - yynn3657 = 0 + r.EncodeMapStart(yynn3662) + yynn3662 = 0 } - if yyr3657 || yy2arr3657 { + if yyr3662 || yy2arr3662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3657[0] { - yym3659 := z.EncBinary() - _ = yym3659 + if yyq3662[0] { + yym3664 := z.EncBinary() + _ = yym3664 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46033,23 +46074,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3657[0] { + if yyq3662[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3660 := z.EncBinary() - _ = yym3660 + yym3665 := z.EncBinary() + _ = yym3665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3657 || yy2arr3657 { + if yyr3662 || yy2arr3662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3657[1] { - yym3662 := z.EncBinary() - _ = yym3662 + if yyq3662[1] { + yym3667 := z.EncBinary() + _ = yym3667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46058,22 +46099,22 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3657[1] { + if yyq3662[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3663 := z.EncBinary() - _ = yym3663 + yym3668 := z.EncBinary() + _ = yym3668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3657 || yy2arr3657 { + if yyr3662 || yy2arr3662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3665 := z.EncBinary() - _ = yym3665 + yym3670 := z.EncBinary() + _ = yym3670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -46082,14 +46123,14 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3666 := z.EncBinary() - _ = yym3666 + yym3671 := z.EncBinary() + _ = yym3671 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3657 || yy2arr3657 { + if yyr3662 || yy2arr3662 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46102,25 +46143,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3667 := z.DecBinary() - _ = yym3667 + yym3672 := z.DecBinary() + _ = yym3672 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3668 := r.ContainerType() - if yyct3668 == codecSelferValueTypeMap1234 { - yyl3668 := r.ReadMapStart() - if yyl3668 == 0 { + yyct3673 := r.ContainerType() + if yyct3673 == codecSelferValueTypeMap1234 { + yyl3673 := r.ReadMapStart() + if yyl3673 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3668, d) + x.codecDecodeSelfFromMap(yyl3673, d) } - } else if yyct3668 == codecSelferValueTypeArray1234 { - yyl3668 := r.ReadArrayStart() - if yyl3668 == 0 { + } else if yyct3673 == codecSelferValueTypeArray1234 { + yyl3673 := r.ReadArrayStart() + if yyl3673 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3668, d) + x.codecDecodeSelfFromArray(yyl3673, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46132,12 +46173,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3669Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3669Slc - var yyhl3669 bool = l >= 0 - for yyj3669 := 0; ; yyj3669++ { - if yyhl3669 { - if yyj3669 >= l { + var yys3674Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3674Slc + var yyhl3674 bool = l >= 0 + for yyj3674 := 0; ; yyj3674++ { + if yyhl3674 { + if yyj3674 >= l { break } } else { @@ -46146,10 +46187,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3669Slc = r.DecodeBytes(yys3669Slc, true, true) - yys3669 := string(yys3669Slc) + yys3674Slc = r.DecodeBytes(yys3674Slc, true, true) + yys3674 := string(yys3674Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3669 { + switch yys3674 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46169,9 +46210,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3669) - } // end switch yys3669 - } // end for yyj3669 + z.DecStructFieldNotFound(-1, yys3674) + } // end switch yys3674 + } // end for yyj3674 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46179,16 +46220,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3673 int - var yyb3673 bool - var yyhl3673 bool = l >= 0 - yyj3673++ - if yyhl3673 { - yyb3673 = yyj3673 > l + var yyj3678 int + var yyb3678 bool + var yyhl3678 bool = l >= 0 + yyj3678++ + if yyhl3678 { + yyb3678 = yyj3678 > l } else { - yyb3673 = r.CheckBreak() + yyb3678 = r.CheckBreak() } - if yyb3673 { + if yyb3678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46198,13 +46239,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3673++ - if yyhl3673 { - yyb3673 = yyj3673 > l + yyj3678++ + if yyhl3678 { + yyb3678 = yyj3678 > l } else { - yyb3673 = r.CheckBreak() + yyb3678 = r.CheckBreak() } - if yyb3673 { + if yyb3678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46214,13 +46255,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3673++ - if yyhl3673 { - yyb3673 = yyj3673 > l + yyj3678++ + if yyhl3678 { + yyb3678 = yyj3678 > l } else { - yyb3673 = r.CheckBreak() + yyb3678 = r.CheckBreak() } - if yyb3673 { + if yyb3678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46231,17 +46272,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3673++ - if yyhl3673 { - yyb3673 = yyj3673 > l + yyj3678++ + if yyhl3678 { + yyb3678 = yyj3678 > l } else { - yyb3673 = r.CheckBreak() + yyb3678 = r.CheckBreak() } - if yyb3673 { + if yyb3678 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3673-1, "") + z.DecStructFieldNotFound(yyj3678-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46253,34 +46294,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3677 := z.EncBinary() - _ = yym3677 + yym3682 := z.EncBinary() + _ = yym3682 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3678 := !z.EncBinary() - yy2arr3678 := z.EncBasicHandle().StructToArray - var yyq3678 [5]bool - _, _, _ = yysep3678, yyq3678, yy2arr3678 - const yyr3678 bool = false - yyq3678[4] = x.Controller != nil - var yynn3678 int - if yyr3678 || yy2arr3678 { + yysep3683 := !z.EncBinary() + yy2arr3683 := z.EncBasicHandle().StructToArray + var yyq3683 [5]bool + _, _, _ = yysep3683, yyq3683, yy2arr3683 + const yyr3683 bool = false + yyq3683[4] = x.Controller != nil + var yynn3683 int + if yyr3683 || yy2arr3683 { r.EncodeArrayStart(5) } else { - yynn3678 = 4 - for _, b := range yyq3678 { + yynn3683 = 4 + for _, b := range yyq3683 { if b { - yynn3678++ + yynn3683++ } } - r.EncodeMapStart(yynn3678) - yynn3678 = 0 + r.EncodeMapStart(yynn3683) + yynn3683 = 0 } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46289,17 +46330,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3681 := z.EncBinary() - _ = yym3681 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3683 := z.EncBinary() - _ = yym3683 + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46308,17 +46349,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3684 := z.EncBinary() - _ = yym3684 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3686 := z.EncBinary() - _ = yym3686 + yym3691 := z.EncBinary() + _ = yym3691 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46327,17 +46368,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3687 := z.EncBinary() - _ = yym3687 + yym3692 := z.EncBinary() + _ = yym3692 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3689 := z.EncBinary() - _ = yym3689 + yym3694 := z.EncBinary() + _ = yym3694 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46347,50 +46388,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3690 := z.EncBinary() - _ = yym3690 + yym3695 := z.EncBinary() + _ = yym3695 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[4] { + if yyq3683[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3692 := *x.Controller - yym3693 := z.EncBinary() - _ = yym3693 + yy3697 := *x.Controller + yym3698 := z.EncBinary() + _ = yym3698 if false { } else { - r.EncodeBool(bool(yy3692)) + r.EncodeBool(bool(yy3697)) } } } else { r.EncodeNil() } } else { - if yyq3678[4] { + if yyq3683[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3694 := *x.Controller - yym3695 := z.EncBinary() - _ = yym3695 + yy3699 := *x.Controller + yym3700 := z.EncBinary() + _ = yym3700 if false { } else { - r.EncodeBool(bool(yy3694)) + r.EncodeBool(bool(yy3699)) } } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46403,25 +46444,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3696 := z.DecBinary() - _ = yym3696 + yym3701 := z.DecBinary() + _ = yym3701 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3697 := r.ContainerType() - if yyct3697 == codecSelferValueTypeMap1234 { - yyl3697 := r.ReadMapStart() - if yyl3697 == 0 { + yyct3702 := r.ContainerType() + if yyct3702 == codecSelferValueTypeMap1234 { + yyl3702 := r.ReadMapStart() + if yyl3702 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3697, d) + x.codecDecodeSelfFromMap(yyl3702, d) } - } else if yyct3697 == codecSelferValueTypeArray1234 { - yyl3697 := r.ReadArrayStart() - if yyl3697 == 0 { + } else if yyct3702 == codecSelferValueTypeArray1234 { + yyl3702 := r.ReadArrayStart() + if yyl3702 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3697, d) + x.codecDecodeSelfFromArray(yyl3702, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46433,12 +46474,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3698Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3698Slc - var yyhl3698 bool = l >= 0 - for yyj3698 := 0; ; yyj3698++ { - if yyhl3698 { - if yyj3698 >= l { + var yys3703Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3703Slc + var yyhl3703 bool = l >= 0 + for yyj3703 := 0; ; yyj3703++ { + if yyhl3703 { + if yyj3703 >= l { break } } else { @@ -46447,10 +46488,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3698Slc = r.DecodeBytes(yys3698Slc, true, true) - yys3698 := string(yys3698Slc) + yys3703Slc = r.DecodeBytes(yys3703Slc, true, true) + yys3703 := string(yys3703Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3698 { + switch yys3703 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -46484,17 +46525,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3704 := z.DecBinary() - _ = yym3704 + yym3709 := z.DecBinary() + _ = yym3709 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3698) - } // end switch yys3698 - } // end for yyj3698 + z.DecStructFieldNotFound(-1, yys3703) + } // end switch yys3703 + } // end for yyj3703 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46502,16 +46543,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3705 int - var yyb3705 bool - var yyhl3705 bool = l >= 0 - yyj3705++ - if yyhl3705 { - yyb3705 = yyj3705 > l + var yyj3710 int + var yyb3710 bool + var yyhl3710 bool = l >= 0 + yyj3710++ + if yyhl3710 { + yyb3710 = yyj3710 > l } else { - yyb3705 = r.CheckBreak() + yyb3710 = r.CheckBreak() } - if yyb3705 { + if yyb3710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46521,13 +46562,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3705++ - if yyhl3705 { - yyb3705 = yyj3705 > l + yyj3710++ + if yyhl3710 { + yyb3710 = yyj3710 > l } else { - yyb3705 = r.CheckBreak() + yyb3710 = r.CheckBreak() } - if yyb3705 { + if yyb3710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46537,13 +46578,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3705++ - if yyhl3705 { - yyb3705 = yyj3705 > l + yyj3710++ + if yyhl3710 { + yyb3710 = yyj3710 > l } else { - yyb3705 = r.CheckBreak() + yyb3710 = r.CheckBreak() } - if yyb3705 { + if yyb3710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46553,13 +46594,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3705++ - if yyhl3705 { - yyb3705 = yyj3705 > l + yyj3710++ + if yyhl3710 { + yyb3710 = yyj3710 > l } else { - yyb3705 = r.CheckBreak() + yyb3710 = r.CheckBreak() } - if yyb3705 { + if yyb3710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46569,13 +46610,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3705++ - if yyhl3705 { - yyb3705 = yyj3705 > l + yyj3710++ + if yyhl3710 { + yyb3710 = yyj3710 > l } else { - yyb3705 = r.CheckBreak() + yyb3710 = r.CheckBreak() } - if yyb3705 { + if yyb3710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46588,25 +46629,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3711 := z.DecBinary() - _ = yym3711 + yym3716 := z.DecBinary() + _ = yym3716 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3705++ - if yyhl3705 { - yyb3705 = yyj3705 > l + yyj3710++ + if yyhl3710 { + yyb3710 = yyj3710 > l } else { - yyb3705 = r.CheckBreak() + yyb3710 = r.CheckBreak() } - if yyb3705 { + if yyb3710 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3705-1, "") + z.DecStructFieldNotFound(yyj3710-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46618,41 +46659,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3712 := z.EncBinary() - _ = yym3712 + yym3717 := z.EncBinary() + _ = yym3717 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3713 := !z.EncBinary() - yy2arr3713 := z.EncBasicHandle().StructToArray - var yyq3713 [7]bool - _, _, _ = yysep3713, yyq3713, yy2arr3713 - const yyr3713 bool = false - yyq3713[0] = x.Kind != "" - yyq3713[1] = x.Namespace != "" - yyq3713[2] = x.Name != "" - yyq3713[3] = x.UID != "" - yyq3713[4] = x.APIVersion != "" - yyq3713[5] = x.ResourceVersion != "" - yyq3713[6] = x.FieldPath != "" - var yynn3713 int - if yyr3713 || yy2arr3713 { + yysep3718 := !z.EncBinary() + yy2arr3718 := z.EncBasicHandle().StructToArray + var yyq3718 [7]bool + _, _, _ = yysep3718, yyq3718, yy2arr3718 + const yyr3718 bool = false + yyq3718[0] = x.Kind != "" + yyq3718[1] = x.Namespace != "" + yyq3718[2] = x.Name != "" + yyq3718[3] = x.UID != "" + yyq3718[4] = x.APIVersion != "" + yyq3718[5] = x.ResourceVersion != "" + yyq3718[6] = x.FieldPath != "" + var yynn3718 int + if yyr3718 || yy2arr3718 { r.EncodeArrayStart(7) } else { - yynn3713 = 0 - for _, b := range yyq3713 { + yynn3718 = 0 + for _, b := range yyq3718 { if b { - yynn3713++ + yynn3718++ } } - r.EncodeMapStart(yynn3713) - yynn3713 = 0 + r.EncodeMapStart(yynn3718) + yynn3718 = 0 } - if yyr3713 || yy2arr3713 { + if yyr3718 || yy2arr3718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3713[0] { - yym3715 := z.EncBinary() - _ = yym3715 + if yyq3718[0] { + yym3720 := z.EncBinary() + _ = yym3720 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46661,23 +46702,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3713[0] { + if yyq3718[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3716 := z.EncBinary() - _ = yym3716 + yym3721 := z.EncBinary() + _ = yym3721 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3713 || yy2arr3713 { + if yyr3718 || yy2arr3718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3713[1] { - yym3718 := z.EncBinary() - _ = yym3718 + if yyq3718[1] { + yym3723 := z.EncBinary() + _ = yym3723 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -46686,23 +46727,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3713[1] { + if yyq3718[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3719 := z.EncBinary() - _ = yym3719 + yym3724 := z.EncBinary() + _ = yym3724 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3713 || yy2arr3713 { + if yyr3718 || yy2arr3718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3713[2] { - yym3721 := z.EncBinary() - _ = yym3721 + if yyq3718[2] { + yym3726 := z.EncBinary() + _ = yym3726 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46711,23 +46752,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3713[2] { + if yyq3718[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3722 := z.EncBinary() - _ = yym3722 + yym3727 := z.EncBinary() + _ = yym3727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3713 || yy2arr3713 { + if yyr3718 || yy2arr3718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3713[3] { - yym3724 := z.EncBinary() - _ = yym3724 + if yyq3718[3] { + yym3729 := z.EncBinary() + _ = yym3729 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46737,12 +46778,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3713[3] { + if yyq3718[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3725 := z.EncBinary() - _ = yym3725 + yym3730 := z.EncBinary() + _ = yym3730 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46750,11 +46791,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3713 || yy2arr3713 { + if yyr3718 || yy2arr3718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3713[4] { - yym3727 := z.EncBinary() - _ = yym3727 + if yyq3718[4] { + yym3732 := z.EncBinary() + _ = yym3732 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46763,23 +46804,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3713[4] { + if yyq3718[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3728 := z.EncBinary() - _ = yym3728 + yym3733 := z.EncBinary() + _ = yym3733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3713 || yy2arr3713 { + if yyr3718 || yy2arr3718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3713[5] { - yym3730 := z.EncBinary() - _ = yym3730 + if yyq3718[5] { + yym3735 := z.EncBinary() + _ = yym3735 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -46788,23 +46829,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3713[5] { + if yyq3718[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3731 := z.EncBinary() - _ = yym3731 + yym3736 := z.EncBinary() + _ = yym3736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3713 || yy2arr3713 { + if yyr3718 || yy2arr3718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3713[6] { - yym3733 := z.EncBinary() - _ = yym3733 + if yyq3718[6] { + yym3738 := z.EncBinary() + _ = yym3738 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -46813,19 +46854,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3713[6] { + if yyq3718[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3734 := z.EncBinary() - _ = yym3734 + yym3739 := z.EncBinary() + _ = yym3739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3713 || yy2arr3713 { + if yyr3718 || yy2arr3718 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46838,25 +46879,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3735 := z.DecBinary() - _ = yym3735 + yym3740 := z.DecBinary() + _ = yym3740 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3736 := r.ContainerType() - if yyct3736 == codecSelferValueTypeMap1234 { - yyl3736 := r.ReadMapStart() - if yyl3736 == 0 { + yyct3741 := r.ContainerType() + if yyct3741 == codecSelferValueTypeMap1234 { + yyl3741 := r.ReadMapStart() + if yyl3741 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3736, d) + x.codecDecodeSelfFromMap(yyl3741, d) } - } else if yyct3736 == codecSelferValueTypeArray1234 { - yyl3736 := r.ReadArrayStart() - if yyl3736 == 0 { + } else if yyct3741 == codecSelferValueTypeArray1234 { + yyl3741 := r.ReadArrayStart() + if yyl3741 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3736, d) + x.codecDecodeSelfFromArray(yyl3741, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46868,12 +46909,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3737Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3737Slc - var yyhl3737 bool = l >= 0 - for yyj3737 := 0; ; yyj3737++ { - if yyhl3737 { - if yyj3737 >= l { + var yys3742Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3742Slc + var yyhl3742 bool = l >= 0 + for yyj3742 := 0; ; yyj3742++ { + if yyhl3742 { + if yyj3742 >= l { break } } else { @@ -46882,10 +46923,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3737Slc = r.DecodeBytes(yys3737Slc, true, true) - yys3737 := string(yys3737Slc) + yys3742Slc = r.DecodeBytes(yys3742Slc, true, true) + yys3742 := string(yys3742Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3737 { + switch yys3742 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46929,9 +46970,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3737) - } // end switch yys3737 - } // end for yyj3737 + z.DecStructFieldNotFound(-1, yys3742) + } // end switch yys3742 + } // end for yyj3742 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46939,16 +46980,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3745 int - var yyb3745 bool - var yyhl3745 bool = l >= 0 - yyj3745++ - if yyhl3745 { - yyb3745 = yyj3745 > l + var yyj3750 int + var yyb3750 bool + var yyhl3750 bool = l >= 0 + yyj3750++ + if yyhl3750 { + yyb3750 = yyj3750 > l } else { - yyb3745 = r.CheckBreak() + yyb3750 = r.CheckBreak() } - if yyb3745 { + if yyb3750 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46958,13 +46999,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3745++ - if yyhl3745 { - yyb3745 = yyj3745 > l + yyj3750++ + if yyhl3750 { + yyb3750 = yyj3750 > l } else { - yyb3745 = r.CheckBreak() + yyb3750 = r.CheckBreak() } - if yyb3745 { + if yyb3750 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46974,13 +47015,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3745++ - if yyhl3745 { - yyb3745 = yyj3745 > l + yyj3750++ + if yyhl3750 { + yyb3750 = yyj3750 > l } else { - yyb3745 = r.CheckBreak() + yyb3750 = r.CheckBreak() } - if yyb3745 { + if yyb3750 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46990,13 +47031,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3745++ - if yyhl3745 { - yyb3745 = yyj3745 > l + yyj3750++ + if yyhl3750 { + yyb3750 = yyj3750 > l } else { - yyb3745 = r.CheckBreak() + yyb3750 = r.CheckBreak() } - if yyb3745 { + if yyb3750 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47006,13 +47047,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3745++ - if yyhl3745 { - yyb3745 = yyj3745 > l + yyj3750++ + if yyhl3750 { + yyb3750 = yyj3750 > l } else { - yyb3745 = r.CheckBreak() + yyb3750 = r.CheckBreak() } - if yyb3745 { + if yyb3750 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47022,13 +47063,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3745++ - if yyhl3745 { - yyb3745 = yyj3745 > l + yyj3750++ + if yyhl3750 { + yyb3750 = yyj3750 > l } else { - yyb3745 = r.CheckBreak() + yyb3750 = r.CheckBreak() } - if yyb3745 { + if yyb3750 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47038,13 +47079,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3745++ - if yyhl3745 { - yyb3745 = yyj3745 > l + yyj3750++ + if yyhl3750 { + yyb3750 = yyj3750 > l } else { - yyb3745 = r.CheckBreak() + yyb3750 = r.CheckBreak() } - if yyb3745 { + if yyb3750 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47055,17 +47096,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3745++ - if yyhl3745 { - yyb3745 = yyj3745 > l + yyj3750++ + if yyhl3750 { + yyb3750 = yyj3750 > l } else { - yyb3745 = r.CheckBreak() + yyb3750 = r.CheckBreak() } - if yyb3745 { + if yyb3750 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3745-1, "") + z.DecStructFieldNotFound(yyj3750-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47077,33 +47118,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3753 := z.EncBinary() - _ = yym3753 + yym3758 := z.EncBinary() + _ = yym3758 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3754 := !z.EncBinary() - yy2arr3754 := z.EncBasicHandle().StructToArray - var yyq3754 [1]bool - _, _, _ = yysep3754, yyq3754, yy2arr3754 - const yyr3754 bool = false - var yynn3754 int - if yyr3754 || yy2arr3754 { + yysep3759 := !z.EncBinary() + yy2arr3759 := z.EncBasicHandle().StructToArray + var yyq3759 [1]bool + _, _, _ = yysep3759, yyq3759, yy2arr3759 + const yyr3759 bool = false + var yynn3759 int + if yyr3759 || yy2arr3759 { r.EncodeArrayStart(1) } else { - yynn3754 = 1 - for _, b := range yyq3754 { + yynn3759 = 1 + for _, b := range yyq3759 { if b { - yynn3754++ + yynn3759++ } } - r.EncodeMapStart(yynn3754) - yynn3754 = 0 + r.EncodeMapStart(yynn3759) + yynn3759 = 0 } - if yyr3754 || yy2arr3754 { + if yyr3759 || yy2arr3759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3756 := z.EncBinary() - _ = yym3756 + yym3761 := z.EncBinary() + _ = yym3761 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -47112,14 +47153,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3757 := z.EncBinary() - _ = yym3757 + yym3762 := z.EncBinary() + _ = yym3762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3754 || yy2arr3754 { + if yyr3759 || yy2arr3759 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47132,25 +47173,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3758 := z.DecBinary() - _ = yym3758 + yym3763 := z.DecBinary() + _ = yym3763 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3759 := r.ContainerType() - if yyct3759 == codecSelferValueTypeMap1234 { - yyl3759 := r.ReadMapStart() - if yyl3759 == 0 { + yyct3764 := r.ContainerType() + if yyct3764 == codecSelferValueTypeMap1234 { + yyl3764 := r.ReadMapStart() + if yyl3764 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3759, d) + x.codecDecodeSelfFromMap(yyl3764, d) } - } else if yyct3759 == codecSelferValueTypeArray1234 { - yyl3759 := r.ReadArrayStart() - if yyl3759 == 0 { + } else if yyct3764 == codecSelferValueTypeArray1234 { + yyl3764 := r.ReadArrayStart() + if yyl3764 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3759, d) + x.codecDecodeSelfFromArray(yyl3764, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47162,12 +47203,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3760Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3760Slc - var yyhl3760 bool = l >= 0 - for yyj3760 := 0; ; yyj3760++ { - if yyhl3760 { - if yyj3760 >= l { + var yys3765Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3765Slc + var yyhl3765 bool = l >= 0 + for yyj3765 := 0; ; yyj3765++ { + if yyhl3765 { + if yyj3765 >= l { break } } else { @@ -47176,10 +47217,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3760Slc = r.DecodeBytes(yys3760Slc, true, true) - yys3760 := string(yys3760Slc) + yys3765Slc = r.DecodeBytes(yys3765Slc, true, true) + yys3765 := string(yys3765Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3760 { + switch yys3765 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -47187,9 +47228,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3760) - } // end switch yys3760 - } // end for yyj3760 + z.DecStructFieldNotFound(-1, yys3765) + } // end switch yys3765 + } // end for yyj3765 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47197,16 +47238,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3762 int - var yyb3762 bool - var yyhl3762 bool = l >= 0 - yyj3762++ - if yyhl3762 { - yyb3762 = yyj3762 > l + var yyj3767 int + var yyb3767 bool + var yyhl3767 bool = l >= 0 + yyj3767++ + if yyhl3767 { + yyb3767 = yyj3767 > l } else { - yyb3762 = r.CheckBreak() + yyb3767 = r.CheckBreak() } - if yyb3762 { + if yyb3767 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47217,17 +47258,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3762++ - if yyhl3762 { - yyb3762 = yyj3762 > l + yyj3767++ + if yyhl3767 { + yyb3767 = yyj3767 > l } else { - yyb3762 = r.CheckBreak() + yyb3767 = r.CheckBreak() } - if yyb3762 { + if yyb3767 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3762-1, "") + z.DecStructFieldNotFound(yyj3767-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47239,37 +47280,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3764 := z.EncBinary() - _ = yym3764 + yym3769 := z.EncBinary() + _ = yym3769 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3765 := !z.EncBinary() - yy2arr3765 := z.EncBasicHandle().StructToArray - var yyq3765 [3]bool - _, _, _ = yysep3765, yyq3765, yy2arr3765 - const yyr3765 bool = false - yyq3765[0] = x.Kind != "" - yyq3765[1] = x.APIVersion != "" - yyq3765[2] = true - var yynn3765 int - if yyr3765 || yy2arr3765 { + yysep3770 := !z.EncBinary() + yy2arr3770 := z.EncBasicHandle().StructToArray + var yyq3770 [3]bool + _, _, _ = yysep3770, yyq3770, yy2arr3770 + const yyr3770 bool = false + yyq3770[0] = x.Kind != "" + yyq3770[1] = x.APIVersion != "" + yyq3770[2] = true + var yynn3770 int + if yyr3770 || yy2arr3770 { r.EncodeArrayStart(3) } else { - yynn3765 = 0 - for _, b := range yyq3765 { + yynn3770 = 0 + for _, b := range yyq3770 { if b { - yynn3765++ + yynn3770++ } } - r.EncodeMapStart(yynn3765) - yynn3765 = 0 + r.EncodeMapStart(yynn3770) + yynn3770 = 0 } - if yyr3765 || yy2arr3765 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3765[0] { - yym3767 := z.EncBinary() - _ = yym3767 + if yyq3770[0] { + yym3772 := z.EncBinary() + _ = yym3772 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47278,23 +47319,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3765[0] { + if yyq3770[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3768 := z.EncBinary() - _ = yym3768 + yym3773 := z.EncBinary() + _ = yym3773 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3765 || yy2arr3765 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3765[1] { - yym3770 := z.EncBinary() - _ = yym3770 + if yyq3770[1] { + yym3775 := z.EncBinary() + _ = yym3775 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47303,36 +47344,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3765[1] { + if yyq3770[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3771 := z.EncBinary() - _ = yym3771 + yym3776 := z.EncBinary() + _ = yym3776 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3765 || yy2arr3765 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3765[2] { - yy3773 := &x.Reference - yy3773.CodecEncodeSelf(e) + if yyq3770[2] { + yy3778 := &x.Reference + yy3778.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3765[2] { + if yyq3770[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3774 := &x.Reference - yy3774.CodecEncodeSelf(e) + yy3779 := &x.Reference + yy3779.CodecEncodeSelf(e) } } - if yyr3765 || yy2arr3765 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47345,25 +47386,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3775 := z.DecBinary() - _ = yym3775 + yym3780 := z.DecBinary() + _ = yym3780 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3776 := r.ContainerType() - if yyct3776 == codecSelferValueTypeMap1234 { - yyl3776 := r.ReadMapStart() - if yyl3776 == 0 { + yyct3781 := r.ContainerType() + if yyct3781 == codecSelferValueTypeMap1234 { + yyl3781 := r.ReadMapStart() + if yyl3781 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3776, d) + x.codecDecodeSelfFromMap(yyl3781, d) } - } else if yyct3776 == codecSelferValueTypeArray1234 { - yyl3776 := r.ReadArrayStart() - if yyl3776 == 0 { + } else if yyct3781 == codecSelferValueTypeArray1234 { + yyl3781 := r.ReadArrayStart() + if yyl3781 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3776, d) + x.codecDecodeSelfFromArray(yyl3781, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47375,12 +47416,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3777Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3777Slc - var yyhl3777 bool = l >= 0 - for yyj3777 := 0; ; yyj3777++ { - if yyhl3777 { - if yyj3777 >= l { + var yys3782Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3782Slc + var yyhl3782 bool = l >= 0 + for yyj3782 := 0; ; yyj3782++ { + if yyhl3782 { + if yyj3782 >= l { break } } else { @@ -47389,10 +47430,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3777Slc = r.DecodeBytes(yys3777Slc, true, true) - yys3777 := string(yys3777Slc) + yys3782Slc = r.DecodeBytes(yys3782Slc, true, true) + yys3782 := string(yys3782Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3777 { + switch yys3782 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47409,13 +47450,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3780 := &x.Reference - yyv3780.CodecDecodeSelf(d) + yyv3785 := &x.Reference + yyv3785.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3777) - } // end switch yys3777 - } // end for yyj3777 + z.DecStructFieldNotFound(-1, yys3782) + } // end switch yys3782 + } // end for yyj3782 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47423,16 +47464,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3781 int - var yyb3781 bool - var yyhl3781 bool = l >= 0 - yyj3781++ - if yyhl3781 { - yyb3781 = yyj3781 > l + var yyj3786 int + var yyb3786 bool + var yyhl3786 bool = l >= 0 + yyj3786++ + if yyhl3786 { + yyb3786 = yyj3786 > l } else { - yyb3781 = r.CheckBreak() + yyb3786 = r.CheckBreak() } - if yyb3781 { + if yyb3786 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47442,13 +47483,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3781++ - if yyhl3781 { - yyb3781 = yyj3781 > l + yyj3786++ + if yyhl3786 { + yyb3786 = yyj3786 > l } else { - yyb3781 = r.CheckBreak() + yyb3786 = r.CheckBreak() } - if yyb3781 { + if yyb3786 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47458,13 +47499,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3781++ - if yyhl3781 { - yyb3781 = yyj3781 > l + yyj3786++ + if yyhl3786 { + yyb3786 = yyj3786 > l } else { - yyb3781 = r.CheckBreak() + yyb3786 = r.CheckBreak() } - if yyb3781 { + if yyb3786 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47472,21 +47513,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3784 := &x.Reference - yyv3784.CodecDecodeSelf(d) + yyv3789 := &x.Reference + yyv3789.CodecDecodeSelf(d) } for { - yyj3781++ - if yyhl3781 { - yyb3781 = yyj3781 > l + yyj3786++ + if yyhl3786 { + yyb3786 = yyj3786 > l } else { - yyb3781 = r.CheckBreak() + yyb3786 = r.CheckBreak() } - if yyb3781 { + if yyb3786 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3781-1, "") + z.DecStructFieldNotFound(yyj3786-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47498,36 +47539,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3785 := z.EncBinary() - _ = yym3785 + yym3790 := z.EncBinary() + _ = yym3790 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3786 := !z.EncBinary() - yy2arr3786 := z.EncBasicHandle().StructToArray - var yyq3786 [2]bool - _, _, _ = yysep3786, yyq3786, yy2arr3786 - const yyr3786 bool = false - yyq3786[0] = x.Component != "" - yyq3786[1] = x.Host != "" - var yynn3786 int - if yyr3786 || yy2arr3786 { + yysep3791 := !z.EncBinary() + yy2arr3791 := z.EncBasicHandle().StructToArray + var yyq3791 [2]bool + _, _, _ = yysep3791, yyq3791, yy2arr3791 + const yyr3791 bool = false + yyq3791[0] = x.Component != "" + yyq3791[1] = x.Host != "" + var yynn3791 int + if yyr3791 || yy2arr3791 { r.EncodeArrayStart(2) } else { - yynn3786 = 0 - for _, b := range yyq3786 { + yynn3791 = 0 + for _, b := range yyq3791 { if b { - yynn3786++ + yynn3791++ } } - r.EncodeMapStart(yynn3786) - yynn3786 = 0 + r.EncodeMapStart(yynn3791) + yynn3791 = 0 } - if yyr3786 || yy2arr3786 { + if yyr3791 || yy2arr3791 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3786[0] { - yym3788 := z.EncBinary() - _ = yym3788 + if yyq3791[0] { + yym3793 := z.EncBinary() + _ = yym3793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -47536,23 +47577,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3786[0] { + if yyq3791[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3789 := z.EncBinary() - _ = yym3789 + yym3794 := z.EncBinary() + _ = yym3794 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3786 || yy2arr3786 { + if yyr3791 || yy2arr3791 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3786[1] { - yym3791 := z.EncBinary() - _ = yym3791 + if yyq3791[1] { + yym3796 := z.EncBinary() + _ = yym3796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -47561,19 +47602,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3786[1] { + if yyq3791[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3792 := z.EncBinary() - _ = yym3792 + yym3797 := z.EncBinary() + _ = yym3797 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3786 || yy2arr3786 { + if yyr3791 || yy2arr3791 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47586,25 +47627,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3793 := z.DecBinary() - _ = yym3793 + yym3798 := z.DecBinary() + _ = yym3798 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3794 := r.ContainerType() - if yyct3794 == codecSelferValueTypeMap1234 { - yyl3794 := r.ReadMapStart() - if yyl3794 == 0 { + yyct3799 := r.ContainerType() + if yyct3799 == codecSelferValueTypeMap1234 { + yyl3799 := r.ReadMapStart() + if yyl3799 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3794, d) + x.codecDecodeSelfFromMap(yyl3799, d) } - } else if yyct3794 == codecSelferValueTypeArray1234 { - yyl3794 := r.ReadArrayStart() - if yyl3794 == 0 { + } else if yyct3799 == codecSelferValueTypeArray1234 { + yyl3799 := r.ReadArrayStart() + if yyl3799 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3794, d) + x.codecDecodeSelfFromArray(yyl3799, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47616,12 +47657,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3795Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3795Slc - var yyhl3795 bool = l >= 0 - for yyj3795 := 0; ; yyj3795++ { - if yyhl3795 { - if yyj3795 >= l { + var yys3800Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3800Slc + var yyhl3800 bool = l >= 0 + for yyj3800 := 0; ; yyj3800++ { + if yyhl3800 { + if yyj3800 >= l { break } } else { @@ -47630,10 +47671,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3795Slc = r.DecodeBytes(yys3795Slc, true, true) - yys3795 := string(yys3795Slc) + yys3800Slc = r.DecodeBytes(yys3800Slc, true, true) + yys3800 := string(yys3800Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3795 { + switch yys3800 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -47647,9 +47688,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3795) - } // end switch yys3795 - } // end for yyj3795 + z.DecStructFieldNotFound(-1, yys3800) + } // end switch yys3800 + } // end for yyj3800 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47657,16 +47698,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3798 int - var yyb3798 bool - var yyhl3798 bool = l >= 0 - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + var yyj3803 int + var yyb3803 bool + var yyhl3803 bool = l >= 0 + yyj3803++ + if yyhl3803 { + yyb3803 = yyj3803 > l } else { - yyb3798 = r.CheckBreak() + yyb3803 = r.CheckBreak() } - if yyb3798 { + if yyb3803 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47676,13 +47717,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3803++ + if yyhl3803 { + yyb3803 = yyj3803 > l } else { - yyb3798 = r.CheckBreak() + yyb3803 = r.CheckBreak() } - if yyb3798 { + if yyb3803 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47693,17 +47734,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3803++ + if yyhl3803 { + yyb3803 = yyj3803 > l } else { - yyb3798 = r.CheckBreak() + yyb3803 = r.CheckBreak() } - if yyb3798 { + if yyb3803 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3798-1, "") + z.DecStructFieldNotFound(yyj3803-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47715,45 +47756,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3801 := z.EncBinary() - _ = yym3801 + yym3806 := z.EncBinary() + _ = yym3806 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3802 := !z.EncBinary() - yy2arr3802 := z.EncBasicHandle().StructToArray - var yyq3802 [11]bool - _, _, _ = yysep3802, yyq3802, yy2arr3802 - const yyr3802 bool = false - yyq3802[0] = x.Kind != "" - yyq3802[1] = x.APIVersion != "" - yyq3802[2] = true - yyq3802[3] = true - yyq3802[4] = x.Reason != "" - yyq3802[5] = x.Message != "" - yyq3802[6] = true - yyq3802[7] = true - yyq3802[8] = true - yyq3802[9] = x.Count != 0 - yyq3802[10] = x.Type != "" - var yynn3802 int - if yyr3802 || yy2arr3802 { + yysep3807 := !z.EncBinary() + yy2arr3807 := z.EncBasicHandle().StructToArray + var yyq3807 [11]bool + _, _, _ = yysep3807, yyq3807, yy2arr3807 + const yyr3807 bool = false + yyq3807[0] = x.Kind != "" + yyq3807[1] = x.APIVersion != "" + yyq3807[2] = true + yyq3807[3] = true + yyq3807[4] = x.Reason != "" + yyq3807[5] = x.Message != "" + yyq3807[6] = true + yyq3807[7] = true + yyq3807[8] = true + yyq3807[9] = x.Count != 0 + yyq3807[10] = x.Type != "" + var yynn3807 int + if yyr3807 || yy2arr3807 { r.EncodeArrayStart(11) } else { - yynn3802 = 0 - for _, b := range yyq3802 { + yynn3807 = 0 + for _, b := range yyq3807 { if b { - yynn3802++ + yynn3807++ } } - r.EncodeMapStart(yynn3802) - yynn3802 = 0 + r.EncodeMapStart(yynn3807) + yynn3807 = 0 } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[0] { - yym3804 := z.EncBinary() - _ = yym3804 + if yyq3807[0] { + yym3809 := z.EncBinary() + _ = yym3809 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47762,23 +47803,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3802[0] { + if yyq3807[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3805 := z.EncBinary() - _ = yym3805 + yym3810 := z.EncBinary() + _ = yym3810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[1] { - yym3807 := z.EncBinary() - _ = yym3807 + if yyq3807[1] { + yym3812 := z.EncBinary() + _ = yym3812 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47787,57 +47828,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3802[1] { + if yyq3807[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3808 := z.EncBinary() - _ = yym3808 + yym3813 := z.EncBinary() + _ = yym3813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[2] { - yy3810 := &x.ObjectMeta - yy3810.CodecEncodeSelf(e) + if yyq3807[2] { + yy3815 := &x.ObjectMeta + yy3815.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3802[2] { + if yyq3807[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3811 := &x.ObjectMeta - yy3811.CodecEncodeSelf(e) + yy3816 := &x.ObjectMeta + yy3816.CodecEncodeSelf(e) } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[3] { - yy3813 := &x.InvolvedObject - yy3813.CodecEncodeSelf(e) + if yyq3807[3] { + yy3818 := &x.InvolvedObject + yy3818.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3802[3] { + if yyq3807[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3814 := &x.InvolvedObject - yy3814.CodecEncodeSelf(e) + yy3819 := &x.InvolvedObject + yy3819.CodecEncodeSelf(e) } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[4] { - yym3816 := z.EncBinary() - _ = yym3816 + if yyq3807[4] { + yym3821 := z.EncBinary() + _ = yym3821 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -47846,23 +47887,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3802[4] { + if yyq3807[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3817 := z.EncBinary() - _ = yym3817 + yym3822 := z.EncBinary() + _ = yym3822 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[5] { - yym3819 := z.EncBinary() - _ = yym3819 + if yyq3807[5] { + yym3824 := z.EncBinary() + _ = yym3824 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -47871,114 +47912,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3802[5] { + if yyq3807[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3820 := z.EncBinary() - _ = yym3820 + yym3825 := z.EncBinary() + _ = yym3825 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[6] { - yy3822 := &x.Source - yy3822.CodecEncodeSelf(e) + if yyq3807[6] { + yy3827 := &x.Source + yy3827.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3802[6] { + if yyq3807[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3823 := &x.Source - yy3823.CodecEncodeSelf(e) + yy3828 := &x.Source + yy3828.CodecEncodeSelf(e) } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[7] { - yy3825 := &x.FirstTimestamp - yym3826 := z.EncBinary() - _ = yym3826 + if yyq3807[7] { + yy3830 := &x.FirstTimestamp + yym3831 := z.EncBinary() + _ = yym3831 if false { - } else if z.HasExtensions() && z.EncExt(yy3825) { - } else if yym3826 { - z.EncBinaryMarshal(yy3825) - } else if !yym3826 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3825) + } else if z.HasExtensions() && z.EncExt(yy3830) { + } else if yym3831 { + z.EncBinaryMarshal(yy3830) + } else if !yym3831 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3830) } else { - z.EncFallback(yy3825) + z.EncFallback(yy3830) } } else { r.EncodeNil() } } else { - if yyq3802[7] { + if yyq3807[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3827 := &x.FirstTimestamp - yym3828 := z.EncBinary() - _ = yym3828 + yy3832 := &x.FirstTimestamp + yym3833 := z.EncBinary() + _ = yym3833 if false { - } else if z.HasExtensions() && z.EncExt(yy3827) { - } else if yym3828 { - z.EncBinaryMarshal(yy3827) - } else if !yym3828 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3827) + } else if z.HasExtensions() && z.EncExt(yy3832) { + } else if yym3833 { + z.EncBinaryMarshal(yy3832) + } else if !yym3833 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3832) } else { - z.EncFallback(yy3827) + z.EncFallback(yy3832) } } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[8] { - yy3830 := &x.LastTimestamp - yym3831 := z.EncBinary() - _ = yym3831 + if yyq3807[8] { + yy3835 := &x.LastTimestamp + yym3836 := z.EncBinary() + _ = yym3836 if false { - } else if z.HasExtensions() && z.EncExt(yy3830) { - } else if yym3831 { - z.EncBinaryMarshal(yy3830) - } else if !yym3831 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3830) + } else if z.HasExtensions() && z.EncExt(yy3835) { + } else if yym3836 { + z.EncBinaryMarshal(yy3835) + } else if !yym3836 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3835) } else { - z.EncFallback(yy3830) + z.EncFallback(yy3835) } } else { r.EncodeNil() } } else { - if yyq3802[8] { + if yyq3807[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3832 := &x.LastTimestamp - yym3833 := z.EncBinary() - _ = yym3833 + yy3837 := &x.LastTimestamp + yym3838 := z.EncBinary() + _ = yym3838 if false { - } else if z.HasExtensions() && z.EncExt(yy3832) { - } else if yym3833 { - z.EncBinaryMarshal(yy3832) - } else if !yym3833 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3832) + } else if z.HasExtensions() && z.EncExt(yy3837) { + } else if yym3838 { + z.EncBinaryMarshal(yy3837) + } else if !yym3838 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3837) } else { - z.EncFallback(yy3832) + z.EncFallback(yy3837) } } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[9] { - yym3835 := z.EncBinary() - _ = yym3835 + if yyq3807[9] { + yym3840 := z.EncBinary() + _ = yym3840 if false { } else { r.EncodeInt(int64(x.Count)) @@ -47987,23 +48028,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3802[9] { + if yyq3807[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3836 := z.EncBinary() - _ = yym3836 + yym3841 := z.EncBinary() + _ = yym3841 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3802[10] { - yym3838 := z.EncBinary() - _ = yym3838 + if yyq3807[10] { + yym3843 := z.EncBinary() + _ = yym3843 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -48012,19 +48053,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3802[10] { + if yyq3807[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3839 := z.EncBinary() - _ = yym3839 + yym3844 := z.EncBinary() + _ = yym3844 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3802 || yy2arr3802 { + if yyr3807 || yy2arr3807 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48037,25 +48078,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3840 := z.DecBinary() - _ = yym3840 + yym3845 := z.DecBinary() + _ = yym3845 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3841 := r.ContainerType() - if yyct3841 == codecSelferValueTypeMap1234 { - yyl3841 := r.ReadMapStart() - if yyl3841 == 0 { + yyct3846 := r.ContainerType() + if yyct3846 == codecSelferValueTypeMap1234 { + yyl3846 := r.ReadMapStart() + if yyl3846 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3841, d) + x.codecDecodeSelfFromMap(yyl3846, d) } - } else if yyct3841 == codecSelferValueTypeArray1234 { - yyl3841 := r.ReadArrayStart() - if yyl3841 == 0 { + } else if yyct3846 == codecSelferValueTypeArray1234 { + yyl3846 := r.ReadArrayStart() + if yyl3846 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3841, d) + x.codecDecodeSelfFromArray(yyl3846, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48067,12 +48108,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3842Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3842Slc - var yyhl3842 bool = l >= 0 - for yyj3842 := 0; ; yyj3842++ { - if yyhl3842 { - if yyj3842 >= l { + var yys3847Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3847Slc + var yyhl3847 bool = l >= 0 + for yyj3847 := 0; ; yyj3847++ { + if yyhl3847 { + if yyj3847 >= l { break } } else { @@ -48081,10 +48122,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3842Slc = r.DecodeBytes(yys3842Slc, true, true) - yys3842 := string(yys3842Slc) + yys3847Slc = r.DecodeBytes(yys3847Slc, true, true) + yys3847 := string(yys3847Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3842 { + switch yys3847 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48101,15 +48142,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3845 := &x.ObjectMeta - yyv3845.CodecDecodeSelf(d) + yyv3850 := &x.ObjectMeta + yyv3850.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3846 := &x.InvolvedObject - yyv3846.CodecDecodeSelf(d) + yyv3851 := &x.InvolvedObject + yyv3851.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -48127,41 +48168,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3849 := &x.Source - yyv3849.CodecDecodeSelf(d) + yyv3854 := &x.Source + yyv3854.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3850 := &x.FirstTimestamp - yym3851 := z.DecBinary() - _ = yym3851 + yyv3855 := &x.FirstTimestamp + yym3856 := z.DecBinary() + _ = yym3856 if false { - } else if z.HasExtensions() && z.DecExt(yyv3850) { - } else if yym3851 { - z.DecBinaryUnmarshal(yyv3850) - } else if !yym3851 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3850) + } else if z.HasExtensions() && z.DecExt(yyv3855) { + } else if yym3856 { + z.DecBinaryUnmarshal(yyv3855) + } else if !yym3856 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3855) } else { - z.DecFallback(yyv3850, false) + z.DecFallback(yyv3855, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3852 := &x.LastTimestamp - yym3853 := z.DecBinary() - _ = yym3853 + yyv3857 := &x.LastTimestamp + yym3858 := z.DecBinary() + _ = yym3858 if false { - } else if z.HasExtensions() && z.DecExt(yyv3852) { - } else if yym3853 { - z.DecBinaryUnmarshal(yyv3852) - } else if !yym3853 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3852) + } else if z.HasExtensions() && z.DecExt(yyv3857) { + } else if yym3858 { + z.DecBinaryUnmarshal(yyv3857) + } else if !yym3858 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3857) } else { - z.DecFallback(yyv3852, false) + z.DecFallback(yyv3857, false) } } case "count": @@ -48177,9 +48218,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3842) - } // end switch yys3842 - } // end for yyj3842 + z.DecStructFieldNotFound(-1, yys3847) + } // end switch yys3847 + } // end for yyj3847 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48187,16 +48228,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3856 int - var yyb3856 bool - var yyhl3856 bool = l >= 0 - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + var yyj3861 int + var yyb3861 bool + var yyhl3861 bool = l >= 0 + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48206,13 +48247,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48222,13 +48263,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48236,16 +48277,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3859 := &x.ObjectMeta - yyv3859.CodecDecodeSelf(d) + yyv3864 := &x.ObjectMeta + yyv3864.CodecDecodeSelf(d) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48253,16 +48294,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3860 := &x.InvolvedObject - yyv3860.CodecDecodeSelf(d) + yyv3865 := &x.InvolvedObject + yyv3865.CodecDecodeSelf(d) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48272,13 +48313,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48288,13 +48329,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48302,16 +48343,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3863 := &x.Source - yyv3863.CodecDecodeSelf(d) + yyv3868 := &x.Source + yyv3868.CodecDecodeSelf(d) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48319,26 +48360,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3864 := &x.FirstTimestamp - yym3865 := z.DecBinary() - _ = yym3865 + yyv3869 := &x.FirstTimestamp + yym3870 := z.DecBinary() + _ = yym3870 if false { - } else if z.HasExtensions() && z.DecExt(yyv3864) { - } else if yym3865 { - z.DecBinaryUnmarshal(yyv3864) - } else if !yym3865 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3864) + } else if z.HasExtensions() && z.DecExt(yyv3869) { + } else if yym3870 { + z.DecBinaryUnmarshal(yyv3869) + } else if !yym3870 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3869) } else { - z.DecFallback(yyv3864, false) + z.DecFallback(yyv3869, false) } } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48346,26 +48387,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3866 := &x.LastTimestamp - yym3867 := z.DecBinary() - _ = yym3867 + yyv3871 := &x.LastTimestamp + yym3872 := z.DecBinary() + _ = yym3872 if false { - } else if z.HasExtensions() && z.DecExt(yyv3866) { - } else if yym3867 { - z.DecBinaryUnmarshal(yyv3866) - } else if !yym3867 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3866) + } else if z.HasExtensions() && z.DecExt(yyv3871) { + } else if yym3872 { + z.DecBinaryUnmarshal(yyv3871) + } else if !yym3872 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3871) } else { - z.DecFallback(yyv3866, false) + z.DecFallback(yyv3871, false) } } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48375,13 +48416,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48392,17 +48433,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3856-1, "") + z.DecStructFieldNotFound(yyj3861-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48414,37 +48455,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3870 := z.EncBinary() - _ = yym3870 + yym3875 := z.EncBinary() + _ = yym3875 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3871 := !z.EncBinary() - yy2arr3871 := z.EncBasicHandle().StructToArray - var yyq3871 [4]bool - _, _, _ = yysep3871, yyq3871, yy2arr3871 - const yyr3871 bool = false - yyq3871[0] = x.Kind != "" - yyq3871[1] = x.APIVersion != "" - yyq3871[2] = true - var yynn3871 int - if yyr3871 || yy2arr3871 { + yysep3876 := !z.EncBinary() + yy2arr3876 := z.EncBasicHandle().StructToArray + var yyq3876 [4]bool + _, _, _ = yysep3876, yyq3876, yy2arr3876 + const yyr3876 bool = false + yyq3876[0] = x.Kind != "" + yyq3876[1] = x.APIVersion != "" + yyq3876[2] = true + var yynn3876 int + if yyr3876 || yy2arr3876 { r.EncodeArrayStart(4) } else { - yynn3871 = 1 - for _, b := range yyq3871 { + yynn3876 = 1 + for _, b := range yyq3876 { if b { - yynn3871++ + yynn3876++ } } - r.EncodeMapStart(yynn3871) - yynn3871 = 0 + r.EncodeMapStart(yynn3876) + yynn3876 = 0 } - if yyr3871 || yy2arr3871 { + if yyr3876 || yy2arr3876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3871[0] { - yym3873 := z.EncBinary() - _ = yym3873 + if yyq3876[0] { + yym3878 := z.EncBinary() + _ = yym3878 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48453,23 +48494,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3871[0] { + if yyq3876[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3874 := z.EncBinary() - _ = yym3874 + yym3879 := z.EncBinary() + _ = yym3879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3871 || yy2arr3871 { + if yyr3876 || yy2arr3876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3871[1] { - yym3876 := z.EncBinary() - _ = yym3876 + if yyq3876[1] { + yym3881 := z.EncBinary() + _ = yym3881 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48478,54 +48519,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3871[1] { + if yyq3876[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3877 := z.EncBinary() - _ = yym3877 + yym3882 := z.EncBinary() + _ = yym3882 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3871 || yy2arr3871 { + if yyr3876 || yy2arr3876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3871[2] { - yy3879 := &x.ListMeta - yym3880 := z.EncBinary() - _ = yym3880 + if yyq3876[2] { + yy3884 := &x.ListMeta + yym3885 := z.EncBinary() + _ = yym3885 if false { - } else if z.HasExtensions() && z.EncExt(yy3879) { + } else if z.HasExtensions() && z.EncExt(yy3884) { } else { - z.EncFallback(yy3879) + z.EncFallback(yy3884) } } else { r.EncodeNil() } } else { - if yyq3871[2] { + if yyq3876[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3881 := &x.ListMeta - yym3882 := z.EncBinary() - _ = yym3882 + yy3886 := &x.ListMeta + yym3887 := z.EncBinary() + _ = yym3887 if false { - } else if z.HasExtensions() && z.EncExt(yy3881) { + } else if z.HasExtensions() && z.EncExt(yy3886) { } else { - z.EncFallback(yy3881) + z.EncFallback(yy3886) } } } - if yyr3871 || yy2arr3871 { + if yyr3876 || yy2arr3876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3884 := z.EncBinary() - _ = yym3884 + yym3889 := z.EncBinary() + _ = yym3889 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -48538,15 +48579,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3885 := z.EncBinary() - _ = yym3885 + yym3890 := z.EncBinary() + _ = yym3890 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3871 || yy2arr3871 { + if yyr3876 || yy2arr3876 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48559,25 +48600,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3886 := z.DecBinary() - _ = yym3886 + yym3891 := z.DecBinary() + _ = yym3891 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3887 := r.ContainerType() - if yyct3887 == codecSelferValueTypeMap1234 { - yyl3887 := r.ReadMapStart() - if yyl3887 == 0 { + yyct3892 := r.ContainerType() + if yyct3892 == codecSelferValueTypeMap1234 { + yyl3892 := r.ReadMapStart() + if yyl3892 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3887, d) + x.codecDecodeSelfFromMap(yyl3892, d) } - } else if yyct3887 == codecSelferValueTypeArray1234 { - yyl3887 := r.ReadArrayStart() - if yyl3887 == 0 { + } else if yyct3892 == codecSelferValueTypeArray1234 { + yyl3892 := r.ReadArrayStart() + if yyl3892 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3887, d) + x.codecDecodeSelfFromArray(yyl3892, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48589,12 +48630,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3888Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3888Slc - var yyhl3888 bool = l >= 0 - for yyj3888 := 0; ; yyj3888++ { - if yyhl3888 { - if yyj3888 >= l { + var yys3893Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3893Slc + var yyhl3893 bool = l >= 0 + for yyj3893 := 0; ; yyj3893++ { + if yyhl3893 { + if yyj3893 >= l { break } } else { @@ -48603,10 +48644,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3888Slc = r.DecodeBytes(yys3888Slc, true, true) - yys3888 := string(yys3888Slc) + yys3893Slc = r.DecodeBytes(yys3893Slc, true, true) + yys3893 := string(yys3893Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3888 { + switch yys3893 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48623,31 +48664,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3891 := &x.ListMeta - yym3892 := z.DecBinary() - _ = yym3892 + yyv3896 := &x.ListMeta + yym3897 := z.DecBinary() + _ = yym3897 if false { - } else if z.HasExtensions() && z.DecExt(yyv3891) { + } else if z.HasExtensions() && z.DecExt(yyv3896) { } else { - z.DecFallback(yyv3891, false) + z.DecFallback(yyv3896, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3893 := &x.Items - yym3894 := z.DecBinary() - _ = yym3894 + yyv3898 := &x.Items + yym3899 := z.DecBinary() + _ = yym3899 if false { } else { - h.decSliceEvent((*[]Event)(yyv3893), d) + h.decSliceEvent((*[]Event)(yyv3898), d) } } default: - z.DecStructFieldNotFound(-1, yys3888) - } // end switch yys3888 - } // end for yyj3888 + z.DecStructFieldNotFound(-1, yys3893) + } // end switch yys3893 + } // end for yyj3893 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48655,16 +48696,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3895 int - var yyb3895 bool - var yyhl3895 bool = l >= 0 - yyj3895++ - if yyhl3895 { - yyb3895 = yyj3895 > l + var yyj3900 int + var yyb3900 bool + var yyhl3900 bool = l >= 0 + yyj3900++ + if yyhl3900 { + yyb3900 = yyj3900 > l } else { - yyb3895 = r.CheckBreak() + yyb3900 = r.CheckBreak() } - if yyb3895 { + if yyb3900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48674,13 +48715,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3895++ - if yyhl3895 { - yyb3895 = yyj3895 > l + yyj3900++ + if yyhl3900 { + yyb3900 = yyj3900 > l } else { - yyb3895 = r.CheckBreak() + yyb3900 = r.CheckBreak() } - if yyb3895 { + if yyb3900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48690,13 +48731,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3895++ - if yyhl3895 { - yyb3895 = yyj3895 > l + yyj3900++ + if yyhl3900 { + yyb3900 = yyj3900 > l } else { - yyb3895 = r.CheckBreak() + yyb3900 = r.CheckBreak() } - if yyb3895 { + if yyb3900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48704,22 +48745,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3898 := &x.ListMeta - yym3899 := z.DecBinary() - _ = yym3899 + yyv3903 := &x.ListMeta + yym3904 := z.DecBinary() + _ = yym3904 if false { - } else if z.HasExtensions() && z.DecExt(yyv3898) { + } else if z.HasExtensions() && z.DecExt(yyv3903) { } else { - z.DecFallback(yyv3898, false) + z.DecFallback(yyv3903, false) } } - yyj3895++ - if yyhl3895 { - yyb3895 = yyj3895 > l + yyj3900++ + if yyhl3900 { + yyb3900 = yyj3900 > l } else { - yyb3895 = r.CheckBreak() + yyb3900 = r.CheckBreak() } - if yyb3895 { + if yyb3900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48727,26 +48768,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3900 := &x.Items - yym3901 := z.DecBinary() - _ = yym3901 + yyv3905 := &x.Items + yym3906 := z.DecBinary() + _ = yym3906 if false { } else { - h.decSliceEvent((*[]Event)(yyv3900), d) + h.decSliceEvent((*[]Event)(yyv3905), d) } } for { - yyj3895++ - if yyhl3895 { - yyb3895 = yyj3895 > l + yyj3900++ + if yyhl3900 { + yyb3900 = yyj3900 > l } else { - yyb3895 = r.CheckBreak() + yyb3900 = r.CheckBreak() } - if yyb3895 { + if yyb3900 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3895-1, "") + z.DecStructFieldNotFound(yyj3900-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48758,37 +48799,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3902 := z.EncBinary() - _ = yym3902 + yym3907 := z.EncBinary() + _ = yym3907 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3903 := !z.EncBinary() - yy2arr3903 := z.EncBasicHandle().StructToArray - var yyq3903 [4]bool - _, _, _ = yysep3903, yyq3903, yy2arr3903 - const yyr3903 bool = false - yyq3903[0] = x.Kind != "" - yyq3903[1] = x.APIVersion != "" - yyq3903[2] = true - var yynn3903 int - if yyr3903 || yy2arr3903 { + yysep3908 := !z.EncBinary() + yy2arr3908 := z.EncBasicHandle().StructToArray + var yyq3908 [4]bool + _, _, _ = yysep3908, yyq3908, yy2arr3908 + const yyr3908 bool = false + yyq3908[0] = x.Kind != "" + yyq3908[1] = x.APIVersion != "" + yyq3908[2] = true + var yynn3908 int + if yyr3908 || yy2arr3908 { r.EncodeArrayStart(4) } else { - yynn3903 = 1 - for _, b := range yyq3903 { + yynn3908 = 1 + for _, b := range yyq3908 { if b { - yynn3903++ + yynn3908++ } } - r.EncodeMapStart(yynn3903) - yynn3903 = 0 + r.EncodeMapStart(yynn3908) + yynn3908 = 0 } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3903[0] { - yym3905 := z.EncBinary() - _ = yym3905 + if yyq3908[0] { + yym3910 := z.EncBinary() + _ = yym3910 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48797,23 +48838,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3903[0] { + if yyq3908[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3906 := z.EncBinary() - _ = yym3906 + yym3911 := z.EncBinary() + _ = yym3911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3903[1] { - yym3908 := z.EncBinary() - _ = yym3908 + if yyq3908[1] { + yym3913 := z.EncBinary() + _ = yym3913 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48822,54 +48863,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3903[1] { + if yyq3908[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3909 := z.EncBinary() - _ = yym3909 + yym3914 := z.EncBinary() + _ = yym3914 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3903[2] { - yy3911 := &x.ListMeta - yym3912 := z.EncBinary() - _ = yym3912 + if yyq3908[2] { + yy3916 := &x.ListMeta + yym3917 := z.EncBinary() + _ = yym3917 if false { - } else if z.HasExtensions() && z.EncExt(yy3911) { + } else if z.HasExtensions() && z.EncExt(yy3916) { } else { - z.EncFallback(yy3911) + z.EncFallback(yy3916) } } else { r.EncodeNil() } } else { - if yyq3903[2] { + if yyq3908[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3913 := &x.ListMeta - yym3914 := z.EncBinary() - _ = yym3914 + yy3918 := &x.ListMeta + yym3919 := z.EncBinary() + _ = yym3919 if false { - } else if z.HasExtensions() && z.EncExt(yy3913) { + } else if z.HasExtensions() && z.EncExt(yy3918) { } else { - z.EncFallback(yy3913) + z.EncFallback(yy3918) } } } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3916 := z.EncBinary() - _ = yym3916 + yym3921 := z.EncBinary() + _ = yym3921 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) @@ -48882,15 +48923,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3917 := z.EncBinary() - _ = yym3917 + yym3922 := z.EncBinary() + _ = yym3922 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) } } } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48903,25 +48944,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3918 := z.DecBinary() - _ = yym3918 + yym3923 := z.DecBinary() + _ = yym3923 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3919 := r.ContainerType() - if yyct3919 == codecSelferValueTypeMap1234 { - yyl3919 := r.ReadMapStart() - if yyl3919 == 0 { + yyct3924 := r.ContainerType() + if yyct3924 == codecSelferValueTypeMap1234 { + yyl3924 := r.ReadMapStart() + if yyl3924 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3919, d) + x.codecDecodeSelfFromMap(yyl3924, d) } - } else if yyct3919 == codecSelferValueTypeArray1234 { - yyl3919 := r.ReadArrayStart() - if yyl3919 == 0 { + } else if yyct3924 == codecSelferValueTypeArray1234 { + yyl3924 := r.ReadArrayStart() + if yyl3924 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3919, d) + x.codecDecodeSelfFromArray(yyl3924, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48933,12 +48974,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3920Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3920Slc - var yyhl3920 bool = l >= 0 - for yyj3920 := 0; ; yyj3920++ { - if yyhl3920 { - if yyj3920 >= l { + var yys3925Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3925Slc + var yyhl3925 bool = l >= 0 + for yyj3925 := 0; ; yyj3925++ { + if yyhl3925 { + if yyj3925 >= l { break } } else { @@ -48947,10 +48988,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3920Slc = r.DecodeBytes(yys3920Slc, true, true) - yys3920 := string(yys3920Slc) + yys3925Slc = r.DecodeBytes(yys3925Slc, true, true) + yys3925 := string(yys3925Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3920 { + switch yys3925 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48967,31 +49008,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3923 := &x.ListMeta - yym3924 := z.DecBinary() - _ = yym3924 + yyv3928 := &x.ListMeta + yym3929 := z.DecBinary() + _ = yym3929 if false { - } else if z.HasExtensions() && z.DecExt(yyv3923) { + } else if z.HasExtensions() && z.DecExt(yyv3928) { } else { - z.DecFallback(yyv3923, false) + z.DecFallback(yyv3928, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3925 := &x.Items - yym3926 := z.DecBinary() - _ = yym3926 + yyv3930 := &x.Items + yym3931 := z.DecBinary() + _ = yym3931 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3925), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3930), d) } } default: - z.DecStructFieldNotFound(-1, yys3920) - } // end switch yys3920 - } // end for yyj3920 + z.DecStructFieldNotFound(-1, yys3925) + } // end switch yys3925 + } // end for yyj3925 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48999,16 +49040,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3927 int - var yyb3927 bool - var yyhl3927 bool = l >= 0 - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + var yyj3932 int + var yyb3932 bool + var yyhl3932 bool = l >= 0 + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49018,13 +49059,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49034,13 +49075,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49048,22 +49089,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3930 := &x.ListMeta - yym3931 := z.DecBinary() - _ = yym3931 + yyv3935 := &x.ListMeta + yym3936 := z.DecBinary() + _ = yym3936 if false { - } else if z.HasExtensions() && z.DecExt(yyv3930) { + } else if z.HasExtensions() && z.DecExt(yyv3935) { } else { - z.DecFallback(yyv3930, false) + z.DecFallback(yyv3935, false) } } - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49071,26 +49112,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3932 := &x.Items - yym3933 := z.DecBinary() - _ = yym3933 + yyv3937 := &x.Items + yym3938 := z.DecBinary() + _ = yym3938 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3932), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3937), d) } } for { - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3927-1, "") + z.DecStructFieldNotFound(yyj3932-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49099,8 +49140,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3934 := z.EncBinary() - _ = yym3934 + yym3939 := z.EncBinary() + _ = yym3939 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49112,8 +49153,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3935 := z.DecBinary() - _ = yym3935 + yym3940 := z.DecBinary() + _ = yym3940 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49128,53 +49169,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3936 := z.EncBinary() - _ = yym3936 + yym3941 := z.EncBinary() + _ = yym3941 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3937 := !z.EncBinary() - yy2arr3937 := z.EncBasicHandle().StructToArray - var yyq3937 [6]bool - _, _, _ = yysep3937, yyq3937, yy2arr3937 - const yyr3937 bool = false - yyq3937[0] = x.Type != "" - yyq3937[1] = len(x.Max) != 0 - yyq3937[2] = len(x.Min) != 0 - yyq3937[3] = len(x.Default) != 0 - yyq3937[4] = len(x.DefaultRequest) != 0 - yyq3937[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3937 int - if yyr3937 || yy2arr3937 { + yysep3942 := !z.EncBinary() + yy2arr3942 := z.EncBasicHandle().StructToArray + var yyq3942 [6]bool + _, _, _ = yysep3942, yyq3942, yy2arr3942 + const yyr3942 bool = false + yyq3942[0] = x.Type != "" + yyq3942[1] = len(x.Max) != 0 + yyq3942[2] = len(x.Min) != 0 + yyq3942[3] = len(x.Default) != 0 + yyq3942[4] = len(x.DefaultRequest) != 0 + yyq3942[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3942 int + if yyr3942 || yy2arr3942 { r.EncodeArrayStart(6) } else { - yynn3937 = 0 - for _, b := range yyq3937 { + yynn3942 = 0 + for _, b := range yyq3942 { if b { - yynn3937++ + yynn3942++ } } - r.EncodeMapStart(yynn3937) - yynn3937 = 0 + r.EncodeMapStart(yynn3942) + yynn3942 = 0 } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3937[0] { + if yyq3942[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3937[0] { + if yyq3942[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3937[1] { + if yyq3942[1] { if x.Max == nil { r.EncodeNil() } else { @@ -49184,7 +49225,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3937[1] { + if yyq3942[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49195,9 +49236,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3937[2] { + if yyq3942[2] { if x.Min == nil { r.EncodeNil() } else { @@ -49207,7 +49248,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3937[2] { + if yyq3942[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49218,9 +49259,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3937[3] { + if yyq3942[3] { if x.Default == nil { r.EncodeNil() } else { @@ -49230,7 +49271,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3937[3] { + if yyq3942[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49241,9 +49282,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3937[4] { + if yyq3942[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -49253,7 +49294,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3937[4] { + if yyq3942[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49264,9 +49305,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3937[5] { + if yyq3942[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -49276,7 +49317,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3937[5] { + if yyq3942[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49287,7 +49328,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49300,25 +49341,25 @@ func (x *LimitRangeItem) 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 { - yyct3945 := r.ContainerType() - if yyct3945 == codecSelferValueTypeMap1234 { - yyl3945 := r.ReadMapStart() - if yyl3945 == 0 { + yyct3950 := r.ContainerType() + if yyct3950 == codecSelferValueTypeMap1234 { + yyl3950 := r.ReadMapStart() + if yyl3950 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3945, d) + x.codecDecodeSelfFromMap(yyl3950, d) } - } else if yyct3945 == codecSelferValueTypeArray1234 { - yyl3945 := r.ReadArrayStart() - if yyl3945 == 0 { + } else if yyct3950 == codecSelferValueTypeArray1234 { + yyl3950 := r.ReadArrayStart() + if yyl3950 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3945, d) + x.codecDecodeSelfFromArray(yyl3950, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49330,12 +49371,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3946Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3946Slc - var yyhl3946 bool = l >= 0 - for yyj3946 := 0; ; yyj3946++ { - if yyhl3946 { - if yyj3946 >= l { + var yys3951Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3951Slc + var yyhl3951 bool = l >= 0 + for yyj3951 := 0; ; yyj3951++ { + if yyhl3951 { + if yyj3951 >= l { break } } else { @@ -49344,10 +49385,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3946Slc = r.DecodeBytes(yys3946Slc, true, true) - yys3946 := string(yys3946Slc) + yys3951Slc = r.DecodeBytes(yys3951Slc, true, true) + yys3951 := string(yys3951Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3946 { + switch yys3951 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -49358,41 +49399,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3948 := &x.Max - yyv3948.CodecDecodeSelf(d) + yyv3953 := &x.Max + yyv3953.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3949 := &x.Min - yyv3949.CodecDecodeSelf(d) + yyv3954 := &x.Min + yyv3954.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3950 := &x.Default - yyv3950.CodecDecodeSelf(d) + yyv3955 := &x.Default + yyv3955.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3951 := &x.DefaultRequest - yyv3951.CodecDecodeSelf(d) + yyv3956 := &x.DefaultRequest + yyv3956.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3952 := &x.MaxLimitRequestRatio - yyv3952.CodecDecodeSelf(d) + yyv3957 := &x.MaxLimitRequestRatio + yyv3957.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3946) - } // end switch yys3946 - } // end for yyj3946 + z.DecStructFieldNotFound(-1, yys3951) + } // end switch yys3951 + } // end for yyj3951 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49400,16 +49441,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3953 int - var yyb3953 bool - var yyhl3953 bool = l >= 0 - yyj3953++ - if yyhl3953 { - yyb3953 = yyj3953 > l + var yyj3958 int + var yyb3958 bool + var yyhl3958 bool = l >= 0 + yyj3958++ + if yyhl3958 { + yyb3958 = yyj3958 > l } else { - yyb3953 = r.CheckBreak() + yyb3958 = r.CheckBreak() } - if yyb3953 { + if yyb3958 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49419,13 +49460,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3953++ - if yyhl3953 { - yyb3953 = yyj3953 > l + yyj3958++ + if yyhl3958 { + yyb3958 = yyj3958 > l } else { - yyb3953 = r.CheckBreak() + yyb3958 = r.CheckBreak() } - if yyb3953 { + if yyb3958 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49433,16 +49474,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3955 := &x.Max - yyv3955.CodecDecodeSelf(d) + yyv3960 := &x.Max + yyv3960.CodecDecodeSelf(d) } - yyj3953++ - if yyhl3953 { - yyb3953 = yyj3953 > l + yyj3958++ + if yyhl3958 { + yyb3958 = yyj3958 > l } else { - yyb3953 = r.CheckBreak() + yyb3958 = r.CheckBreak() } - if yyb3953 { + if yyb3958 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49450,16 +49491,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3956 := &x.Min - yyv3956.CodecDecodeSelf(d) + yyv3961 := &x.Min + yyv3961.CodecDecodeSelf(d) } - yyj3953++ - if yyhl3953 { - yyb3953 = yyj3953 > l + yyj3958++ + if yyhl3958 { + yyb3958 = yyj3958 > l } else { - yyb3953 = r.CheckBreak() + yyb3958 = r.CheckBreak() } - if yyb3953 { + if yyb3958 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49467,16 +49508,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3957 := &x.Default - yyv3957.CodecDecodeSelf(d) + yyv3962 := &x.Default + yyv3962.CodecDecodeSelf(d) } - yyj3953++ - if yyhl3953 { - yyb3953 = yyj3953 > l + yyj3958++ + if yyhl3958 { + yyb3958 = yyj3958 > l } else { - yyb3953 = r.CheckBreak() + yyb3958 = r.CheckBreak() } - if yyb3953 { + if yyb3958 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49484,16 +49525,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3958 := &x.DefaultRequest - yyv3958.CodecDecodeSelf(d) + yyv3963 := &x.DefaultRequest + yyv3963.CodecDecodeSelf(d) } - yyj3953++ - if yyhl3953 { - yyb3953 = yyj3953 > l + yyj3958++ + if yyhl3958 { + yyb3958 = yyj3958 > l } else { - yyb3953 = r.CheckBreak() + yyb3958 = r.CheckBreak() } - if yyb3953 { + if yyb3958 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49501,21 +49542,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3959 := &x.MaxLimitRequestRatio - yyv3959.CodecDecodeSelf(d) + yyv3964 := &x.MaxLimitRequestRatio + yyv3964.CodecDecodeSelf(d) } for { - yyj3953++ - if yyhl3953 { - yyb3953 = yyj3953 > l + yyj3958++ + if yyhl3958 { + yyb3958 = yyj3958 > l } else { - yyb3953 = r.CheckBreak() + yyb3958 = r.CheckBreak() } - if yyb3953 { + if yyb3958 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3953-1, "") + z.DecStructFieldNotFound(yyj3958-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49527,36 +49568,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3960 := z.EncBinary() - _ = yym3960 + yym3965 := z.EncBinary() + _ = yym3965 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3961 := !z.EncBinary() - yy2arr3961 := z.EncBasicHandle().StructToArray - var yyq3961 [1]bool - _, _, _ = yysep3961, yyq3961, yy2arr3961 - const yyr3961 bool = false - var yynn3961 int - if yyr3961 || yy2arr3961 { + yysep3966 := !z.EncBinary() + yy2arr3966 := z.EncBasicHandle().StructToArray + var yyq3966 [1]bool + _, _, _ = yysep3966, yyq3966, yy2arr3966 + const yyr3966 bool = false + var yynn3966 int + if yyr3966 || yy2arr3966 { r.EncodeArrayStart(1) } else { - yynn3961 = 1 - for _, b := range yyq3961 { + yynn3966 = 1 + for _, b := range yyq3966 { if b { - yynn3961++ + yynn3966++ } } - r.EncodeMapStart(yynn3961) - yynn3961 = 0 + r.EncodeMapStart(yynn3966) + yynn3966 = 0 } - if yyr3961 || yy2arr3961 { + if yyr3966 || yy2arr3966 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3963 := z.EncBinary() - _ = yym3963 + yym3968 := z.EncBinary() + _ = yym3968 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -49569,15 +49610,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3964 := z.EncBinary() - _ = yym3964 + yym3969 := z.EncBinary() + _ = yym3969 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3961 || yy2arr3961 { + if yyr3966 || yy2arr3966 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49590,25 +49631,25 @@ func (x *LimitRangeSpec) 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) @@ -49620,12 +49661,12 @@ func (x *LimitRangeSpec) 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 { @@ -49634,26 +49675,26 @@ func (x *LimitRangeSpec) 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 "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3968 := &x.Limits - yym3969 := z.DecBinary() - _ = yym3969 + yyv3973 := &x.Limits + yym3974 := z.DecBinary() + _ = yym3974 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3968), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3973), 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) } @@ -49661,16 +49702,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { 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 } @@ -49678,26 +49719,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3971 := &x.Limits - yym3972 := z.DecBinary() - _ = yym3972 + yyv3976 := &x.Limits + yym3977 := z.DecBinary() + _ = yym3977 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3971), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3976), 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) } @@ -49709,38 +49750,38 @@ func (x *LimitRange) 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 [4]bool - _, _, _ = yysep3974, yyq3974, yy2arr3974 - const yyr3974 bool = false - yyq3974[0] = x.Kind != "" - yyq3974[1] = x.APIVersion != "" - yyq3974[2] = true - yyq3974[3] = true - var yynn3974 int - if yyr3974 || yy2arr3974 { + yysep3979 := !z.EncBinary() + yy2arr3979 := z.EncBasicHandle().StructToArray + var yyq3979 [4]bool + _, _, _ = yysep3979, yyq3979, yy2arr3979 + const yyr3979 bool = false + yyq3979[0] = x.Kind != "" + yyq3979[1] = x.APIVersion != "" + yyq3979[2] = true + yyq3979[3] = true + var yynn3979 int + if yyr3979 || yy2arr3979 { r.EncodeArrayStart(4) } 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)) @@ -49749,23 +49790,23 @@ func (x *LimitRange) 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)) @@ -49774,53 +49815,53 @@ func (x *LimitRange) 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_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49833,25 +49874,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3987 := z.DecBinary() - _ = yym3987 + yym3992 := z.DecBinary() + _ = yym3992 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3988 := r.ContainerType() - if yyct3988 == codecSelferValueTypeMap1234 { - yyl3988 := r.ReadMapStart() - if yyl3988 == 0 { + yyct3993 := r.ContainerType() + if yyct3993 == codecSelferValueTypeMap1234 { + yyl3993 := r.ReadMapStart() + if yyl3993 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3988, d) + x.codecDecodeSelfFromMap(yyl3993, d) } - } else if yyct3988 == codecSelferValueTypeArray1234 { - yyl3988 := r.ReadArrayStart() - if yyl3988 == 0 { + } else if yyct3993 == codecSelferValueTypeArray1234 { + yyl3993 := r.ReadArrayStart() + if yyl3993 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3988, d) + x.codecDecodeSelfFromArray(yyl3993, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49863,12 +49904,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3989Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3989Slc - var yyhl3989 bool = l >= 0 - for yyj3989 := 0; ; yyj3989++ { - if yyhl3989 { - if yyj3989 >= l { + var yys3994Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3994Slc + var yyhl3994 bool = l >= 0 + for yyj3994 := 0; ; yyj3994++ { + if yyhl3994 { + if yyj3994 >= l { break } } else { @@ -49877,10 +49918,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3989Slc = r.DecodeBytes(yys3989Slc, true, true) - yys3989 := string(yys3989Slc) + yys3994Slc = r.DecodeBytes(yys3994Slc, true, true) + yys3994 := string(yys3994Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3989 { + switch yys3994 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49897,20 +49938,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3992 := &x.ObjectMeta - yyv3992.CodecDecodeSelf(d) + yyv3997 := &x.ObjectMeta + yyv3997.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3993 := &x.Spec - yyv3993.CodecDecodeSelf(d) + yyv3998 := &x.Spec + yyv3998.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3989) - } // end switch yys3989 - } // end for yyj3989 + z.DecStructFieldNotFound(-1, yys3994) + } // end switch yys3994 + } // end for yyj3994 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49918,16 +49959,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3994 int - var yyb3994 bool - var yyhl3994 bool = l >= 0 - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + var yyj3999 int + var yyb3999 bool + var yyhl3999 bool = l >= 0 + yyj3999++ + if yyhl3999 { + yyb3999 = yyj3999 > l } else { - yyb3994 = r.CheckBreak() + yyb3999 = r.CheckBreak() } - if yyb3994 { + if yyb3999 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49937,13 +49978,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj3999++ + if yyhl3999 { + yyb3999 = yyj3999 > l } else { - yyb3994 = r.CheckBreak() + yyb3999 = r.CheckBreak() } - if yyb3994 { + if yyb3999 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49953,13 +49994,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj3999++ + if yyhl3999 { + yyb3999 = yyj3999 > l } else { - yyb3994 = r.CheckBreak() + yyb3999 = r.CheckBreak() } - if yyb3994 { + if yyb3999 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49967,16 +50008,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3997 := &x.ObjectMeta - yyv3997.CodecDecodeSelf(d) + yyv4002 := &x.ObjectMeta + yyv4002.CodecDecodeSelf(d) } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj3999++ + if yyhl3999 { + yyb3999 = yyj3999 > l } else { - yyb3994 = r.CheckBreak() + yyb3999 = r.CheckBreak() } - if yyb3994 { + if yyb3999 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49984,21 +50025,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3998 := &x.Spec - yyv3998.CodecDecodeSelf(d) + yyv4003 := &x.Spec + yyv4003.CodecDecodeSelf(d) } for { - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj3999++ + if yyhl3999 { + yyb3999 = yyj3999 > l } else { - yyb3994 = r.CheckBreak() + yyb3999 = r.CheckBreak() } - if yyb3994 { + if yyb3999 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3994-1, "") + z.DecStructFieldNotFound(yyj3999-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50010,37 +50051,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3999 := z.EncBinary() - _ = yym3999 + yym4004 := z.EncBinary() + _ = yym4004 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4000 := !z.EncBinary() - yy2arr4000 := z.EncBasicHandle().StructToArray - var yyq4000 [4]bool - _, _, _ = yysep4000, yyq4000, yy2arr4000 - const yyr4000 bool = false - yyq4000[0] = x.Kind != "" - yyq4000[1] = x.APIVersion != "" - yyq4000[2] = true - var yynn4000 int - if yyr4000 || yy2arr4000 { + 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 { r.EncodeArrayStart(4) } else { - yynn4000 = 1 - for _, b := range yyq4000 { + yynn4005 = 1 + for _, b := range yyq4005 { if b { - yynn4000++ + yynn4005++ } } - r.EncodeMapStart(yynn4000) - yynn4000 = 0 + r.EncodeMapStart(yynn4005) + yynn4005 = 0 } - if yyr4000 || yy2arr4000 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4000[0] { - yym4002 := z.EncBinary() - _ = yym4002 + if yyq4005[0] { + yym4007 := z.EncBinary() + _ = yym4007 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50049,23 +50090,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4000[0] { + if yyq4005[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4003 := z.EncBinary() - _ = yym4003 + yym4008 := z.EncBinary() + _ = yym4008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4000 || yy2arr4000 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4000[1] { - yym4005 := z.EncBinary() - _ = yym4005 + if yyq4005[1] { + yym4010 := z.EncBinary() + _ = yym4010 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50074,54 +50115,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4000[1] { + if yyq4005[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4006 := z.EncBinary() - _ = yym4006 + yym4011 := z.EncBinary() + _ = yym4011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4000 || yy2arr4000 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4000[2] { - yy4008 := &x.ListMeta - yym4009 := z.EncBinary() - _ = yym4009 + if yyq4005[2] { + yy4013 := &x.ListMeta + yym4014 := z.EncBinary() + _ = yym4014 if false { - } else if z.HasExtensions() && z.EncExt(yy4008) { + } else if z.HasExtensions() && z.EncExt(yy4013) { } else { - z.EncFallback(yy4008) + z.EncFallback(yy4013) } } else { r.EncodeNil() } } else { - if yyq4000[2] { + if yyq4005[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4010 := &x.ListMeta - yym4011 := z.EncBinary() - _ = yym4011 + yy4015 := &x.ListMeta + yym4016 := z.EncBinary() + _ = yym4016 if false { - } else if z.HasExtensions() && z.EncExt(yy4010) { + } else if z.HasExtensions() && z.EncExt(yy4015) { } else { - z.EncFallback(yy4010) + z.EncFallback(yy4015) } } } - if yyr4000 || yy2arr4000 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4013 := z.EncBinary() - _ = yym4013 + yym4018 := z.EncBinary() + _ = yym4018 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -50134,15 +50175,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4014 := z.EncBinary() - _ = yym4014 + yym4019 := z.EncBinary() + _ = yym4019 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr4000 || yy2arr4000 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50155,25 +50196,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4015 := z.DecBinary() - _ = yym4015 + yym4020 := z.DecBinary() + _ = yym4020 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4016 := r.ContainerType() - if yyct4016 == codecSelferValueTypeMap1234 { - yyl4016 := r.ReadMapStart() - if yyl4016 == 0 { + yyct4021 := r.ContainerType() + if yyct4021 == codecSelferValueTypeMap1234 { + yyl4021 := r.ReadMapStart() + if yyl4021 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4016, d) + x.codecDecodeSelfFromMap(yyl4021, d) } - } else if yyct4016 == codecSelferValueTypeArray1234 { - yyl4016 := r.ReadArrayStart() - if yyl4016 == 0 { + } else if yyct4021 == codecSelferValueTypeArray1234 { + yyl4021 := r.ReadArrayStart() + if yyl4021 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4016, d) + x.codecDecodeSelfFromArray(yyl4021, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50185,12 +50226,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4017Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4017Slc - var yyhl4017 bool = l >= 0 - for yyj4017 := 0; ; yyj4017++ { - if yyhl4017 { - if yyj4017 >= l { + var yys4022Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4022Slc + var yyhl4022 bool = l >= 0 + for yyj4022 := 0; ; yyj4022++ { + if yyhl4022 { + if yyj4022 >= l { break } } else { @@ -50199,10 +50240,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4017Slc = r.DecodeBytes(yys4017Slc, true, true) - yys4017 := string(yys4017Slc) + yys4022Slc = r.DecodeBytes(yys4022Slc, true, true) + yys4022 := string(yys4022Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4017 { + switch yys4022 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50219,31 +50260,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4020 := &x.ListMeta - yym4021 := z.DecBinary() - _ = yym4021 + yyv4025 := &x.ListMeta + yym4026 := z.DecBinary() + _ = yym4026 if false { - } else if z.HasExtensions() && z.DecExt(yyv4020) { + } else if z.HasExtensions() && z.DecExt(yyv4025) { } else { - z.DecFallback(yyv4020, false) + z.DecFallback(yyv4025, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4022 := &x.Items - yym4023 := z.DecBinary() - _ = yym4023 + yyv4027 := &x.Items + yym4028 := z.DecBinary() + _ = yym4028 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4022), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4027), d) } } default: - z.DecStructFieldNotFound(-1, yys4017) - } // end switch yys4017 - } // end for yyj4017 + z.DecStructFieldNotFound(-1, yys4022) + } // end switch yys4022 + } // end for yyj4022 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50251,16 +50292,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4024 int - var yyb4024 bool - var yyhl4024 bool = l >= 0 - yyj4024++ - if yyhl4024 { - yyb4024 = yyj4024 > l + var yyj4029 int + var yyb4029 bool + var yyhl4029 bool = l >= 0 + yyj4029++ + if yyhl4029 { + yyb4029 = yyj4029 > l } else { - yyb4024 = r.CheckBreak() + yyb4029 = r.CheckBreak() } - if yyb4024 { + if yyb4029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50270,13 +50311,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4024++ - if yyhl4024 { - yyb4024 = yyj4024 > l + yyj4029++ + if yyhl4029 { + yyb4029 = yyj4029 > l } else { - yyb4024 = r.CheckBreak() + yyb4029 = r.CheckBreak() } - if yyb4024 { + if yyb4029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50286,13 +50327,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4024++ - if yyhl4024 { - yyb4024 = yyj4024 > l + yyj4029++ + if yyhl4029 { + yyb4029 = yyj4029 > l } else { - yyb4024 = r.CheckBreak() + yyb4029 = r.CheckBreak() } - if yyb4024 { + if yyb4029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50300,22 +50341,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4027 := &x.ListMeta - yym4028 := z.DecBinary() - _ = yym4028 + yyv4032 := &x.ListMeta + yym4033 := z.DecBinary() + _ = yym4033 if false { - } else if z.HasExtensions() && z.DecExt(yyv4027) { + } else if z.HasExtensions() && z.DecExt(yyv4032) { } else { - z.DecFallback(yyv4027, false) + z.DecFallback(yyv4032, false) } } - yyj4024++ - if yyhl4024 { - yyb4024 = yyj4024 > l + yyj4029++ + if yyhl4029 { + yyb4029 = yyj4029 > l } else { - yyb4024 = r.CheckBreak() + yyb4029 = r.CheckBreak() } - if yyb4024 { + if yyb4029 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50323,26 +50364,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4029 := &x.Items - yym4030 := z.DecBinary() - _ = yym4030 + yyv4034 := &x.Items + yym4035 := z.DecBinary() + _ = yym4035 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4029), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4034), d) } } for { - yyj4024++ - if yyhl4024 { - yyb4024 = yyj4024 > l + yyj4029++ + if yyhl4029 { + yyb4029 = yyj4029 > l } else { - yyb4024 = r.CheckBreak() + yyb4029 = r.CheckBreak() } - if yyb4024 { + if yyb4029 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4024-1, "") + z.DecStructFieldNotFound(yyj4029-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50351,8 +50392,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4031 := z.EncBinary() - _ = yym4031 + yym4036 := z.EncBinary() + _ = yym4036 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50364,8 +50405,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4032 := z.DecBinary() - _ = yym4032 + yym4037 := z.DecBinary() + _ = yym4037 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50380,34 +50421,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4033 := z.EncBinary() - _ = yym4033 + yym4038 := z.EncBinary() + _ = yym4038 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4034 := !z.EncBinary() - yy2arr4034 := z.EncBasicHandle().StructToArray - var yyq4034 [2]bool - _, _, _ = yysep4034, yyq4034, yy2arr4034 - const yyr4034 bool = false - yyq4034[0] = len(x.Hard) != 0 - yyq4034[1] = len(x.Scopes) != 0 - var yynn4034 int - if yyr4034 || yy2arr4034 { + yysep4039 := !z.EncBinary() + yy2arr4039 := z.EncBasicHandle().StructToArray + var yyq4039 [2]bool + _, _, _ = yysep4039, yyq4039, yy2arr4039 + const yyr4039 bool = false + yyq4039[0] = len(x.Hard) != 0 + yyq4039[1] = len(x.Scopes) != 0 + var yynn4039 int + if yyr4039 || yy2arr4039 { r.EncodeArrayStart(2) } else { - yynn4034 = 0 - for _, b := range yyq4034 { + yynn4039 = 0 + for _, b := range yyq4039 { if b { - yynn4034++ + yynn4039++ } } - r.EncodeMapStart(yynn4034) - yynn4034 = 0 + r.EncodeMapStart(yynn4039) + yynn4039 = 0 } - if yyr4034 || yy2arr4034 { + if yyr4039 || yy2arr4039 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4034[0] { + if yyq4039[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50417,7 +50458,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4034[0] { + if yyq4039[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50428,14 +50469,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4034 || yy2arr4034 { + if yyr4039 || yy2arr4039 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4034[1] { + if yyq4039[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4037 := z.EncBinary() - _ = yym4037 + yym4042 := z.EncBinary() + _ = yym4042 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -50445,15 +50486,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4034[1] { + if yyq4039[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4038 := z.EncBinary() - _ = yym4038 + yym4043 := z.EncBinary() + _ = yym4043 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -50461,7 +50502,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4034 || yy2arr4034 { + if yyr4039 || yy2arr4039 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50474,25 +50515,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4039 := z.DecBinary() - _ = yym4039 + yym4044 := z.DecBinary() + _ = yym4044 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4040 := r.ContainerType() - if yyct4040 == codecSelferValueTypeMap1234 { - yyl4040 := r.ReadMapStart() - if yyl4040 == 0 { + yyct4045 := r.ContainerType() + if yyct4045 == codecSelferValueTypeMap1234 { + yyl4045 := r.ReadMapStart() + if yyl4045 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4040, d) + x.codecDecodeSelfFromMap(yyl4045, d) } - } else if yyct4040 == codecSelferValueTypeArray1234 { - yyl4040 := r.ReadArrayStart() - if yyl4040 == 0 { + } else if yyct4045 == codecSelferValueTypeArray1234 { + yyl4045 := r.ReadArrayStart() + if yyl4045 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4040, d) + x.codecDecodeSelfFromArray(yyl4045, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50504,12 +50545,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4041Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4041Slc - var yyhl4041 bool = l >= 0 - for yyj4041 := 0; ; yyj4041++ { - if yyhl4041 { - if yyj4041 >= l { + var yys4046Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4046Slc + var yyhl4046 bool = l >= 0 + for yyj4046 := 0; ; yyj4046++ { + if yyhl4046 { + if yyj4046 >= l { break } } else { @@ -50518,33 +50559,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4041Slc = r.DecodeBytes(yys4041Slc, true, true) - yys4041 := string(yys4041Slc) + yys4046Slc = r.DecodeBytes(yys4046Slc, true, true) + yys4046 := string(yys4046Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4041 { + switch yys4046 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4042 := &x.Hard - yyv4042.CodecDecodeSelf(d) + yyv4047 := &x.Hard + yyv4047.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4043 := &x.Scopes - yym4044 := z.DecBinary() - _ = yym4044 + yyv4048 := &x.Scopes + yym4049 := z.DecBinary() + _ = yym4049 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4043), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4048), d) } } default: - z.DecStructFieldNotFound(-1, yys4041) - } // end switch yys4041 - } // end for yyj4041 + z.DecStructFieldNotFound(-1, yys4046) + } // end switch yys4046 + } // end for yyj4046 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50552,16 +50593,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4045 int - var yyb4045 bool - var yyhl4045 bool = l >= 0 - yyj4045++ - if yyhl4045 { - yyb4045 = yyj4045 > l + var yyj4050 int + var yyb4050 bool + var yyhl4050 bool = l >= 0 + yyj4050++ + if yyhl4050 { + yyb4050 = yyj4050 > l } else { - yyb4045 = r.CheckBreak() + yyb4050 = r.CheckBreak() } - if yyb4045 { + if yyb4050 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50569,16 +50610,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4046 := &x.Hard - yyv4046.CodecDecodeSelf(d) + yyv4051 := &x.Hard + yyv4051.CodecDecodeSelf(d) } - yyj4045++ - if yyhl4045 { - yyb4045 = yyj4045 > l + yyj4050++ + if yyhl4050 { + yyb4050 = yyj4050 > l } else { - yyb4045 = r.CheckBreak() + yyb4050 = r.CheckBreak() } - if yyb4045 { + if yyb4050 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50586,26 +50627,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4047 := &x.Scopes - yym4048 := z.DecBinary() - _ = yym4048 + yyv4052 := &x.Scopes + yym4053 := z.DecBinary() + _ = yym4053 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4047), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4052), d) } } for { - yyj4045++ - if yyhl4045 { - yyb4045 = yyj4045 > l + yyj4050++ + if yyhl4050 { + yyb4050 = yyj4050 > l } else { - yyb4045 = r.CheckBreak() + yyb4050 = r.CheckBreak() } - if yyb4045 { + if yyb4050 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4045-1, "") + z.DecStructFieldNotFound(yyj4050-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50617,34 +50658,34 @@ func (x *ResourceQuotaStatus) 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 [2]bool - _, _, _ = yysep4050, yyq4050, yy2arr4050 - const yyr4050 bool = false - yyq4050[0] = len(x.Hard) != 0 - yyq4050[1] = len(x.Used) != 0 - var yynn4050 int - if yyr4050 || yy2arr4050 { + yysep4055 := !z.EncBinary() + yy2arr4055 := z.EncBasicHandle().StructToArray + var yyq4055 [2]bool + _, _, _ = yysep4055, yyq4055, yy2arr4055 + const yyr4055 bool = false + yyq4055[0] = len(x.Hard) != 0 + yyq4055[1] = len(x.Used) != 0 + var yynn4055 int + if yyr4055 || yy2arr4055 { r.EncodeArrayStart(2) } else { - yynn4050 = 0 - for _, b := range yyq4050 { + yynn4055 = 0 + 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] { + if yyq4055[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50654,7 +50695,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4050[0] { + if yyq4055[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50665,9 +50706,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4050 || yy2arr4050 { + if yyr4055 || yy2arr4055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4050[1] { + if yyq4055[1] { if x.Used == nil { r.EncodeNil() } else { @@ -50677,7 +50718,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4050[1] { + if yyq4055[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50688,7 +50729,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4050 || yy2arr4050 { + if yyr4055 || yy2arr4055 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50701,25 +50742,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4053 := z.DecBinary() - _ = yym4053 + yym4058 := z.DecBinary() + _ = yym4058 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4054 := r.ContainerType() - if yyct4054 == codecSelferValueTypeMap1234 { - yyl4054 := r.ReadMapStart() - if yyl4054 == 0 { + yyct4059 := r.ContainerType() + if yyct4059 == codecSelferValueTypeMap1234 { + yyl4059 := r.ReadMapStart() + if yyl4059 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4054, d) + x.codecDecodeSelfFromMap(yyl4059, d) } - } else if yyct4054 == codecSelferValueTypeArray1234 { - yyl4054 := r.ReadArrayStart() - if yyl4054 == 0 { + } else if yyct4059 == codecSelferValueTypeArray1234 { + yyl4059 := r.ReadArrayStart() + if yyl4059 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4054, d) + x.codecDecodeSelfFromArray(yyl4059, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50731,12 +50772,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4055Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4055Slc - var yyhl4055 bool = l >= 0 - for yyj4055 := 0; ; yyj4055++ { - if yyhl4055 { - if yyj4055 >= l { + var yys4060Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4060Slc + var yyhl4060 bool = l >= 0 + for yyj4060 := 0; ; yyj4060++ { + if yyhl4060 { + if yyj4060 >= l { break } } else { @@ -50745,28 +50786,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4055Slc = r.DecodeBytes(yys4055Slc, true, true) - yys4055 := string(yys4055Slc) + yys4060Slc = r.DecodeBytes(yys4060Slc, true, true) + yys4060 := string(yys4060Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4055 { + switch yys4060 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4056 := &x.Hard - yyv4056.CodecDecodeSelf(d) + yyv4061 := &x.Hard + yyv4061.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4057 := &x.Used - yyv4057.CodecDecodeSelf(d) + yyv4062 := &x.Used + yyv4062.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4055) - } // end switch yys4055 - } // end for yyj4055 + z.DecStructFieldNotFound(-1, yys4060) + } // end switch yys4060 + } // end for yyj4060 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50774,16 +50815,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4058 int - var yyb4058 bool - var yyhl4058 bool = l >= 0 - yyj4058++ - if yyhl4058 { - yyb4058 = yyj4058 > l + var yyj4063 int + var yyb4063 bool + var yyhl4063 bool = l >= 0 + yyj4063++ + if yyhl4063 { + yyb4063 = yyj4063 > l } else { - yyb4058 = r.CheckBreak() + yyb4063 = r.CheckBreak() } - if yyb4058 { + if yyb4063 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50791,16 +50832,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4059 := &x.Hard - yyv4059.CodecDecodeSelf(d) + yyv4064 := &x.Hard + yyv4064.CodecDecodeSelf(d) } - yyj4058++ - if yyhl4058 { - yyb4058 = yyj4058 > l + yyj4063++ + if yyhl4063 { + yyb4063 = yyj4063 > l } else { - yyb4058 = r.CheckBreak() + yyb4063 = r.CheckBreak() } - if yyb4058 { + if yyb4063 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50808,21 +50849,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4060 := &x.Used - yyv4060.CodecDecodeSelf(d) + yyv4065 := &x.Used + yyv4065.CodecDecodeSelf(d) } for { - yyj4058++ - if yyhl4058 { - yyb4058 = yyj4058 > l + yyj4063++ + if yyhl4063 { + yyb4063 = yyj4063 > l } else { - yyb4058 = r.CheckBreak() + yyb4063 = r.CheckBreak() } - if yyb4058 { + if yyb4063 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4058-1, "") + z.DecStructFieldNotFound(yyj4063-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50834,39 +50875,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4061 := z.EncBinary() - _ = yym4061 + yym4066 := z.EncBinary() + _ = yym4066 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4062 := !z.EncBinary() - yy2arr4062 := z.EncBasicHandle().StructToArray - var yyq4062 [5]bool - _, _, _ = yysep4062, yyq4062, yy2arr4062 - const yyr4062 bool = false - yyq4062[0] = x.Kind != "" - yyq4062[1] = x.APIVersion != "" - yyq4062[2] = true - yyq4062[3] = true - yyq4062[4] = true - var yynn4062 int - if yyr4062 || yy2arr4062 { + yysep4067 := !z.EncBinary() + yy2arr4067 := z.EncBasicHandle().StructToArray + var yyq4067 [5]bool + _, _, _ = yysep4067, yyq4067, yy2arr4067 + const yyr4067 bool = false + yyq4067[0] = x.Kind != "" + yyq4067[1] = x.APIVersion != "" + yyq4067[2] = true + yyq4067[3] = true + yyq4067[4] = true + var yynn4067 int + if yyr4067 || yy2arr4067 { r.EncodeArrayStart(5) } else { - yynn4062 = 0 - for _, b := range yyq4062 { + yynn4067 = 0 + for _, b := range yyq4067 { if b { - yynn4062++ + yynn4067++ } } - r.EncodeMapStart(yynn4062) - yynn4062 = 0 + r.EncodeMapStart(yynn4067) + yynn4067 = 0 } - if yyr4062 || yy2arr4062 { + if yyr4067 || yy2arr4067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4062[0] { - yym4064 := z.EncBinary() - _ = yym4064 + if yyq4067[0] { + yym4069 := z.EncBinary() + _ = yym4069 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50875,23 +50916,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4062[0] { + if yyq4067[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4065 := z.EncBinary() - _ = yym4065 + yym4070 := z.EncBinary() + _ = yym4070 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4062 || yy2arr4062 { + if yyr4067 || yy2arr4067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4062[1] { - yym4067 := z.EncBinary() - _ = yym4067 + if yyq4067[1] { + yym4072 := z.EncBinary() + _ = yym4072 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50900,70 +50941,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4062[1] { + if yyq4067[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4068 := z.EncBinary() - _ = yym4068 + yym4073 := z.EncBinary() + _ = yym4073 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4062 || yy2arr4062 { + if yyr4067 || yy2arr4067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4062[2] { - yy4070 := &x.ObjectMeta - yy4070.CodecEncodeSelf(e) + if yyq4067[2] { + yy4075 := &x.ObjectMeta + yy4075.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4062[2] { + if yyq4067[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4071 := &x.ObjectMeta - yy4071.CodecEncodeSelf(e) + yy4076 := &x.ObjectMeta + yy4076.CodecEncodeSelf(e) } } - if yyr4062 || yy2arr4062 { + if yyr4067 || yy2arr4067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4062[3] { - yy4073 := &x.Spec - yy4073.CodecEncodeSelf(e) + if yyq4067[3] { + yy4078 := &x.Spec + yy4078.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4062[3] { + if yyq4067[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4074 := &x.Spec - yy4074.CodecEncodeSelf(e) + yy4079 := &x.Spec + yy4079.CodecEncodeSelf(e) } } - if yyr4062 || yy2arr4062 { + if yyr4067 || yy2arr4067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4062[4] { - yy4076 := &x.Status - yy4076.CodecEncodeSelf(e) + if yyq4067[4] { + yy4081 := &x.Status + yy4081.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4062[4] { + if yyq4067[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4077 := &x.Status - yy4077.CodecEncodeSelf(e) + yy4082 := &x.Status + yy4082.CodecEncodeSelf(e) } } - if yyr4062 || yy2arr4062 { + if yyr4067 || yy2arr4067 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50976,25 +51017,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4078 := z.DecBinary() - _ = yym4078 + yym4083 := z.DecBinary() + _ = yym4083 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4079 := r.ContainerType() - if yyct4079 == codecSelferValueTypeMap1234 { - yyl4079 := r.ReadMapStart() - if yyl4079 == 0 { + yyct4084 := r.ContainerType() + if yyct4084 == codecSelferValueTypeMap1234 { + yyl4084 := r.ReadMapStart() + if yyl4084 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4079, d) + x.codecDecodeSelfFromMap(yyl4084, d) } - } else if yyct4079 == codecSelferValueTypeArray1234 { - yyl4079 := r.ReadArrayStart() - if yyl4079 == 0 { + } else if yyct4084 == codecSelferValueTypeArray1234 { + yyl4084 := r.ReadArrayStart() + if yyl4084 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4079, d) + x.codecDecodeSelfFromArray(yyl4084, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51006,12 +51047,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4080Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4080Slc - var yyhl4080 bool = l >= 0 - for yyj4080 := 0; ; yyj4080++ { - if yyhl4080 { - if yyj4080 >= l { + var yys4085Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4085Slc + var yyhl4085 bool = l >= 0 + for yyj4085 := 0; ; yyj4085++ { + if yyhl4085 { + if yyj4085 >= l { break } } else { @@ -51020,10 +51061,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4080Slc = r.DecodeBytes(yys4080Slc, true, true) - yys4080 := string(yys4080Slc) + yys4085Slc = r.DecodeBytes(yys4085Slc, true, true) + yys4085 := string(yys4085Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4080 { + switch yys4085 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51040,27 +51081,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4083 := &x.ObjectMeta - yyv4083.CodecDecodeSelf(d) + yyv4088 := &x.ObjectMeta + yyv4088.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4084 := &x.Spec - yyv4084.CodecDecodeSelf(d) + yyv4089 := &x.Spec + yyv4089.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4085 := &x.Status - yyv4085.CodecDecodeSelf(d) + yyv4090 := &x.Status + yyv4090.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4080) - } // end switch yys4080 - } // end for yyj4080 + z.DecStructFieldNotFound(-1, yys4085) + } // end switch yys4085 + } // end for yyj4085 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51068,16 +51109,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4086 int - var yyb4086 bool - var yyhl4086 bool = l >= 0 - yyj4086++ - if yyhl4086 { - yyb4086 = yyj4086 > l + var yyj4091 int + var yyb4091 bool + var yyhl4091 bool = l >= 0 + yyj4091++ + if yyhl4091 { + yyb4091 = yyj4091 > l } else { - yyb4086 = r.CheckBreak() + yyb4091 = r.CheckBreak() } - if yyb4086 { + if yyb4091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51087,13 +51128,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4086++ - if yyhl4086 { - yyb4086 = yyj4086 > l + yyj4091++ + if yyhl4091 { + yyb4091 = yyj4091 > l } else { - yyb4086 = r.CheckBreak() + yyb4091 = r.CheckBreak() } - if yyb4086 { + if yyb4091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51103,13 +51144,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4086++ - if yyhl4086 { - yyb4086 = yyj4086 > l + yyj4091++ + if yyhl4091 { + yyb4091 = yyj4091 > l } else { - yyb4086 = r.CheckBreak() + yyb4091 = r.CheckBreak() } - if yyb4086 { + if yyb4091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51117,16 +51158,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4089 := &x.ObjectMeta - yyv4089.CodecDecodeSelf(d) + yyv4094 := &x.ObjectMeta + yyv4094.CodecDecodeSelf(d) } - yyj4086++ - if yyhl4086 { - yyb4086 = yyj4086 > l + yyj4091++ + if yyhl4091 { + yyb4091 = yyj4091 > l } else { - yyb4086 = r.CheckBreak() + yyb4091 = r.CheckBreak() } - if yyb4086 { + if yyb4091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51134,16 +51175,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4090 := &x.Spec - yyv4090.CodecDecodeSelf(d) + yyv4095 := &x.Spec + yyv4095.CodecDecodeSelf(d) } - yyj4086++ - if yyhl4086 { - yyb4086 = yyj4086 > l + yyj4091++ + if yyhl4091 { + yyb4091 = yyj4091 > l } else { - yyb4086 = r.CheckBreak() + yyb4091 = r.CheckBreak() } - if yyb4086 { + if yyb4091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51151,21 +51192,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4091 := &x.Status - yyv4091.CodecDecodeSelf(d) + yyv4096 := &x.Status + yyv4096.CodecDecodeSelf(d) } for { - yyj4086++ - if yyhl4086 { - yyb4086 = yyj4086 > l + yyj4091++ + if yyhl4091 { + yyb4091 = yyj4091 > l } else { - yyb4086 = r.CheckBreak() + yyb4091 = r.CheckBreak() } - if yyb4086 { + if yyb4091 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4086-1, "") + z.DecStructFieldNotFound(yyj4091-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51177,37 +51218,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4092 := z.EncBinary() - _ = yym4092 + yym4097 := z.EncBinary() + _ = yym4097 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4093 := !z.EncBinary() - yy2arr4093 := z.EncBasicHandle().StructToArray - var yyq4093 [4]bool - _, _, _ = yysep4093, yyq4093, yy2arr4093 - const yyr4093 bool = false - yyq4093[0] = x.Kind != "" - yyq4093[1] = x.APIVersion != "" - yyq4093[2] = true - var yynn4093 int - if yyr4093 || yy2arr4093 { + yysep4098 := !z.EncBinary() + yy2arr4098 := z.EncBasicHandle().StructToArray + var yyq4098 [4]bool + _, _, _ = yysep4098, yyq4098, yy2arr4098 + const yyr4098 bool = false + yyq4098[0] = x.Kind != "" + yyq4098[1] = x.APIVersion != "" + yyq4098[2] = true + var yynn4098 int + if yyr4098 || yy2arr4098 { r.EncodeArrayStart(4) } else { - yynn4093 = 1 - for _, b := range yyq4093 { + yynn4098 = 1 + for _, b := range yyq4098 { if b { - yynn4093++ + yynn4098++ } } - r.EncodeMapStart(yynn4093) - yynn4093 = 0 + r.EncodeMapStart(yynn4098) + yynn4098 = 0 } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4093[0] { - yym4095 := z.EncBinary() - _ = yym4095 + if yyq4098[0] { + yym4100 := z.EncBinary() + _ = yym4100 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51216,23 +51257,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4093[0] { + if yyq4098[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4096 := z.EncBinary() - _ = yym4096 + yym4101 := z.EncBinary() + _ = yym4101 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4093[1] { - yym4098 := z.EncBinary() - _ = yym4098 + if yyq4098[1] { + yym4103 := z.EncBinary() + _ = yym4103 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51241,54 +51282,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4093[1] { + if yyq4098[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4099 := z.EncBinary() - _ = yym4099 + yym4104 := z.EncBinary() + _ = yym4104 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4093[2] { - yy4101 := &x.ListMeta - yym4102 := z.EncBinary() - _ = yym4102 + if yyq4098[2] { + yy4106 := &x.ListMeta + yym4107 := z.EncBinary() + _ = yym4107 if false { - } else if z.HasExtensions() && z.EncExt(yy4101) { + } else if z.HasExtensions() && z.EncExt(yy4106) { } else { - z.EncFallback(yy4101) + z.EncFallback(yy4106) } } else { r.EncodeNil() } } else { - if yyq4093[2] { + if yyq4098[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4103 := &x.ListMeta - yym4104 := z.EncBinary() - _ = yym4104 + yy4108 := &x.ListMeta + yym4109 := z.EncBinary() + _ = yym4109 if false { - } else if z.HasExtensions() && z.EncExt(yy4103) { + } else if z.HasExtensions() && z.EncExt(yy4108) { } else { - z.EncFallback(yy4103) + z.EncFallback(yy4108) } } } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4106 := z.EncBinary() - _ = yym4106 + yym4111 := z.EncBinary() + _ = yym4111 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -51301,15 +51342,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4107 := z.EncBinary() - _ = yym4107 + yym4112 := z.EncBinary() + _ = yym4112 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51322,25 +51363,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4108 := z.DecBinary() - _ = yym4108 + yym4113 := z.DecBinary() + _ = yym4113 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4109 := r.ContainerType() - if yyct4109 == codecSelferValueTypeMap1234 { - yyl4109 := r.ReadMapStart() - if yyl4109 == 0 { + yyct4114 := r.ContainerType() + if yyct4114 == codecSelferValueTypeMap1234 { + yyl4114 := r.ReadMapStart() + if yyl4114 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4109, d) + x.codecDecodeSelfFromMap(yyl4114, d) } - } else if yyct4109 == codecSelferValueTypeArray1234 { - yyl4109 := r.ReadArrayStart() - if yyl4109 == 0 { + } else if yyct4114 == codecSelferValueTypeArray1234 { + yyl4114 := r.ReadArrayStart() + if yyl4114 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4109, d) + x.codecDecodeSelfFromArray(yyl4114, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51352,12 +51393,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4110Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4110Slc - var yyhl4110 bool = l >= 0 - for yyj4110 := 0; ; yyj4110++ { - if yyhl4110 { - if yyj4110 >= l { + var yys4115Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4115Slc + var yyhl4115 bool = l >= 0 + for yyj4115 := 0; ; yyj4115++ { + if yyhl4115 { + if yyj4115 >= l { break } } else { @@ -51366,10 +51407,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4110Slc = r.DecodeBytes(yys4110Slc, true, true) - yys4110 := string(yys4110Slc) + yys4115Slc = r.DecodeBytes(yys4115Slc, true, true) + yys4115 := string(yys4115Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4110 { + switch yys4115 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51386,31 +51427,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4113 := &x.ListMeta - yym4114 := z.DecBinary() - _ = yym4114 + yyv4118 := &x.ListMeta + yym4119 := z.DecBinary() + _ = yym4119 if false { - } else if z.HasExtensions() && z.DecExt(yyv4113) { + } else if z.HasExtensions() && z.DecExt(yyv4118) { } else { - z.DecFallback(yyv4113, false) + z.DecFallback(yyv4118, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4115 := &x.Items - yym4116 := z.DecBinary() - _ = yym4116 + yyv4120 := &x.Items + yym4121 := z.DecBinary() + _ = yym4121 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4115), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4120), d) } } default: - z.DecStructFieldNotFound(-1, yys4110) - } // end switch yys4110 - } // end for yyj4110 + z.DecStructFieldNotFound(-1, yys4115) + } // end switch yys4115 + } // end for yyj4115 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51418,16 +51459,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4117 int - var yyb4117 bool - var yyhl4117 bool = l >= 0 - yyj4117++ - if yyhl4117 { - yyb4117 = yyj4117 > l + var yyj4122 int + var yyb4122 bool + var yyhl4122 bool = l >= 0 + yyj4122++ + if yyhl4122 { + yyb4122 = yyj4122 > l } else { - yyb4117 = r.CheckBreak() + yyb4122 = r.CheckBreak() } - if yyb4117 { + if yyb4122 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51437,13 +51478,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4117++ - if yyhl4117 { - yyb4117 = yyj4117 > l + yyj4122++ + if yyhl4122 { + yyb4122 = yyj4122 > l } else { - yyb4117 = r.CheckBreak() + yyb4122 = r.CheckBreak() } - if yyb4117 { + if yyb4122 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51453,13 +51494,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4117++ - if yyhl4117 { - yyb4117 = yyj4117 > l + yyj4122++ + if yyhl4122 { + yyb4122 = yyj4122 > l } else { - yyb4117 = r.CheckBreak() + yyb4122 = r.CheckBreak() } - if yyb4117 { + if yyb4122 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51467,22 +51508,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4120 := &x.ListMeta - yym4121 := z.DecBinary() - _ = yym4121 + yyv4125 := &x.ListMeta + yym4126 := z.DecBinary() + _ = yym4126 if false { - } else if z.HasExtensions() && z.DecExt(yyv4120) { + } else if z.HasExtensions() && z.DecExt(yyv4125) { } else { - z.DecFallback(yyv4120, false) + z.DecFallback(yyv4125, false) } } - yyj4117++ - if yyhl4117 { - yyb4117 = yyj4117 > l + yyj4122++ + if yyhl4122 { + yyb4122 = yyj4122 > l } else { - yyb4117 = r.CheckBreak() + yyb4122 = r.CheckBreak() } - if yyb4117 { + if yyb4122 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51490,26 +51531,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4122 := &x.Items - yym4123 := z.DecBinary() - _ = yym4123 + yyv4127 := &x.Items + yym4128 := z.DecBinary() + _ = yym4128 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4122), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4127), d) } } for { - yyj4117++ - if yyhl4117 { - yyb4117 = yyj4117 > l + yyj4122++ + if yyhl4122 { + yyb4122 = yyj4122 > l } else { - yyb4117 = r.CheckBreak() + yyb4122 = r.CheckBreak() } - if yyb4117 { + if yyb4122 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4117-1, "") + z.DecStructFieldNotFound(yyj4122-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51521,39 +51562,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4124 := z.EncBinary() - _ = yym4124 + yym4129 := z.EncBinary() + _ = yym4129 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4125 := !z.EncBinary() - yy2arr4125 := z.EncBasicHandle().StructToArray - var yyq4125 [5]bool - _, _, _ = yysep4125, yyq4125, yy2arr4125 - const yyr4125 bool = false - yyq4125[0] = x.Kind != "" - yyq4125[1] = x.APIVersion != "" - yyq4125[2] = true - yyq4125[3] = len(x.Data) != 0 - yyq4125[4] = x.Type != "" - var yynn4125 int - if yyr4125 || yy2arr4125 { + yysep4130 := !z.EncBinary() + yy2arr4130 := z.EncBasicHandle().StructToArray + var yyq4130 [5]bool + _, _, _ = yysep4130, yyq4130, yy2arr4130 + const yyr4130 bool = false + yyq4130[0] = x.Kind != "" + yyq4130[1] = x.APIVersion != "" + yyq4130[2] = true + yyq4130[3] = len(x.Data) != 0 + yyq4130[4] = x.Type != "" + var yynn4130 int + if yyr4130 || yy2arr4130 { r.EncodeArrayStart(5) } else { - yynn4125 = 0 - for _, b := range yyq4125 { + yynn4130 = 0 + for _, b := range yyq4130 { if b { - yynn4125++ + yynn4130++ } } - r.EncodeMapStart(yynn4125) - yynn4125 = 0 + r.EncodeMapStart(yynn4130) + yynn4130 = 0 } - if yyr4125 || yy2arr4125 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4125[0] { - yym4127 := z.EncBinary() - _ = yym4127 + if yyq4130[0] { + yym4132 := z.EncBinary() + _ = yym4132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51562,23 +51603,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4125[0] { + if yyq4130[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4128 := z.EncBinary() - _ = yym4128 + yym4133 := z.EncBinary() + _ = yym4133 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4125 || yy2arr4125 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4125[1] { - yym4130 := z.EncBinary() - _ = yym4130 + if yyq4130[1] { + yym4135 := z.EncBinary() + _ = yym4135 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51587,43 +51628,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4125[1] { + if yyq4130[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4131 := z.EncBinary() - _ = yym4131 + yym4136 := z.EncBinary() + _ = yym4136 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4125 || yy2arr4125 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4125[2] { - yy4133 := &x.ObjectMeta - yy4133.CodecEncodeSelf(e) + if yyq4130[2] { + yy4138 := &x.ObjectMeta + yy4138.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4125[2] { + if yyq4130[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4134 := &x.ObjectMeta - yy4134.CodecEncodeSelf(e) + yy4139 := &x.ObjectMeta + yy4139.CodecEncodeSelf(e) } } - if yyr4125 || yy2arr4125 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4125[3] { + if yyq4130[3] { if x.Data == nil { r.EncodeNil() } else { - yym4136 := z.EncBinary() - _ = yym4136 + yym4141 := z.EncBinary() + _ = yym4141 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51633,15 +51674,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4125[3] { + if yyq4130[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4137 := z.EncBinary() - _ = yym4137 + yym4142 := z.EncBinary() + _ = yym4142 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51649,22 +51690,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4125 || yy2arr4125 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4125[4] { + if yyq4130[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4125[4] { + if yyq4130[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4125 || yy2arr4125 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51677,25 +51718,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4139 := z.DecBinary() - _ = yym4139 + yym4144 := z.DecBinary() + _ = yym4144 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4140 := r.ContainerType() - if yyct4140 == codecSelferValueTypeMap1234 { - yyl4140 := r.ReadMapStart() - if yyl4140 == 0 { + yyct4145 := r.ContainerType() + if yyct4145 == codecSelferValueTypeMap1234 { + yyl4145 := r.ReadMapStart() + if yyl4145 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4140, d) + x.codecDecodeSelfFromMap(yyl4145, d) } - } else if yyct4140 == codecSelferValueTypeArray1234 { - yyl4140 := r.ReadArrayStart() - if yyl4140 == 0 { + } else if yyct4145 == codecSelferValueTypeArray1234 { + yyl4145 := r.ReadArrayStart() + if yyl4145 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4140, d) + x.codecDecodeSelfFromArray(yyl4145, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51707,12 +51748,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4141Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4141Slc - var yyhl4141 bool = l >= 0 - for yyj4141 := 0; ; yyj4141++ { - if yyhl4141 { - if yyj4141 >= l { + var yys4146Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4146Slc + var yyhl4146 bool = l >= 0 + for yyj4146 := 0; ; yyj4146++ { + if yyhl4146 { + if yyj4146 >= l { break } } else { @@ -51721,10 +51762,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4141Slc = r.DecodeBytes(yys4141Slc, true, true) - yys4141 := string(yys4141Slc) + yys4146Slc = r.DecodeBytes(yys4146Slc, true, true) + yys4146 := string(yys4146Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4141 { + switch yys4146 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51741,19 +51782,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4144 := &x.ObjectMeta - yyv4144.CodecDecodeSelf(d) + yyv4149 := &x.ObjectMeta + yyv4149.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4145 := &x.Data - yym4146 := z.DecBinary() - _ = yym4146 + yyv4150 := &x.Data + yym4151 := z.DecBinary() + _ = yym4151 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4145), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4150), d) } } case "type": @@ -51763,9 +51804,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4141) - } // end switch yys4141 - } // end for yyj4141 + z.DecStructFieldNotFound(-1, yys4146) + } // end switch yys4146 + } // end for yyj4146 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51773,16 +51814,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4148 int - var yyb4148 bool - var yyhl4148 bool = l >= 0 - yyj4148++ - if yyhl4148 { - yyb4148 = yyj4148 > l + var yyj4153 int + var yyb4153 bool + var yyhl4153 bool = l >= 0 + yyj4153++ + if yyhl4153 { + yyb4153 = yyj4153 > l } else { - yyb4148 = r.CheckBreak() + yyb4153 = r.CheckBreak() } - if yyb4148 { + if yyb4153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51792,13 +51833,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4148++ - if yyhl4148 { - yyb4148 = yyj4148 > l + yyj4153++ + if yyhl4153 { + yyb4153 = yyj4153 > l } else { - yyb4148 = r.CheckBreak() + yyb4153 = r.CheckBreak() } - if yyb4148 { + if yyb4153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51808,13 +51849,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4148++ - if yyhl4148 { - yyb4148 = yyj4148 > l + yyj4153++ + if yyhl4153 { + yyb4153 = yyj4153 > l } else { - yyb4148 = r.CheckBreak() + yyb4153 = r.CheckBreak() } - if yyb4148 { + if yyb4153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51822,16 +51863,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4151 := &x.ObjectMeta - yyv4151.CodecDecodeSelf(d) + yyv4156 := &x.ObjectMeta + yyv4156.CodecDecodeSelf(d) } - yyj4148++ - if yyhl4148 { - yyb4148 = yyj4148 > l + yyj4153++ + if yyhl4153 { + yyb4153 = yyj4153 > l } else { - yyb4148 = r.CheckBreak() + yyb4153 = r.CheckBreak() } - if yyb4148 { + if yyb4153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51839,21 +51880,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4152 := &x.Data - yym4153 := z.DecBinary() - _ = yym4153 + yyv4157 := &x.Data + yym4158 := z.DecBinary() + _ = yym4158 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4152), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4157), d) } } - yyj4148++ - if yyhl4148 { - yyb4148 = yyj4148 > l + yyj4153++ + if yyhl4153 { + yyb4153 = yyj4153 > l } else { - yyb4148 = r.CheckBreak() + yyb4153 = r.CheckBreak() } - if yyb4148 { + if yyb4153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51864,17 +51905,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4148++ - if yyhl4148 { - yyb4148 = yyj4148 > l + yyj4153++ + if yyhl4153 { + yyb4153 = yyj4153 > l } else { - yyb4148 = r.CheckBreak() + yyb4153 = r.CheckBreak() } - if yyb4148 { + if yyb4153 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4148-1, "") + z.DecStructFieldNotFound(yyj4153-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51883,8 +51924,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4155 := z.EncBinary() - _ = yym4155 + yym4160 := z.EncBinary() + _ = yym4160 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51896,8 +51937,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4156 := z.DecBinary() - _ = yym4156 + yym4161 := z.DecBinary() + _ = yym4161 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51912,37 +51953,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4157 := z.EncBinary() - _ = yym4157 + yym4162 := z.EncBinary() + _ = yym4162 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4158 := !z.EncBinary() - yy2arr4158 := z.EncBasicHandle().StructToArray - var yyq4158 [4]bool - _, _, _ = yysep4158, yyq4158, yy2arr4158 - const yyr4158 bool = false - yyq4158[0] = x.Kind != "" - yyq4158[1] = x.APIVersion != "" - yyq4158[2] = true - var yynn4158 int - if yyr4158 || yy2arr4158 { + yysep4163 := !z.EncBinary() + yy2arr4163 := z.EncBasicHandle().StructToArray + var yyq4163 [4]bool + _, _, _ = yysep4163, yyq4163, yy2arr4163 + const yyr4163 bool = false + yyq4163[0] = x.Kind != "" + yyq4163[1] = x.APIVersion != "" + yyq4163[2] = true + var yynn4163 int + if yyr4163 || yy2arr4163 { r.EncodeArrayStart(4) } else { - yynn4158 = 1 - for _, b := range yyq4158 { + yynn4163 = 1 + for _, b := range yyq4163 { if b { - yynn4158++ + yynn4163++ } } - r.EncodeMapStart(yynn4158) - yynn4158 = 0 + r.EncodeMapStart(yynn4163) + yynn4163 = 0 } - if yyr4158 || yy2arr4158 { + if yyr4163 || yy2arr4163 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4158[0] { - yym4160 := z.EncBinary() - _ = yym4160 + if yyq4163[0] { + yym4165 := z.EncBinary() + _ = yym4165 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51951,23 +51992,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4158[0] { + if yyq4163[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4161 := z.EncBinary() - _ = yym4161 + yym4166 := z.EncBinary() + _ = yym4166 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4158 || yy2arr4158 { + if yyr4163 || yy2arr4163 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4158[1] { - yym4163 := z.EncBinary() - _ = yym4163 + if yyq4163[1] { + yym4168 := z.EncBinary() + _ = yym4168 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51976,54 +52017,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4158[1] { + if yyq4163[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4164 := z.EncBinary() - _ = yym4164 + yym4169 := z.EncBinary() + _ = yym4169 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4158 || yy2arr4158 { + if yyr4163 || yy2arr4163 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4158[2] { - yy4166 := &x.ListMeta - yym4167 := z.EncBinary() - _ = yym4167 + if yyq4163[2] { + yy4171 := &x.ListMeta + yym4172 := z.EncBinary() + _ = yym4172 if false { - } else if z.HasExtensions() && z.EncExt(yy4166) { + } else if z.HasExtensions() && z.EncExt(yy4171) { } else { - z.EncFallback(yy4166) + z.EncFallback(yy4171) } } else { r.EncodeNil() } } else { - if yyq4158[2] { + if yyq4163[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4168 := &x.ListMeta - yym4169 := z.EncBinary() - _ = yym4169 + yy4173 := &x.ListMeta + yym4174 := z.EncBinary() + _ = yym4174 if false { - } else if z.HasExtensions() && z.EncExt(yy4168) { + } else if z.HasExtensions() && z.EncExt(yy4173) { } else { - z.EncFallback(yy4168) + z.EncFallback(yy4173) } } } - if yyr4158 || yy2arr4158 { + if yyr4163 || yy2arr4163 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4171 := z.EncBinary() - _ = yym4171 + yym4176 := z.EncBinary() + _ = yym4176 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -52036,15 +52077,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4172 := z.EncBinary() - _ = yym4172 + yym4177 := z.EncBinary() + _ = yym4177 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4158 || yy2arr4158 { + if yyr4163 || yy2arr4163 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52057,25 +52098,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4173 := z.DecBinary() - _ = yym4173 + yym4178 := z.DecBinary() + _ = yym4178 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4174 := r.ContainerType() - if yyct4174 == codecSelferValueTypeMap1234 { - yyl4174 := r.ReadMapStart() - if yyl4174 == 0 { + yyct4179 := r.ContainerType() + if yyct4179 == codecSelferValueTypeMap1234 { + yyl4179 := r.ReadMapStart() + if yyl4179 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4174, d) + x.codecDecodeSelfFromMap(yyl4179, d) } - } else if yyct4174 == codecSelferValueTypeArray1234 { - yyl4174 := r.ReadArrayStart() - if yyl4174 == 0 { + } else if yyct4179 == codecSelferValueTypeArray1234 { + yyl4179 := r.ReadArrayStart() + if yyl4179 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4174, d) + x.codecDecodeSelfFromArray(yyl4179, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52087,12 +52128,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4175Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4175Slc - var yyhl4175 bool = l >= 0 - for yyj4175 := 0; ; yyj4175++ { - if yyhl4175 { - if yyj4175 >= l { + var yys4180Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4180Slc + var yyhl4180 bool = l >= 0 + for yyj4180 := 0; ; yyj4180++ { + if yyhl4180 { + if yyj4180 >= l { break } } else { @@ -52101,10 +52142,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4175Slc = r.DecodeBytes(yys4175Slc, true, true) - yys4175 := string(yys4175Slc) + yys4180Slc = r.DecodeBytes(yys4180Slc, true, true) + yys4180 := string(yys4180Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4175 { + switch yys4180 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52121,31 +52162,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4178 := &x.ListMeta - yym4179 := z.DecBinary() - _ = yym4179 + yyv4183 := &x.ListMeta + yym4184 := z.DecBinary() + _ = yym4184 if false { - } else if z.HasExtensions() && z.DecExt(yyv4178) { + } else if z.HasExtensions() && z.DecExt(yyv4183) { } else { - z.DecFallback(yyv4178, false) + z.DecFallback(yyv4183, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4180 := &x.Items - yym4181 := z.DecBinary() - _ = yym4181 + yyv4185 := &x.Items + yym4186 := z.DecBinary() + _ = yym4186 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4180), d) + h.decSliceSecret((*[]Secret)(yyv4185), d) } } default: - z.DecStructFieldNotFound(-1, yys4175) - } // end switch yys4175 - } // end for yyj4175 + z.DecStructFieldNotFound(-1, yys4180) + } // end switch yys4180 + } // end for yyj4180 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52153,16 +52194,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { 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 } @@ -52172,13 +52213,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = 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 } @@ -52188,13 +52229,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = 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 } @@ -52202,22 +52243,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4185 := &x.ListMeta - yym4186 := z.DecBinary() - _ = yym4186 + yyv4190 := &x.ListMeta + yym4191 := z.DecBinary() + _ = yym4191 if false { - } else if z.HasExtensions() && z.DecExt(yyv4185) { + } else if z.HasExtensions() && z.DecExt(yyv4190) { } else { - z.DecFallback(yyv4185, false) + z.DecFallback(yyv4190, false) } } - 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 } @@ -52225,26 +52266,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4187 := &x.Items - yym4188 := z.DecBinary() - _ = yym4188 + yyv4192 := &x.Items + yym4193 := z.DecBinary() + _ = yym4193 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4187), d) + h.decSliceSecret((*[]Secret)(yyv4192), d) } } 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) } @@ -52256,38 +52297,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4189 := z.EncBinary() - _ = yym4189 + yym4194 := z.EncBinary() + _ = yym4194 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4190 := !z.EncBinary() - yy2arr4190 := z.EncBasicHandle().StructToArray - var yyq4190 [4]bool - _, _, _ = yysep4190, yyq4190, yy2arr4190 - const yyr4190 bool = false - yyq4190[0] = x.Kind != "" - yyq4190[1] = x.APIVersion != "" - yyq4190[2] = true - yyq4190[3] = len(x.Data) != 0 - var yynn4190 int - if yyr4190 || yy2arr4190 { + yysep4195 := !z.EncBinary() + yy2arr4195 := z.EncBasicHandle().StructToArray + var yyq4195 [4]bool + _, _, _ = yysep4195, yyq4195, yy2arr4195 + const yyr4195 bool = false + yyq4195[0] = x.Kind != "" + yyq4195[1] = x.APIVersion != "" + yyq4195[2] = true + yyq4195[3] = len(x.Data) != 0 + var yynn4195 int + if yyr4195 || yy2arr4195 { r.EncodeArrayStart(4) } else { - yynn4190 = 0 - for _, b := range yyq4190 { + yynn4195 = 0 + for _, b := range yyq4195 { if b { - yynn4190++ + yynn4195++ } } - r.EncodeMapStart(yynn4190) - yynn4190 = 0 + r.EncodeMapStart(yynn4195) + yynn4195 = 0 } - if yyr4190 || yy2arr4190 { + if yyr4195 || yy2arr4195 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4190[0] { - yym4192 := z.EncBinary() - _ = yym4192 + if yyq4195[0] { + yym4197 := z.EncBinary() + _ = yym4197 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52296,23 +52337,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4190[0] { + if yyq4195[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4193 := z.EncBinary() - _ = yym4193 + yym4198 := z.EncBinary() + _ = yym4198 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4190 || yy2arr4190 { + if yyr4195 || yy2arr4195 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4190[1] { - yym4195 := z.EncBinary() - _ = yym4195 + if yyq4195[1] { + yym4200 := z.EncBinary() + _ = yym4200 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52321,43 +52362,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4190[1] { + if yyq4195[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4196 := z.EncBinary() - _ = yym4196 + yym4201 := z.EncBinary() + _ = yym4201 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4190 || yy2arr4190 { + if yyr4195 || yy2arr4195 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4190[2] { - yy4198 := &x.ObjectMeta - yy4198.CodecEncodeSelf(e) + if yyq4195[2] { + yy4203 := &x.ObjectMeta + yy4203.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4190[2] { + if yyq4195[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4199 := &x.ObjectMeta - yy4199.CodecEncodeSelf(e) + yy4204 := &x.ObjectMeta + yy4204.CodecEncodeSelf(e) } } - if yyr4190 || yy2arr4190 { + if yyr4195 || yy2arr4195 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4190[3] { + if yyq4195[3] { if x.Data == nil { r.EncodeNil() } else { - yym4201 := z.EncBinary() - _ = yym4201 + yym4206 := z.EncBinary() + _ = yym4206 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -52367,15 +52408,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4190[3] { + if yyq4195[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4202 := z.EncBinary() - _ = yym4202 + yym4207 := z.EncBinary() + _ = yym4207 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -52383,7 +52424,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4190 || yy2arr4190 { + if yyr4195 || yy2arr4195 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52396,25 +52437,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4203 := z.DecBinary() - _ = yym4203 + yym4208 := z.DecBinary() + _ = yym4208 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4204 := r.ContainerType() - if yyct4204 == codecSelferValueTypeMap1234 { - yyl4204 := r.ReadMapStart() - if yyl4204 == 0 { + yyct4209 := r.ContainerType() + if yyct4209 == codecSelferValueTypeMap1234 { + yyl4209 := r.ReadMapStart() + if yyl4209 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4204, d) + x.codecDecodeSelfFromMap(yyl4209, d) } - } else if yyct4204 == codecSelferValueTypeArray1234 { - yyl4204 := r.ReadArrayStart() - if yyl4204 == 0 { + } else if yyct4209 == codecSelferValueTypeArray1234 { + yyl4209 := r.ReadArrayStart() + if yyl4209 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4204, d) + x.codecDecodeSelfFromArray(yyl4209, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52426,12 +52467,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4205Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4205Slc - var yyhl4205 bool = l >= 0 - for yyj4205 := 0; ; yyj4205++ { - if yyhl4205 { - if yyj4205 >= l { + var yys4210Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4210Slc + var yyhl4210 bool = l >= 0 + for yyj4210 := 0; ; yyj4210++ { + if yyhl4210 { + if yyj4210 >= l { break } } else { @@ -52440,10 +52481,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4205Slc = r.DecodeBytes(yys4205Slc, true, true) - yys4205 := string(yys4205Slc) + yys4210Slc = r.DecodeBytes(yys4210Slc, true, true) + yys4210 := string(yys4210Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4205 { + switch yys4210 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52460,25 +52501,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4208 := &x.ObjectMeta - yyv4208.CodecDecodeSelf(d) + yyv4213 := &x.ObjectMeta + yyv4213.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4209 := &x.Data - yym4210 := z.DecBinary() - _ = yym4210 + yyv4214 := &x.Data + yym4215 := z.DecBinary() + _ = yym4215 if false { } else { - z.F.DecMapStringStringX(yyv4209, false, d) + z.F.DecMapStringStringX(yyv4214, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4205) - } // end switch yys4205 - } // end for yyj4205 + z.DecStructFieldNotFound(-1, yys4210) + } // end switch yys4210 + } // end for yyj4210 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52486,16 +52527,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4211 int - var yyb4211 bool - var yyhl4211 bool = l >= 0 - yyj4211++ - if yyhl4211 { - yyb4211 = yyj4211 > l + var yyj4216 int + var yyb4216 bool + var yyhl4216 bool = l >= 0 + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4211 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4211 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52505,13 +52546,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4211++ - if yyhl4211 { - yyb4211 = yyj4211 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4211 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4211 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52521,13 +52562,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4211++ - if yyhl4211 { - yyb4211 = yyj4211 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4211 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4211 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52535,16 +52576,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4214 := &x.ObjectMeta - yyv4214.CodecDecodeSelf(d) + yyv4219 := &x.ObjectMeta + yyv4219.CodecDecodeSelf(d) } - yyj4211++ - if yyhl4211 { - yyb4211 = yyj4211 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4211 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4211 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52552,26 +52593,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4215 := &x.Data - yym4216 := z.DecBinary() - _ = yym4216 + yyv4220 := &x.Data + yym4221 := z.DecBinary() + _ = yym4221 if false { } else { - z.F.DecMapStringStringX(yyv4215, false, d) + z.F.DecMapStringStringX(yyv4220, false, d) } } for { - yyj4211++ - if yyhl4211 { - yyb4211 = yyj4211 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4211 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4211 { + if yyb4216 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4211-1, "") + z.DecStructFieldNotFound(yyj4216-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52583,37 +52624,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4217 := z.EncBinary() - _ = yym4217 + yym4222 := z.EncBinary() + _ = yym4222 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4218 := !z.EncBinary() - yy2arr4218 := z.EncBasicHandle().StructToArray - var yyq4218 [4]bool - _, _, _ = yysep4218, yyq4218, yy2arr4218 - const yyr4218 bool = false - yyq4218[0] = x.Kind != "" - yyq4218[1] = x.APIVersion != "" - yyq4218[2] = true - var yynn4218 int - if yyr4218 || yy2arr4218 { + yysep4223 := !z.EncBinary() + yy2arr4223 := z.EncBasicHandle().StructToArray + var yyq4223 [4]bool + _, _, _ = yysep4223, yyq4223, yy2arr4223 + const yyr4223 bool = false + yyq4223[0] = x.Kind != "" + yyq4223[1] = x.APIVersion != "" + yyq4223[2] = true + var yynn4223 int + if yyr4223 || yy2arr4223 { r.EncodeArrayStart(4) } else { - yynn4218 = 1 - for _, b := range yyq4218 { + yynn4223 = 1 + for _, b := range yyq4223 { if b { - yynn4218++ + yynn4223++ } } - r.EncodeMapStart(yynn4218) - yynn4218 = 0 + r.EncodeMapStart(yynn4223) + yynn4223 = 0 } - if yyr4218 || yy2arr4218 { + if yyr4223 || yy2arr4223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4218[0] { - yym4220 := z.EncBinary() - _ = yym4220 + if yyq4223[0] { + yym4225 := z.EncBinary() + _ = yym4225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52622,23 +52663,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4218[0] { + if yyq4223[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4221 := z.EncBinary() - _ = yym4221 + yym4226 := z.EncBinary() + _ = yym4226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4218 || yy2arr4218 { + if yyr4223 || yy2arr4223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4218[1] { - yym4223 := z.EncBinary() - _ = yym4223 + if yyq4223[1] { + yym4228 := z.EncBinary() + _ = yym4228 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52647,54 +52688,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4218[1] { + if yyq4223[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4224 := z.EncBinary() - _ = yym4224 + yym4229 := z.EncBinary() + _ = yym4229 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4218 || yy2arr4218 { + if yyr4223 || yy2arr4223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4218[2] { - yy4226 := &x.ListMeta - yym4227 := z.EncBinary() - _ = yym4227 + if yyq4223[2] { + 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) } } else { r.EncodeNil() } } else { - if yyq4218[2] { + if yyq4223[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4228 := &x.ListMeta - yym4229 := z.EncBinary() - _ = yym4229 + yy4233 := &x.ListMeta + yym4234 := z.EncBinary() + _ = yym4234 if false { - } else if z.HasExtensions() && z.EncExt(yy4228) { + } else if z.HasExtensions() && z.EncExt(yy4233) { } else { - z.EncFallback(yy4228) + z.EncFallback(yy4233) } } } - if yyr4218 || yy2arr4218 { + if yyr4223 || yy2arr4223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4231 := z.EncBinary() - _ = yym4231 + yym4236 := z.EncBinary() + _ = yym4236 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -52707,15 +52748,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4232 := z.EncBinary() - _ = yym4232 + yym4237 := z.EncBinary() + _ = yym4237 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4218 || yy2arr4218 { + if yyr4223 || yy2arr4223 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52728,25 +52769,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4233 := z.DecBinary() - _ = yym4233 + yym4238 := z.DecBinary() + _ = yym4238 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4234 := r.ContainerType() - if yyct4234 == codecSelferValueTypeMap1234 { - yyl4234 := r.ReadMapStart() - if yyl4234 == 0 { + yyct4239 := r.ContainerType() + if yyct4239 == codecSelferValueTypeMap1234 { + yyl4239 := r.ReadMapStart() + if yyl4239 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4234, d) + x.codecDecodeSelfFromMap(yyl4239, d) } - } else if yyct4234 == codecSelferValueTypeArray1234 { - yyl4234 := r.ReadArrayStart() - if yyl4234 == 0 { + } else if yyct4239 == codecSelferValueTypeArray1234 { + yyl4239 := r.ReadArrayStart() + if yyl4239 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4234, d) + x.codecDecodeSelfFromArray(yyl4239, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52758,12 +52799,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4235Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4235Slc - var yyhl4235 bool = l >= 0 - for yyj4235 := 0; ; yyj4235++ { - if yyhl4235 { - if yyj4235 >= l { + var yys4240Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4240Slc + var yyhl4240 bool = l >= 0 + for yyj4240 := 0; ; yyj4240++ { + if yyhl4240 { + if yyj4240 >= l { break } } else { @@ -52772,10 +52813,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4235Slc = r.DecodeBytes(yys4235Slc, true, true) - yys4235 := string(yys4235Slc) + yys4240Slc = r.DecodeBytes(yys4240Slc, true, true) + yys4240 := string(yys4240Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4235 { + switch yys4240 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52792,31 +52833,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4238 := &x.ListMeta - yym4239 := z.DecBinary() - _ = yym4239 + yyv4243 := &x.ListMeta + yym4244 := z.DecBinary() + _ = yym4244 if false { - } else if z.HasExtensions() && z.DecExt(yyv4238) { + } else if z.HasExtensions() && z.DecExt(yyv4243) { } else { - z.DecFallback(yyv4238, false) + z.DecFallback(yyv4243, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4240 := &x.Items - yym4241 := z.DecBinary() - _ = yym4241 + yyv4245 := &x.Items + yym4246 := z.DecBinary() + _ = yym4246 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4240), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4245), d) } } default: - z.DecStructFieldNotFound(-1, yys4235) - } // end switch yys4235 - } // end for yyj4235 + z.DecStructFieldNotFound(-1, yys4240) + } // end switch yys4240 + } // end for yyj4240 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52824,16 +52865,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4242 int - var yyb4242 bool - var yyhl4242 bool = l >= 0 - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + var yyj4247 int + var yyb4247 bool + var yyhl4247 bool = l >= 0 + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52843,13 +52884,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52859,13 +52900,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52873,22 +52914,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4245 := &x.ListMeta - yym4246 := z.DecBinary() - _ = yym4246 + yyv4250 := &x.ListMeta + yym4251 := z.DecBinary() + _ = yym4251 if false { - } else if z.HasExtensions() && z.DecExt(yyv4245) { + } else if z.HasExtensions() && z.DecExt(yyv4250) { } else { - z.DecFallback(yyv4245, false) + z.DecFallback(yyv4250, false) } } - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52896,26 +52937,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4247 := &x.Items - yym4248 := z.DecBinary() - _ = yym4248 + yyv4252 := &x.Items + yym4253 := z.DecBinary() + _ = yym4253 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4247), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4252), d) } } for { - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4242-1, "") + z.DecStructFieldNotFound(yyj4247-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52924,8 +52965,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4249 := z.EncBinary() - _ = yym4249 + yym4254 := z.EncBinary() + _ = yym4254 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52937,8 +52978,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4250 := z.DecBinary() - _ = yym4250 + yym4255 := z.DecBinary() + _ = yym4255 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52950,8 +52991,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4251 := z.EncBinary() - _ = yym4251 + yym4256 := z.EncBinary() + _ = yym4256 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52963,8 +53004,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4252 := z.DecBinary() - _ = yym4252 + yym4257 := z.DecBinary() + _ = yym4257 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52979,32 +53020,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4253 := z.EncBinary() - _ = yym4253 + yym4258 := z.EncBinary() + _ = yym4258 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4254 := !z.EncBinary() - yy2arr4254 := z.EncBasicHandle().StructToArray - var yyq4254 [4]bool - _, _, _ = yysep4254, yyq4254, yy2arr4254 - const yyr4254 bool = false - yyq4254[2] = x.Message != "" - yyq4254[3] = x.Error != "" - var yynn4254 int - if yyr4254 || yy2arr4254 { + yysep4259 := !z.EncBinary() + yy2arr4259 := z.EncBasicHandle().StructToArray + var yyq4259 [4]bool + _, _, _ = yysep4259, yyq4259, yy2arr4259 + const yyr4259 bool = false + yyq4259[2] = x.Message != "" + yyq4259[3] = x.Error != "" + var yynn4259 int + if yyr4259 || yy2arr4259 { r.EncodeArrayStart(4) } else { - yynn4254 = 2 - for _, b := range yyq4254 { + yynn4259 = 2 + for _, b := range yyq4259 { if b { - yynn4254++ + yynn4259++ } } - r.EncodeMapStart(yynn4254) - yynn4254 = 0 + r.EncodeMapStart(yynn4259) + yynn4259 = 0 } - if yyr4254 || yy2arr4254 { + if yyr4259 || yy2arr4259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -53013,7 +53054,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4254 || yy2arr4254 { + if yyr4259 || yy2arr4259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -53022,11 +53063,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4254 || yy2arr4254 { + if yyr4259 || yy2arr4259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4254[2] { - yym4258 := z.EncBinary() - _ = yym4258 + if yyq4259[2] { + yym4263 := z.EncBinary() + _ = yym4263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -53035,23 +53076,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4254[2] { + if yyq4259[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4259 := z.EncBinary() - _ = yym4259 + yym4264 := z.EncBinary() + _ = yym4264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4254 || yy2arr4254 { + if yyr4259 || yy2arr4259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4254[3] { - yym4261 := z.EncBinary() - _ = yym4261 + if yyq4259[3] { + yym4266 := z.EncBinary() + _ = yym4266 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -53060,19 +53101,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4254[3] { + if yyq4259[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4262 := z.EncBinary() - _ = yym4262 + yym4267 := z.EncBinary() + _ = yym4267 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4254 || yy2arr4254 { + if yyr4259 || yy2arr4259 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53085,25 +53126,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4263 := z.DecBinary() - _ = yym4263 + yym4268 := z.DecBinary() + _ = yym4268 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4264 := r.ContainerType() - if yyct4264 == codecSelferValueTypeMap1234 { - yyl4264 := r.ReadMapStart() - if yyl4264 == 0 { + yyct4269 := r.ContainerType() + if yyct4269 == codecSelferValueTypeMap1234 { + yyl4269 := r.ReadMapStart() + if yyl4269 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4264, d) + x.codecDecodeSelfFromMap(yyl4269, d) } - } else if yyct4264 == codecSelferValueTypeArray1234 { - yyl4264 := r.ReadArrayStart() - if yyl4264 == 0 { + } else if yyct4269 == codecSelferValueTypeArray1234 { + yyl4269 := r.ReadArrayStart() + if yyl4269 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4264, d) + x.codecDecodeSelfFromArray(yyl4269, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53115,12 +53156,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4265Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4265Slc - var yyhl4265 bool = l >= 0 - for yyj4265 := 0; ; yyj4265++ { - if yyhl4265 { - if yyj4265 >= l { + var yys4270Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4270Slc + var yyhl4270 bool = l >= 0 + for yyj4270 := 0; ; yyj4270++ { + if yyhl4270 { + if yyj4270 >= l { break } } else { @@ -53129,10 +53170,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4265Slc = r.DecodeBytes(yys4265Slc, true, true) - yys4265 := string(yys4265Slc) + yys4270Slc = r.DecodeBytes(yys4270Slc, true, true) + yys4270 := string(yys4270Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4265 { + switch yys4270 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -53158,9 +53199,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4265) - } // end switch yys4265 - } // end for yyj4265 + z.DecStructFieldNotFound(-1, yys4270) + } // end switch yys4270 + } // end for yyj4270 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53168,16 +53209,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4270 int - var yyb4270 bool - var yyhl4270 bool = l >= 0 - yyj4270++ - if yyhl4270 { - yyb4270 = yyj4270 > l + var yyj4275 int + var yyb4275 bool + var yyhl4275 bool = l >= 0 + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4270 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4270 { + if yyb4275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53187,13 +53228,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4270++ - if yyhl4270 { - yyb4270 = yyj4270 > l + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4270 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4270 { + if yyb4275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53203,13 +53244,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4270++ - if yyhl4270 { - yyb4270 = yyj4270 > l + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4270 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4270 { + if yyb4275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53219,13 +53260,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4270++ - if yyhl4270 { - yyb4270 = yyj4270 > l + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4270 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4270 { + if yyb4275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53236,17 +53277,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4270++ - if yyhl4270 { - yyb4270 = yyj4270 > l + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4270 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4270 { + if yyb4275 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4270-1, "") + z.DecStructFieldNotFound(yyj4275-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53258,38 +53299,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4275 := z.EncBinary() - _ = yym4275 + yym4280 := z.EncBinary() + _ = yym4280 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4276 := !z.EncBinary() - yy2arr4276 := z.EncBasicHandle().StructToArray - var yyq4276 [4]bool - _, _, _ = yysep4276, yyq4276, yy2arr4276 - const yyr4276 bool = false - yyq4276[0] = x.Kind != "" - yyq4276[1] = x.APIVersion != "" - yyq4276[2] = true - yyq4276[3] = len(x.Conditions) != 0 - var yynn4276 int - if yyr4276 || yy2arr4276 { + yysep4281 := !z.EncBinary() + yy2arr4281 := z.EncBasicHandle().StructToArray + var yyq4281 [4]bool + _, _, _ = yysep4281, yyq4281, yy2arr4281 + const yyr4281 bool = false + yyq4281[0] = x.Kind != "" + yyq4281[1] = x.APIVersion != "" + yyq4281[2] = true + yyq4281[3] = len(x.Conditions) != 0 + var yynn4281 int + if yyr4281 || yy2arr4281 { r.EncodeArrayStart(4) } else { - yynn4276 = 0 - for _, b := range yyq4276 { + yynn4281 = 0 + for _, b := range yyq4281 { if b { - yynn4276++ + yynn4281++ } } - r.EncodeMapStart(yynn4276) - yynn4276 = 0 + r.EncodeMapStart(yynn4281) + yynn4281 = 0 } - if yyr4276 || yy2arr4276 { + if yyr4281 || yy2arr4281 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4276[0] { - yym4278 := z.EncBinary() - _ = yym4278 + if yyq4281[0] { + yym4283 := z.EncBinary() + _ = yym4283 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53298,23 +53339,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4276[0] { + if yyq4281[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4279 := z.EncBinary() - _ = yym4279 + yym4284 := z.EncBinary() + _ = yym4284 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4276 || yy2arr4276 { + if yyr4281 || yy2arr4281 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4276[1] { - yym4281 := z.EncBinary() - _ = yym4281 + if yyq4281[1] { + yym4286 := z.EncBinary() + _ = yym4286 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53323,43 +53364,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4276[1] { + if yyq4281[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4282 := z.EncBinary() - _ = yym4282 + yym4287 := z.EncBinary() + _ = yym4287 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4276 || yy2arr4276 { + if yyr4281 || yy2arr4281 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4276[2] { - yy4284 := &x.ObjectMeta - yy4284.CodecEncodeSelf(e) + if yyq4281[2] { + yy4289 := &x.ObjectMeta + yy4289.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4276[2] { + if yyq4281[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4285 := &x.ObjectMeta - yy4285.CodecEncodeSelf(e) + yy4290 := &x.ObjectMeta + yy4290.CodecEncodeSelf(e) } } - if yyr4276 || yy2arr4276 { + if yyr4281 || yy2arr4281 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4276[3] { + if yyq4281[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4287 := z.EncBinary() - _ = yym4287 + yym4292 := z.EncBinary() + _ = yym4292 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -53369,15 +53410,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4276[3] { + if yyq4281[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4288 := z.EncBinary() - _ = yym4288 + yym4293 := z.EncBinary() + _ = yym4293 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -53385,7 +53426,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4276 || yy2arr4276 { + if yyr4281 || yy2arr4281 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53398,25 +53439,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4289 := z.DecBinary() - _ = yym4289 + yym4294 := z.DecBinary() + _ = yym4294 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4290 := r.ContainerType() - if yyct4290 == codecSelferValueTypeMap1234 { - yyl4290 := r.ReadMapStart() - if yyl4290 == 0 { + yyct4295 := r.ContainerType() + if yyct4295 == codecSelferValueTypeMap1234 { + yyl4295 := r.ReadMapStart() + if yyl4295 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4290, d) + x.codecDecodeSelfFromMap(yyl4295, d) } - } else if yyct4290 == codecSelferValueTypeArray1234 { - yyl4290 := r.ReadArrayStart() - if yyl4290 == 0 { + } else if yyct4295 == codecSelferValueTypeArray1234 { + yyl4295 := r.ReadArrayStart() + if yyl4295 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4290, d) + x.codecDecodeSelfFromArray(yyl4295, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53428,12 +53469,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4291Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4291Slc - var yyhl4291 bool = l >= 0 - for yyj4291 := 0; ; yyj4291++ { - if yyhl4291 { - if yyj4291 >= l { + var yys4296Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4296Slc + var yyhl4296 bool = l >= 0 + for yyj4296 := 0; ; yyj4296++ { + if yyhl4296 { + if yyj4296 >= l { break } } else { @@ -53442,10 +53483,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4291Slc = r.DecodeBytes(yys4291Slc, true, true) - yys4291 := string(yys4291Slc) + yys4296Slc = r.DecodeBytes(yys4296Slc, true, true) + yys4296 := string(yys4296Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4291 { + switch yys4296 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53462,25 +53503,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4294 := &x.ObjectMeta - yyv4294.CodecDecodeSelf(d) + yyv4299 := &x.ObjectMeta + yyv4299.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4295 := &x.Conditions - yym4296 := z.DecBinary() - _ = yym4296 + yyv4300 := &x.Conditions + yym4301 := z.DecBinary() + _ = yym4301 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4295), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4300), d) } } default: - z.DecStructFieldNotFound(-1, yys4291) - } // end switch yys4291 - } // end for yyj4291 + z.DecStructFieldNotFound(-1, yys4296) + } // end switch yys4296 + } // end for yyj4296 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53488,16 +53529,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4297 int - var yyb4297 bool - var yyhl4297 bool = l >= 0 - yyj4297++ - if yyhl4297 { - yyb4297 = yyj4297 > l + var yyj4302 int + var yyb4302 bool + var yyhl4302 bool = l >= 0 + yyj4302++ + if yyhl4302 { + yyb4302 = yyj4302 > l } else { - yyb4297 = r.CheckBreak() + yyb4302 = r.CheckBreak() } - if yyb4297 { + if yyb4302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53507,13 +53548,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4297++ - if yyhl4297 { - yyb4297 = yyj4297 > l + yyj4302++ + if yyhl4302 { + yyb4302 = yyj4302 > l } else { - yyb4297 = r.CheckBreak() + yyb4302 = r.CheckBreak() } - if yyb4297 { + if yyb4302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53523,13 +53564,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4297++ - if yyhl4297 { - yyb4297 = yyj4297 > l + yyj4302++ + if yyhl4302 { + yyb4302 = yyj4302 > l } else { - yyb4297 = r.CheckBreak() + yyb4302 = r.CheckBreak() } - if yyb4297 { + if yyb4302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53537,16 +53578,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4300 := &x.ObjectMeta - yyv4300.CodecDecodeSelf(d) + yyv4305 := &x.ObjectMeta + yyv4305.CodecDecodeSelf(d) } - yyj4297++ - if yyhl4297 { - yyb4297 = yyj4297 > l + yyj4302++ + if yyhl4302 { + yyb4302 = yyj4302 > l } else { - yyb4297 = r.CheckBreak() + yyb4302 = r.CheckBreak() } - if yyb4297 { + if yyb4302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53554,26 +53595,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4301 := &x.Conditions - yym4302 := z.DecBinary() - _ = yym4302 + yyv4306 := &x.Conditions + yym4307 := z.DecBinary() + _ = yym4307 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4301), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4306), d) } } for { - yyj4297++ - if yyhl4297 { - yyb4297 = yyj4297 > l + yyj4302++ + if yyhl4302 { + yyb4302 = yyj4302 > l } else { - yyb4297 = r.CheckBreak() + yyb4302 = r.CheckBreak() } - if yyb4297 { + if yyb4302 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4297-1, "") + z.DecStructFieldNotFound(yyj4302-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53585,37 +53626,37 @@ func (x *ComponentStatusList) 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.Kind != "" - yyq4304[1] = x.APIVersion != "" - yyq4304[2] = true - 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.Kind != "" + yyq4309[1] = x.APIVersion != "" + yyq4309[2] = true + var yynn4309 int + if yyr4309 || yy2arr4309 { r.EncodeArrayStart(4) } else { - yynn4304 = 1 - for _, b := range yyq4304 { + yynn4309 = 1 + 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.Kind)) @@ -53624,23 +53665,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4304[0] { + if yyq4309[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4307 := z.EncBinary() - _ = yym4307 + yym4312 := z.EncBinary() + _ = yym4312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - 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.APIVersion)) @@ -53649,54 +53690,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4304[1] { + if yyq4309[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4310 := z.EncBinary() - _ = yym4310 + yym4315 := z.EncBinary() + _ = yym4315 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4304 || yy2arr4304 { + if yyr4309 || yy2arr4309 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4304[2] { - yy4312 := &x.ListMeta - yym4313 := z.EncBinary() - _ = yym4313 + if yyq4309[2] { + yy4317 := &x.ListMeta + yym4318 := z.EncBinary() + _ = yym4318 if false { - } else if z.HasExtensions() && z.EncExt(yy4312) { + } else if z.HasExtensions() && z.EncExt(yy4317) { } else { - z.EncFallback(yy4312) + z.EncFallback(yy4317) } } else { r.EncodeNil() } } else { - if yyq4304[2] { + if yyq4309[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4314 := &x.ListMeta - yym4315 := z.EncBinary() - _ = yym4315 + yy4319 := &x.ListMeta + yym4320 := z.EncBinary() + _ = yym4320 if false { - } else if z.HasExtensions() && z.EncExt(yy4314) { + } else if z.HasExtensions() && z.EncExt(yy4319) { } else { - z.EncFallback(yy4314) + z.EncFallback(yy4319) } } } - if yyr4304 || yy2arr4304 { + if yyr4309 || yy2arr4309 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4317 := z.EncBinary() - _ = yym4317 + yym4322 := z.EncBinary() + _ = yym4322 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -53709,15 +53750,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4318 := z.EncBinary() - _ = yym4318 + yym4323 := z.EncBinary() + _ = yym4323 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4304 || yy2arr4304 { + if yyr4309 || yy2arr4309 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53730,25 +53771,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4319 := z.DecBinary() - _ = yym4319 + yym4324 := z.DecBinary() + _ = yym4324 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4320 := r.ContainerType() - if yyct4320 == codecSelferValueTypeMap1234 { - yyl4320 := r.ReadMapStart() - if yyl4320 == 0 { + yyct4325 := r.ContainerType() + if yyct4325 == codecSelferValueTypeMap1234 { + yyl4325 := r.ReadMapStart() + if yyl4325 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4320, d) + x.codecDecodeSelfFromMap(yyl4325, d) } - } else if yyct4320 == codecSelferValueTypeArray1234 { - yyl4320 := r.ReadArrayStart() - if yyl4320 == 0 { + } else if yyct4325 == codecSelferValueTypeArray1234 { + yyl4325 := r.ReadArrayStart() + if yyl4325 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4320, d) + x.codecDecodeSelfFromArray(yyl4325, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53760,12 +53801,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4321Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4321Slc - var yyhl4321 bool = l >= 0 - for yyj4321 := 0; ; yyj4321++ { - if yyhl4321 { - if yyj4321 >= l { + var yys4326Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4326Slc + var yyhl4326 bool = l >= 0 + for yyj4326 := 0; ; yyj4326++ { + if yyhl4326 { + if yyj4326 >= l { break } } else { @@ -53774,10 +53815,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4321Slc = r.DecodeBytes(yys4321Slc, true, true) - yys4321 := string(yys4321Slc) + yys4326Slc = r.DecodeBytes(yys4326Slc, true, true) + yys4326 := string(yys4326Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4321 { + switch yys4326 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53794,31 +53835,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4324 := &x.ListMeta - yym4325 := z.DecBinary() - _ = yym4325 + yyv4329 := &x.ListMeta + yym4330 := z.DecBinary() + _ = yym4330 if false { - } else if z.HasExtensions() && z.DecExt(yyv4324) { + } else if z.HasExtensions() && z.DecExt(yyv4329) { } else { - z.DecFallback(yyv4324, false) + z.DecFallback(yyv4329, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4326 := &x.Items - yym4327 := z.DecBinary() - _ = yym4327 + yyv4331 := &x.Items + yym4332 := z.DecBinary() + _ = yym4332 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4326), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4331), d) } } default: - z.DecStructFieldNotFound(-1, yys4321) - } // end switch yys4321 - } // end for yyj4321 + z.DecStructFieldNotFound(-1, yys4326) + } // end switch yys4326 + } // end for yyj4326 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53826,16 +53867,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4328 int - var yyb4328 bool - var yyhl4328 bool = l >= 0 - yyj4328++ - if yyhl4328 { - yyb4328 = yyj4328 > l + var yyj4333 int + var yyb4333 bool + var yyhl4333 bool = l >= 0 + yyj4333++ + if yyhl4333 { + yyb4333 = yyj4333 > l } else { - yyb4328 = r.CheckBreak() + yyb4333 = r.CheckBreak() } - if yyb4328 { + if yyb4333 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53845,13 +53886,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4328++ - if yyhl4328 { - yyb4328 = yyj4328 > l + yyj4333++ + if yyhl4333 { + yyb4333 = yyj4333 > l } else { - yyb4328 = r.CheckBreak() + yyb4333 = r.CheckBreak() } - if yyb4328 { + if yyb4333 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53861,13 +53902,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4328++ - if yyhl4328 { - yyb4328 = yyj4328 > l + yyj4333++ + if yyhl4333 { + yyb4333 = yyj4333 > l } else { - yyb4328 = r.CheckBreak() + yyb4333 = r.CheckBreak() } - if yyb4328 { + if yyb4333 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53875,22 +53916,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4331 := &x.ListMeta - yym4332 := z.DecBinary() - _ = yym4332 + yyv4336 := &x.ListMeta + yym4337 := z.DecBinary() + _ = yym4337 if false { - } else if z.HasExtensions() && z.DecExt(yyv4331) { + } else if z.HasExtensions() && z.DecExt(yyv4336) { } else { - z.DecFallback(yyv4331, false) + z.DecFallback(yyv4336, false) } } - yyj4328++ - if yyhl4328 { - yyb4328 = yyj4328 > l + yyj4333++ + if yyhl4333 { + yyb4333 = yyj4333 > l } else { - yyb4328 = r.CheckBreak() + yyb4333 = r.CheckBreak() } - if yyb4328 { + if yyb4333 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53898,26 +53939,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4333 := &x.Items - yym4334 := z.DecBinary() - _ = yym4334 + yyv4338 := &x.Items + yym4339 := z.DecBinary() + _ = yym4339 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4333), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4338), d) } } for { - yyj4328++ - if yyhl4328 { - yyb4328 = yyj4328 > l + yyj4333++ + if yyhl4333 { + yyb4333 = yyj4333 > l } else { - yyb4328 = r.CheckBreak() + yyb4333 = r.CheckBreak() } - if yyb4328 { + if yyb4333 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4328-1, "") + z.DecStructFieldNotFound(yyj4333-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53929,38 +53970,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4335 := z.EncBinary() - _ = yym4335 + yym4340 := z.EncBinary() + _ = yym4340 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4336 := !z.EncBinary() - yy2arr4336 := z.EncBasicHandle().StructToArray - var yyq4336 [6]bool - _, _, _ = yysep4336, yyq4336, yy2arr4336 - const yyr4336 bool = false - yyq4336[0] = x.Capabilities != nil - yyq4336[1] = x.Privileged != nil - yyq4336[2] = x.SELinuxOptions != nil - yyq4336[3] = x.RunAsUser != nil - yyq4336[4] = x.RunAsNonRoot != nil - yyq4336[5] = x.ReadOnlyRootFilesystem != nil - var yynn4336 int - if yyr4336 || yy2arr4336 { + yysep4341 := !z.EncBinary() + yy2arr4341 := z.EncBasicHandle().StructToArray + var yyq4341 [6]bool + _, _, _ = yysep4341, yyq4341, yy2arr4341 + const yyr4341 bool = false + yyq4341[0] = x.Capabilities != nil + yyq4341[1] = x.Privileged != nil + yyq4341[2] = x.SELinuxOptions != nil + yyq4341[3] = x.RunAsUser != nil + yyq4341[4] = x.RunAsNonRoot != nil + yyq4341[5] = x.ReadOnlyRootFilesystem != nil + var yynn4341 int + if yyr4341 || yy2arr4341 { r.EncodeArrayStart(6) } else { - yynn4336 = 0 - for _, b := range yyq4336 { + yynn4341 = 0 + for _, b := range yyq4341 { if b { - yynn4336++ + yynn4341++ } } - r.EncodeMapStart(yynn4336) - yynn4336 = 0 + r.EncodeMapStart(yynn4341) + yynn4341 = 0 } - if yyr4336 || yy2arr4336 { + if yyr4341 || yy2arr4341 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4336[0] { + if yyq4341[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -53970,7 +54011,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4336[0] { + if yyq4341[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53981,44 +54022,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4336 || yy2arr4336 { + if yyr4341 || yy2arr4341 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4336[1] { + if yyq4341[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4339 := *x.Privileged - yym4340 := z.EncBinary() - _ = yym4340 + yy4344 := *x.Privileged + yym4345 := z.EncBinary() + _ = yym4345 if false { } else { - r.EncodeBool(bool(yy4339)) + r.EncodeBool(bool(yy4344)) } } } else { r.EncodeNil() } } else { - if yyq4336[1] { + if yyq4341[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4341 := *x.Privileged - yym4342 := z.EncBinary() - _ = yym4342 + yy4346 := *x.Privileged + yym4347 := z.EncBinary() + _ = yym4347 if false { } else { - r.EncodeBool(bool(yy4341)) + r.EncodeBool(bool(yy4346)) } } } } - if yyr4336 || yy2arr4336 { + if yyr4341 || yy2arr4341 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4336[2] { + if yyq4341[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -54028,7 +54069,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4336[2] { + if yyq4341[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54039,112 +54080,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4336 || yy2arr4336 { + if yyr4341 || yy2arr4341 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4336[3] { + if yyq4341[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4345 := *x.RunAsUser - yym4346 := z.EncBinary() - _ = yym4346 + yy4350 := *x.RunAsUser + yym4351 := z.EncBinary() + _ = yym4351 if false { } else { - r.EncodeInt(int64(yy4345)) + r.EncodeInt(int64(yy4350)) } } } else { r.EncodeNil() } } else { - if yyq4336[3] { + if yyq4341[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4347 := *x.RunAsUser - yym4348 := z.EncBinary() - _ = yym4348 + yy4352 := *x.RunAsUser + yym4353 := z.EncBinary() + _ = yym4353 if false { } else { - r.EncodeInt(int64(yy4347)) + r.EncodeInt(int64(yy4352)) } } } } - if yyr4336 || yy2arr4336 { + if yyr4341 || yy2arr4341 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4336[4] { + if yyq4341[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4350 := *x.RunAsNonRoot - yym4351 := z.EncBinary() - _ = yym4351 + yy4355 := *x.RunAsNonRoot + yym4356 := z.EncBinary() + _ = yym4356 if false { } else { - r.EncodeBool(bool(yy4350)) + r.EncodeBool(bool(yy4355)) } } } else { r.EncodeNil() } } else { - if yyq4336[4] { + if yyq4341[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4352 := *x.RunAsNonRoot - yym4353 := z.EncBinary() - _ = yym4353 + yy4357 := *x.RunAsNonRoot + yym4358 := z.EncBinary() + _ = yym4358 if false { } else { - r.EncodeBool(bool(yy4352)) + r.EncodeBool(bool(yy4357)) } } } } - if yyr4336 || yy2arr4336 { + if yyr4341 || yy2arr4341 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4336[5] { + if yyq4341[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4355 := *x.ReadOnlyRootFilesystem - yym4356 := z.EncBinary() - _ = yym4356 + yy4360 := *x.ReadOnlyRootFilesystem + yym4361 := z.EncBinary() + _ = yym4361 if false { } else { - r.EncodeBool(bool(yy4355)) + r.EncodeBool(bool(yy4360)) } } } else { r.EncodeNil() } } else { - if yyq4336[5] { + if yyq4341[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4357 := *x.ReadOnlyRootFilesystem - yym4358 := z.EncBinary() - _ = yym4358 + yy4362 := *x.ReadOnlyRootFilesystem + yym4363 := z.EncBinary() + _ = yym4363 if false { } else { - r.EncodeBool(bool(yy4357)) + r.EncodeBool(bool(yy4362)) } } } } - if yyr4336 || yy2arr4336 { + if yyr4341 || yy2arr4341 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54157,25 +54198,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4359 := z.DecBinary() - _ = yym4359 + yym4364 := z.DecBinary() + _ = yym4364 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4360 := r.ContainerType() - if yyct4360 == codecSelferValueTypeMap1234 { - yyl4360 := r.ReadMapStart() - if yyl4360 == 0 { + yyct4365 := r.ContainerType() + if yyct4365 == codecSelferValueTypeMap1234 { + yyl4365 := r.ReadMapStart() + if yyl4365 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4360, d) + x.codecDecodeSelfFromMap(yyl4365, d) } - } else if yyct4360 == codecSelferValueTypeArray1234 { - yyl4360 := r.ReadArrayStart() - if yyl4360 == 0 { + } else if yyct4365 == codecSelferValueTypeArray1234 { + yyl4365 := r.ReadArrayStart() + if yyl4365 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4360, d) + x.codecDecodeSelfFromArray(yyl4365, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54187,12 +54228,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4361Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4361Slc - var yyhl4361 bool = l >= 0 - for yyj4361 := 0; ; yyj4361++ { - if yyhl4361 { - if yyj4361 >= l { + var yys4366Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4366Slc + var yyhl4366 bool = l >= 0 + for yyj4366 := 0; ; yyj4366++ { + if yyhl4366 { + if yyj4366 >= l { break } } else { @@ -54201,10 +54242,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4361Slc = r.DecodeBytes(yys4361Slc, true, true) - yys4361 := string(yys4361Slc) + yys4366Slc = r.DecodeBytes(yys4366Slc, true, true) + yys4366 := string(yys4366Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4361 { + switch yys4366 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -54225,8 +54266,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4364 := z.DecBinary() - _ = yym4364 + yym4369 := z.DecBinary() + _ = yym4369 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -54252,8 +54293,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4367 := z.DecBinary() - _ = yym4367 + yym4372 := z.DecBinary() + _ = yym4372 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -54268,8 +54309,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4369 := z.DecBinary() - _ = yym4369 + yym4374 := z.DecBinary() + _ = yym4374 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -54284,17 +54325,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4371 := z.DecBinary() - _ = yym4371 + yym4376 := z.DecBinary() + _ = yym4376 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4361) - } // end switch yys4361 - } // end for yyj4361 + z.DecStructFieldNotFound(-1, yys4366) + } // end switch yys4366 + } // end for yyj4366 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54302,16 +54343,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4372 int - var yyb4372 bool - var yyhl4372 bool = l >= 0 - yyj4372++ - if yyhl4372 { - yyb4372 = yyj4372 > l + var yyj4377 int + var yyb4377 bool + var yyhl4377 bool = l >= 0 + yyj4377++ + if yyhl4377 { + yyb4377 = yyj4377 > l } else { - yyb4372 = r.CheckBreak() + yyb4377 = r.CheckBreak() } - if yyb4372 { + if yyb4377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54326,13 +54367,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4372++ - if yyhl4372 { - yyb4372 = yyj4372 > l + yyj4377++ + if yyhl4377 { + yyb4377 = yyj4377 > l } else { - yyb4372 = r.CheckBreak() + yyb4377 = r.CheckBreak() } - if yyb4372 { + if yyb4377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54345,20 +54386,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4375 := z.DecBinary() - _ = yym4375 + yym4380 := z.DecBinary() + _ = yym4380 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4372++ - if yyhl4372 { - yyb4372 = yyj4372 > l + yyj4377++ + if yyhl4377 { + yyb4377 = yyj4377 > l } else { - yyb4372 = r.CheckBreak() + yyb4377 = r.CheckBreak() } - if yyb4372 { + if yyb4377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54373,13 +54414,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4372++ - if yyhl4372 { - yyb4372 = yyj4372 > l + yyj4377++ + if yyhl4377 { + yyb4377 = yyj4377 > l } else { - yyb4372 = r.CheckBreak() + yyb4377 = r.CheckBreak() } - if yyb4372 { + if yyb4377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54392,20 +54433,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4378 := z.DecBinary() - _ = yym4378 + yym4383 := z.DecBinary() + _ = yym4383 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4372++ - if yyhl4372 { - yyb4372 = yyj4372 > l + yyj4377++ + if yyhl4377 { + yyb4377 = yyj4377 > l } else { - yyb4372 = r.CheckBreak() + yyb4377 = r.CheckBreak() } - if yyb4372 { + if yyb4377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54418,20 +54459,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4380 := z.DecBinary() - _ = yym4380 + yym4385 := z.DecBinary() + _ = yym4385 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4372++ - if yyhl4372 { - yyb4372 = yyj4372 > l + yyj4377++ + if yyhl4377 { + yyb4377 = yyj4377 > l } else { - yyb4372 = r.CheckBreak() + yyb4377 = r.CheckBreak() } - if yyb4372 { + if yyb4377 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54444,25 +54485,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4382 := z.DecBinary() - _ = yym4382 + yym4387 := z.DecBinary() + _ = yym4387 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4372++ - if yyhl4372 { - yyb4372 = yyj4372 > l + yyj4377++ + if yyhl4377 { + yyb4377 = yyj4377 > l } else { - yyb4372 = r.CheckBreak() + yyb4377 = r.CheckBreak() } - if yyb4372 { + if yyb4377 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4372-1, "") + z.DecStructFieldNotFound(yyj4377-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54474,38 +54515,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4383 := z.EncBinary() - _ = yym4383 + yym4388 := z.EncBinary() + _ = yym4388 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4384 := !z.EncBinary() - yy2arr4384 := z.EncBasicHandle().StructToArray - var yyq4384 [4]bool - _, _, _ = yysep4384, yyq4384, yy2arr4384 - const yyr4384 bool = false - yyq4384[0] = x.User != "" - yyq4384[1] = x.Role != "" - yyq4384[2] = x.Type != "" - yyq4384[3] = x.Level != "" - var yynn4384 int - if yyr4384 || yy2arr4384 { + yysep4389 := !z.EncBinary() + yy2arr4389 := z.EncBasicHandle().StructToArray + var yyq4389 [4]bool + _, _, _ = yysep4389, yyq4389, yy2arr4389 + const yyr4389 bool = false + yyq4389[0] = x.User != "" + yyq4389[1] = x.Role != "" + yyq4389[2] = x.Type != "" + yyq4389[3] = x.Level != "" + var yynn4389 int + if yyr4389 || yy2arr4389 { r.EncodeArrayStart(4) } else { - yynn4384 = 0 - for _, b := range yyq4384 { + yynn4389 = 0 + for _, b := range yyq4389 { if b { - yynn4384++ + yynn4389++ } } - r.EncodeMapStart(yynn4384) - yynn4384 = 0 + r.EncodeMapStart(yynn4389) + yynn4389 = 0 } - if yyr4384 || yy2arr4384 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4384[0] { - yym4386 := z.EncBinary() - _ = yym4386 + if yyq4389[0] { + yym4391 := z.EncBinary() + _ = yym4391 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -54514,23 +54555,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4384[0] { + if yyq4389[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4387 := z.EncBinary() - _ = yym4387 + yym4392 := z.EncBinary() + _ = yym4392 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4384 || yy2arr4384 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4384[1] { - yym4389 := z.EncBinary() - _ = yym4389 + if yyq4389[1] { + yym4394 := z.EncBinary() + _ = yym4394 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -54539,23 +54580,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4384[1] { + if yyq4389[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4390 := z.EncBinary() - _ = yym4390 + yym4395 := z.EncBinary() + _ = yym4395 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4384 || yy2arr4384 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4384[2] { - yym4392 := z.EncBinary() - _ = yym4392 + if yyq4389[2] { + yym4397 := z.EncBinary() + _ = yym4397 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -54564,23 +54605,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4384[2] { + if yyq4389[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4393 := z.EncBinary() - _ = yym4393 + yym4398 := z.EncBinary() + _ = yym4398 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4384 || yy2arr4384 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4384[3] { - yym4395 := z.EncBinary() - _ = yym4395 + if yyq4389[3] { + yym4400 := z.EncBinary() + _ = yym4400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -54589,19 +54630,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4384[3] { + if yyq4389[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4396 := z.EncBinary() - _ = yym4396 + yym4401 := z.EncBinary() + _ = yym4401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4384 || yy2arr4384 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54614,25 +54655,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4397 := z.DecBinary() - _ = yym4397 + yym4402 := z.DecBinary() + _ = yym4402 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4398 := r.ContainerType() - if yyct4398 == codecSelferValueTypeMap1234 { - yyl4398 := r.ReadMapStart() - if yyl4398 == 0 { + yyct4403 := r.ContainerType() + if yyct4403 == codecSelferValueTypeMap1234 { + yyl4403 := r.ReadMapStart() + if yyl4403 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4398, d) + x.codecDecodeSelfFromMap(yyl4403, d) } - } else if yyct4398 == codecSelferValueTypeArray1234 { - yyl4398 := r.ReadArrayStart() - if yyl4398 == 0 { + } else if yyct4403 == codecSelferValueTypeArray1234 { + yyl4403 := r.ReadArrayStart() + if yyl4403 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4398, d) + x.codecDecodeSelfFromArray(yyl4403, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54644,12 +54685,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4399Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4399Slc - var yyhl4399 bool = l >= 0 - for yyj4399 := 0; ; yyj4399++ { - if yyhl4399 { - if yyj4399 >= l { + var yys4404Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4404Slc + var yyhl4404 bool = l >= 0 + for yyj4404 := 0; ; yyj4404++ { + if yyhl4404 { + if yyj4404 >= l { break } } else { @@ -54658,10 +54699,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4399Slc = r.DecodeBytes(yys4399Slc, true, true) - yys4399 := string(yys4399Slc) + yys4404Slc = r.DecodeBytes(yys4404Slc, true, true) + yys4404 := string(yys4404Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4399 { + switch yys4404 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -54687,9 +54728,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4399) - } // end switch yys4399 - } // end for yyj4399 + z.DecStructFieldNotFound(-1, yys4404) + } // end switch yys4404 + } // end for yyj4404 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54697,16 +54738,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4404 int - var yyb4404 bool - var yyhl4404 bool = l >= 0 - yyj4404++ - if yyhl4404 { - yyb4404 = yyj4404 > l + var yyj4409 int + var yyb4409 bool + var yyhl4409 bool = l >= 0 + yyj4409++ + if yyhl4409 { + yyb4409 = yyj4409 > l } else { - yyb4404 = r.CheckBreak() + yyb4409 = r.CheckBreak() } - if yyb4404 { + if yyb4409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54716,13 +54757,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4404++ - if yyhl4404 { - yyb4404 = yyj4404 > l + yyj4409++ + if yyhl4409 { + yyb4409 = yyj4409 > l } else { - yyb4404 = r.CheckBreak() + yyb4409 = r.CheckBreak() } - if yyb4404 { + if yyb4409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54732,13 +54773,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4404++ - if yyhl4404 { - yyb4404 = yyj4404 > l + yyj4409++ + if yyhl4409 { + yyb4409 = yyj4409 > l } else { - yyb4404 = r.CheckBreak() + yyb4409 = r.CheckBreak() } - if yyb4404 { + if yyb4409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54748,13 +54789,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4404++ - if yyhl4404 { - yyb4404 = yyj4404 > l + yyj4409++ + if yyhl4409 { + yyb4409 = yyj4409 > l } else { - yyb4404 = r.CheckBreak() + yyb4409 = r.CheckBreak() } - if yyb4404 { + if yyb4409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54765,17 +54806,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4404++ - if yyhl4404 { - yyb4404 = yyj4404 > l + yyj4409++ + if yyhl4409 { + yyb4409 = yyj4409 > l } else { - yyb4404 = r.CheckBreak() + yyb4409 = r.CheckBreak() } - if yyb4404 { + if yyb4409 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4404-1, "") + z.DecStructFieldNotFound(yyj4409-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54787,37 +54828,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4409 := z.EncBinary() - _ = yym4409 + yym4414 := z.EncBinary() + _ = yym4414 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4410 := !z.EncBinary() - yy2arr4410 := z.EncBasicHandle().StructToArray - var yyq4410 [5]bool - _, _, _ = yysep4410, yyq4410, yy2arr4410 - const yyr4410 bool = false - yyq4410[0] = x.Kind != "" - yyq4410[1] = x.APIVersion != "" - yyq4410[2] = true - var yynn4410 int - if yyr4410 || yy2arr4410 { + yysep4415 := !z.EncBinary() + yy2arr4415 := z.EncBasicHandle().StructToArray + var yyq4415 [5]bool + _, _, _ = yysep4415, yyq4415, yy2arr4415 + const yyr4415 bool = false + yyq4415[0] = x.Kind != "" + yyq4415[1] = x.APIVersion != "" + yyq4415[2] = true + var yynn4415 int + if yyr4415 || yy2arr4415 { r.EncodeArrayStart(5) } else { - yynn4410 = 2 - for _, b := range yyq4410 { + yynn4415 = 2 + for _, b := range yyq4415 { if b { - yynn4410++ + yynn4415++ } } - r.EncodeMapStart(yynn4410) - yynn4410 = 0 + r.EncodeMapStart(yynn4415) + yynn4415 = 0 } - if yyr4410 || yy2arr4410 { + if yyr4415 || yy2arr4415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4410[0] { - yym4412 := z.EncBinary() - _ = yym4412 + if yyq4415[0] { + yym4417 := z.EncBinary() + _ = yym4417 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54826,23 +54867,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4410[0] { + if yyq4415[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4413 := z.EncBinary() - _ = yym4413 + yym4418 := z.EncBinary() + _ = yym4418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4410 || yy2arr4410 { + if yyr4415 || yy2arr4415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4410[1] { - yym4415 := z.EncBinary() - _ = yym4415 + if yyq4415[1] { + yym4420 := z.EncBinary() + _ = yym4420 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54851,39 +54892,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4410[1] { + if yyq4415[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4416 := z.EncBinary() - _ = yym4416 + yym4421 := z.EncBinary() + _ = yym4421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4410 || yy2arr4410 { + if yyr4415 || yy2arr4415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4410[2] { - yy4418 := &x.ObjectMeta - yy4418.CodecEncodeSelf(e) + if yyq4415[2] { + yy4423 := &x.ObjectMeta + yy4423.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4410[2] { + if yyq4415[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4419 := &x.ObjectMeta - yy4419.CodecEncodeSelf(e) + yy4424 := &x.ObjectMeta + yy4424.CodecEncodeSelf(e) } } - if yyr4410 || yy2arr4410 { + if yyr4415 || yy2arr4415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4421 := z.EncBinary() - _ = yym4421 + yym4426 := z.EncBinary() + _ = yym4426 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -54892,20 +54933,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4422 := z.EncBinary() - _ = yym4422 + yym4427 := z.EncBinary() + _ = yym4427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4410 || yy2arr4410 { + if yyr4415 || yy2arr4415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4424 := z.EncBinary() - _ = yym4424 + yym4429 := z.EncBinary() + _ = yym4429 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -54918,15 +54959,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4425 := z.EncBinary() - _ = yym4425 + yym4430 := z.EncBinary() + _ = yym4430 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4410 || yy2arr4410 { + if yyr4415 || yy2arr4415 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54939,25 +54980,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4426 := z.DecBinary() - _ = yym4426 + yym4431 := z.DecBinary() + _ = yym4431 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4427 := r.ContainerType() - if yyct4427 == codecSelferValueTypeMap1234 { - yyl4427 := r.ReadMapStart() - if yyl4427 == 0 { + yyct4432 := r.ContainerType() + if yyct4432 == codecSelferValueTypeMap1234 { + yyl4432 := r.ReadMapStart() + if yyl4432 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4427, d) + x.codecDecodeSelfFromMap(yyl4432, d) } - } else if yyct4427 == codecSelferValueTypeArray1234 { - yyl4427 := r.ReadArrayStart() - if yyl4427 == 0 { + } else if yyct4432 == codecSelferValueTypeArray1234 { + yyl4432 := r.ReadArrayStart() + if yyl4432 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4427, d) + x.codecDecodeSelfFromArray(yyl4432, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54969,12 +55010,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4428Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4428Slc - var yyhl4428 bool = l >= 0 - for yyj4428 := 0; ; yyj4428++ { - if yyhl4428 { - if yyj4428 >= l { + var yys4433Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4433Slc + var yyhl4433 bool = l >= 0 + for yyj4433 := 0; ; yyj4433++ { + if yyhl4433 { + if yyj4433 >= l { break } } else { @@ -54983,10 +55024,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4428Slc = r.DecodeBytes(yys4428Slc, true, true) - yys4428 := string(yys4428Slc) + yys4433Slc = r.DecodeBytes(yys4433Slc, true, true) + yys4433 := string(yys4433Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4428 { + switch yys4433 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -55003,8 +55044,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4431 := &x.ObjectMeta - yyv4431.CodecDecodeSelf(d) + yyv4436 := &x.ObjectMeta + yyv4436.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -55016,18 +55057,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4433 := &x.Data - yym4434 := z.DecBinary() - _ = yym4434 + yyv4438 := &x.Data + yym4439 := z.DecBinary() + _ = yym4439 if false { } else { - *yyv4433 = r.DecodeBytes(*(*[]byte)(yyv4433), false, false) + *yyv4438 = r.DecodeBytes(*(*[]byte)(yyv4438), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4428) - } // end switch yys4428 - } // end for yyj4428 + z.DecStructFieldNotFound(-1, yys4433) + } // end switch yys4433 + } // end for yyj4433 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55035,16 +55076,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4435 int - var yyb4435 bool - var yyhl4435 bool = l >= 0 - yyj4435++ - if yyhl4435 { - yyb4435 = yyj4435 > l + var yyj4440 int + var yyb4440 bool + var yyhl4440 bool = l >= 0 + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4435 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4435 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55054,13 +55095,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4435++ - if yyhl4435 { - yyb4435 = yyj4435 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4435 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4435 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55070,13 +55111,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4435++ - if yyhl4435 { - yyb4435 = yyj4435 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4435 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4435 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55084,16 +55125,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4438 := &x.ObjectMeta - yyv4438.CodecDecodeSelf(d) + yyv4443 := &x.ObjectMeta + yyv4443.CodecDecodeSelf(d) } - yyj4435++ - if yyhl4435 { - yyb4435 = yyj4435 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4435 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4435 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55103,13 +55144,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4435++ - if yyhl4435 { - yyb4435 = yyj4435 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4435 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4435 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55117,26 +55158,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4440 := &x.Data - yym4441 := z.DecBinary() - _ = yym4441 + yyv4445 := &x.Data + yym4446 := z.DecBinary() + _ = yym4446 if false { } else { - *yyv4440 = r.DecodeBytes(*(*[]byte)(yyv4440), false, false) + *yyv4445 = r.DecodeBytes(*(*[]byte)(yyv4445), false, false) } } for { - yyj4435++ - if yyhl4435 { - yyb4435 = yyj4435 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4435 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4435 { + if yyb4440 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4435-1, "") + z.DecStructFieldNotFound(yyj4440-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55146,10 +55187,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 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) } @@ -55159,83 +55200,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4444 := *v - yyh4444, yyl4444 := z.DecSliceHelperStart() - var yyc4444 bool - if yyl4444 == 0 { - if yyv4444 == nil { - yyv4444 = []OwnerReference{} - 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 = []OwnerReference{} + 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, 72) - if yyrt4444 { - if yyrl4444 <= cap(yyv4444) { - yyv4444 = yyv4444[:yyrl4444] + yyrg4449 := len(yyv4449) > 0 + yyv24449 := yyv4449 + yyrl4449, yyrt4449 = z.DecInferLen(yyl4449, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4449 { + if yyrl4449 <= cap(yyv4449) { + yyv4449 = yyv4449[:yyrl4449] } else { - yyv4444 = make([]OwnerReference, yyrl4444) + yyv4449 = make([]OwnerReference, yyrl4449) } } else { - yyv4444 = make([]OwnerReference, yyrl4444) + yyv4449 = make([]OwnerReference, 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] = OwnerReference{} + yyv4449[yyj4449] = OwnerReference{} } else { - yyv4445 := &yyv4444[yyj4444] - yyv4445.CodecDecodeSelf(d) + yyv4450 := &yyv4449[yyj4449] + yyv4450.CodecDecodeSelf(d) } } - if yyrt4444 { - for ; yyj4444 < yyl4444; yyj4444++ { - yyv4444 = append(yyv4444, OwnerReference{}) - yyh4444.ElemContainerState(yyj4444) - if r.TryDecodeAsNil() { - yyv4444[yyj4444] = OwnerReference{} + if yyrt4449 { + for ; yyj4449 < yyl4449; yyj4449++ { + yyv4449 = append(yyv4449, OwnerReference{}) + yyh4449.ElemContainerState(yyj4449) + if r.TryDecodeAsNil() { + yyv4449[yyj4449] = OwnerReference{} } 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, OwnerReference{}) // var yyz4444 OwnerReference - yyc4444 = true + if yyj4449 >= len(yyv4449) { + yyv4449 = append(yyv4449, OwnerReference{}) // var yyz4449 OwnerReference + yyc4449 = true } - yyh4444.ElemContainerState(yyj4444) - if yyj4444 < len(yyv4444) { + yyh4449.ElemContainerState(yyj4449) + if yyj4449 < len(yyv4449) { if r.TryDecodeAsNil() { - yyv4444[yyj4444] = OwnerReference{} + yyv4449[yyj4449] = OwnerReference{} } else { - yyv4447 := &yyv4444[yyj4444] - yyv4447.CodecDecodeSelf(d) + yyv4452 := &yyv4449[yyj4449] + yyv4452.CodecDecodeSelf(d) } } else { @@ -55243,17 +55284,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4444 < len(yyv4444) { - yyv4444 = yyv4444[:yyj4444] - yyc4444 = true - } else if yyj4444 == 0 && yyv4444 == nil { - yyv4444 = []OwnerReference{} - yyc4444 = true + if yyj4449 < len(yyv4449) { + yyv4449 = yyv4449[:yyj4449] + yyc4449 = true + } else if yyj4449 == 0 && yyv4449 == nil { + yyv4449 = []OwnerReference{} + yyc4449 = true } } - yyh4444.End() - if yyc4444 { - *v = yyv4444 + yyh4449.End() + if yyc4449 { + *v = yyv4449 } } @@ -55262,9 +55303,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4448 := range v { + for _, yyv4453 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4448.CodecEncodeSelf(e) + yyv4453.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55274,75 +55315,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4449 := *v - yyh4449, yyl4449 := z.DecSliceHelperStart() - var yyc4449 bool - if yyl4449 == 0 { - if yyv4449 == nil { - yyv4449 = []PersistentVolumeAccessMode{} - yyc4449 = true - } else if len(yyv4449) != 0 { - yyv4449 = yyv4449[:0] - yyc4449 = true + yyv4454 := *v + yyh4454, yyl4454 := z.DecSliceHelperStart() + var yyc4454 bool + if yyl4454 == 0 { + if yyv4454 == nil { + yyv4454 = []PersistentVolumeAccessMode{} + yyc4454 = true + } else if len(yyv4454) != 0 { + yyv4454 = yyv4454[:0] + yyc4454 = true } - } else if yyl4449 > 0 { - var yyrr4449, yyrl4449 int - var yyrt4449 bool - if yyl4449 > cap(yyv4449) { + } else if yyl4454 > 0 { + var yyrr4454, yyrl4454 int + var yyrt4454 bool + if yyl4454 > cap(yyv4454) { - yyrl4449, yyrt4449 = z.DecInferLen(yyl4449, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4449 { - if yyrl4449 <= cap(yyv4449) { - yyv4449 = yyv4449[:yyrl4449] + yyrl4454, yyrt4454 = z.DecInferLen(yyl4454, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4454 { + if yyrl4454 <= cap(yyv4454) { + yyv4454 = yyv4454[:yyrl4454] } else { - yyv4449 = make([]PersistentVolumeAccessMode, yyrl4449) + yyv4454 = make([]PersistentVolumeAccessMode, yyrl4454) } } else { - yyv4449 = make([]PersistentVolumeAccessMode, yyrl4449) + yyv4454 = make([]PersistentVolumeAccessMode, yyrl4454) } - yyc4449 = true - yyrr4449 = len(yyv4449) - } else if yyl4449 != len(yyv4449) { - yyv4449 = yyv4449[:yyl4449] - yyc4449 = true + yyc4454 = true + yyrr4454 = len(yyv4454) + } else if yyl4454 != len(yyv4454) { + yyv4454 = yyv4454[:yyl4454] + yyc4454 = true } - yyj4449 := 0 - for ; yyj4449 < yyrr4449; yyj4449++ { - yyh4449.ElemContainerState(yyj4449) + yyj4454 := 0 + for ; yyj4454 < yyrr4454; yyj4454++ { + yyh4454.ElemContainerState(yyj4454) if r.TryDecodeAsNil() { - yyv4449[yyj4449] = "" + yyv4454[yyj4454] = "" } else { - yyv4449[yyj4449] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4454[yyj4454] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4449 { - for ; yyj4449 < yyl4449; yyj4449++ { - yyv4449 = append(yyv4449, "") - yyh4449.ElemContainerState(yyj4449) + if yyrt4454 { + for ; yyj4454 < yyl4454; yyj4454++ { + yyv4454 = append(yyv4454, "") + yyh4454.ElemContainerState(yyj4454) if r.TryDecodeAsNil() { - yyv4449[yyj4449] = "" + yyv4454[yyj4454] = "" } else { - yyv4449[yyj4449] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4454[yyj4454] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4449 := 0 - for ; !r.CheckBreak(); yyj4449++ { + yyj4454 := 0 + for ; !r.CheckBreak(); yyj4454++ { - if yyj4449 >= len(yyv4449) { - yyv4449 = append(yyv4449, "") // var yyz4449 PersistentVolumeAccessMode - yyc4449 = true + if yyj4454 >= len(yyv4454) { + yyv4454 = append(yyv4454, "") // var yyz4454 PersistentVolumeAccessMode + yyc4454 = true } - yyh4449.ElemContainerState(yyj4449) - if yyj4449 < len(yyv4449) { + yyh4454.ElemContainerState(yyj4454) + if yyj4454 < len(yyv4454) { if r.TryDecodeAsNil() { - yyv4449[yyj4449] = "" + yyv4454[yyj4454] = "" } else { - yyv4449[yyj4449] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4454[yyj4454] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -55350,17 +55391,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4449 < len(yyv4449) { - yyv4449 = yyv4449[:yyj4449] - yyc4449 = true - } else if yyj4449 == 0 && yyv4449 == nil { - yyv4449 = []PersistentVolumeAccessMode{} - yyc4449 = true + if yyj4454 < len(yyv4454) { + yyv4454 = yyv4454[:yyj4454] + yyc4454 = true + } else if yyj4454 == 0 && yyv4454 == nil { + yyv4454 = []PersistentVolumeAccessMode{} + yyc4454 = true } } - yyh4449.End() - if yyc4449 { - *v = yyv4449 + yyh4454.End() + if yyc4454 { + *v = yyv4454 } } @@ -55369,10 +55410,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4453 := range v { + for _, yyv4458 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4454 := &yyv4453 - yy4454.CodecEncodeSelf(e) + yy4459 := &yyv4458 + yy4459.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55382,83 +55423,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4455 := *v - yyh4455, yyl4455 := z.DecSliceHelperStart() - var yyc4455 bool - if yyl4455 == 0 { - if yyv4455 == nil { - yyv4455 = []PersistentVolume{} - yyc4455 = true - } else if len(yyv4455) != 0 { - yyv4455 = yyv4455[:0] - yyc4455 = true + yyv4460 := *v + yyh4460, yyl4460 := z.DecSliceHelperStart() + var yyc4460 bool + if yyl4460 == 0 { + if yyv4460 == nil { + yyv4460 = []PersistentVolume{} + yyc4460 = true + } else if len(yyv4460) != 0 { + yyv4460 = yyv4460[:0] + yyc4460 = true } - } else if yyl4455 > 0 { - var yyrr4455, yyrl4455 int - var yyrt4455 bool - if yyl4455 > cap(yyv4455) { + } else if yyl4460 > 0 { + var yyrr4460, yyrl4460 int + var yyrt4460 bool + if yyl4460 > cap(yyv4460) { - yyrg4455 := len(yyv4455) > 0 - yyv24455 := yyv4455 - yyrl4455, yyrt4455 = z.DecInferLen(yyl4455, z.DecBasicHandle().MaxInitLen, 464) - if yyrt4455 { - if yyrl4455 <= cap(yyv4455) { - yyv4455 = yyv4455[:yyrl4455] + yyrg4460 := len(yyv4460) > 0 + yyv24460 := yyv4460 + yyrl4460, yyrt4460 = z.DecInferLen(yyl4460, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4460 { + if yyrl4460 <= cap(yyv4460) { + yyv4460 = yyv4460[:yyrl4460] } else { - yyv4455 = make([]PersistentVolume, yyrl4455) + yyv4460 = make([]PersistentVolume, yyrl4460) } } else { - yyv4455 = make([]PersistentVolume, yyrl4455) + yyv4460 = make([]PersistentVolume, yyrl4460) } - yyc4455 = true - yyrr4455 = len(yyv4455) - if yyrg4455 { - copy(yyv4455, yyv24455) + yyc4460 = true + yyrr4460 = len(yyv4460) + if yyrg4460 { + copy(yyv4460, yyv24460) } - } else if yyl4455 != len(yyv4455) { - yyv4455 = yyv4455[:yyl4455] - yyc4455 = true + } else if yyl4460 != len(yyv4460) { + yyv4460 = yyv4460[:yyl4460] + yyc4460 = true } - yyj4455 := 0 - for ; yyj4455 < yyrr4455; yyj4455++ { - yyh4455.ElemContainerState(yyj4455) + yyj4460 := 0 + for ; yyj4460 < yyrr4460; yyj4460++ { + yyh4460.ElemContainerState(yyj4460) if r.TryDecodeAsNil() { - yyv4455[yyj4455] = PersistentVolume{} + yyv4460[yyj4460] = PersistentVolume{} } else { - yyv4456 := &yyv4455[yyj4455] - yyv4456.CodecDecodeSelf(d) + yyv4461 := &yyv4460[yyj4460] + yyv4461.CodecDecodeSelf(d) } } - if yyrt4455 { - for ; yyj4455 < yyl4455; yyj4455++ { - yyv4455 = append(yyv4455, PersistentVolume{}) - yyh4455.ElemContainerState(yyj4455) + if yyrt4460 { + for ; yyj4460 < yyl4460; yyj4460++ { + yyv4460 = append(yyv4460, PersistentVolume{}) + yyh4460.ElemContainerState(yyj4460) if r.TryDecodeAsNil() { - yyv4455[yyj4455] = PersistentVolume{} + yyv4460[yyj4460] = PersistentVolume{} } else { - yyv4457 := &yyv4455[yyj4455] - yyv4457.CodecDecodeSelf(d) + yyv4462 := &yyv4460[yyj4460] + yyv4462.CodecDecodeSelf(d) } } } } else { - yyj4455 := 0 - for ; !r.CheckBreak(); yyj4455++ { + yyj4460 := 0 + for ; !r.CheckBreak(); yyj4460++ { - if yyj4455 >= len(yyv4455) { - yyv4455 = append(yyv4455, PersistentVolume{}) // var yyz4455 PersistentVolume - yyc4455 = true + if yyj4460 >= len(yyv4460) { + yyv4460 = append(yyv4460, PersistentVolume{}) // var yyz4460 PersistentVolume + yyc4460 = true } - yyh4455.ElemContainerState(yyj4455) - if yyj4455 < len(yyv4455) { + yyh4460.ElemContainerState(yyj4460) + if yyj4460 < len(yyv4460) { if r.TryDecodeAsNil() { - yyv4455[yyj4455] = PersistentVolume{} + yyv4460[yyj4460] = PersistentVolume{} } else { - yyv4458 := &yyv4455[yyj4455] - yyv4458.CodecDecodeSelf(d) + yyv4463 := &yyv4460[yyj4460] + yyv4463.CodecDecodeSelf(d) } } else { @@ -55466,17 +55507,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4455 < len(yyv4455) { - yyv4455 = yyv4455[:yyj4455] - yyc4455 = true - } else if yyj4455 == 0 && yyv4455 == nil { - yyv4455 = []PersistentVolume{} - yyc4455 = true + if yyj4460 < len(yyv4460) { + yyv4460 = yyv4460[:yyj4460] + yyc4460 = true + } else if yyj4460 == 0 && yyv4460 == nil { + yyv4460 = []PersistentVolume{} + yyc4460 = true } } - yyh4455.End() - if yyc4455 { - *v = yyv4455 + yyh4460.End() + if yyc4460 { + *v = yyv4460 } } @@ -55485,10 +55526,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4459 := range v { + for _, yyv4464 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4460 := &yyv4459 - yy4460.CodecEncodeSelf(e) + yy4465 := &yyv4464 + yy4465.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55498,83 +55539,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4461 := *v - yyh4461, yyl4461 := z.DecSliceHelperStart() - var yyc4461 bool - if yyl4461 == 0 { - if yyv4461 == nil { - yyv4461 = []PersistentVolumeClaim{} - yyc4461 = true - } else if len(yyv4461) != 0 { - yyv4461 = yyv4461[:0] - yyc4461 = true + yyv4466 := *v + yyh4466, yyl4466 := z.DecSliceHelperStart() + var yyc4466 bool + if yyl4466 == 0 { + if yyv4466 == nil { + yyv4466 = []PersistentVolumeClaim{} + yyc4466 = true + } else if len(yyv4466) != 0 { + yyv4466 = yyv4466[:0] + yyc4466 = true } - } else if yyl4461 > 0 { - var yyrr4461, yyrl4461 int - var yyrt4461 bool - if yyl4461 > cap(yyv4461) { + } else if yyl4466 > 0 { + var yyrr4466, yyrl4466 int + var yyrt4466 bool + if yyl4466 > cap(yyv4466) { - yyrg4461 := len(yyv4461) > 0 - yyv24461 := yyv4461 - yyrl4461, yyrt4461 = z.DecInferLen(yyl4461, z.DecBasicHandle().MaxInitLen, 352) - if yyrt4461 { - if yyrl4461 <= cap(yyv4461) { - yyv4461 = yyv4461[:yyrl4461] + yyrg4466 := len(yyv4466) > 0 + yyv24466 := yyv4466 + yyrl4466, yyrt4466 = z.DecInferLen(yyl4466, z.DecBasicHandle().MaxInitLen, 352) + if yyrt4466 { + if yyrl4466 <= cap(yyv4466) { + yyv4466 = yyv4466[:yyrl4466] } else { - yyv4461 = make([]PersistentVolumeClaim, yyrl4461) + yyv4466 = make([]PersistentVolumeClaim, yyrl4466) } } else { - yyv4461 = make([]PersistentVolumeClaim, yyrl4461) + yyv4466 = make([]PersistentVolumeClaim, yyrl4466) } - yyc4461 = true - yyrr4461 = len(yyv4461) - if yyrg4461 { - copy(yyv4461, yyv24461) + yyc4466 = true + yyrr4466 = len(yyv4466) + if yyrg4466 { + copy(yyv4466, yyv24466) } - } else if yyl4461 != len(yyv4461) { - yyv4461 = yyv4461[:yyl4461] - yyc4461 = true + } else if yyl4466 != len(yyv4466) { + yyv4466 = yyv4466[:yyl4466] + yyc4466 = true } - yyj4461 := 0 - for ; yyj4461 < yyrr4461; yyj4461++ { - yyh4461.ElemContainerState(yyj4461) + yyj4466 := 0 + for ; yyj4466 < yyrr4466; yyj4466++ { + yyh4466.ElemContainerState(yyj4466) if r.TryDecodeAsNil() { - yyv4461[yyj4461] = PersistentVolumeClaim{} + yyv4466[yyj4466] = PersistentVolumeClaim{} } else { - yyv4462 := &yyv4461[yyj4461] - yyv4462.CodecDecodeSelf(d) + yyv4467 := &yyv4466[yyj4466] + yyv4467.CodecDecodeSelf(d) } } - if yyrt4461 { - for ; yyj4461 < yyl4461; yyj4461++ { - yyv4461 = append(yyv4461, PersistentVolumeClaim{}) - yyh4461.ElemContainerState(yyj4461) + if yyrt4466 { + for ; yyj4466 < yyl4466; yyj4466++ { + yyv4466 = append(yyv4466, PersistentVolumeClaim{}) + yyh4466.ElemContainerState(yyj4466) if r.TryDecodeAsNil() { - yyv4461[yyj4461] = PersistentVolumeClaim{} + yyv4466[yyj4466] = PersistentVolumeClaim{} } else { - yyv4463 := &yyv4461[yyj4461] - yyv4463.CodecDecodeSelf(d) + yyv4468 := &yyv4466[yyj4466] + yyv4468.CodecDecodeSelf(d) } } } } else { - yyj4461 := 0 - for ; !r.CheckBreak(); yyj4461++ { + yyj4466 := 0 + for ; !r.CheckBreak(); yyj4466++ { - if yyj4461 >= len(yyv4461) { - yyv4461 = append(yyv4461, PersistentVolumeClaim{}) // var yyz4461 PersistentVolumeClaim - yyc4461 = true + if yyj4466 >= len(yyv4466) { + yyv4466 = append(yyv4466, PersistentVolumeClaim{}) // var yyz4466 PersistentVolumeClaim + yyc4466 = true } - yyh4461.ElemContainerState(yyj4461) - if yyj4461 < len(yyv4461) { + yyh4466.ElemContainerState(yyj4466) + if yyj4466 < len(yyv4466) { if r.TryDecodeAsNil() { - yyv4461[yyj4461] = PersistentVolumeClaim{} + yyv4466[yyj4466] = PersistentVolumeClaim{} } else { - yyv4464 := &yyv4461[yyj4461] - yyv4464.CodecDecodeSelf(d) + yyv4469 := &yyv4466[yyj4466] + yyv4469.CodecDecodeSelf(d) } } else { @@ -55582,17 +55623,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4461 < len(yyv4461) { - yyv4461 = yyv4461[:yyj4461] - yyc4461 = true - } else if yyj4461 == 0 && yyv4461 == nil { - yyv4461 = []PersistentVolumeClaim{} - yyc4461 = true + if yyj4466 < len(yyv4466) { + yyv4466 = yyv4466[:yyj4466] + yyc4466 = true + } else if yyj4466 == 0 && yyv4466 == nil { + yyv4466 = []PersistentVolumeClaim{} + yyc4466 = true } } - yyh4461.End() - if yyc4461 { - *v = yyv4461 + yyh4466.End() + if yyc4466 { + *v = yyv4466 } } @@ -55601,10 +55642,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4465 := range v { + for _, yyv4470 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4466 := &yyv4465 - yy4466.CodecEncodeSelf(e) + yy4471 := &yyv4470 + yy4471.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55614,83 +55655,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4467 := *v - yyh4467, yyl4467 := z.DecSliceHelperStart() - var yyc4467 bool - if yyl4467 == 0 { - if yyv4467 == nil { - yyv4467 = []KeyToPath{} - yyc4467 = true - } else if len(yyv4467) != 0 { - yyv4467 = yyv4467[:0] - yyc4467 = true + yyv4472 := *v + yyh4472, yyl4472 := z.DecSliceHelperStart() + var yyc4472 bool + if yyl4472 == 0 { + if yyv4472 == nil { + yyv4472 = []KeyToPath{} + yyc4472 = true + } else if len(yyv4472) != 0 { + yyv4472 = yyv4472[:0] + yyc4472 = true } - } else if yyl4467 > 0 { - var yyrr4467, yyrl4467 int - var yyrt4467 bool - if yyl4467 > cap(yyv4467) { + } else if yyl4472 > 0 { + var yyrr4472, yyrl4472 int + var yyrt4472 bool + if yyl4472 > cap(yyv4472) { - yyrg4467 := len(yyv4467) > 0 - yyv24467 := yyv4467 - yyrl4467, yyrt4467 = z.DecInferLen(yyl4467, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4467 { - if yyrl4467 <= cap(yyv4467) { - yyv4467 = yyv4467[:yyrl4467] + yyrg4472 := len(yyv4472) > 0 + yyv24472 := yyv4472 + yyrl4472, yyrt4472 = z.DecInferLen(yyl4472, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4472 { + if yyrl4472 <= cap(yyv4472) { + yyv4472 = yyv4472[:yyrl4472] } else { - yyv4467 = make([]KeyToPath, yyrl4467) + yyv4472 = make([]KeyToPath, yyrl4472) } } else { - yyv4467 = make([]KeyToPath, yyrl4467) + yyv4472 = make([]KeyToPath, yyrl4472) } - yyc4467 = true - yyrr4467 = len(yyv4467) - if yyrg4467 { - copy(yyv4467, yyv24467) + yyc4472 = true + yyrr4472 = len(yyv4472) + if yyrg4472 { + copy(yyv4472, yyv24472) } - } else if yyl4467 != len(yyv4467) { - yyv4467 = yyv4467[:yyl4467] - yyc4467 = true + } else if yyl4472 != len(yyv4472) { + yyv4472 = yyv4472[:yyl4472] + yyc4472 = true } - yyj4467 := 0 - for ; yyj4467 < yyrr4467; yyj4467++ { - yyh4467.ElemContainerState(yyj4467) + yyj4472 := 0 + for ; yyj4472 < yyrr4472; yyj4472++ { + yyh4472.ElemContainerState(yyj4472) if r.TryDecodeAsNil() { - yyv4467[yyj4467] = KeyToPath{} + yyv4472[yyj4472] = KeyToPath{} } else { - yyv4468 := &yyv4467[yyj4467] - yyv4468.CodecDecodeSelf(d) + yyv4473 := &yyv4472[yyj4472] + yyv4473.CodecDecodeSelf(d) } } - if yyrt4467 { - for ; yyj4467 < yyl4467; yyj4467++ { - yyv4467 = append(yyv4467, KeyToPath{}) - yyh4467.ElemContainerState(yyj4467) + if yyrt4472 { + for ; yyj4472 < yyl4472; yyj4472++ { + yyv4472 = append(yyv4472, KeyToPath{}) + yyh4472.ElemContainerState(yyj4472) if r.TryDecodeAsNil() { - yyv4467[yyj4467] = KeyToPath{} + yyv4472[yyj4472] = KeyToPath{} } else { - yyv4469 := &yyv4467[yyj4467] - yyv4469.CodecDecodeSelf(d) + yyv4474 := &yyv4472[yyj4472] + yyv4474.CodecDecodeSelf(d) } } } } else { - yyj4467 := 0 - for ; !r.CheckBreak(); yyj4467++ { + yyj4472 := 0 + for ; !r.CheckBreak(); yyj4472++ { - if yyj4467 >= len(yyv4467) { - yyv4467 = append(yyv4467, KeyToPath{}) // var yyz4467 KeyToPath - yyc4467 = true + if yyj4472 >= len(yyv4472) { + yyv4472 = append(yyv4472, KeyToPath{}) // var yyz4472 KeyToPath + yyc4472 = true } - yyh4467.ElemContainerState(yyj4467) - if yyj4467 < len(yyv4467) { + yyh4472.ElemContainerState(yyj4472) + if yyj4472 < len(yyv4472) { if r.TryDecodeAsNil() { - yyv4467[yyj4467] = KeyToPath{} + yyv4472[yyj4472] = KeyToPath{} } else { - yyv4470 := &yyv4467[yyj4467] - yyv4470.CodecDecodeSelf(d) + yyv4475 := &yyv4472[yyj4472] + yyv4475.CodecDecodeSelf(d) } } else { @@ -55698,17 +55739,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4467 < len(yyv4467) { - yyv4467 = yyv4467[:yyj4467] - yyc4467 = true - } else if yyj4467 == 0 && yyv4467 == nil { - yyv4467 = []KeyToPath{} - yyc4467 = true + if yyj4472 < len(yyv4472) { + yyv4472 = yyv4472[:yyj4472] + yyc4472 = true + } else if yyj4472 == 0 && yyv4472 == nil { + yyv4472 = []KeyToPath{} + yyc4472 = true } } - yyh4467.End() - if yyc4467 { - *v = yyv4467 + yyh4472.End() + if yyc4472 { + *v = yyv4472 } } @@ -55717,10 +55758,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4471 := range v { + for _, yyv4476 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4472 := &yyv4471 - yy4472.CodecEncodeSelf(e) + yy4477 := &yyv4476 + yy4477.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55730,83 +55771,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4473 := *v - yyh4473, yyl4473 := z.DecSliceHelperStart() - var yyc4473 bool - if yyl4473 == 0 { - if yyv4473 == nil { - yyv4473 = []DownwardAPIVolumeFile{} - yyc4473 = true - } else if len(yyv4473) != 0 { - yyv4473 = yyv4473[:0] - yyc4473 = true + yyv4478 := *v + yyh4478, yyl4478 := z.DecSliceHelperStart() + var yyc4478 bool + if yyl4478 == 0 { + if yyv4478 == nil { + yyv4478 = []DownwardAPIVolumeFile{} + yyc4478 = true + } else if len(yyv4478) != 0 { + yyv4478 = yyv4478[:0] + yyc4478 = true } - } else if yyl4473 > 0 { - var yyrr4473, yyrl4473 int - var yyrt4473 bool - if yyl4473 > cap(yyv4473) { + } else if yyl4478 > 0 { + var yyrr4478, yyrl4478 int + var yyrt4478 bool + if yyl4478 > cap(yyv4478) { - yyrg4473 := len(yyv4473) > 0 - yyv24473 := yyv4473 - yyrl4473, yyrt4473 = z.DecInferLen(yyl4473, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4473 { - if yyrl4473 <= cap(yyv4473) { - yyv4473 = yyv4473[:yyrl4473] + yyrg4478 := len(yyv4478) > 0 + yyv24478 := yyv4478 + yyrl4478, yyrt4478 = z.DecInferLen(yyl4478, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4478 { + if yyrl4478 <= cap(yyv4478) { + yyv4478 = yyv4478[:yyrl4478] } else { - yyv4473 = make([]DownwardAPIVolumeFile, yyrl4473) + yyv4478 = make([]DownwardAPIVolumeFile, yyrl4478) } } else { - yyv4473 = make([]DownwardAPIVolumeFile, yyrl4473) + yyv4478 = make([]DownwardAPIVolumeFile, yyrl4478) } - yyc4473 = true - yyrr4473 = len(yyv4473) - if yyrg4473 { - copy(yyv4473, yyv24473) + yyc4478 = true + yyrr4478 = len(yyv4478) + if yyrg4478 { + copy(yyv4478, yyv24478) } - } else if yyl4473 != len(yyv4473) { - yyv4473 = yyv4473[:yyl4473] - yyc4473 = true + } else if yyl4478 != len(yyv4478) { + yyv4478 = yyv4478[:yyl4478] + yyc4478 = true } - yyj4473 := 0 - for ; yyj4473 < yyrr4473; yyj4473++ { - yyh4473.ElemContainerState(yyj4473) + yyj4478 := 0 + for ; yyj4478 < yyrr4478; yyj4478++ { + yyh4478.ElemContainerState(yyj4478) if r.TryDecodeAsNil() { - yyv4473[yyj4473] = DownwardAPIVolumeFile{} + yyv4478[yyj4478] = DownwardAPIVolumeFile{} } else { - yyv4474 := &yyv4473[yyj4473] - yyv4474.CodecDecodeSelf(d) + yyv4479 := &yyv4478[yyj4478] + yyv4479.CodecDecodeSelf(d) } } - if yyrt4473 { - for ; yyj4473 < yyl4473; yyj4473++ { - yyv4473 = append(yyv4473, DownwardAPIVolumeFile{}) - yyh4473.ElemContainerState(yyj4473) + if yyrt4478 { + for ; yyj4478 < yyl4478; yyj4478++ { + yyv4478 = append(yyv4478, DownwardAPIVolumeFile{}) + yyh4478.ElemContainerState(yyj4478) if r.TryDecodeAsNil() { - yyv4473[yyj4473] = DownwardAPIVolumeFile{} + yyv4478[yyj4478] = DownwardAPIVolumeFile{} } else { - yyv4475 := &yyv4473[yyj4473] - yyv4475.CodecDecodeSelf(d) + yyv4480 := &yyv4478[yyj4478] + yyv4480.CodecDecodeSelf(d) } } } } else { - yyj4473 := 0 - for ; !r.CheckBreak(); yyj4473++ { + yyj4478 := 0 + for ; !r.CheckBreak(); yyj4478++ { - if yyj4473 >= len(yyv4473) { - yyv4473 = append(yyv4473, DownwardAPIVolumeFile{}) // var yyz4473 DownwardAPIVolumeFile - yyc4473 = true + if yyj4478 >= len(yyv4478) { + yyv4478 = append(yyv4478, DownwardAPIVolumeFile{}) // var yyz4478 DownwardAPIVolumeFile + yyc4478 = true } - yyh4473.ElemContainerState(yyj4473) - if yyj4473 < len(yyv4473) { + yyh4478.ElemContainerState(yyj4478) + if yyj4478 < len(yyv4478) { if r.TryDecodeAsNil() { - yyv4473[yyj4473] = DownwardAPIVolumeFile{} + yyv4478[yyj4478] = DownwardAPIVolumeFile{} } else { - yyv4476 := &yyv4473[yyj4473] - yyv4476.CodecDecodeSelf(d) + yyv4481 := &yyv4478[yyj4478] + yyv4481.CodecDecodeSelf(d) } } else { @@ -55814,17 +55855,17 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4473 < len(yyv4473) { - yyv4473 = yyv4473[:yyj4473] - yyc4473 = true - } else if yyj4473 == 0 && yyv4473 == nil { - yyv4473 = []DownwardAPIVolumeFile{} - yyc4473 = true + if yyj4478 < len(yyv4478) { + yyv4478 = yyv4478[:yyj4478] + yyc4478 = true + } else if yyj4478 == 0 && yyv4478 == nil { + yyv4478 = []DownwardAPIVolumeFile{} + yyc4478 = true } } - yyh4473.End() - if yyc4473 { - *v = yyv4473 + yyh4478.End() + if yyc4478 { + *v = yyv4478 } } @@ -55833,10 +55874,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4477 := range v { + for _, yyv4482 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4478 := &yyv4477 - yy4478.CodecEncodeSelf(e) + yy4483 := &yyv4482 + yy4483.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55846,83 +55887,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4479 := *v - yyh4479, yyl4479 := z.DecSliceHelperStart() - var yyc4479 bool - if yyl4479 == 0 { - if yyv4479 == nil { - yyv4479 = []HTTPHeader{} - yyc4479 = true - } else if len(yyv4479) != 0 { - yyv4479 = yyv4479[:0] - yyc4479 = true + yyv4484 := *v + yyh4484, yyl4484 := z.DecSliceHelperStart() + var yyc4484 bool + if yyl4484 == 0 { + if yyv4484 == nil { + yyv4484 = []HTTPHeader{} + yyc4484 = true + } else if len(yyv4484) != 0 { + yyv4484 = yyv4484[:0] + yyc4484 = true } - } else if yyl4479 > 0 { - var yyrr4479, yyrl4479 int - var yyrt4479 bool - if yyl4479 > cap(yyv4479) { + } else if yyl4484 > 0 { + var yyrr4484, yyrl4484 int + var yyrt4484 bool + if yyl4484 > cap(yyv4484) { - yyrg4479 := len(yyv4479) > 0 - yyv24479 := yyv4479 - yyrl4479, yyrt4479 = z.DecInferLen(yyl4479, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4479 { - if yyrl4479 <= cap(yyv4479) { - yyv4479 = yyv4479[:yyrl4479] + yyrg4484 := len(yyv4484) > 0 + yyv24484 := yyv4484 + yyrl4484, yyrt4484 = z.DecInferLen(yyl4484, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4484 { + if yyrl4484 <= cap(yyv4484) { + yyv4484 = yyv4484[:yyrl4484] } else { - yyv4479 = make([]HTTPHeader, yyrl4479) + yyv4484 = make([]HTTPHeader, yyrl4484) } } else { - yyv4479 = make([]HTTPHeader, yyrl4479) + yyv4484 = make([]HTTPHeader, yyrl4484) } - yyc4479 = true - yyrr4479 = len(yyv4479) - if yyrg4479 { - copy(yyv4479, yyv24479) + yyc4484 = true + yyrr4484 = len(yyv4484) + if yyrg4484 { + copy(yyv4484, yyv24484) } - } else if yyl4479 != len(yyv4479) { - yyv4479 = yyv4479[:yyl4479] - yyc4479 = true + } else if yyl4484 != len(yyv4484) { + yyv4484 = yyv4484[:yyl4484] + yyc4484 = true } - yyj4479 := 0 - for ; yyj4479 < yyrr4479; yyj4479++ { - yyh4479.ElemContainerState(yyj4479) + yyj4484 := 0 + for ; yyj4484 < yyrr4484; yyj4484++ { + yyh4484.ElemContainerState(yyj4484) if r.TryDecodeAsNil() { - yyv4479[yyj4479] = HTTPHeader{} + yyv4484[yyj4484] = HTTPHeader{} } else { - yyv4480 := &yyv4479[yyj4479] - yyv4480.CodecDecodeSelf(d) + yyv4485 := &yyv4484[yyj4484] + yyv4485.CodecDecodeSelf(d) } } - if yyrt4479 { - for ; yyj4479 < yyl4479; yyj4479++ { - yyv4479 = append(yyv4479, HTTPHeader{}) - yyh4479.ElemContainerState(yyj4479) + if yyrt4484 { + for ; yyj4484 < yyl4484; yyj4484++ { + yyv4484 = append(yyv4484, HTTPHeader{}) + yyh4484.ElemContainerState(yyj4484) if r.TryDecodeAsNil() { - yyv4479[yyj4479] = HTTPHeader{} + yyv4484[yyj4484] = HTTPHeader{} } else { - yyv4481 := &yyv4479[yyj4479] - yyv4481.CodecDecodeSelf(d) + yyv4486 := &yyv4484[yyj4484] + yyv4486.CodecDecodeSelf(d) } } } } else { - yyj4479 := 0 - for ; !r.CheckBreak(); yyj4479++ { + yyj4484 := 0 + for ; !r.CheckBreak(); yyj4484++ { - if yyj4479 >= len(yyv4479) { - yyv4479 = append(yyv4479, HTTPHeader{}) // var yyz4479 HTTPHeader - yyc4479 = true + if yyj4484 >= len(yyv4484) { + yyv4484 = append(yyv4484, HTTPHeader{}) // var yyz4484 HTTPHeader + yyc4484 = true } - yyh4479.ElemContainerState(yyj4479) - if yyj4479 < len(yyv4479) { + yyh4484.ElemContainerState(yyj4484) + if yyj4484 < len(yyv4484) { if r.TryDecodeAsNil() { - yyv4479[yyj4479] = HTTPHeader{} + yyv4484[yyj4484] = HTTPHeader{} } else { - yyv4482 := &yyv4479[yyj4479] - yyv4482.CodecDecodeSelf(d) + yyv4487 := &yyv4484[yyj4484] + yyv4487.CodecDecodeSelf(d) } } else { @@ -55930,17 +55971,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4479 < len(yyv4479) { - yyv4479 = yyv4479[:yyj4479] - yyc4479 = true - } else if yyj4479 == 0 && yyv4479 == nil { - yyv4479 = []HTTPHeader{} - yyc4479 = true + if yyj4484 < len(yyv4484) { + yyv4484 = yyv4484[:yyj4484] + yyc4484 = true + } else if yyj4484 == 0 && yyv4484 == nil { + yyv4484 = []HTTPHeader{} + yyc4484 = true } } - yyh4479.End() - if yyc4479 { - *v = yyv4479 + yyh4484.End() + if yyc4484 { + *v = yyv4484 } } @@ -55949,9 +55990,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4483 := range v { + for _, yyv4488 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4483.CodecEncodeSelf(e) + yyv4488.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55961,75 +56002,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4484 := *v - yyh4484, yyl4484 := z.DecSliceHelperStart() - var yyc4484 bool - if yyl4484 == 0 { - if yyv4484 == nil { - yyv4484 = []Capability{} - yyc4484 = true - } else if len(yyv4484) != 0 { - yyv4484 = yyv4484[:0] - yyc4484 = true + yyv4489 := *v + yyh4489, yyl4489 := z.DecSliceHelperStart() + var yyc4489 bool + if yyl4489 == 0 { + if yyv4489 == nil { + yyv4489 = []Capability{} + yyc4489 = true + } else if len(yyv4489) != 0 { + yyv4489 = yyv4489[:0] + yyc4489 = true } - } else if yyl4484 > 0 { - var yyrr4484, yyrl4484 int - var yyrt4484 bool - if yyl4484 > cap(yyv4484) { + } else if yyl4489 > 0 { + var yyrr4489, yyrl4489 int + var yyrt4489 bool + if yyl4489 > cap(yyv4489) { - yyrl4484, yyrt4484 = z.DecInferLen(yyl4484, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4484 { - if yyrl4484 <= cap(yyv4484) { - yyv4484 = yyv4484[:yyrl4484] + yyrl4489, yyrt4489 = z.DecInferLen(yyl4489, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4489 { + if yyrl4489 <= cap(yyv4489) { + yyv4489 = yyv4489[:yyrl4489] } else { - yyv4484 = make([]Capability, yyrl4484) + yyv4489 = make([]Capability, yyrl4489) } } else { - yyv4484 = make([]Capability, yyrl4484) + yyv4489 = make([]Capability, yyrl4489) } - yyc4484 = true - yyrr4484 = len(yyv4484) - } else if yyl4484 != len(yyv4484) { - yyv4484 = yyv4484[:yyl4484] - yyc4484 = true + yyc4489 = true + yyrr4489 = len(yyv4489) + } else if yyl4489 != len(yyv4489) { + yyv4489 = yyv4489[:yyl4489] + yyc4489 = true } - yyj4484 := 0 - for ; yyj4484 < yyrr4484; yyj4484++ { - yyh4484.ElemContainerState(yyj4484) + yyj4489 := 0 + for ; yyj4489 < yyrr4489; yyj4489++ { + yyh4489.ElemContainerState(yyj4489) if r.TryDecodeAsNil() { - yyv4484[yyj4484] = "" + yyv4489[yyj4489] = "" } else { - yyv4484[yyj4484] = Capability(r.DecodeString()) + yyv4489[yyj4489] = Capability(r.DecodeString()) } } - if yyrt4484 { - for ; yyj4484 < yyl4484; yyj4484++ { - yyv4484 = append(yyv4484, "") - yyh4484.ElemContainerState(yyj4484) + if yyrt4489 { + for ; yyj4489 < yyl4489; yyj4489++ { + yyv4489 = append(yyv4489, "") + yyh4489.ElemContainerState(yyj4489) if r.TryDecodeAsNil() { - yyv4484[yyj4484] = "" + yyv4489[yyj4489] = "" } else { - yyv4484[yyj4484] = Capability(r.DecodeString()) + yyv4489[yyj4489] = Capability(r.DecodeString()) } } } } else { - yyj4484 := 0 - for ; !r.CheckBreak(); yyj4484++ { + yyj4489 := 0 + for ; !r.CheckBreak(); yyj4489++ { - if yyj4484 >= len(yyv4484) { - yyv4484 = append(yyv4484, "") // var yyz4484 Capability - yyc4484 = true + if yyj4489 >= len(yyv4489) { + yyv4489 = append(yyv4489, "") // var yyz4489 Capability + yyc4489 = true } - yyh4484.ElemContainerState(yyj4484) - if yyj4484 < len(yyv4484) { + yyh4489.ElemContainerState(yyj4489) + if yyj4489 < len(yyv4489) { if r.TryDecodeAsNil() { - yyv4484[yyj4484] = "" + yyv4489[yyj4489] = "" } else { - yyv4484[yyj4484] = Capability(r.DecodeString()) + yyv4489[yyj4489] = Capability(r.DecodeString()) } } else { @@ -56037,17 +56078,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4484 < len(yyv4484) { - yyv4484 = yyv4484[:yyj4484] - yyc4484 = true - } else if yyj4484 == 0 && yyv4484 == nil { - yyv4484 = []Capability{} - yyc4484 = true + if yyj4489 < len(yyv4489) { + yyv4489 = yyv4489[:yyj4489] + yyc4489 = true + } else if yyj4489 == 0 && yyv4489 == nil { + yyv4489 = []Capability{} + yyc4489 = true } } - yyh4484.End() - if yyc4484 { - *v = yyv4484 + yyh4489.End() + if yyc4489 { + *v = yyv4489 } } @@ -56056,10 +56097,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4488 := range v { + for _, yyv4493 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4489 := &yyv4488 - yy4489.CodecEncodeSelf(e) + yy4494 := &yyv4493 + yy4494.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56069,83 +56110,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4490 := *v - yyh4490, yyl4490 := z.DecSliceHelperStart() - var yyc4490 bool - if yyl4490 == 0 { - if yyv4490 == nil { - yyv4490 = []ContainerPort{} - yyc4490 = true - } else if len(yyv4490) != 0 { - yyv4490 = yyv4490[:0] - yyc4490 = true + yyv4495 := *v + yyh4495, yyl4495 := z.DecSliceHelperStart() + var yyc4495 bool + if yyl4495 == 0 { + if yyv4495 == nil { + yyv4495 = []ContainerPort{} + yyc4495 = true + } else if len(yyv4495) != 0 { + yyv4495 = yyv4495[:0] + yyc4495 = true } - } else if yyl4490 > 0 { - var yyrr4490, yyrl4490 int - var yyrt4490 bool - if yyl4490 > cap(yyv4490) { + } else if yyl4495 > 0 { + var yyrr4495, yyrl4495 int + var yyrt4495 bool + if yyl4495 > cap(yyv4495) { - yyrg4490 := len(yyv4490) > 0 - yyv24490 := yyv4490 - yyrl4490, yyrt4490 = z.DecInferLen(yyl4490, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4490 { - if yyrl4490 <= cap(yyv4490) { - yyv4490 = yyv4490[:yyrl4490] + yyrg4495 := len(yyv4495) > 0 + yyv24495 := yyv4495 + yyrl4495, yyrt4495 = z.DecInferLen(yyl4495, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4495 { + if yyrl4495 <= cap(yyv4495) { + yyv4495 = yyv4495[:yyrl4495] } else { - yyv4490 = make([]ContainerPort, yyrl4490) + yyv4495 = make([]ContainerPort, yyrl4495) } } else { - yyv4490 = make([]ContainerPort, yyrl4490) + yyv4495 = make([]ContainerPort, yyrl4495) } - yyc4490 = true - yyrr4490 = len(yyv4490) - if yyrg4490 { - copy(yyv4490, yyv24490) + yyc4495 = true + yyrr4495 = len(yyv4495) + if yyrg4495 { + copy(yyv4495, yyv24495) } - } else if yyl4490 != len(yyv4490) { - yyv4490 = yyv4490[:yyl4490] - yyc4490 = true + } else if yyl4495 != len(yyv4495) { + yyv4495 = yyv4495[:yyl4495] + yyc4495 = true } - yyj4490 := 0 - for ; yyj4490 < yyrr4490; yyj4490++ { - yyh4490.ElemContainerState(yyj4490) + yyj4495 := 0 + for ; yyj4495 < yyrr4495; yyj4495++ { + yyh4495.ElemContainerState(yyj4495) if r.TryDecodeAsNil() { - yyv4490[yyj4490] = ContainerPort{} + yyv4495[yyj4495] = ContainerPort{} } else { - yyv4491 := &yyv4490[yyj4490] - yyv4491.CodecDecodeSelf(d) + yyv4496 := &yyv4495[yyj4495] + yyv4496.CodecDecodeSelf(d) } } - if yyrt4490 { - for ; yyj4490 < yyl4490; yyj4490++ { - yyv4490 = append(yyv4490, ContainerPort{}) - yyh4490.ElemContainerState(yyj4490) + if yyrt4495 { + for ; yyj4495 < yyl4495; yyj4495++ { + yyv4495 = append(yyv4495, ContainerPort{}) + yyh4495.ElemContainerState(yyj4495) if r.TryDecodeAsNil() { - yyv4490[yyj4490] = ContainerPort{} + yyv4495[yyj4495] = ContainerPort{} } else { - yyv4492 := &yyv4490[yyj4490] - yyv4492.CodecDecodeSelf(d) + yyv4497 := &yyv4495[yyj4495] + yyv4497.CodecDecodeSelf(d) } } } } else { - yyj4490 := 0 - for ; !r.CheckBreak(); yyj4490++ { + yyj4495 := 0 + for ; !r.CheckBreak(); yyj4495++ { - if yyj4490 >= len(yyv4490) { - yyv4490 = append(yyv4490, ContainerPort{}) // var yyz4490 ContainerPort - yyc4490 = true + if yyj4495 >= len(yyv4495) { + yyv4495 = append(yyv4495, ContainerPort{}) // var yyz4495 ContainerPort + yyc4495 = true } - yyh4490.ElemContainerState(yyj4490) - if yyj4490 < len(yyv4490) { + yyh4495.ElemContainerState(yyj4495) + if yyj4495 < len(yyv4495) { if r.TryDecodeAsNil() { - yyv4490[yyj4490] = ContainerPort{} + yyv4495[yyj4495] = ContainerPort{} } else { - yyv4493 := &yyv4490[yyj4490] - yyv4493.CodecDecodeSelf(d) + yyv4498 := &yyv4495[yyj4495] + yyv4498.CodecDecodeSelf(d) } } else { @@ -56153,17 +56194,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4490 < len(yyv4490) { - yyv4490 = yyv4490[:yyj4490] - yyc4490 = true - } else if yyj4490 == 0 && yyv4490 == nil { - yyv4490 = []ContainerPort{} - yyc4490 = true + if yyj4495 < len(yyv4495) { + yyv4495 = yyv4495[:yyj4495] + yyc4495 = true + } else if yyj4495 == 0 && yyv4495 == nil { + yyv4495 = []ContainerPort{} + yyc4495 = true } } - yyh4490.End() - if yyc4490 { - *v = yyv4490 + yyh4495.End() + if yyc4495 { + *v = yyv4495 } } @@ -56172,10 +56213,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4494 := range v { + for _, yyv4499 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4495 := &yyv4494 - yy4495.CodecEncodeSelf(e) + yy4500 := &yyv4499 + yy4500.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56185,83 +56226,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4496 := *v - yyh4496, yyl4496 := z.DecSliceHelperStart() - var yyc4496 bool - if yyl4496 == 0 { - if yyv4496 == nil { - yyv4496 = []EnvVar{} - yyc4496 = true - } else if len(yyv4496) != 0 { - yyv4496 = yyv4496[:0] - yyc4496 = true + yyv4501 := *v + yyh4501, yyl4501 := z.DecSliceHelperStart() + var yyc4501 bool + if yyl4501 == 0 { + if yyv4501 == nil { + yyv4501 = []EnvVar{} + yyc4501 = true + } else if len(yyv4501) != 0 { + yyv4501 = yyv4501[:0] + yyc4501 = true } - } else if yyl4496 > 0 { - var yyrr4496, yyrl4496 int - var yyrt4496 bool - if yyl4496 > cap(yyv4496) { + } else if yyl4501 > 0 { + var yyrr4501, yyrl4501 int + var yyrt4501 bool + if yyl4501 > cap(yyv4501) { - yyrg4496 := len(yyv4496) > 0 - yyv24496 := yyv4496 - yyrl4496, yyrt4496 = z.DecInferLen(yyl4496, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4496 { - if yyrl4496 <= cap(yyv4496) { - yyv4496 = yyv4496[:yyrl4496] + yyrg4501 := len(yyv4501) > 0 + yyv24501 := yyv4501 + yyrl4501, yyrt4501 = z.DecInferLen(yyl4501, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4501 { + if yyrl4501 <= cap(yyv4501) { + yyv4501 = yyv4501[:yyrl4501] } else { - yyv4496 = make([]EnvVar, yyrl4496) + yyv4501 = make([]EnvVar, yyrl4501) } } else { - yyv4496 = make([]EnvVar, yyrl4496) + yyv4501 = make([]EnvVar, yyrl4501) } - yyc4496 = true - yyrr4496 = len(yyv4496) - if yyrg4496 { - copy(yyv4496, yyv24496) + yyc4501 = true + yyrr4501 = len(yyv4501) + if yyrg4501 { + copy(yyv4501, yyv24501) } - } else if yyl4496 != len(yyv4496) { - yyv4496 = yyv4496[:yyl4496] - yyc4496 = true + } else if yyl4501 != len(yyv4501) { + yyv4501 = yyv4501[:yyl4501] + yyc4501 = true } - yyj4496 := 0 - for ; yyj4496 < yyrr4496; yyj4496++ { - yyh4496.ElemContainerState(yyj4496) + yyj4501 := 0 + for ; yyj4501 < yyrr4501; yyj4501++ { + yyh4501.ElemContainerState(yyj4501) if r.TryDecodeAsNil() { - yyv4496[yyj4496] = EnvVar{} + yyv4501[yyj4501] = EnvVar{} } else { - yyv4497 := &yyv4496[yyj4496] - yyv4497.CodecDecodeSelf(d) + yyv4502 := &yyv4501[yyj4501] + yyv4502.CodecDecodeSelf(d) } } - if yyrt4496 { - for ; yyj4496 < yyl4496; yyj4496++ { - yyv4496 = append(yyv4496, EnvVar{}) - yyh4496.ElemContainerState(yyj4496) + if yyrt4501 { + for ; yyj4501 < yyl4501; yyj4501++ { + yyv4501 = append(yyv4501, EnvVar{}) + yyh4501.ElemContainerState(yyj4501) if r.TryDecodeAsNil() { - yyv4496[yyj4496] = EnvVar{} + yyv4501[yyj4501] = EnvVar{} } else { - yyv4498 := &yyv4496[yyj4496] - yyv4498.CodecDecodeSelf(d) + yyv4503 := &yyv4501[yyj4501] + yyv4503.CodecDecodeSelf(d) } } } } else { - yyj4496 := 0 - for ; !r.CheckBreak(); yyj4496++ { + yyj4501 := 0 + for ; !r.CheckBreak(); yyj4501++ { - if yyj4496 >= len(yyv4496) { - yyv4496 = append(yyv4496, EnvVar{}) // var yyz4496 EnvVar - yyc4496 = true + if yyj4501 >= len(yyv4501) { + yyv4501 = append(yyv4501, EnvVar{}) // var yyz4501 EnvVar + yyc4501 = true } - yyh4496.ElemContainerState(yyj4496) - if yyj4496 < len(yyv4496) { + yyh4501.ElemContainerState(yyj4501) + if yyj4501 < len(yyv4501) { if r.TryDecodeAsNil() { - yyv4496[yyj4496] = EnvVar{} + yyv4501[yyj4501] = EnvVar{} } else { - yyv4499 := &yyv4496[yyj4496] - yyv4499.CodecDecodeSelf(d) + yyv4504 := &yyv4501[yyj4501] + yyv4504.CodecDecodeSelf(d) } } else { @@ -56269,17 +56310,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4496 < len(yyv4496) { - yyv4496 = yyv4496[:yyj4496] - yyc4496 = true - } else if yyj4496 == 0 && yyv4496 == nil { - yyv4496 = []EnvVar{} - yyc4496 = true + if yyj4501 < len(yyv4501) { + yyv4501 = yyv4501[:yyj4501] + yyc4501 = true + } else if yyj4501 == 0 && yyv4501 == nil { + yyv4501 = []EnvVar{} + yyc4501 = true } } - yyh4496.End() - if yyc4496 { - *v = yyv4496 + yyh4501.End() + if yyc4501 { + *v = yyv4501 } } @@ -56288,10 +56329,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4500 := range v { + for _, yyv4505 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4501 := &yyv4500 - yy4501.CodecEncodeSelf(e) + yy4506 := &yyv4505 + yy4506.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56301,83 +56342,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4502 := *v - yyh4502, yyl4502 := z.DecSliceHelperStart() - var yyc4502 bool - if yyl4502 == 0 { - if yyv4502 == nil { - yyv4502 = []VolumeMount{} - yyc4502 = true - } else if len(yyv4502) != 0 { - yyv4502 = yyv4502[:0] - yyc4502 = true + yyv4507 := *v + yyh4507, yyl4507 := z.DecSliceHelperStart() + var yyc4507 bool + if yyl4507 == 0 { + if yyv4507 == nil { + yyv4507 = []VolumeMount{} + yyc4507 = true + } else if len(yyv4507) != 0 { + yyv4507 = yyv4507[:0] + yyc4507 = true } - } else if yyl4502 > 0 { - var yyrr4502, yyrl4502 int - var yyrt4502 bool - if yyl4502 > cap(yyv4502) { + } else if yyl4507 > 0 { + var yyrr4507, yyrl4507 int + var yyrt4507 bool + if yyl4507 > cap(yyv4507) { - yyrg4502 := len(yyv4502) > 0 - yyv24502 := yyv4502 - yyrl4502, yyrt4502 = z.DecInferLen(yyl4502, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4502 { - if yyrl4502 <= cap(yyv4502) { - yyv4502 = yyv4502[:yyrl4502] + yyrg4507 := len(yyv4507) > 0 + yyv24507 := yyv4507 + yyrl4507, yyrt4507 = z.DecInferLen(yyl4507, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4507 { + if yyrl4507 <= cap(yyv4507) { + yyv4507 = yyv4507[:yyrl4507] } else { - yyv4502 = make([]VolumeMount, yyrl4502) + yyv4507 = make([]VolumeMount, yyrl4507) } } else { - yyv4502 = make([]VolumeMount, yyrl4502) + yyv4507 = make([]VolumeMount, yyrl4507) } - yyc4502 = true - yyrr4502 = len(yyv4502) - if yyrg4502 { - copy(yyv4502, yyv24502) + yyc4507 = true + yyrr4507 = len(yyv4507) + if yyrg4507 { + copy(yyv4507, yyv24507) } - } else if yyl4502 != len(yyv4502) { - yyv4502 = yyv4502[:yyl4502] - yyc4502 = true + } else if yyl4507 != len(yyv4507) { + yyv4507 = yyv4507[:yyl4507] + yyc4507 = true } - yyj4502 := 0 - for ; yyj4502 < yyrr4502; yyj4502++ { - yyh4502.ElemContainerState(yyj4502) + yyj4507 := 0 + for ; yyj4507 < yyrr4507; yyj4507++ { + yyh4507.ElemContainerState(yyj4507) if r.TryDecodeAsNil() { - yyv4502[yyj4502] = VolumeMount{} + yyv4507[yyj4507] = VolumeMount{} } else { - yyv4503 := &yyv4502[yyj4502] - yyv4503.CodecDecodeSelf(d) + yyv4508 := &yyv4507[yyj4507] + yyv4508.CodecDecodeSelf(d) } } - if yyrt4502 { - for ; yyj4502 < yyl4502; yyj4502++ { - yyv4502 = append(yyv4502, VolumeMount{}) - yyh4502.ElemContainerState(yyj4502) + if yyrt4507 { + for ; yyj4507 < yyl4507; yyj4507++ { + yyv4507 = append(yyv4507, VolumeMount{}) + yyh4507.ElemContainerState(yyj4507) if r.TryDecodeAsNil() { - yyv4502[yyj4502] = VolumeMount{} + yyv4507[yyj4507] = VolumeMount{} } else { - yyv4504 := &yyv4502[yyj4502] - yyv4504.CodecDecodeSelf(d) + yyv4509 := &yyv4507[yyj4507] + yyv4509.CodecDecodeSelf(d) } } } } else { - yyj4502 := 0 - for ; !r.CheckBreak(); yyj4502++ { + yyj4507 := 0 + for ; !r.CheckBreak(); yyj4507++ { - if yyj4502 >= len(yyv4502) { - yyv4502 = append(yyv4502, VolumeMount{}) // var yyz4502 VolumeMount - yyc4502 = true + if yyj4507 >= len(yyv4507) { + yyv4507 = append(yyv4507, VolumeMount{}) // var yyz4507 VolumeMount + yyc4507 = true } - yyh4502.ElemContainerState(yyj4502) - if yyj4502 < len(yyv4502) { + yyh4507.ElemContainerState(yyj4507) + if yyj4507 < len(yyv4507) { if r.TryDecodeAsNil() { - yyv4502[yyj4502] = VolumeMount{} + yyv4507[yyj4507] = VolumeMount{} } else { - yyv4505 := &yyv4502[yyj4502] - yyv4505.CodecDecodeSelf(d) + yyv4510 := &yyv4507[yyj4507] + yyv4510.CodecDecodeSelf(d) } } else { @@ -56385,17 +56426,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4502 < len(yyv4502) { - yyv4502 = yyv4502[:yyj4502] - yyc4502 = true - } else if yyj4502 == 0 && yyv4502 == nil { - yyv4502 = []VolumeMount{} - yyc4502 = true + if yyj4507 < len(yyv4507) { + yyv4507 = yyv4507[:yyj4507] + yyc4507 = true + } else if yyj4507 == 0 && yyv4507 == nil { + yyv4507 = []VolumeMount{} + yyc4507 = true } } - yyh4502.End() - if yyc4502 { - *v = yyv4502 + yyh4507.End() + if yyc4507 { + *v = yyv4507 } } @@ -56404,10 +56445,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4506 := range v { + for _, yyv4511 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4507 := &yyv4506 - yy4507.CodecEncodeSelf(e) + yy4512 := &yyv4511 + yy4512.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56417,83 +56458,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4508 := *v - yyh4508, yyl4508 := z.DecSliceHelperStart() - var yyc4508 bool - if yyl4508 == 0 { - if yyv4508 == nil { - yyv4508 = []Pod{} - yyc4508 = true - } else if len(yyv4508) != 0 { - yyv4508 = yyv4508[:0] - yyc4508 = true + yyv4513 := *v + yyh4513, yyl4513 := z.DecSliceHelperStart() + var yyc4513 bool + if yyl4513 == 0 { + if yyv4513 == nil { + yyv4513 = []Pod{} + yyc4513 = true + } else if len(yyv4513) != 0 { + yyv4513 = yyv4513[:0] + yyc4513 = true } - } else if yyl4508 > 0 { - var yyrr4508, yyrl4508 int - var yyrt4508 bool - if yyl4508 > cap(yyv4508) { + } else if yyl4513 > 0 { + var yyrr4513, yyrl4513 int + var yyrt4513 bool + if yyl4513 > cap(yyv4513) { - yyrg4508 := len(yyv4508) > 0 - yyv24508 := yyv4508 - yyrl4508, yyrt4508 = z.DecInferLen(yyl4508, z.DecBasicHandle().MaxInitLen, 624) - if yyrt4508 { - if yyrl4508 <= cap(yyv4508) { - yyv4508 = yyv4508[:yyrl4508] + yyrg4513 := len(yyv4513) > 0 + yyv24513 := yyv4513 + yyrl4513, yyrt4513 = z.DecInferLen(yyl4513, z.DecBasicHandle().MaxInitLen, 624) + if yyrt4513 { + if yyrl4513 <= cap(yyv4513) { + yyv4513 = yyv4513[:yyrl4513] } else { - yyv4508 = make([]Pod, yyrl4508) + yyv4513 = make([]Pod, yyrl4513) } } else { - yyv4508 = make([]Pod, yyrl4508) + yyv4513 = make([]Pod, yyrl4513) } - yyc4508 = true - yyrr4508 = len(yyv4508) - if yyrg4508 { - copy(yyv4508, yyv24508) + yyc4513 = true + yyrr4513 = len(yyv4513) + if yyrg4513 { + copy(yyv4513, yyv24513) } - } else if yyl4508 != len(yyv4508) { - yyv4508 = yyv4508[:yyl4508] - yyc4508 = true + } else if yyl4513 != len(yyv4513) { + yyv4513 = yyv4513[:yyl4513] + yyc4513 = true } - yyj4508 := 0 - for ; yyj4508 < yyrr4508; yyj4508++ { - yyh4508.ElemContainerState(yyj4508) + yyj4513 := 0 + for ; yyj4513 < yyrr4513; yyj4513++ { + yyh4513.ElemContainerState(yyj4513) if r.TryDecodeAsNil() { - yyv4508[yyj4508] = Pod{} + yyv4513[yyj4513] = Pod{} } else { - yyv4509 := &yyv4508[yyj4508] - yyv4509.CodecDecodeSelf(d) + yyv4514 := &yyv4513[yyj4513] + yyv4514.CodecDecodeSelf(d) } } - if yyrt4508 { - for ; yyj4508 < yyl4508; yyj4508++ { - yyv4508 = append(yyv4508, Pod{}) - yyh4508.ElemContainerState(yyj4508) + if yyrt4513 { + for ; yyj4513 < yyl4513; yyj4513++ { + yyv4513 = append(yyv4513, Pod{}) + yyh4513.ElemContainerState(yyj4513) if r.TryDecodeAsNil() { - yyv4508[yyj4508] = Pod{} + yyv4513[yyj4513] = Pod{} } else { - yyv4510 := &yyv4508[yyj4508] - yyv4510.CodecDecodeSelf(d) + yyv4515 := &yyv4513[yyj4513] + yyv4515.CodecDecodeSelf(d) } } } } else { - yyj4508 := 0 - for ; !r.CheckBreak(); yyj4508++ { + yyj4513 := 0 + for ; !r.CheckBreak(); yyj4513++ { - if yyj4508 >= len(yyv4508) { - yyv4508 = append(yyv4508, Pod{}) // var yyz4508 Pod - yyc4508 = true + if yyj4513 >= len(yyv4513) { + yyv4513 = append(yyv4513, Pod{}) // var yyz4513 Pod + yyc4513 = true } - yyh4508.ElemContainerState(yyj4508) - if yyj4508 < len(yyv4508) { + yyh4513.ElemContainerState(yyj4513) + if yyj4513 < len(yyv4513) { if r.TryDecodeAsNil() { - yyv4508[yyj4508] = Pod{} + yyv4513[yyj4513] = Pod{} } else { - yyv4511 := &yyv4508[yyj4508] - yyv4511.CodecDecodeSelf(d) + yyv4516 := &yyv4513[yyj4513] + yyv4516.CodecDecodeSelf(d) } } else { @@ -56501,17 +56542,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4508 < len(yyv4508) { - yyv4508 = yyv4508[:yyj4508] - yyc4508 = true - } else if yyj4508 == 0 && yyv4508 == nil { - yyv4508 = []Pod{} - yyc4508 = true + if yyj4513 < len(yyv4513) { + yyv4513 = yyv4513[:yyj4513] + yyc4513 = true + } else if yyj4513 == 0 && yyv4513 == nil { + yyv4513 = []Pod{} + yyc4513 = true } } - yyh4508.End() - if yyc4508 { - *v = yyv4508 + yyh4513.End() + if yyc4513 { + *v = yyv4513 } } @@ -56520,10 +56561,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4512 := range v { + for _, yyv4517 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4513 := &yyv4512 - yy4513.CodecEncodeSelf(e) + yy4518 := &yyv4517 + yy4518.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56533,83 +56574,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4514 := *v - yyh4514, yyl4514 := z.DecSliceHelperStart() - var yyc4514 bool - if yyl4514 == 0 { - if yyv4514 == nil { - yyv4514 = []NodeSelectorTerm{} - yyc4514 = true - } else if len(yyv4514) != 0 { - yyv4514 = yyv4514[:0] - yyc4514 = true + yyv4519 := *v + yyh4519, yyl4519 := z.DecSliceHelperStart() + var yyc4519 bool + if yyl4519 == 0 { + if yyv4519 == nil { + yyv4519 = []NodeSelectorTerm{} + yyc4519 = true + } else if len(yyv4519) != 0 { + yyv4519 = yyv4519[:0] + yyc4519 = true } - } else if yyl4514 > 0 { - var yyrr4514, yyrl4514 int - var yyrt4514 bool - if yyl4514 > cap(yyv4514) { + } else if yyl4519 > 0 { + var yyrr4519, yyrl4519 int + var yyrt4519 bool + if yyl4519 > cap(yyv4519) { - yyrg4514 := len(yyv4514) > 0 - yyv24514 := yyv4514 - yyrl4514, yyrt4514 = z.DecInferLen(yyl4514, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4514 { - if yyrl4514 <= cap(yyv4514) { - yyv4514 = yyv4514[:yyrl4514] + yyrg4519 := len(yyv4519) > 0 + yyv24519 := yyv4519 + yyrl4519, yyrt4519 = z.DecInferLen(yyl4519, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4519 { + if yyrl4519 <= cap(yyv4519) { + yyv4519 = yyv4519[:yyrl4519] } else { - yyv4514 = make([]NodeSelectorTerm, yyrl4514) + yyv4519 = make([]NodeSelectorTerm, yyrl4519) } } else { - yyv4514 = make([]NodeSelectorTerm, yyrl4514) + yyv4519 = make([]NodeSelectorTerm, yyrl4519) } - yyc4514 = true - yyrr4514 = len(yyv4514) - if yyrg4514 { - copy(yyv4514, yyv24514) + yyc4519 = true + yyrr4519 = len(yyv4519) + if yyrg4519 { + copy(yyv4519, yyv24519) } - } else if yyl4514 != len(yyv4514) { - yyv4514 = yyv4514[:yyl4514] - yyc4514 = true + } else if yyl4519 != len(yyv4519) { + yyv4519 = yyv4519[:yyl4519] + yyc4519 = true } - yyj4514 := 0 - for ; yyj4514 < yyrr4514; yyj4514++ { - yyh4514.ElemContainerState(yyj4514) + yyj4519 := 0 + for ; yyj4519 < yyrr4519; yyj4519++ { + yyh4519.ElemContainerState(yyj4519) if r.TryDecodeAsNil() { - yyv4514[yyj4514] = NodeSelectorTerm{} + yyv4519[yyj4519] = NodeSelectorTerm{} } else { - yyv4515 := &yyv4514[yyj4514] - yyv4515.CodecDecodeSelf(d) + yyv4520 := &yyv4519[yyj4519] + yyv4520.CodecDecodeSelf(d) } } - if yyrt4514 { - for ; yyj4514 < yyl4514; yyj4514++ { - yyv4514 = append(yyv4514, NodeSelectorTerm{}) - yyh4514.ElemContainerState(yyj4514) + if yyrt4519 { + for ; yyj4519 < yyl4519; yyj4519++ { + yyv4519 = append(yyv4519, NodeSelectorTerm{}) + yyh4519.ElemContainerState(yyj4519) if r.TryDecodeAsNil() { - yyv4514[yyj4514] = NodeSelectorTerm{} + yyv4519[yyj4519] = NodeSelectorTerm{} } else { - yyv4516 := &yyv4514[yyj4514] - yyv4516.CodecDecodeSelf(d) + yyv4521 := &yyv4519[yyj4519] + yyv4521.CodecDecodeSelf(d) } } } } else { - yyj4514 := 0 - for ; !r.CheckBreak(); yyj4514++ { + yyj4519 := 0 + for ; !r.CheckBreak(); yyj4519++ { - if yyj4514 >= len(yyv4514) { - yyv4514 = append(yyv4514, NodeSelectorTerm{}) // var yyz4514 NodeSelectorTerm - yyc4514 = true + if yyj4519 >= len(yyv4519) { + yyv4519 = append(yyv4519, NodeSelectorTerm{}) // var yyz4519 NodeSelectorTerm + yyc4519 = true } - yyh4514.ElemContainerState(yyj4514) - if yyj4514 < len(yyv4514) { + yyh4519.ElemContainerState(yyj4519) + if yyj4519 < len(yyv4519) { if r.TryDecodeAsNil() { - yyv4514[yyj4514] = NodeSelectorTerm{} + yyv4519[yyj4519] = NodeSelectorTerm{} } else { - yyv4517 := &yyv4514[yyj4514] - yyv4517.CodecDecodeSelf(d) + yyv4522 := &yyv4519[yyj4519] + yyv4522.CodecDecodeSelf(d) } } else { @@ -56617,17 +56658,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4514 < len(yyv4514) { - yyv4514 = yyv4514[:yyj4514] - yyc4514 = true - } else if yyj4514 == 0 && yyv4514 == nil { - yyv4514 = []NodeSelectorTerm{} - yyc4514 = true + if yyj4519 < len(yyv4519) { + yyv4519 = yyv4519[:yyj4519] + yyc4519 = true + } else if yyj4519 == 0 && yyv4519 == nil { + yyv4519 = []NodeSelectorTerm{} + yyc4519 = true } } - yyh4514.End() - if yyc4514 { - *v = yyv4514 + yyh4519.End() + if yyc4519 { + *v = yyv4519 } } @@ -56636,10 +56677,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4518 := range v { + for _, yyv4523 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4519 := &yyv4518 - yy4519.CodecEncodeSelf(e) + yy4524 := &yyv4523 + yy4524.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56649,83 +56690,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4520 := *v - yyh4520, yyl4520 := z.DecSliceHelperStart() - var yyc4520 bool - if yyl4520 == 0 { - if yyv4520 == nil { - yyv4520 = []NodeSelectorRequirement{} - yyc4520 = true - } else if len(yyv4520) != 0 { - yyv4520 = yyv4520[:0] - yyc4520 = true + yyv4525 := *v + yyh4525, yyl4525 := z.DecSliceHelperStart() + var yyc4525 bool + if yyl4525 == 0 { + if yyv4525 == nil { + yyv4525 = []NodeSelectorRequirement{} + yyc4525 = true + } else if len(yyv4525) != 0 { + yyv4525 = yyv4525[:0] + yyc4525 = true } - } else if yyl4520 > 0 { - var yyrr4520, yyrl4520 int - var yyrt4520 bool - if yyl4520 > cap(yyv4520) { + } else if yyl4525 > 0 { + var yyrr4525, yyrl4525 int + var yyrt4525 bool + if yyl4525 > cap(yyv4525) { - yyrg4520 := len(yyv4520) > 0 - yyv24520 := yyv4520 - yyrl4520, yyrt4520 = z.DecInferLen(yyl4520, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4520 { - if yyrl4520 <= cap(yyv4520) { - yyv4520 = yyv4520[:yyrl4520] + yyrg4525 := len(yyv4525) > 0 + yyv24525 := yyv4525 + yyrl4525, yyrt4525 = z.DecInferLen(yyl4525, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4525 { + if yyrl4525 <= cap(yyv4525) { + yyv4525 = yyv4525[:yyrl4525] } else { - yyv4520 = make([]NodeSelectorRequirement, yyrl4520) + yyv4525 = make([]NodeSelectorRequirement, yyrl4525) } } else { - yyv4520 = make([]NodeSelectorRequirement, yyrl4520) + yyv4525 = make([]NodeSelectorRequirement, yyrl4525) } - yyc4520 = true - yyrr4520 = len(yyv4520) - if yyrg4520 { - copy(yyv4520, yyv24520) + yyc4525 = true + yyrr4525 = len(yyv4525) + if yyrg4525 { + copy(yyv4525, yyv24525) } - } else if yyl4520 != len(yyv4520) { - yyv4520 = yyv4520[:yyl4520] - yyc4520 = true + } else if yyl4525 != len(yyv4525) { + yyv4525 = yyv4525[:yyl4525] + yyc4525 = true } - yyj4520 := 0 - for ; yyj4520 < yyrr4520; yyj4520++ { - yyh4520.ElemContainerState(yyj4520) + yyj4525 := 0 + for ; yyj4525 < yyrr4525; yyj4525++ { + yyh4525.ElemContainerState(yyj4525) if r.TryDecodeAsNil() { - yyv4520[yyj4520] = NodeSelectorRequirement{} + yyv4525[yyj4525] = NodeSelectorRequirement{} } else { - yyv4521 := &yyv4520[yyj4520] - yyv4521.CodecDecodeSelf(d) + yyv4526 := &yyv4525[yyj4525] + yyv4526.CodecDecodeSelf(d) } } - if yyrt4520 { - for ; yyj4520 < yyl4520; yyj4520++ { - yyv4520 = append(yyv4520, NodeSelectorRequirement{}) - yyh4520.ElemContainerState(yyj4520) + if yyrt4525 { + for ; yyj4525 < yyl4525; yyj4525++ { + yyv4525 = append(yyv4525, NodeSelectorRequirement{}) + yyh4525.ElemContainerState(yyj4525) if r.TryDecodeAsNil() { - yyv4520[yyj4520] = NodeSelectorRequirement{} + yyv4525[yyj4525] = NodeSelectorRequirement{} } else { - yyv4522 := &yyv4520[yyj4520] - yyv4522.CodecDecodeSelf(d) + yyv4527 := &yyv4525[yyj4525] + yyv4527.CodecDecodeSelf(d) } } } } else { - yyj4520 := 0 - for ; !r.CheckBreak(); yyj4520++ { + yyj4525 := 0 + for ; !r.CheckBreak(); yyj4525++ { - if yyj4520 >= len(yyv4520) { - yyv4520 = append(yyv4520, NodeSelectorRequirement{}) // var yyz4520 NodeSelectorRequirement - yyc4520 = true + if yyj4525 >= len(yyv4525) { + yyv4525 = append(yyv4525, NodeSelectorRequirement{}) // var yyz4525 NodeSelectorRequirement + yyc4525 = true } - yyh4520.ElemContainerState(yyj4520) - if yyj4520 < len(yyv4520) { + yyh4525.ElemContainerState(yyj4525) + if yyj4525 < len(yyv4525) { if r.TryDecodeAsNil() { - yyv4520[yyj4520] = NodeSelectorRequirement{} + yyv4525[yyj4525] = NodeSelectorRequirement{} } else { - yyv4523 := &yyv4520[yyj4520] - yyv4523.CodecDecodeSelf(d) + yyv4528 := &yyv4525[yyj4525] + yyv4528.CodecDecodeSelf(d) } } else { @@ -56733,17 +56774,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4520 < len(yyv4520) { - yyv4520 = yyv4520[:yyj4520] - yyc4520 = true - } else if yyj4520 == 0 && yyv4520 == nil { - yyv4520 = []NodeSelectorRequirement{} - yyc4520 = true + if yyj4525 < len(yyv4525) { + yyv4525 = yyv4525[:yyj4525] + yyc4525 = true + } else if yyj4525 == 0 && yyv4525 == nil { + yyv4525 = []NodeSelectorRequirement{} + yyc4525 = true } } - yyh4520.End() - if yyc4520 { - *v = yyv4520 + yyh4525.End() + if yyc4525 { + *v = yyv4525 } } @@ -56752,10 +56793,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4524 := range v { + for _, yyv4529 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4525 := &yyv4524 - yy4525.CodecEncodeSelf(e) + yy4530 := &yyv4529 + yy4530.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56765,83 +56806,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4526 := *v - yyh4526, yyl4526 := z.DecSliceHelperStart() - var yyc4526 bool - if yyl4526 == 0 { - if yyv4526 == nil { - yyv4526 = []PodAffinityTerm{} - yyc4526 = true - } else if len(yyv4526) != 0 { - yyv4526 = yyv4526[:0] - yyc4526 = true + yyv4531 := *v + yyh4531, yyl4531 := z.DecSliceHelperStart() + var yyc4531 bool + if yyl4531 == 0 { + if yyv4531 == nil { + yyv4531 = []PodAffinityTerm{} + yyc4531 = true + } else if len(yyv4531) != 0 { + yyv4531 = yyv4531[:0] + yyc4531 = true } - } else if yyl4526 > 0 { - var yyrr4526, yyrl4526 int - var yyrt4526 bool - if yyl4526 > cap(yyv4526) { + } else if yyl4531 > 0 { + var yyrr4531, yyrl4531 int + var yyrt4531 bool + if yyl4531 > cap(yyv4531) { - yyrg4526 := len(yyv4526) > 0 - yyv24526 := yyv4526 - yyrl4526, yyrt4526 = z.DecInferLen(yyl4526, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4526 { - if yyrl4526 <= cap(yyv4526) { - yyv4526 = yyv4526[:yyrl4526] + yyrg4531 := len(yyv4531) > 0 + yyv24531 := yyv4531 + yyrl4531, yyrt4531 = z.DecInferLen(yyl4531, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4531 { + if yyrl4531 <= cap(yyv4531) { + yyv4531 = yyv4531[:yyrl4531] } else { - yyv4526 = make([]PodAffinityTerm, yyrl4526) + yyv4531 = make([]PodAffinityTerm, yyrl4531) } } else { - yyv4526 = make([]PodAffinityTerm, yyrl4526) + yyv4531 = make([]PodAffinityTerm, yyrl4531) } - yyc4526 = true - yyrr4526 = len(yyv4526) - if yyrg4526 { - copy(yyv4526, yyv24526) + yyc4531 = true + yyrr4531 = len(yyv4531) + if yyrg4531 { + copy(yyv4531, yyv24531) } - } else if yyl4526 != len(yyv4526) { - yyv4526 = yyv4526[:yyl4526] - yyc4526 = true + } else if yyl4531 != len(yyv4531) { + yyv4531 = yyv4531[:yyl4531] + yyc4531 = true } - yyj4526 := 0 - for ; yyj4526 < yyrr4526; yyj4526++ { - yyh4526.ElemContainerState(yyj4526) + yyj4531 := 0 + for ; yyj4531 < yyrr4531; yyj4531++ { + yyh4531.ElemContainerState(yyj4531) if r.TryDecodeAsNil() { - yyv4526[yyj4526] = PodAffinityTerm{} + yyv4531[yyj4531] = PodAffinityTerm{} } else { - yyv4527 := &yyv4526[yyj4526] - yyv4527.CodecDecodeSelf(d) + yyv4532 := &yyv4531[yyj4531] + yyv4532.CodecDecodeSelf(d) } } - if yyrt4526 { - for ; yyj4526 < yyl4526; yyj4526++ { - yyv4526 = append(yyv4526, PodAffinityTerm{}) - yyh4526.ElemContainerState(yyj4526) + if yyrt4531 { + for ; yyj4531 < yyl4531; yyj4531++ { + yyv4531 = append(yyv4531, PodAffinityTerm{}) + yyh4531.ElemContainerState(yyj4531) if r.TryDecodeAsNil() { - yyv4526[yyj4526] = PodAffinityTerm{} + yyv4531[yyj4531] = PodAffinityTerm{} } else { - yyv4528 := &yyv4526[yyj4526] - yyv4528.CodecDecodeSelf(d) + yyv4533 := &yyv4531[yyj4531] + yyv4533.CodecDecodeSelf(d) } } } } else { - yyj4526 := 0 - for ; !r.CheckBreak(); yyj4526++ { + yyj4531 := 0 + for ; !r.CheckBreak(); yyj4531++ { - if yyj4526 >= len(yyv4526) { - yyv4526 = append(yyv4526, PodAffinityTerm{}) // var yyz4526 PodAffinityTerm - yyc4526 = true + if yyj4531 >= len(yyv4531) { + yyv4531 = append(yyv4531, PodAffinityTerm{}) // var yyz4531 PodAffinityTerm + yyc4531 = true } - yyh4526.ElemContainerState(yyj4526) - if yyj4526 < len(yyv4526) { + yyh4531.ElemContainerState(yyj4531) + if yyj4531 < len(yyv4531) { if r.TryDecodeAsNil() { - yyv4526[yyj4526] = PodAffinityTerm{} + yyv4531[yyj4531] = PodAffinityTerm{} } else { - yyv4529 := &yyv4526[yyj4526] - yyv4529.CodecDecodeSelf(d) + yyv4534 := &yyv4531[yyj4531] + yyv4534.CodecDecodeSelf(d) } } else { @@ -56849,17 +56890,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4526 < len(yyv4526) { - yyv4526 = yyv4526[:yyj4526] - yyc4526 = true - } else if yyj4526 == 0 && yyv4526 == nil { - yyv4526 = []PodAffinityTerm{} - yyc4526 = true + if yyj4531 < len(yyv4531) { + yyv4531 = yyv4531[:yyj4531] + yyc4531 = true + } else if yyj4531 == 0 && yyv4531 == nil { + yyv4531 = []PodAffinityTerm{} + yyc4531 = true } } - yyh4526.End() - if yyc4526 { - *v = yyv4526 + yyh4531.End() + if yyc4531 { + *v = yyv4531 } } @@ -56868,10 +56909,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4530 := range v { + for _, yyv4535 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4531 := &yyv4530 - yy4531.CodecEncodeSelf(e) + yy4536 := &yyv4535 + yy4536.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56881,83 +56922,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4532 := *v - yyh4532, yyl4532 := z.DecSliceHelperStart() - var yyc4532 bool - if yyl4532 == 0 { - if yyv4532 == nil { - yyv4532 = []WeightedPodAffinityTerm{} - yyc4532 = true - } else if len(yyv4532) != 0 { - yyv4532 = yyv4532[:0] - yyc4532 = true + yyv4537 := *v + yyh4537, yyl4537 := z.DecSliceHelperStart() + var yyc4537 bool + if yyl4537 == 0 { + if yyv4537 == nil { + yyv4537 = []WeightedPodAffinityTerm{} + yyc4537 = true + } else if len(yyv4537) != 0 { + yyv4537 = yyv4537[:0] + yyc4537 = true } - } else if yyl4532 > 0 { - var yyrr4532, yyrl4532 int - var yyrt4532 bool - if yyl4532 > cap(yyv4532) { + } else if yyl4537 > 0 { + var yyrr4537, yyrl4537 int + var yyrt4537 bool + if yyl4537 > cap(yyv4537) { - yyrg4532 := len(yyv4532) > 0 - yyv24532 := yyv4532 - yyrl4532, yyrt4532 = z.DecInferLen(yyl4532, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4532 { - if yyrl4532 <= cap(yyv4532) { - yyv4532 = yyv4532[:yyrl4532] + yyrg4537 := len(yyv4537) > 0 + yyv24537 := yyv4537 + yyrl4537, yyrt4537 = z.DecInferLen(yyl4537, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4537 { + if yyrl4537 <= cap(yyv4537) { + yyv4537 = yyv4537[:yyrl4537] } else { - yyv4532 = make([]WeightedPodAffinityTerm, yyrl4532) + yyv4537 = make([]WeightedPodAffinityTerm, yyrl4537) } } else { - yyv4532 = make([]WeightedPodAffinityTerm, yyrl4532) + yyv4537 = make([]WeightedPodAffinityTerm, yyrl4537) } - yyc4532 = true - yyrr4532 = len(yyv4532) - if yyrg4532 { - copy(yyv4532, yyv24532) + yyc4537 = true + yyrr4537 = len(yyv4537) + if yyrg4537 { + copy(yyv4537, yyv24537) } - } else if yyl4532 != len(yyv4532) { - yyv4532 = yyv4532[:yyl4532] - yyc4532 = true + } else if yyl4537 != len(yyv4537) { + yyv4537 = yyv4537[:yyl4537] + yyc4537 = true } - yyj4532 := 0 - for ; yyj4532 < yyrr4532; yyj4532++ { - yyh4532.ElemContainerState(yyj4532) + yyj4537 := 0 + for ; yyj4537 < yyrr4537; yyj4537++ { + yyh4537.ElemContainerState(yyj4537) if r.TryDecodeAsNil() { - yyv4532[yyj4532] = WeightedPodAffinityTerm{} + yyv4537[yyj4537] = WeightedPodAffinityTerm{} } else { - yyv4533 := &yyv4532[yyj4532] - yyv4533.CodecDecodeSelf(d) + yyv4538 := &yyv4537[yyj4537] + yyv4538.CodecDecodeSelf(d) } } - if yyrt4532 { - for ; yyj4532 < yyl4532; yyj4532++ { - yyv4532 = append(yyv4532, WeightedPodAffinityTerm{}) - yyh4532.ElemContainerState(yyj4532) + if yyrt4537 { + for ; yyj4537 < yyl4537; yyj4537++ { + yyv4537 = append(yyv4537, WeightedPodAffinityTerm{}) + yyh4537.ElemContainerState(yyj4537) if r.TryDecodeAsNil() { - yyv4532[yyj4532] = WeightedPodAffinityTerm{} + yyv4537[yyj4537] = WeightedPodAffinityTerm{} } else { - yyv4534 := &yyv4532[yyj4532] - yyv4534.CodecDecodeSelf(d) + yyv4539 := &yyv4537[yyj4537] + yyv4539.CodecDecodeSelf(d) } } } } else { - yyj4532 := 0 - for ; !r.CheckBreak(); yyj4532++ { + yyj4537 := 0 + for ; !r.CheckBreak(); yyj4537++ { - if yyj4532 >= len(yyv4532) { - yyv4532 = append(yyv4532, WeightedPodAffinityTerm{}) // var yyz4532 WeightedPodAffinityTerm - yyc4532 = true + if yyj4537 >= len(yyv4537) { + yyv4537 = append(yyv4537, WeightedPodAffinityTerm{}) // var yyz4537 WeightedPodAffinityTerm + yyc4537 = true } - yyh4532.ElemContainerState(yyj4532) - if yyj4532 < len(yyv4532) { + yyh4537.ElemContainerState(yyj4537) + if yyj4537 < len(yyv4537) { if r.TryDecodeAsNil() { - yyv4532[yyj4532] = WeightedPodAffinityTerm{} + yyv4537[yyj4537] = WeightedPodAffinityTerm{} } else { - yyv4535 := &yyv4532[yyj4532] - yyv4535.CodecDecodeSelf(d) + yyv4540 := &yyv4537[yyj4537] + yyv4540.CodecDecodeSelf(d) } } else { @@ -56965,17 +57006,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4532 < len(yyv4532) { - yyv4532 = yyv4532[:yyj4532] - yyc4532 = true - } else if yyj4532 == 0 && yyv4532 == nil { - yyv4532 = []WeightedPodAffinityTerm{} - yyc4532 = true + if yyj4537 < len(yyv4537) { + yyv4537 = yyv4537[:yyj4537] + yyc4537 = true + } else if yyj4537 == 0 && yyv4537 == nil { + yyv4537 = []WeightedPodAffinityTerm{} + yyc4537 = true } } - yyh4532.End() - if yyc4532 { - *v = yyv4532 + yyh4537.End() + if yyc4537 { + *v = yyv4537 } } @@ -56984,10 +57025,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4536 := range v { + for _, yyv4541 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4537 := &yyv4536 - yy4537.CodecEncodeSelf(e) + yy4542 := &yyv4541 + yy4542.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56997,83 +57038,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4538 := *v - yyh4538, yyl4538 := z.DecSliceHelperStart() - var yyc4538 bool - if yyl4538 == 0 { - if yyv4538 == nil { - yyv4538 = []PreferredSchedulingTerm{} - yyc4538 = true - } else if len(yyv4538) != 0 { - yyv4538 = yyv4538[:0] - yyc4538 = true + yyv4543 := *v + yyh4543, yyl4543 := z.DecSliceHelperStart() + var yyc4543 bool + if yyl4543 == 0 { + if yyv4543 == nil { + yyv4543 = []PreferredSchedulingTerm{} + yyc4543 = true + } else if len(yyv4543) != 0 { + yyv4543 = yyv4543[:0] + yyc4543 = true } - } else if yyl4538 > 0 { - var yyrr4538, yyrl4538 int - var yyrt4538 bool - if yyl4538 > cap(yyv4538) { + } else if yyl4543 > 0 { + var yyrr4543, yyrl4543 int + var yyrt4543 bool + if yyl4543 > cap(yyv4543) { - yyrg4538 := len(yyv4538) > 0 - yyv24538 := yyv4538 - yyrl4538, yyrt4538 = z.DecInferLen(yyl4538, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4538 { - if yyrl4538 <= cap(yyv4538) { - yyv4538 = yyv4538[:yyrl4538] + yyrg4543 := len(yyv4543) > 0 + yyv24543 := yyv4543 + yyrl4543, yyrt4543 = z.DecInferLen(yyl4543, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4543 { + if yyrl4543 <= cap(yyv4543) { + yyv4543 = yyv4543[:yyrl4543] } else { - yyv4538 = make([]PreferredSchedulingTerm, yyrl4538) + yyv4543 = make([]PreferredSchedulingTerm, yyrl4543) } } else { - yyv4538 = make([]PreferredSchedulingTerm, yyrl4538) + yyv4543 = make([]PreferredSchedulingTerm, yyrl4543) } - yyc4538 = true - yyrr4538 = len(yyv4538) - if yyrg4538 { - copy(yyv4538, yyv24538) + yyc4543 = true + yyrr4543 = len(yyv4543) + if yyrg4543 { + copy(yyv4543, yyv24543) } - } else if yyl4538 != len(yyv4538) { - yyv4538 = yyv4538[:yyl4538] - yyc4538 = true + } else if yyl4543 != len(yyv4543) { + yyv4543 = yyv4543[:yyl4543] + yyc4543 = true } - yyj4538 := 0 - for ; yyj4538 < yyrr4538; yyj4538++ { - yyh4538.ElemContainerState(yyj4538) + yyj4543 := 0 + for ; yyj4543 < yyrr4543; yyj4543++ { + yyh4543.ElemContainerState(yyj4543) if r.TryDecodeAsNil() { - yyv4538[yyj4538] = PreferredSchedulingTerm{} + yyv4543[yyj4543] = PreferredSchedulingTerm{} } else { - yyv4539 := &yyv4538[yyj4538] - yyv4539.CodecDecodeSelf(d) + yyv4544 := &yyv4543[yyj4543] + yyv4544.CodecDecodeSelf(d) } } - if yyrt4538 { - for ; yyj4538 < yyl4538; yyj4538++ { - yyv4538 = append(yyv4538, PreferredSchedulingTerm{}) - yyh4538.ElemContainerState(yyj4538) + if yyrt4543 { + for ; yyj4543 < yyl4543; yyj4543++ { + yyv4543 = append(yyv4543, PreferredSchedulingTerm{}) + yyh4543.ElemContainerState(yyj4543) if r.TryDecodeAsNil() { - yyv4538[yyj4538] = PreferredSchedulingTerm{} + yyv4543[yyj4543] = PreferredSchedulingTerm{} } else { - yyv4540 := &yyv4538[yyj4538] - yyv4540.CodecDecodeSelf(d) + yyv4545 := &yyv4543[yyj4543] + yyv4545.CodecDecodeSelf(d) } } } } else { - yyj4538 := 0 - for ; !r.CheckBreak(); yyj4538++ { + yyj4543 := 0 + for ; !r.CheckBreak(); yyj4543++ { - if yyj4538 >= len(yyv4538) { - yyv4538 = append(yyv4538, PreferredSchedulingTerm{}) // var yyz4538 PreferredSchedulingTerm - yyc4538 = true + if yyj4543 >= len(yyv4543) { + yyv4543 = append(yyv4543, PreferredSchedulingTerm{}) // var yyz4543 PreferredSchedulingTerm + yyc4543 = true } - yyh4538.ElemContainerState(yyj4538) - if yyj4538 < len(yyv4538) { + yyh4543.ElemContainerState(yyj4543) + if yyj4543 < len(yyv4543) { if r.TryDecodeAsNil() { - yyv4538[yyj4538] = PreferredSchedulingTerm{} + yyv4543[yyj4543] = PreferredSchedulingTerm{} } else { - yyv4541 := &yyv4538[yyj4538] - yyv4541.CodecDecodeSelf(d) + yyv4546 := &yyv4543[yyj4543] + yyv4546.CodecDecodeSelf(d) } } else { @@ -57081,17 +57122,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4538 < len(yyv4538) { - yyv4538 = yyv4538[:yyj4538] - yyc4538 = true - } else if yyj4538 == 0 && yyv4538 == nil { - yyv4538 = []PreferredSchedulingTerm{} - yyc4538 = true + if yyj4543 < len(yyv4543) { + yyv4543 = yyv4543[:yyj4543] + yyc4543 = true + } else if yyj4543 == 0 && yyv4543 == nil { + yyv4543 = []PreferredSchedulingTerm{} + yyc4543 = true } } - yyh4538.End() - if yyc4538 { - *v = yyv4538 + yyh4543.End() + if yyc4543 { + *v = yyv4543 } } @@ -57100,10 +57141,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4542 := range v { + for _, yyv4547 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4543 := &yyv4542 - yy4543.CodecEncodeSelf(e) + yy4548 := &yyv4547 + yy4548.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57113,83 +57154,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4544 := *v - yyh4544, yyl4544 := z.DecSliceHelperStart() - var yyc4544 bool - if yyl4544 == 0 { - if yyv4544 == nil { - yyv4544 = []Volume{} - yyc4544 = true - } else if len(yyv4544) != 0 { - yyv4544 = yyv4544[:0] - yyc4544 = true + yyv4549 := *v + yyh4549, yyl4549 := z.DecSliceHelperStart() + var yyc4549 bool + if yyl4549 == 0 { + if yyv4549 == nil { + yyv4549 = []Volume{} + yyc4549 = true + } else if len(yyv4549) != 0 { + yyv4549 = yyv4549[:0] + yyc4549 = true } - } else if yyl4544 > 0 { - var yyrr4544, yyrl4544 int - var yyrt4544 bool - if yyl4544 > cap(yyv4544) { + } else if yyl4549 > 0 { + var yyrr4549, yyrl4549 int + var yyrt4549 bool + if yyl4549 > cap(yyv4549) { - yyrg4544 := len(yyv4544) > 0 - yyv24544 := yyv4544 - yyrl4544, yyrt4544 = z.DecInferLen(yyl4544, z.DecBasicHandle().MaxInitLen, 184) - if yyrt4544 { - if yyrl4544 <= cap(yyv4544) { - yyv4544 = yyv4544[:yyrl4544] + yyrg4549 := len(yyv4549) > 0 + yyv24549 := yyv4549 + yyrl4549, yyrt4549 = z.DecInferLen(yyl4549, z.DecBasicHandle().MaxInitLen, 184) + if yyrt4549 { + if yyrl4549 <= cap(yyv4549) { + yyv4549 = yyv4549[:yyrl4549] } else { - yyv4544 = make([]Volume, yyrl4544) + yyv4549 = make([]Volume, yyrl4549) } } else { - yyv4544 = make([]Volume, yyrl4544) + yyv4549 = make([]Volume, yyrl4549) } - yyc4544 = true - yyrr4544 = len(yyv4544) - if yyrg4544 { - copy(yyv4544, yyv24544) + yyc4549 = true + yyrr4549 = len(yyv4549) + if yyrg4549 { + copy(yyv4549, yyv24549) } - } else if yyl4544 != len(yyv4544) { - yyv4544 = yyv4544[:yyl4544] - yyc4544 = true + } else if yyl4549 != len(yyv4549) { + yyv4549 = yyv4549[:yyl4549] + yyc4549 = true } - yyj4544 := 0 - for ; yyj4544 < yyrr4544; yyj4544++ { - yyh4544.ElemContainerState(yyj4544) + yyj4549 := 0 + for ; yyj4549 < yyrr4549; yyj4549++ { + yyh4549.ElemContainerState(yyj4549) if r.TryDecodeAsNil() { - yyv4544[yyj4544] = Volume{} + yyv4549[yyj4549] = Volume{} } else { - yyv4545 := &yyv4544[yyj4544] - yyv4545.CodecDecodeSelf(d) + yyv4550 := &yyv4549[yyj4549] + yyv4550.CodecDecodeSelf(d) } } - if yyrt4544 { - for ; yyj4544 < yyl4544; yyj4544++ { - yyv4544 = append(yyv4544, Volume{}) - yyh4544.ElemContainerState(yyj4544) + if yyrt4549 { + for ; yyj4549 < yyl4549; yyj4549++ { + yyv4549 = append(yyv4549, Volume{}) + yyh4549.ElemContainerState(yyj4549) if r.TryDecodeAsNil() { - yyv4544[yyj4544] = Volume{} + yyv4549[yyj4549] = Volume{} } else { - yyv4546 := &yyv4544[yyj4544] - yyv4546.CodecDecodeSelf(d) + yyv4551 := &yyv4549[yyj4549] + yyv4551.CodecDecodeSelf(d) } } } } else { - yyj4544 := 0 - for ; !r.CheckBreak(); yyj4544++ { + yyj4549 := 0 + for ; !r.CheckBreak(); yyj4549++ { - if yyj4544 >= len(yyv4544) { - yyv4544 = append(yyv4544, Volume{}) // var yyz4544 Volume - yyc4544 = true + if yyj4549 >= len(yyv4549) { + yyv4549 = append(yyv4549, Volume{}) // var yyz4549 Volume + yyc4549 = true } - yyh4544.ElemContainerState(yyj4544) - if yyj4544 < len(yyv4544) { + yyh4549.ElemContainerState(yyj4549) + if yyj4549 < len(yyv4549) { if r.TryDecodeAsNil() { - yyv4544[yyj4544] = Volume{} + yyv4549[yyj4549] = Volume{} } else { - yyv4547 := &yyv4544[yyj4544] - yyv4547.CodecDecodeSelf(d) + yyv4552 := &yyv4549[yyj4549] + yyv4552.CodecDecodeSelf(d) } } else { @@ -57197,17 +57238,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4544 < len(yyv4544) { - yyv4544 = yyv4544[:yyj4544] - yyc4544 = true - } else if yyj4544 == 0 && yyv4544 == nil { - yyv4544 = []Volume{} - yyc4544 = true + if yyj4549 < len(yyv4549) { + yyv4549 = yyv4549[:yyj4549] + yyc4549 = true + } else if yyj4549 == 0 && yyv4549 == nil { + yyv4549 = []Volume{} + yyc4549 = true } } - yyh4544.End() - if yyc4544 { - *v = yyv4544 + yyh4549.End() + if yyc4549 { + *v = yyv4549 } } @@ -57216,10 +57257,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4548 := range v { + for _, yyv4553 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4549 := &yyv4548 - yy4549.CodecEncodeSelf(e) + yy4554 := &yyv4553 + yy4554.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57229,83 +57270,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4550 := *v - yyh4550, yyl4550 := z.DecSliceHelperStart() - var yyc4550 bool - if yyl4550 == 0 { - if yyv4550 == nil { - yyv4550 = []Container{} - yyc4550 = true - } else if len(yyv4550) != 0 { - yyv4550 = yyv4550[:0] - yyc4550 = true + yyv4555 := *v + yyh4555, yyl4555 := z.DecSliceHelperStart() + var yyc4555 bool + if yyl4555 == 0 { + if yyv4555 == nil { + yyv4555 = []Container{} + yyc4555 = true + } else if len(yyv4555) != 0 { + yyv4555 = yyv4555[:0] + yyc4555 = true } - } else if yyl4550 > 0 { - var yyrr4550, yyrl4550 int - var yyrt4550 bool - if yyl4550 > cap(yyv4550) { + } else if yyl4555 > 0 { + var yyrr4555, yyrl4555 int + var yyrt4555 bool + if yyl4555 > cap(yyv4555) { - yyrg4550 := len(yyv4550) > 0 - yyv24550 := yyv4550 - yyrl4550, yyrt4550 = z.DecInferLen(yyl4550, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4550 { - if yyrl4550 <= cap(yyv4550) { - yyv4550 = yyv4550[:yyrl4550] + yyrg4555 := len(yyv4555) > 0 + yyv24555 := yyv4555 + yyrl4555, yyrt4555 = z.DecInferLen(yyl4555, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4555 { + if yyrl4555 <= cap(yyv4555) { + yyv4555 = yyv4555[:yyrl4555] } else { - yyv4550 = make([]Container, yyrl4550) + yyv4555 = make([]Container, yyrl4555) } } else { - yyv4550 = make([]Container, yyrl4550) + yyv4555 = make([]Container, yyrl4555) } - yyc4550 = true - yyrr4550 = len(yyv4550) - if yyrg4550 { - copy(yyv4550, yyv24550) + yyc4555 = true + yyrr4555 = len(yyv4555) + if yyrg4555 { + copy(yyv4555, yyv24555) } - } else if yyl4550 != len(yyv4550) { - yyv4550 = yyv4550[:yyl4550] - yyc4550 = true + } else if yyl4555 != len(yyv4555) { + yyv4555 = yyv4555[:yyl4555] + yyc4555 = true } - yyj4550 := 0 - for ; yyj4550 < yyrr4550; yyj4550++ { - yyh4550.ElemContainerState(yyj4550) + yyj4555 := 0 + for ; yyj4555 < yyrr4555; yyj4555++ { + yyh4555.ElemContainerState(yyj4555) if r.TryDecodeAsNil() { - yyv4550[yyj4550] = Container{} + yyv4555[yyj4555] = Container{} } else { - yyv4551 := &yyv4550[yyj4550] - yyv4551.CodecDecodeSelf(d) + yyv4556 := &yyv4555[yyj4555] + yyv4556.CodecDecodeSelf(d) } } - if yyrt4550 { - for ; yyj4550 < yyl4550; yyj4550++ { - yyv4550 = append(yyv4550, Container{}) - yyh4550.ElemContainerState(yyj4550) + if yyrt4555 { + for ; yyj4555 < yyl4555; yyj4555++ { + yyv4555 = append(yyv4555, Container{}) + yyh4555.ElemContainerState(yyj4555) if r.TryDecodeAsNil() { - yyv4550[yyj4550] = Container{} + yyv4555[yyj4555] = Container{} } else { - yyv4552 := &yyv4550[yyj4550] - yyv4552.CodecDecodeSelf(d) + yyv4557 := &yyv4555[yyj4555] + yyv4557.CodecDecodeSelf(d) } } } } else { - yyj4550 := 0 - for ; !r.CheckBreak(); yyj4550++ { + yyj4555 := 0 + for ; !r.CheckBreak(); yyj4555++ { - if yyj4550 >= len(yyv4550) { - yyv4550 = append(yyv4550, Container{}) // var yyz4550 Container - yyc4550 = true + if yyj4555 >= len(yyv4555) { + yyv4555 = append(yyv4555, Container{}) // var yyz4555 Container + yyc4555 = true } - yyh4550.ElemContainerState(yyj4550) - if yyj4550 < len(yyv4550) { + yyh4555.ElemContainerState(yyj4555) + if yyj4555 < len(yyv4555) { if r.TryDecodeAsNil() { - yyv4550[yyj4550] = Container{} + yyv4555[yyj4555] = Container{} } else { - yyv4553 := &yyv4550[yyj4550] - yyv4553.CodecDecodeSelf(d) + yyv4558 := &yyv4555[yyj4555] + yyv4558.CodecDecodeSelf(d) } } else { @@ -57313,17 +57354,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4550 < len(yyv4550) { - yyv4550 = yyv4550[:yyj4550] - yyc4550 = true - } else if yyj4550 == 0 && yyv4550 == nil { - yyv4550 = []Container{} - yyc4550 = true + if yyj4555 < len(yyv4555) { + yyv4555 = yyv4555[:yyj4555] + yyc4555 = true + } else if yyj4555 == 0 && yyv4555 == nil { + yyv4555 = []Container{} + yyc4555 = true } } - yyh4550.End() - if yyc4550 { - *v = yyv4550 + yyh4555.End() + if yyc4555 { + *v = yyv4555 } } @@ -57332,10 +57373,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4554 := range v { + for _, yyv4559 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4555 := &yyv4554 - yy4555.CodecEncodeSelf(e) + yy4560 := &yyv4559 + yy4560.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57345,83 +57386,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4556 := *v - yyh4556, yyl4556 := z.DecSliceHelperStart() - var yyc4556 bool - if yyl4556 == 0 { - if yyv4556 == nil { - yyv4556 = []LocalObjectReference{} - yyc4556 = true - } else if len(yyv4556) != 0 { - yyv4556 = yyv4556[:0] - yyc4556 = true + yyv4561 := *v + yyh4561, yyl4561 := z.DecSliceHelperStart() + var yyc4561 bool + if yyl4561 == 0 { + if yyv4561 == nil { + yyv4561 = []LocalObjectReference{} + yyc4561 = true + } else if len(yyv4561) != 0 { + yyv4561 = yyv4561[:0] + yyc4561 = true } - } else if yyl4556 > 0 { - var yyrr4556, yyrl4556 int - var yyrt4556 bool - if yyl4556 > cap(yyv4556) { + } else if yyl4561 > 0 { + var yyrr4561, yyrl4561 int + var yyrt4561 bool + if yyl4561 > cap(yyv4561) { - yyrg4556 := len(yyv4556) > 0 - yyv24556 := yyv4556 - yyrl4556, yyrt4556 = z.DecInferLen(yyl4556, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4556 { - if yyrl4556 <= cap(yyv4556) { - yyv4556 = yyv4556[:yyrl4556] + yyrg4561 := len(yyv4561) > 0 + yyv24561 := yyv4561 + yyrl4561, yyrt4561 = z.DecInferLen(yyl4561, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4561 { + if yyrl4561 <= cap(yyv4561) { + yyv4561 = yyv4561[:yyrl4561] } else { - yyv4556 = make([]LocalObjectReference, yyrl4556) + yyv4561 = make([]LocalObjectReference, yyrl4561) } } else { - yyv4556 = make([]LocalObjectReference, yyrl4556) + yyv4561 = make([]LocalObjectReference, yyrl4561) } - yyc4556 = true - yyrr4556 = len(yyv4556) - if yyrg4556 { - copy(yyv4556, yyv24556) + yyc4561 = true + yyrr4561 = len(yyv4561) + if yyrg4561 { + copy(yyv4561, yyv24561) } - } else if yyl4556 != len(yyv4556) { - yyv4556 = yyv4556[:yyl4556] - yyc4556 = true + } else if yyl4561 != len(yyv4561) { + yyv4561 = yyv4561[:yyl4561] + yyc4561 = true } - yyj4556 := 0 - for ; yyj4556 < yyrr4556; yyj4556++ { - yyh4556.ElemContainerState(yyj4556) + yyj4561 := 0 + for ; yyj4561 < yyrr4561; yyj4561++ { + yyh4561.ElemContainerState(yyj4561) if r.TryDecodeAsNil() { - yyv4556[yyj4556] = LocalObjectReference{} + yyv4561[yyj4561] = LocalObjectReference{} } else { - yyv4557 := &yyv4556[yyj4556] - yyv4557.CodecDecodeSelf(d) + yyv4562 := &yyv4561[yyj4561] + yyv4562.CodecDecodeSelf(d) } } - if yyrt4556 { - for ; yyj4556 < yyl4556; yyj4556++ { - yyv4556 = append(yyv4556, LocalObjectReference{}) - yyh4556.ElemContainerState(yyj4556) + if yyrt4561 { + for ; yyj4561 < yyl4561; yyj4561++ { + yyv4561 = append(yyv4561, LocalObjectReference{}) + yyh4561.ElemContainerState(yyj4561) if r.TryDecodeAsNil() { - yyv4556[yyj4556] = LocalObjectReference{} + yyv4561[yyj4561] = LocalObjectReference{} } else { - yyv4558 := &yyv4556[yyj4556] - yyv4558.CodecDecodeSelf(d) + yyv4563 := &yyv4561[yyj4561] + yyv4563.CodecDecodeSelf(d) } } } } else { - yyj4556 := 0 - for ; !r.CheckBreak(); yyj4556++ { + yyj4561 := 0 + for ; !r.CheckBreak(); yyj4561++ { - if yyj4556 >= len(yyv4556) { - yyv4556 = append(yyv4556, LocalObjectReference{}) // var yyz4556 LocalObjectReference - yyc4556 = true + if yyj4561 >= len(yyv4561) { + yyv4561 = append(yyv4561, LocalObjectReference{}) // var yyz4561 LocalObjectReference + yyc4561 = true } - yyh4556.ElemContainerState(yyj4556) - if yyj4556 < len(yyv4556) { + yyh4561.ElemContainerState(yyj4561) + if yyj4561 < len(yyv4561) { if r.TryDecodeAsNil() { - yyv4556[yyj4556] = LocalObjectReference{} + yyv4561[yyj4561] = LocalObjectReference{} } else { - yyv4559 := &yyv4556[yyj4556] - yyv4559.CodecDecodeSelf(d) + yyv4564 := &yyv4561[yyj4561] + yyv4564.CodecDecodeSelf(d) } } else { @@ -57429,17 +57470,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4556 < len(yyv4556) { - yyv4556 = yyv4556[:yyj4556] - yyc4556 = true - } else if yyj4556 == 0 && yyv4556 == nil { - yyv4556 = []LocalObjectReference{} - yyc4556 = true + if yyj4561 < len(yyv4561) { + yyv4561 = yyv4561[:yyj4561] + yyc4561 = true + } else if yyj4561 == 0 && yyv4561 == nil { + yyv4561 = []LocalObjectReference{} + yyc4561 = true } } - yyh4556.End() - if yyc4556 { - *v = yyv4556 + yyh4561.End() + if yyc4561 { + *v = yyv4561 } } @@ -57448,10 +57489,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4560 := range v { + for _, yyv4565 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4561 := &yyv4560 - yy4561.CodecEncodeSelf(e) + yy4566 := &yyv4565 + yy4566.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57461,83 +57502,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4562 := *v - yyh4562, yyl4562 := z.DecSliceHelperStart() - var yyc4562 bool - if yyl4562 == 0 { - if yyv4562 == nil { - yyv4562 = []PodCondition{} - yyc4562 = true - } else if len(yyv4562) != 0 { - yyv4562 = yyv4562[:0] - yyc4562 = true + yyv4567 := *v + yyh4567, yyl4567 := z.DecSliceHelperStart() + var yyc4567 bool + if yyl4567 == 0 { + if yyv4567 == nil { + yyv4567 = []PodCondition{} + yyc4567 = true + } else if len(yyv4567) != 0 { + yyv4567 = yyv4567[:0] + yyc4567 = true } - } else if yyl4562 > 0 { - var yyrr4562, yyrl4562 int - var yyrt4562 bool - if yyl4562 > cap(yyv4562) { + } else if yyl4567 > 0 { + var yyrr4567, yyrl4567 int + var yyrt4567 bool + if yyl4567 > cap(yyv4567) { - yyrg4562 := len(yyv4562) > 0 - yyv24562 := yyv4562 - yyrl4562, yyrt4562 = z.DecInferLen(yyl4562, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4562 { - if yyrl4562 <= cap(yyv4562) { - yyv4562 = yyv4562[:yyrl4562] + yyrg4567 := len(yyv4567) > 0 + yyv24567 := yyv4567 + yyrl4567, yyrt4567 = z.DecInferLen(yyl4567, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4567 { + if yyrl4567 <= cap(yyv4567) { + yyv4567 = yyv4567[:yyrl4567] } else { - yyv4562 = make([]PodCondition, yyrl4562) + yyv4567 = make([]PodCondition, yyrl4567) } } else { - yyv4562 = make([]PodCondition, yyrl4562) + yyv4567 = make([]PodCondition, yyrl4567) } - yyc4562 = true - yyrr4562 = len(yyv4562) - if yyrg4562 { - copy(yyv4562, yyv24562) + yyc4567 = true + yyrr4567 = len(yyv4567) + if yyrg4567 { + copy(yyv4567, yyv24567) } - } else if yyl4562 != len(yyv4562) { - yyv4562 = yyv4562[:yyl4562] - yyc4562 = true + } else if yyl4567 != len(yyv4567) { + yyv4567 = yyv4567[:yyl4567] + yyc4567 = true } - yyj4562 := 0 - for ; yyj4562 < yyrr4562; yyj4562++ { - yyh4562.ElemContainerState(yyj4562) + yyj4567 := 0 + for ; yyj4567 < yyrr4567; yyj4567++ { + yyh4567.ElemContainerState(yyj4567) if r.TryDecodeAsNil() { - yyv4562[yyj4562] = PodCondition{} + yyv4567[yyj4567] = PodCondition{} } else { - yyv4563 := &yyv4562[yyj4562] - yyv4563.CodecDecodeSelf(d) + yyv4568 := &yyv4567[yyj4567] + yyv4568.CodecDecodeSelf(d) } } - if yyrt4562 { - for ; yyj4562 < yyl4562; yyj4562++ { - yyv4562 = append(yyv4562, PodCondition{}) - yyh4562.ElemContainerState(yyj4562) + if yyrt4567 { + for ; yyj4567 < yyl4567; yyj4567++ { + yyv4567 = append(yyv4567, PodCondition{}) + yyh4567.ElemContainerState(yyj4567) if r.TryDecodeAsNil() { - yyv4562[yyj4562] = PodCondition{} + yyv4567[yyj4567] = PodCondition{} } else { - yyv4564 := &yyv4562[yyj4562] - yyv4564.CodecDecodeSelf(d) + yyv4569 := &yyv4567[yyj4567] + yyv4569.CodecDecodeSelf(d) } } } } else { - yyj4562 := 0 - for ; !r.CheckBreak(); yyj4562++ { + yyj4567 := 0 + for ; !r.CheckBreak(); yyj4567++ { - if yyj4562 >= len(yyv4562) { - yyv4562 = append(yyv4562, PodCondition{}) // var yyz4562 PodCondition - yyc4562 = true + if yyj4567 >= len(yyv4567) { + yyv4567 = append(yyv4567, PodCondition{}) // var yyz4567 PodCondition + yyc4567 = true } - yyh4562.ElemContainerState(yyj4562) - if yyj4562 < len(yyv4562) { + yyh4567.ElemContainerState(yyj4567) + if yyj4567 < len(yyv4567) { if r.TryDecodeAsNil() { - yyv4562[yyj4562] = PodCondition{} + yyv4567[yyj4567] = PodCondition{} } else { - yyv4565 := &yyv4562[yyj4562] - yyv4565.CodecDecodeSelf(d) + yyv4570 := &yyv4567[yyj4567] + yyv4570.CodecDecodeSelf(d) } } else { @@ -57545,17 +57586,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4562 < len(yyv4562) { - yyv4562 = yyv4562[:yyj4562] - yyc4562 = true - } else if yyj4562 == 0 && yyv4562 == nil { - yyv4562 = []PodCondition{} - yyc4562 = true + if yyj4567 < len(yyv4567) { + yyv4567 = yyv4567[:yyj4567] + yyc4567 = true + } else if yyj4567 == 0 && yyv4567 == nil { + yyv4567 = []PodCondition{} + yyc4567 = true } } - yyh4562.End() - if yyc4562 { - *v = yyv4562 + yyh4567.End() + if yyc4567 { + *v = yyv4567 } } @@ -57564,10 +57605,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4566 := range v { + for _, yyv4571 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4567 := &yyv4566 - yy4567.CodecEncodeSelf(e) + yy4572 := &yyv4571 + yy4572.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57577,83 +57618,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4568 := *v - yyh4568, yyl4568 := z.DecSliceHelperStart() - var yyc4568 bool - if yyl4568 == 0 { - if yyv4568 == nil { - yyv4568 = []ContainerStatus{} - yyc4568 = true - } else if len(yyv4568) != 0 { - yyv4568 = yyv4568[:0] - yyc4568 = true + yyv4573 := *v + yyh4573, yyl4573 := z.DecSliceHelperStart() + var yyc4573 bool + if yyl4573 == 0 { + if yyv4573 == nil { + yyv4573 = []ContainerStatus{} + yyc4573 = true + } else if len(yyv4573) != 0 { + yyv4573 = yyv4573[:0] + yyc4573 = true } - } else if yyl4568 > 0 { - var yyrr4568, yyrl4568 int - var yyrt4568 bool - if yyl4568 > cap(yyv4568) { + } else if yyl4573 > 0 { + var yyrr4573, yyrl4573 int + var yyrt4573 bool + if yyl4573 > cap(yyv4573) { - yyrg4568 := len(yyv4568) > 0 - yyv24568 := yyv4568 - yyrl4568, yyrt4568 = z.DecInferLen(yyl4568, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4568 { - if yyrl4568 <= cap(yyv4568) { - yyv4568 = yyv4568[:yyrl4568] + yyrg4573 := len(yyv4573) > 0 + yyv24573 := yyv4573 + yyrl4573, yyrt4573 = z.DecInferLen(yyl4573, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4573 { + if yyrl4573 <= cap(yyv4573) { + yyv4573 = yyv4573[:yyrl4573] } else { - yyv4568 = make([]ContainerStatus, yyrl4568) + yyv4573 = make([]ContainerStatus, yyrl4573) } } else { - yyv4568 = make([]ContainerStatus, yyrl4568) + yyv4573 = make([]ContainerStatus, yyrl4573) } - yyc4568 = true - yyrr4568 = len(yyv4568) - if yyrg4568 { - copy(yyv4568, yyv24568) + yyc4573 = true + yyrr4573 = len(yyv4573) + if yyrg4573 { + copy(yyv4573, yyv24573) } - } else if yyl4568 != len(yyv4568) { - yyv4568 = yyv4568[:yyl4568] - yyc4568 = true + } else if yyl4573 != len(yyv4573) { + yyv4573 = yyv4573[:yyl4573] + yyc4573 = true } - yyj4568 := 0 - for ; yyj4568 < yyrr4568; yyj4568++ { - yyh4568.ElemContainerState(yyj4568) + yyj4573 := 0 + for ; yyj4573 < yyrr4573; yyj4573++ { + yyh4573.ElemContainerState(yyj4573) if r.TryDecodeAsNil() { - yyv4568[yyj4568] = ContainerStatus{} + yyv4573[yyj4573] = ContainerStatus{} } else { - yyv4569 := &yyv4568[yyj4568] - yyv4569.CodecDecodeSelf(d) + yyv4574 := &yyv4573[yyj4573] + yyv4574.CodecDecodeSelf(d) } } - if yyrt4568 { - for ; yyj4568 < yyl4568; yyj4568++ { - yyv4568 = append(yyv4568, ContainerStatus{}) - yyh4568.ElemContainerState(yyj4568) + if yyrt4573 { + for ; yyj4573 < yyl4573; yyj4573++ { + yyv4573 = append(yyv4573, ContainerStatus{}) + yyh4573.ElemContainerState(yyj4573) if r.TryDecodeAsNil() { - yyv4568[yyj4568] = ContainerStatus{} + yyv4573[yyj4573] = ContainerStatus{} } else { - yyv4570 := &yyv4568[yyj4568] - yyv4570.CodecDecodeSelf(d) + yyv4575 := &yyv4573[yyj4573] + yyv4575.CodecDecodeSelf(d) } } } } else { - yyj4568 := 0 - for ; !r.CheckBreak(); yyj4568++ { + yyj4573 := 0 + for ; !r.CheckBreak(); yyj4573++ { - if yyj4568 >= len(yyv4568) { - yyv4568 = append(yyv4568, ContainerStatus{}) // var yyz4568 ContainerStatus - yyc4568 = true + if yyj4573 >= len(yyv4573) { + yyv4573 = append(yyv4573, ContainerStatus{}) // var yyz4573 ContainerStatus + yyc4573 = true } - yyh4568.ElemContainerState(yyj4568) - if yyj4568 < len(yyv4568) { + yyh4573.ElemContainerState(yyj4573) + if yyj4573 < len(yyv4573) { if r.TryDecodeAsNil() { - yyv4568[yyj4568] = ContainerStatus{} + yyv4573[yyj4573] = ContainerStatus{} } else { - yyv4571 := &yyv4568[yyj4568] - yyv4571.CodecDecodeSelf(d) + yyv4576 := &yyv4573[yyj4573] + yyv4576.CodecDecodeSelf(d) } } else { @@ -57661,17 +57702,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4568 < len(yyv4568) { - yyv4568 = yyv4568[:yyj4568] - yyc4568 = true - } else if yyj4568 == 0 && yyv4568 == nil { - yyv4568 = []ContainerStatus{} - yyc4568 = true + if yyj4573 < len(yyv4573) { + yyv4573 = yyv4573[:yyj4573] + yyc4573 = true + } else if yyj4573 == 0 && yyv4573 == nil { + yyv4573 = []ContainerStatus{} + yyc4573 = true } } - yyh4568.End() - if yyc4568 { - *v = yyv4568 + yyh4573.End() + if yyc4573 { + *v = yyv4573 } } @@ -57680,10 +57721,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4572 := range v { + for _, yyv4577 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4573 := &yyv4572 - yy4573.CodecEncodeSelf(e) + yy4578 := &yyv4577 + yy4578.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57693,83 +57734,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4574 := *v - yyh4574, yyl4574 := z.DecSliceHelperStart() - var yyc4574 bool - if yyl4574 == 0 { - if yyv4574 == nil { - yyv4574 = []PodTemplate{} - yyc4574 = true - } else if len(yyv4574) != 0 { - yyv4574 = yyv4574[:0] - yyc4574 = true + yyv4579 := *v + yyh4579, yyl4579 := z.DecSliceHelperStart() + var yyc4579 bool + if yyl4579 == 0 { + if yyv4579 == nil { + yyv4579 = []PodTemplate{} + yyc4579 = true + } else if len(yyv4579) != 0 { + yyv4579 = yyv4579[:0] + yyc4579 = true } - } else if yyl4574 > 0 { - var yyrr4574, yyrl4574 int - var yyrt4574 bool - if yyl4574 > cap(yyv4574) { + } else if yyl4579 > 0 { + var yyrr4579, yyrl4579 int + var yyrt4579 bool + if yyl4579 > cap(yyv4579) { - yyrg4574 := len(yyv4574) > 0 - yyv24574 := yyv4574 - yyrl4574, yyrt4574 = z.DecInferLen(yyl4574, z.DecBasicHandle().MaxInitLen, 672) - if yyrt4574 { - if yyrl4574 <= cap(yyv4574) { - yyv4574 = yyv4574[:yyrl4574] + yyrg4579 := len(yyv4579) > 0 + yyv24579 := yyv4579 + yyrl4579, yyrt4579 = z.DecInferLen(yyl4579, z.DecBasicHandle().MaxInitLen, 672) + if yyrt4579 { + if yyrl4579 <= cap(yyv4579) { + yyv4579 = yyv4579[:yyrl4579] } else { - yyv4574 = make([]PodTemplate, yyrl4574) + yyv4579 = make([]PodTemplate, yyrl4579) } } else { - yyv4574 = make([]PodTemplate, yyrl4574) + yyv4579 = make([]PodTemplate, yyrl4579) } - yyc4574 = true - yyrr4574 = len(yyv4574) - if yyrg4574 { - copy(yyv4574, yyv24574) + yyc4579 = true + yyrr4579 = len(yyv4579) + if yyrg4579 { + copy(yyv4579, yyv24579) } - } else if yyl4574 != len(yyv4574) { - yyv4574 = yyv4574[:yyl4574] - yyc4574 = true + } else if yyl4579 != len(yyv4579) { + yyv4579 = yyv4579[:yyl4579] + yyc4579 = true } - yyj4574 := 0 - for ; yyj4574 < yyrr4574; yyj4574++ { - yyh4574.ElemContainerState(yyj4574) + yyj4579 := 0 + for ; yyj4579 < yyrr4579; yyj4579++ { + yyh4579.ElemContainerState(yyj4579) if r.TryDecodeAsNil() { - yyv4574[yyj4574] = PodTemplate{} + yyv4579[yyj4579] = PodTemplate{} } else { - yyv4575 := &yyv4574[yyj4574] - yyv4575.CodecDecodeSelf(d) + yyv4580 := &yyv4579[yyj4579] + yyv4580.CodecDecodeSelf(d) } } - if yyrt4574 { - for ; yyj4574 < yyl4574; yyj4574++ { - yyv4574 = append(yyv4574, PodTemplate{}) - yyh4574.ElemContainerState(yyj4574) + if yyrt4579 { + for ; yyj4579 < yyl4579; yyj4579++ { + yyv4579 = append(yyv4579, PodTemplate{}) + yyh4579.ElemContainerState(yyj4579) if r.TryDecodeAsNil() { - yyv4574[yyj4574] = PodTemplate{} + yyv4579[yyj4579] = PodTemplate{} } else { - yyv4576 := &yyv4574[yyj4574] - yyv4576.CodecDecodeSelf(d) + yyv4581 := &yyv4579[yyj4579] + yyv4581.CodecDecodeSelf(d) } } } } else { - yyj4574 := 0 - for ; !r.CheckBreak(); yyj4574++ { + yyj4579 := 0 + for ; !r.CheckBreak(); yyj4579++ { - if yyj4574 >= len(yyv4574) { - yyv4574 = append(yyv4574, PodTemplate{}) // var yyz4574 PodTemplate - yyc4574 = true + if yyj4579 >= len(yyv4579) { + yyv4579 = append(yyv4579, PodTemplate{}) // var yyz4579 PodTemplate + yyc4579 = true } - yyh4574.ElemContainerState(yyj4574) - if yyj4574 < len(yyv4574) { + yyh4579.ElemContainerState(yyj4579) + if yyj4579 < len(yyv4579) { if r.TryDecodeAsNil() { - yyv4574[yyj4574] = PodTemplate{} + yyv4579[yyj4579] = PodTemplate{} } else { - yyv4577 := &yyv4574[yyj4574] - yyv4577.CodecDecodeSelf(d) + yyv4582 := &yyv4579[yyj4579] + yyv4582.CodecDecodeSelf(d) } } else { @@ -57777,17 +57818,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4574 < len(yyv4574) { - yyv4574 = yyv4574[:yyj4574] - yyc4574 = true - } else if yyj4574 == 0 && yyv4574 == nil { - yyv4574 = []PodTemplate{} - yyc4574 = true + if yyj4579 < len(yyv4579) { + yyv4579 = yyv4579[:yyj4579] + yyc4579 = true + } else if yyj4579 == 0 && yyv4579 == nil { + yyv4579 = []PodTemplate{} + yyc4579 = true } } - yyh4574.End() - if yyc4574 { - *v = yyv4574 + yyh4579.End() + if yyc4579 { + *v = yyv4579 } } @@ -57796,10 +57837,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4578 := range v { + for _, yyv4583 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4579 := &yyv4578 - yy4579.CodecEncodeSelf(e) + yy4584 := &yyv4583 + yy4584.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57809,83 +57850,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4580 := *v - yyh4580, yyl4580 := z.DecSliceHelperStart() - var yyc4580 bool - if yyl4580 == 0 { - if yyv4580 == nil { - yyv4580 = []ReplicationController{} - yyc4580 = true - } else if len(yyv4580) != 0 { - yyv4580 = yyv4580[:0] - yyc4580 = true + yyv4585 := *v + yyh4585, yyl4585 := z.DecSliceHelperStart() + var yyc4585 bool + if yyl4585 == 0 { + if yyv4585 == nil { + yyv4585 = []ReplicationController{} + yyc4585 = true + } else if len(yyv4585) != 0 { + yyv4585 = yyv4585[:0] + yyc4585 = true } - } else if yyl4580 > 0 { - var yyrr4580, yyrl4580 int - var yyrt4580 bool - if yyl4580 > cap(yyv4580) { + } else if yyl4585 > 0 { + var yyrr4585, yyrl4585 int + var yyrt4585 bool + if yyl4585 > cap(yyv4585) { - yyrg4580 := len(yyv4580) > 0 - yyv24580 := yyv4580 - yyrl4580, yyrt4580 = z.DecInferLen(yyl4580, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4580 { - if yyrl4580 <= cap(yyv4580) { - yyv4580 = yyv4580[:yyrl4580] + yyrg4585 := len(yyv4585) > 0 + yyv24585 := yyv4585 + yyrl4585, yyrt4585 = z.DecInferLen(yyl4585, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4585 { + if yyrl4585 <= cap(yyv4585) { + yyv4585 = yyv4585[:yyrl4585] } else { - yyv4580 = make([]ReplicationController, yyrl4580) + yyv4585 = make([]ReplicationController, yyrl4585) } } else { - yyv4580 = make([]ReplicationController, yyrl4580) + yyv4585 = make([]ReplicationController, yyrl4585) } - yyc4580 = true - yyrr4580 = len(yyv4580) - if yyrg4580 { - copy(yyv4580, yyv24580) + yyc4585 = true + yyrr4585 = len(yyv4585) + if yyrg4585 { + copy(yyv4585, yyv24585) } - } else if yyl4580 != len(yyv4580) { - yyv4580 = yyv4580[:yyl4580] - yyc4580 = true + } else if yyl4585 != len(yyv4585) { + yyv4585 = yyv4585[:yyl4585] + yyc4585 = true } - yyj4580 := 0 - for ; yyj4580 < yyrr4580; yyj4580++ { - yyh4580.ElemContainerState(yyj4580) + yyj4585 := 0 + for ; yyj4585 < yyrr4585; yyj4585++ { + yyh4585.ElemContainerState(yyj4585) if r.TryDecodeAsNil() { - yyv4580[yyj4580] = ReplicationController{} + yyv4585[yyj4585] = ReplicationController{} } else { - yyv4581 := &yyv4580[yyj4580] - yyv4581.CodecDecodeSelf(d) + yyv4586 := &yyv4585[yyj4585] + yyv4586.CodecDecodeSelf(d) } } - if yyrt4580 { - for ; yyj4580 < yyl4580; yyj4580++ { - yyv4580 = append(yyv4580, ReplicationController{}) - yyh4580.ElemContainerState(yyj4580) + if yyrt4585 { + for ; yyj4585 < yyl4585; yyj4585++ { + yyv4585 = append(yyv4585, ReplicationController{}) + yyh4585.ElemContainerState(yyj4585) if r.TryDecodeAsNil() { - yyv4580[yyj4580] = ReplicationController{} + yyv4585[yyj4585] = ReplicationController{} } else { - yyv4582 := &yyv4580[yyj4580] - yyv4582.CodecDecodeSelf(d) + yyv4587 := &yyv4585[yyj4585] + yyv4587.CodecDecodeSelf(d) } } } } else { - yyj4580 := 0 - for ; !r.CheckBreak(); yyj4580++ { + yyj4585 := 0 + for ; !r.CheckBreak(); yyj4585++ { - if yyj4580 >= len(yyv4580) { - yyv4580 = append(yyv4580, ReplicationController{}) // var yyz4580 ReplicationController - yyc4580 = true + if yyj4585 >= len(yyv4585) { + yyv4585 = append(yyv4585, ReplicationController{}) // var yyz4585 ReplicationController + yyc4585 = true } - yyh4580.ElemContainerState(yyj4580) - if yyj4580 < len(yyv4580) { + yyh4585.ElemContainerState(yyj4585) + if yyj4585 < len(yyv4585) { if r.TryDecodeAsNil() { - yyv4580[yyj4580] = ReplicationController{} + yyv4585[yyj4585] = ReplicationController{} } else { - yyv4583 := &yyv4580[yyj4580] - yyv4583.CodecDecodeSelf(d) + yyv4588 := &yyv4585[yyj4585] + yyv4588.CodecDecodeSelf(d) } } else { @@ -57893,17 +57934,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4580 < len(yyv4580) { - yyv4580 = yyv4580[:yyj4580] - yyc4580 = true - } else if yyj4580 == 0 && yyv4580 == nil { - yyv4580 = []ReplicationController{} - yyc4580 = true + if yyj4585 < len(yyv4585) { + yyv4585 = yyv4585[:yyj4585] + yyc4585 = true + } else if yyj4585 == 0 && yyv4585 == nil { + yyv4585 = []ReplicationController{} + yyc4585 = true } } - yyh4580.End() - if yyc4580 { - *v = yyv4580 + yyh4585.End() + if yyc4585 { + *v = yyv4585 } } @@ -57912,10 +57953,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4584 := range v { + for _, yyv4589 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4585 := &yyv4584 - yy4585.CodecEncodeSelf(e) + yy4590 := &yyv4589 + yy4590.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57925,83 +57966,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4586 := *v - yyh4586, yyl4586 := z.DecSliceHelperStart() - var yyc4586 bool - if yyl4586 == 0 { - if yyv4586 == nil { - yyv4586 = []Service{} - yyc4586 = true - } else if len(yyv4586) != 0 { - yyv4586 = yyv4586[:0] - yyc4586 = true + yyv4591 := *v + yyh4591, yyl4591 := z.DecSliceHelperStart() + var yyc4591 bool + if yyl4591 == 0 { + if yyv4591 == nil { + yyv4591 = []Service{} + yyc4591 = true + } else if len(yyv4591) != 0 { + yyv4591 = yyv4591[:0] + yyc4591 = true } - } else if yyl4586 > 0 { - var yyrr4586, yyrl4586 int - var yyrt4586 bool - if yyl4586 > cap(yyv4586) { + } else if yyl4591 > 0 { + var yyrr4591, yyrl4591 int + var yyrt4591 bool + if yyl4591 > cap(yyv4591) { - yyrg4586 := len(yyv4586) > 0 - yyv24586 := yyv4586 - yyrl4586, yyrt4586 = z.DecInferLen(yyl4586, z.DecBasicHandle().MaxInitLen, 408) - if yyrt4586 { - if yyrl4586 <= cap(yyv4586) { - yyv4586 = yyv4586[:yyrl4586] + yyrg4591 := len(yyv4591) > 0 + yyv24591 := yyv4591 + yyrl4591, yyrt4591 = z.DecInferLen(yyl4591, z.DecBasicHandle().MaxInitLen, 424) + if yyrt4591 { + if yyrl4591 <= cap(yyv4591) { + yyv4591 = yyv4591[:yyrl4591] } else { - yyv4586 = make([]Service, yyrl4586) + yyv4591 = make([]Service, yyrl4591) } } else { - yyv4586 = make([]Service, yyrl4586) + yyv4591 = make([]Service, yyrl4591) } - yyc4586 = true - yyrr4586 = len(yyv4586) - if yyrg4586 { - copy(yyv4586, yyv24586) + yyc4591 = true + yyrr4591 = len(yyv4591) + if yyrg4591 { + copy(yyv4591, yyv24591) } - } else if yyl4586 != len(yyv4586) { - yyv4586 = yyv4586[:yyl4586] - yyc4586 = true + } else if yyl4591 != len(yyv4591) { + yyv4591 = yyv4591[:yyl4591] + yyc4591 = true } - yyj4586 := 0 - for ; yyj4586 < yyrr4586; yyj4586++ { - yyh4586.ElemContainerState(yyj4586) + yyj4591 := 0 + for ; yyj4591 < yyrr4591; yyj4591++ { + yyh4591.ElemContainerState(yyj4591) if r.TryDecodeAsNil() { - yyv4586[yyj4586] = Service{} + yyv4591[yyj4591] = Service{} } else { - yyv4587 := &yyv4586[yyj4586] - yyv4587.CodecDecodeSelf(d) + yyv4592 := &yyv4591[yyj4591] + yyv4592.CodecDecodeSelf(d) } } - if yyrt4586 { - for ; yyj4586 < yyl4586; yyj4586++ { - yyv4586 = append(yyv4586, Service{}) - yyh4586.ElemContainerState(yyj4586) + if yyrt4591 { + for ; yyj4591 < yyl4591; yyj4591++ { + yyv4591 = append(yyv4591, Service{}) + yyh4591.ElemContainerState(yyj4591) if r.TryDecodeAsNil() { - yyv4586[yyj4586] = Service{} + yyv4591[yyj4591] = Service{} } else { - yyv4588 := &yyv4586[yyj4586] - yyv4588.CodecDecodeSelf(d) + yyv4593 := &yyv4591[yyj4591] + yyv4593.CodecDecodeSelf(d) } } } } else { - yyj4586 := 0 - for ; !r.CheckBreak(); yyj4586++ { + yyj4591 := 0 + for ; !r.CheckBreak(); yyj4591++ { - if yyj4586 >= len(yyv4586) { - yyv4586 = append(yyv4586, Service{}) // var yyz4586 Service - yyc4586 = true + if yyj4591 >= len(yyv4591) { + yyv4591 = append(yyv4591, Service{}) // var yyz4591 Service + yyc4591 = true } - yyh4586.ElemContainerState(yyj4586) - if yyj4586 < len(yyv4586) { + yyh4591.ElemContainerState(yyj4591) + if yyj4591 < len(yyv4591) { if r.TryDecodeAsNil() { - yyv4586[yyj4586] = Service{} + yyv4591[yyj4591] = Service{} } else { - yyv4589 := &yyv4586[yyj4586] - yyv4589.CodecDecodeSelf(d) + yyv4594 := &yyv4591[yyj4591] + yyv4594.CodecDecodeSelf(d) } } else { @@ -58009,17 +58050,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4586 < len(yyv4586) { - yyv4586 = yyv4586[:yyj4586] - yyc4586 = true - } else if yyj4586 == 0 && yyv4586 == nil { - yyv4586 = []Service{} - yyc4586 = true + if yyj4591 < len(yyv4591) { + yyv4591 = yyv4591[:yyj4591] + yyc4591 = true + } else if yyj4591 == 0 && yyv4591 == nil { + yyv4591 = []Service{} + yyc4591 = true } } - yyh4586.End() - if yyc4586 { - *v = yyv4586 + yyh4591.End() + if yyc4591 { + *v = yyv4591 } } @@ -58028,10 +58069,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4590 := range v { + for _, yyv4595 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4591 := &yyv4590 - yy4591.CodecEncodeSelf(e) + yy4596 := &yyv4595 + yy4596.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58041,83 +58082,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4592 := *v - yyh4592, yyl4592 := z.DecSliceHelperStart() - var yyc4592 bool - if yyl4592 == 0 { - if yyv4592 == nil { - yyv4592 = []LoadBalancerIngress{} - yyc4592 = true - } else if len(yyv4592) != 0 { - yyv4592 = yyv4592[:0] - yyc4592 = true + yyv4597 := *v + yyh4597, yyl4597 := z.DecSliceHelperStart() + var yyc4597 bool + if yyl4597 == 0 { + if yyv4597 == nil { + yyv4597 = []LoadBalancerIngress{} + yyc4597 = true + } else if len(yyv4597) != 0 { + yyv4597 = yyv4597[:0] + yyc4597 = true } - } else if yyl4592 > 0 { - var yyrr4592, yyrl4592 int - var yyrt4592 bool - if yyl4592 > cap(yyv4592) { + } else if yyl4597 > 0 { + var yyrr4597, yyrl4597 int + var yyrt4597 bool + if yyl4597 > cap(yyv4597) { - yyrg4592 := len(yyv4592) > 0 - yyv24592 := yyv4592 - yyrl4592, yyrt4592 = z.DecInferLen(yyl4592, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4592 { - if yyrl4592 <= cap(yyv4592) { - yyv4592 = yyv4592[:yyrl4592] + yyrg4597 := len(yyv4597) > 0 + yyv24597 := yyv4597 + yyrl4597, yyrt4597 = z.DecInferLen(yyl4597, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4597 { + if yyrl4597 <= cap(yyv4597) { + yyv4597 = yyv4597[:yyrl4597] } else { - yyv4592 = make([]LoadBalancerIngress, yyrl4592) + yyv4597 = make([]LoadBalancerIngress, yyrl4597) } } else { - yyv4592 = make([]LoadBalancerIngress, yyrl4592) + yyv4597 = make([]LoadBalancerIngress, yyrl4597) } - yyc4592 = true - yyrr4592 = len(yyv4592) - if yyrg4592 { - copy(yyv4592, yyv24592) + yyc4597 = true + yyrr4597 = len(yyv4597) + if yyrg4597 { + copy(yyv4597, yyv24597) } - } else if yyl4592 != len(yyv4592) { - yyv4592 = yyv4592[:yyl4592] - yyc4592 = true + } else if yyl4597 != len(yyv4597) { + yyv4597 = yyv4597[:yyl4597] + yyc4597 = true } - yyj4592 := 0 - for ; yyj4592 < yyrr4592; yyj4592++ { - yyh4592.ElemContainerState(yyj4592) + yyj4597 := 0 + for ; yyj4597 < yyrr4597; yyj4597++ { + yyh4597.ElemContainerState(yyj4597) if r.TryDecodeAsNil() { - yyv4592[yyj4592] = LoadBalancerIngress{} + yyv4597[yyj4597] = LoadBalancerIngress{} } else { - yyv4593 := &yyv4592[yyj4592] - yyv4593.CodecDecodeSelf(d) + yyv4598 := &yyv4597[yyj4597] + yyv4598.CodecDecodeSelf(d) } } - if yyrt4592 { - for ; yyj4592 < yyl4592; yyj4592++ { - yyv4592 = append(yyv4592, LoadBalancerIngress{}) - yyh4592.ElemContainerState(yyj4592) + if yyrt4597 { + for ; yyj4597 < yyl4597; yyj4597++ { + yyv4597 = append(yyv4597, LoadBalancerIngress{}) + yyh4597.ElemContainerState(yyj4597) if r.TryDecodeAsNil() { - yyv4592[yyj4592] = LoadBalancerIngress{} + yyv4597[yyj4597] = LoadBalancerIngress{} } else { - yyv4594 := &yyv4592[yyj4592] - yyv4594.CodecDecodeSelf(d) + yyv4599 := &yyv4597[yyj4597] + yyv4599.CodecDecodeSelf(d) } } } } else { - yyj4592 := 0 - for ; !r.CheckBreak(); yyj4592++ { + yyj4597 := 0 + for ; !r.CheckBreak(); yyj4597++ { - if yyj4592 >= len(yyv4592) { - yyv4592 = append(yyv4592, LoadBalancerIngress{}) // var yyz4592 LoadBalancerIngress - yyc4592 = true + if yyj4597 >= len(yyv4597) { + yyv4597 = append(yyv4597, LoadBalancerIngress{}) // var yyz4597 LoadBalancerIngress + yyc4597 = true } - yyh4592.ElemContainerState(yyj4592) - if yyj4592 < len(yyv4592) { + yyh4597.ElemContainerState(yyj4597) + if yyj4597 < len(yyv4597) { if r.TryDecodeAsNil() { - yyv4592[yyj4592] = LoadBalancerIngress{} + yyv4597[yyj4597] = LoadBalancerIngress{} } else { - yyv4595 := &yyv4592[yyj4592] - yyv4595.CodecDecodeSelf(d) + yyv4600 := &yyv4597[yyj4597] + yyv4600.CodecDecodeSelf(d) } } else { @@ -58125,17 +58166,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4592 < len(yyv4592) { - yyv4592 = yyv4592[:yyj4592] - yyc4592 = true - } else if yyj4592 == 0 && yyv4592 == nil { - yyv4592 = []LoadBalancerIngress{} - yyc4592 = true + if yyj4597 < len(yyv4597) { + yyv4597 = yyv4597[:yyj4597] + yyc4597 = true + } else if yyj4597 == 0 && yyv4597 == nil { + yyv4597 = []LoadBalancerIngress{} + yyc4597 = true } } - yyh4592.End() - if yyc4592 { - *v = yyv4592 + yyh4597.End() + if yyc4597 { + *v = yyv4597 } } @@ -58144,10 +58185,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4596 := range v { + for _, yyv4601 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4597 := &yyv4596 - yy4597.CodecEncodeSelf(e) + yy4602 := &yyv4601 + yy4602.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58157,83 +58198,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4598 := *v - yyh4598, yyl4598 := z.DecSliceHelperStart() - var yyc4598 bool - if yyl4598 == 0 { - if yyv4598 == nil { - yyv4598 = []ServicePort{} - yyc4598 = true - } else if len(yyv4598) != 0 { - yyv4598 = yyv4598[:0] - yyc4598 = true + yyv4603 := *v + yyh4603, yyl4603 := z.DecSliceHelperStart() + var yyc4603 bool + if yyl4603 == 0 { + if yyv4603 == nil { + yyv4603 = []ServicePort{} + yyc4603 = true + } else if len(yyv4603) != 0 { + yyv4603 = yyv4603[:0] + yyc4603 = true } - } else if yyl4598 > 0 { - var yyrr4598, yyrl4598 int - var yyrt4598 bool - if yyl4598 > cap(yyv4598) { + } else if yyl4603 > 0 { + var yyrr4603, yyrl4603 int + var yyrt4603 bool + if yyl4603 > cap(yyv4603) { - yyrg4598 := len(yyv4598) > 0 - yyv24598 := yyv4598 - yyrl4598, yyrt4598 = z.DecInferLen(yyl4598, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4598 { - if yyrl4598 <= cap(yyv4598) { - yyv4598 = yyv4598[:yyrl4598] + yyrg4603 := len(yyv4603) > 0 + yyv24603 := yyv4603 + yyrl4603, yyrt4603 = z.DecInferLen(yyl4603, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4603 { + if yyrl4603 <= cap(yyv4603) { + yyv4603 = yyv4603[:yyrl4603] } else { - yyv4598 = make([]ServicePort, yyrl4598) + yyv4603 = make([]ServicePort, yyrl4603) } } else { - yyv4598 = make([]ServicePort, yyrl4598) + yyv4603 = make([]ServicePort, yyrl4603) } - yyc4598 = true - yyrr4598 = len(yyv4598) - if yyrg4598 { - copy(yyv4598, yyv24598) + yyc4603 = true + yyrr4603 = len(yyv4603) + if yyrg4603 { + copy(yyv4603, yyv24603) } - } else if yyl4598 != len(yyv4598) { - yyv4598 = yyv4598[:yyl4598] - yyc4598 = true + } else if yyl4603 != len(yyv4603) { + yyv4603 = yyv4603[:yyl4603] + yyc4603 = true } - yyj4598 := 0 - for ; yyj4598 < yyrr4598; yyj4598++ { - yyh4598.ElemContainerState(yyj4598) + yyj4603 := 0 + for ; yyj4603 < yyrr4603; yyj4603++ { + yyh4603.ElemContainerState(yyj4603) if r.TryDecodeAsNil() { - yyv4598[yyj4598] = ServicePort{} + yyv4603[yyj4603] = ServicePort{} } else { - yyv4599 := &yyv4598[yyj4598] - yyv4599.CodecDecodeSelf(d) + yyv4604 := &yyv4603[yyj4603] + yyv4604.CodecDecodeSelf(d) } } - if yyrt4598 { - for ; yyj4598 < yyl4598; yyj4598++ { - yyv4598 = append(yyv4598, ServicePort{}) - yyh4598.ElemContainerState(yyj4598) + if yyrt4603 { + for ; yyj4603 < yyl4603; yyj4603++ { + yyv4603 = append(yyv4603, ServicePort{}) + yyh4603.ElemContainerState(yyj4603) if r.TryDecodeAsNil() { - yyv4598[yyj4598] = ServicePort{} + yyv4603[yyj4603] = ServicePort{} } else { - yyv4600 := &yyv4598[yyj4598] - yyv4600.CodecDecodeSelf(d) + yyv4605 := &yyv4603[yyj4603] + yyv4605.CodecDecodeSelf(d) } } } } else { - yyj4598 := 0 - for ; !r.CheckBreak(); yyj4598++ { + yyj4603 := 0 + for ; !r.CheckBreak(); yyj4603++ { - if yyj4598 >= len(yyv4598) { - yyv4598 = append(yyv4598, ServicePort{}) // var yyz4598 ServicePort - yyc4598 = true + if yyj4603 >= len(yyv4603) { + yyv4603 = append(yyv4603, ServicePort{}) // var yyz4603 ServicePort + yyc4603 = true } - yyh4598.ElemContainerState(yyj4598) - if yyj4598 < len(yyv4598) { + yyh4603.ElemContainerState(yyj4603) + if yyj4603 < len(yyv4603) { if r.TryDecodeAsNil() { - yyv4598[yyj4598] = ServicePort{} + yyv4603[yyj4603] = ServicePort{} } else { - yyv4601 := &yyv4598[yyj4598] - yyv4601.CodecDecodeSelf(d) + yyv4606 := &yyv4603[yyj4603] + yyv4606.CodecDecodeSelf(d) } } else { @@ -58241,17 +58282,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4598 < len(yyv4598) { - yyv4598 = yyv4598[:yyj4598] - yyc4598 = true - } else if yyj4598 == 0 && yyv4598 == nil { - yyv4598 = []ServicePort{} - yyc4598 = true + if yyj4603 < len(yyv4603) { + yyv4603 = yyv4603[:yyj4603] + yyc4603 = true + } else if yyj4603 == 0 && yyv4603 == nil { + yyv4603 = []ServicePort{} + yyc4603 = true } } - yyh4598.End() - if yyc4598 { - *v = yyv4598 + yyh4603.End() + if yyc4603 { + *v = yyv4603 } } @@ -58260,10 +58301,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4602 := range v { + for _, yyv4607 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4603 := &yyv4602 - yy4603.CodecEncodeSelf(e) + yy4608 := &yyv4607 + yy4608.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58273,83 +58314,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4604 := *v - yyh4604, yyl4604 := z.DecSliceHelperStart() - var yyc4604 bool - if yyl4604 == 0 { - if yyv4604 == nil { - yyv4604 = []ObjectReference{} - yyc4604 = true - } else if len(yyv4604) != 0 { - yyv4604 = yyv4604[:0] - yyc4604 = true + yyv4609 := *v + yyh4609, yyl4609 := z.DecSliceHelperStart() + var yyc4609 bool + if yyl4609 == 0 { + if yyv4609 == nil { + yyv4609 = []ObjectReference{} + yyc4609 = true + } else if len(yyv4609) != 0 { + yyv4609 = yyv4609[:0] + yyc4609 = true } - } else if yyl4604 > 0 { - var yyrr4604, yyrl4604 int - var yyrt4604 bool - if yyl4604 > cap(yyv4604) { + } else if yyl4609 > 0 { + var yyrr4609, yyrl4609 int + var yyrt4609 bool + if yyl4609 > cap(yyv4609) { - yyrg4604 := len(yyv4604) > 0 - yyv24604 := yyv4604 - yyrl4604, yyrt4604 = z.DecInferLen(yyl4604, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4604 { - if yyrl4604 <= cap(yyv4604) { - yyv4604 = yyv4604[:yyrl4604] + yyrg4609 := len(yyv4609) > 0 + yyv24609 := yyv4609 + yyrl4609, yyrt4609 = z.DecInferLen(yyl4609, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4609 { + if yyrl4609 <= cap(yyv4609) { + yyv4609 = yyv4609[:yyrl4609] } else { - yyv4604 = make([]ObjectReference, yyrl4604) + yyv4609 = make([]ObjectReference, yyrl4609) } } else { - yyv4604 = make([]ObjectReference, yyrl4604) + yyv4609 = make([]ObjectReference, yyrl4609) } - yyc4604 = true - yyrr4604 = len(yyv4604) - if yyrg4604 { - copy(yyv4604, yyv24604) + yyc4609 = true + yyrr4609 = len(yyv4609) + if yyrg4609 { + copy(yyv4609, yyv24609) } - } else if yyl4604 != len(yyv4604) { - yyv4604 = yyv4604[:yyl4604] - yyc4604 = true + } else if yyl4609 != len(yyv4609) { + yyv4609 = yyv4609[:yyl4609] + yyc4609 = true } - yyj4604 := 0 - for ; yyj4604 < yyrr4604; yyj4604++ { - yyh4604.ElemContainerState(yyj4604) + yyj4609 := 0 + for ; yyj4609 < yyrr4609; yyj4609++ { + yyh4609.ElemContainerState(yyj4609) if r.TryDecodeAsNil() { - yyv4604[yyj4604] = ObjectReference{} + yyv4609[yyj4609] = ObjectReference{} } else { - yyv4605 := &yyv4604[yyj4604] - yyv4605.CodecDecodeSelf(d) + yyv4610 := &yyv4609[yyj4609] + yyv4610.CodecDecodeSelf(d) } } - if yyrt4604 { - for ; yyj4604 < yyl4604; yyj4604++ { - yyv4604 = append(yyv4604, ObjectReference{}) - yyh4604.ElemContainerState(yyj4604) + if yyrt4609 { + for ; yyj4609 < yyl4609; yyj4609++ { + yyv4609 = append(yyv4609, ObjectReference{}) + yyh4609.ElemContainerState(yyj4609) if r.TryDecodeAsNil() { - yyv4604[yyj4604] = ObjectReference{} + yyv4609[yyj4609] = ObjectReference{} } else { - yyv4606 := &yyv4604[yyj4604] - yyv4606.CodecDecodeSelf(d) + yyv4611 := &yyv4609[yyj4609] + yyv4611.CodecDecodeSelf(d) } } } } else { - yyj4604 := 0 - for ; !r.CheckBreak(); yyj4604++ { + yyj4609 := 0 + for ; !r.CheckBreak(); yyj4609++ { - if yyj4604 >= len(yyv4604) { - yyv4604 = append(yyv4604, ObjectReference{}) // var yyz4604 ObjectReference - yyc4604 = true + if yyj4609 >= len(yyv4609) { + yyv4609 = append(yyv4609, ObjectReference{}) // var yyz4609 ObjectReference + yyc4609 = true } - yyh4604.ElemContainerState(yyj4604) - if yyj4604 < len(yyv4604) { + yyh4609.ElemContainerState(yyj4609) + if yyj4609 < len(yyv4609) { if r.TryDecodeAsNil() { - yyv4604[yyj4604] = ObjectReference{} + yyv4609[yyj4609] = ObjectReference{} } else { - yyv4607 := &yyv4604[yyj4604] - yyv4607.CodecDecodeSelf(d) + yyv4612 := &yyv4609[yyj4609] + yyv4612.CodecDecodeSelf(d) } } else { @@ -58357,17 +58398,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4604 < len(yyv4604) { - yyv4604 = yyv4604[:yyj4604] - yyc4604 = true - } else if yyj4604 == 0 && yyv4604 == nil { - yyv4604 = []ObjectReference{} - yyc4604 = true + if yyj4609 < len(yyv4609) { + yyv4609 = yyv4609[:yyj4609] + yyc4609 = true + } else if yyj4609 == 0 && yyv4609 == nil { + yyv4609 = []ObjectReference{} + yyc4609 = true } } - yyh4604.End() - if yyc4604 { - *v = yyv4604 + yyh4609.End() + if yyc4609 { + *v = yyv4609 } } @@ -58376,10 +58417,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4608 := range v { + for _, yyv4613 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4609 := &yyv4608 - yy4609.CodecEncodeSelf(e) + yy4614 := &yyv4613 + yy4614.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58389,83 +58430,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4610 := *v - yyh4610, yyl4610 := z.DecSliceHelperStart() - var yyc4610 bool - if yyl4610 == 0 { - if yyv4610 == nil { - yyv4610 = []ServiceAccount{} - yyc4610 = true - } else if len(yyv4610) != 0 { - yyv4610 = yyv4610[:0] - yyc4610 = true + yyv4615 := *v + yyh4615, yyl4615 := z.DecSliceHelperStart() + var yyc4615 bool + if yyl4615 == 0 { + if yyv4615 == nil { + yyv4615 = []ServiceAccount{} + yyc4615 = true + } else if len(yyv4615) != 0 { + yyv4615 = yyv4615[:0] + yyc4615 = true } - } else if yyl4610 > 0 { - var yyrr4610, yyrl4610 int - var yyrt4610 bool - if yyl4610 > cap(yyv4610) { + } else if yyl4615 > 0 { + var yyrr4615, yyrl4615 int + var yyrt4615 bool + if yyl4615 > cap(yyv4615) { - yyrg4610 := len(yyv4610) > 0 - yyv24610 := yyv4610 - yyrl4610, yyrt4610 = z.DecInferLen(yyl4610, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4610 { - if yyrl4610 <= cap(yyv4610) { - yyv4610 = yyv4610[:yyrl4610] + yyrg4615 := len(yyv4615) > 0 + yyv24615 := yyv4615 + yyrl4615, yyrt4615 = z.DecInferLen(yyl4615, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4615 { + if yyrl4615 <= cap(yyv4615) { + yyv4615 = yyv4615[:yyrl4615] } else { - yyv4610 = make([]ServiceAccount, yyrl4610) + yyv4615 = make([]ServiceAccount, yyrl4615) } } else { - yyv4610 = make([]ServiceAccount, yyrl4610) + yyv4615 = make([]ServiceAccount, yyrl4615) } - yyc4610 = true - yyrr4610 = len(yyv4610) - if yyrg4610 { - copy(yyv4610, yyv24610) + yyc4615 = true + yyrr4615 = len(yyv4615) + if yyrg4615 { + copy(yyv4615, yyv24615) } - } else if yyl4610 != len(yyv4610) { - yyv4610 = yyv4610[:yyl4610] - yyc4610 = true + } else if yyl4615 != len(yyv4615) { + yyv4615 = yyv4615[:yyl4615] + yyc4615 = true } - yyj4610 := 0 - for ; yyj4610 < yyrr4610; yyj4610++ { - yyh4610.ElemContainerState(yyj4610) + yyj4615 := 0 + for ; yyj4615 < yyrr4615; yyj4615++ { + yyh4615.ElemContainerState(yyj4615) if r.TryDecodeAsNil() { - yyv4610[yyj4610] = ServiceAccount{} + yyv4615[yyj4615] = ServiceAccount{} } else { - yyv4611 := &yyv4610[yyj4610] - yyv4611.CodecDecodeSelf(d) + yyv4616 := &yyv4615[yyj4615] + yyv4616.CodecDecodeSelf(d) } } - if yyrt4610 { - for ; yyj4610 < yyl4610; yyj4610++ { - yyv4610 = append(yyv4610, ServiceAccount{}) - yyh4610.ElemContainerState(yyj4610) + if yyrt4615 { + for ; yyj4615 < yyl4615; yyj4615++ { + yyv4615 = append(yyv4615, ServiceAccount{}) + yyh4615.ElemContainerState(yyj4615) if r.TryDecodeAsNil() { - yyv4610[yyj4610] = ServiceAccount{} + yyv4615[yyj4615] = ServiceAccount{} } else { - yyv4612 := &yyv4610[yyj4610] - yyv4612.CodecDecodeSelf(d) + yyv4617 := &yyv4615[yyj4615] + yyv4617.CodecDecodeSelf(d) } } } } else { - yyj4610 := 0 - for ; !r.CheckBreak(); yyj4610++ { + yyj4615 := 0 + for ; !r.CheckBreak(); yyj4615++ { - if yyj4610 >= len(yyv4610) { - yyv4610 = append(yyv4610, ServiceAccount{}) // var yyz4610 ServiceAccount - yyc4610 = true + if yyj4615 >= len(yyv4615) { + yyv4615 = append(yyv4615, ServiceAccount{}) // var yyz4615 ServiceAccount + yyc4615 = true } - yyh4610.ElemContainerState(yyj4610) - if yyj4610 < len(yyv4610) { + yyh4615.ElemContainerState(yyj4615) + if yyj4615 < len(yyv4615) { if r.TryDecodeAsNil() { - yyv4610[yyj4610] = ServiceAccount{} + yyv4615[yyj4615] = ServiceAccount{} } else { - yyv4613 := &yyv4610[yyj4610] - yyv4613.CodecDecodeSelf(d) + yyv4618 := &yyv4615[yyj4615] + yyv4618.CodecDecodeSelf(d) } } else { @@ -58473,17 +58514,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4610 < len(yyv4610) { - yyv4610 = yyv4610[:yyj4610] - yyc4610 = true - } else if yyj4610 == 0 && yyv4610 == nil { - yyv4610 = []ServiceAccount{} - yyc4610 = true + if yyj4615 < len(yyv4615) { + yyv4615 = yyv4615[:yyj4615] + yyc4615 = true + } else if yyj4615 == 0 && yyv4615 == nil { + yyv4615 = []ServiceAccount{} + yyc4615 = true } } - yyh4610.End() - if yyc4610 { - *v = yyv4610 + yyh4615.End() + if yyc4615 { + *v = yyv4615 } } @@ -58492,10 +58533,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4614 := range v { + for _, yyv4619 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4615 := &yyv4614 - yy4615.CodecEncodeSelf(e) + yy4620 := &yyv4619 + yy4620.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58505,83 +58546,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4616 := *v - yyh4616, yyl4616 := z.DecSliceHelperStart() - var yyc4616 bool - if yyl4616 == 0 { - if yyv4616 == nil { - yyv4616 = []EndpointSubset{} - yyc4616 = true - } else if len(yyv4616) != 0 { - yyv4616 = yyv4616[:0] - yyc4616 = true + yyv4621 := *v + yyh4621, yyl4621 := z.DecSliceHelperStart() + var yyc4621 bool + if yyl4621 == 0 { + if yyv4621 == nil { + yyv4621 = []EndpointSubset{} + yyc4621 = true + } else if len(yyv4621) != 0 { + yyv4621 = yyv4621[:0] + yyc4621 = true } - } else if yyl4616 > 0 { - var yyrr4616, yyrl4616 int - var yyrt4616 bool - if yyl4616 > cap(yyv4616) { + } else if yyl4621 > 0 { + var yyrr4621, yyrl4621 int + var yyrt4621 bool + if yyl4621 > cap(yyv4621) { - yyrg4616 := len(yyv4616) > 0 - yyv24616 := yyv4616 - yyrl4616, yyrt4616 = z.DecInferLen(yyl4616, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4616 { - if yyrl4616 <= cap(yyv4616) { - yyv4616 = yyv4616[:yyrl4616] + yyrg4621 := len(yyv4621) > 0 + yyv24621 := yyv4621 + yyrl4621, yyrt4621 = z.DecInferLen(yyl4621, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4621 { + if yyrl4621 <= cap(yyv4621) { + yyv4621 = yyv4621[:yyrl4621] } else { - yyv4616 = make([]EndpointSubset, yyrl4616) + yyv4621 = make([]EndpointSubset, yyrl4621) } } else { - yyv4616 = make([]EndpointSubset, yyrl4616) + yyv4621 = make([]EndpointSubset, yyrl4621) } - yyc4616 = true - yyrr4616 = len(yyv4616) - if yyrg4616 { - copy(yyv4616, yyv24616) + yyc4621 = true + yyrr4621 = len(yyv4621) + if yyrg4621 { + copy(yyv4621, yyv24621) } - } else if yyl4616 != len(yyv4616) { - yyv4616 = yyv4616[:yyl4616] - yyc4616 = true + } else if yyl4621 != len(yyv4621) { + yyv4621 = yyv4621[:yyl4621] + yyc4621 = true } - yyj4616 := 0 - for ; yyj4616 < yyrr4616; yyj4616++ { - yyh4616.ElemContainerState(yyj4616) + yyj4621 := 0 + for ; yyj4621 < yyrr4621; yyj4621++ { + yyh4621.ElemContainerState(yyj4621) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = EndpointSubset{} + yyv4621[yyj4621] = EndpointSubset{} } else { - yyv4617 := &yyv4616[yyj4616] - yyv4617.CodecDecodeSelf(d) + yyv4622 := &yyv4621[yyj4621] + yyv4622.CodecDecodeSelf(d) } } - if yyrt4616 { - for ; yyj4616 < yyl4616; yyj4616++ { - yyv4616 = append(yyv4616, EndpointSubset{}) - yyh4616.ElemContainerState(yyj4616) + if yyrt4621 { + for ; yyj4621 < yyl4621; yyj4621++ { + yyv4621 = append(yyv4621, EndpointSubset{}) + yyh4621.ElemContainerState(yyj4621) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = EndpointSubset{} + yyv4621[yyj4621] = EndpointSubset{} } else { - yyv4618 := &yyv4616[yyj4616] - yyv4618.CodecDecodeSelf(d) + yyv4623 := &yyv4621[yyj4621] + yyv4623.CodecDecodeSelf(d) } } } } else { - yyj4616 := 0 - for ; !r.CheckBreak(); yyj4616++ { + yyj4621 := 0 + for ; !r.CheckBreak(); yyj4621++ { - if yyj4616 >= len(yyv4616) { - yyv4616 = append(yyv4616, EndpointSubset{}) // var yyz4616 EndpointSubset - yyc4616 = true + if yyj4621 >= len(yyv4621) { + yyv4621 = append(yyv4621, EndpointSubset{}) // var yyz4621 EndpointSubset + yyc4621 = true } - yyh4616.ElemContainerState(yyj4616) - if yyj4616 < len(yyv4616) { + yyh4621.ElemContainerState(yyj4621) + if yyj4621 < len(yyv4621) { if r.TryDecodeAsNil() { - yyv4616[yyj4616] = EndpointSubset{} + yyv4621[yyj4621] = EndpointSubset{} } else { - yyv4619 := &yyv4616[yyj4616] - yyv4619.CodecDecodeSelf(d) + yyv4624 := &yyv4621[yyj4621] + yyv4624.CodecDecodeSelf(d) } } else { @@ -58589,17 +58630,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4616 < len(yyv4616) { - yyv4616 = yyv4616[:yyj4616] - yyc4616 = true - } else if yyj4616 == 0 && yyv4616 == nil { - yyv4616 = []EndpointSubset{} - yyc4616 = true + if yyj4621 < len(yyv4621) { + yyv4621 = yyv4621[:yyj4621] + yyc4621 = true + } else if yyj4621 == 0 && yyv4621 == nil { + yyv4621 = []EndpointSubset{} + yyc4621 = true } } - yyh4616.End() - if yyc4616 { - *v = yyv4616 + yyh4621.End() + if yyc4621 { + *v = yyv4621 } } @@ -58608,10 +58649,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4620 := range v { + for _, yyv4625 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4621 := &yyv4620 - yy4621.CodecEncodeSelf(e) + yy4626 := &yyv4625 + yy4626.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58621,83 +58662,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4622 := *v - yyh4622, yyl4622 := z.DecSliceHelperStart() - var yyc4622 bool - if yyl4622 == 0 { - if yyv4622 == nil { - yyv4622 = []EndpointAddress{} - yyc4622 = true - } else if len(yyv4622) != 0 { - yyv4622 = yyv4622[:0] - yyc4622 = true + yyv4627 := *v + yyh4627, yyl4627 := z.DecSliceHelperStart() + var yyc4627 bool + if yyl4627 == 0 { + if yyv4627 == nil { + yyv4627 = []EndpointAddress{} + yyc4627 = true + } else if len(yyv4627) != 0 { + yyv4627 = yyv4627[:0] + yyc4627 = true } - } else if yyl4622 > 0 { - var yyrr4622, yyrl4622 int - var yyrt4622 bool - if yyl4622 > cap(yyv4622) { + } else if yyl4627 > 0 { + var yyrr4627, yyrl4627 int + var yyrt4627 bool + if yyl4627 > cap(yyv4627) { - yyrg4622 := len(yyv4622) > 0 - yyv24622 := yyv4622 - yyrl4622, yyrt4622 = z.DecInferLen(yyl4622, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4622 { - if yyrl4622 <= cap(yyv4622) { - yyv4622 = yyv4622[:yyrl4622] + yyrg4627 := len(yyv4627) > 0 + yyv24627 := yyv4627 + yyrl4627, yyrt4627 = z.DecInferLen(yyl4627, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4627 { + if yyrl4627 <= cap(yyv4627) { + yyv4627 = yyv4627[:yyrl4627] } else { - yyv4622 = make([]EndpointAddress, yyrl4622) + yyv4627 = make([]EndpointAddress, yyrl4627) } } else { - yyv4622 = make([]EndpointAddress, yyrl4622) + yyv4627 = make([]EndpointAddress, yyrl4627) } - yyc4622 = true - yyrr4622 = len(yyv4622) - if yyrg4622 { - copy(yyv4622, yyv24622) + yyc4627 = true + yyrr4627 = len(yyv4627) + if yyrg4627 { + copy(yyv4627, yyv24627) } - } else if yyl4622 != len(yyv4622) { - yyv4622 = yyv4622[:yyl4622] - yyc4622 = true + } else if yyl4627 != len(yyv4627) { + yyv4627 = yyv4627[:yyl4627] + yyc4627 = true } - yyj4622 := 0 - for ; yyj4622 < yyrr4622; yyj4622++ { - yyh4622.ElemContainerState(yyj4622) + yyj4627 := 0 + for ; yyj4627 < yyrr4627; yyj4627++ { + yyh4627.ElemContainerState(yyj4627) if r.TryDecodeAsNil() { - yyv4622[yyj4622] = EndpointAddress{} + yyv4627[yyj4627] = EndpointAddress{} } else { - yyv4623 := &yyv4622[yyj4622] - yyv4623.CodecDecodeSelf(d) + yyv4628 := &yyv4627[yyj4627] + yyv4628.CodecDecodeSelf(d) } } - if yyrt4622 { - for ; yyj4622 < yyl4622; yyj4622++ { - yyv4622 = append(yyv4622, EndpointAddress{}) - yyh4622.ElemContainerState(yyj4622) + if yyrt4627 { + for ; yyj4627 < yyl4627; yyj4627++ { + yyv4627 = append(yyv4627, EndpointAddress{}) + yyh4627.ElemContainerState(yyj4627) if r.TryDecodeAsNil() { - yyv4622[yyj4622] = EndpointAddress{} + yyv4627[yyj4627] = EndpointAddress{} } else { - yyv4624 := &yyv4622[yyj4622] - yyv4624.CodecDecodeSelf(d) + yyv4629 := &yyv4627[yyj4627] + yyv4629.CodecDecodeSelf(d) } } } } else { - yyj4622 := 0 - for ; !r.CheckBreak(); yyj4622++ { + yyj4627 := 0 + for ; !r.CheckBreak(); yyj4627++ { - if yyj4622 >= len(yyv4622) { - yyv4622 = append(yyv4622, EndpointAddress{}) // var yyz4622 EndpointAddress - yyc4622 = true + if yyj4627 >= len(yyv4627) { + yyv4627 = append(yyv4627, EndpointAddress{}) // var yyz4627 EndpointAddress + yyc4627 = true } - yyh4622.ElemContainerState(yyj4622) - if yyj4622 < len(yyv4622) { + yyh4627.ElemContainerState(yyj4627) + if yyj4627 < len(yyv4627) { if r.TryDecodeAsNil() { - yyv4622[yyj4622] = EndpointAddress{} + yyv4627[yyj4627] = EndpointAddress{} } else { - yyv4625 := &yyv4622[yyj4622] - yyv4625.CodecDecodeSelf(d) + yyv4630 := &yyv4627[yyj4627] + yyv4630.CodecDecodeSelf(d) } } else { @@ -58705,17 +58746,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4622 < len(yyv4622) { - yyv4622 = yyv4622[:yyj4622] - yyc4622 = true - } else if yyj4622 == 0 && yyv4622 == nil { - yyv4622 = []EndpointAddress{} - yyc4622 = true + if yyj4627 < len(yyv4627) { + yyv4627 = yyv4627[:yyj4627] + yyc4627 = true + } else if yyj4627 == 0 && yyv4627 == nil { + yyv4627 = []EndpointAddress{} + yyc4627 = true } } - yyh4622.End() - if yyc4622 { - *v = yyv4622 + yyh4627.End() + if yyc4627 { + *v = yyv4627 } } @@ -58724,10 +58765,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4626 := range v { + for _, yyv4631 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4627 := &yyv4626 - yy4627.CodecEncodeSelf(e) + yy4632 := &yyv4631 + yy4632.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58737,83 +58778,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4628 := *v - yyh4628, yyl4628 := z.DecSliceHelperStart() - var yyc4628 bool - if yyl4628 == 0 { - if yyv4628 == nil { - yyv4628 = []EndpointPort{} - yyc4628 = true - } else if len(yyv4628) != 0 { - yyv4628 = yyv4628[:0] - yyc4628 = true + yyv4633 := *v + yyh4633, yyl4633 := z.DecSliceHelperStart() + var yyc4633 bool + if yyl4633 == 0 { + if yyv4633 == nil { + yyv4633 = []EndpointPort{} + yyc4633 = true + } else if len(yyv4633) != 0 { + yyv4633 = yyv4633[:0] + yyc4633 = true } - } else if yyl4628 > 0 { - var yyrr4628, yyrl4628 int - var yyrt4628 bool - if yyl4628 > cap(yyv4628) { + } else if yyl4633 > 0 { + var yyrr4633, yyrl4633 int + var yyrt4633 bool + if yyl4633 > cap(yyv4633) { - yyrg4628 := len(yyv4628) > 0 - yyv24628 := yyv4628 - yyrl4628, yyrt4628 = z.DecInferLen(yyl4628, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4628 { - if yyrl4628 <= cap(yyv4628) { - yyv4628 = yyv4628[:yyrl4628] + yyrg4633 := len(yyv4633) > 0 + yyv24633 := yyv4633 + yyrl4633, yyrt4633 = z.DecInferLen(yyl4633, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4633 { + if yyrl4633 <= cap(yyv4633) { + yyv4633 = yyv4633[:yyrl4633] } else { - yyv4628 = make([]EndpointPort, yyrl4628) + yyv4633 = make([]EndpointPort, yyrl4633) } } else { - yyv4628 = make([]EndpointPort, yyrl4628) + yyv4633 = make([]EndpointPort, yyrl4633) } - yyc4628 = true - yyrr4628 = len(yyv4628) - if yyrg4628 { - copy(yyv4628, yyv24628) + yyc4633 = true + yyrr4633 = len(yyv4633) + if yyrg4633 { + copy(yyv4633, yyv24633) } - } else if yyl4628 != len(yyv4628) { - yyv4628 = yyv4628[:yyl4628] - yyc4628 = true + } else if yyl4633 != len(yyv4633) { + yyv4633 = yyv4633[:yyl4633] + yyc4633 = true } - yyj4628 := 0 - for ; yyj4628 < yyrr4628; yyj4628++ { - yyh4628.ElemContainerState(yyj4628) + yyj4633 := 0 + for ; yyj4633 < yyrr4633; yyj4633++ { + yyh4633.ElemContainerState(yyj4633) if r.TryDecodeAsNil() { - yyv4628[yyj4628] = EndpointPort{} + yyv4633[yyj4633] = EndpointPort{} } else { - yyv4629 := &yyv4628[yyj4628] - yyv4629.CodecDecodeSelf(d) + yyv4634 := &yyv4633[yyj4633] + yyv4634.CodecDecodeSelf(d) } } - if yyrt4628 { - for ; yyj4628 < yyl4628; yyj4628++ { - yyv4628 = append(yyv4628, EndpointPort{}) - yyh4628.ElemContainerState(yyj4628) + if yyrt4633 { + for ; yyj4633 < yyl4633; yyj4633++ { + yyv4633 = append(yyv4633, EndpointPort{}) + yyh4633.ElemContainerState(yyj4633) if r.TryDecodeAsNil() { - yyv4628[yyj4628] = EndpointPort{} + yyv4633[yyj4633] = EndpointPort{} } else { - yyv4630 := &yyv4628[yyj4628] - yyv4630.CodecDecodeSelf(d) + yyv4635 := &yyv4633[yyj4633] + yyv4635.CodecDecodeSelf(d) } } } } else { - yyj4628 := 0 - for ; !r.CheckBreak(); yyj4628++ { + yyj4633 := 0 + for ; !r.CheckBreak(); yyj4633++ { - if yyj4628 >= len(yyv4628) { - yyv4628 = append(yyv4628, EndpointPort{}) // var yyz4628 EndpointPort - yyc4628 = true + if yyj4633 >= len(yyv4633) { + yyv4633 = append(yyv4633, EndpointPort{}) // var yyz4633 EndpointPort + yyc4633 = true } - yyh4628.ElemContainerState(yyj4628) - if yyj4628 < len(yyv4628) { + yyh4633.ElemContainerState(yyj4633) + if yyj4633 < len(yyv4633) { if r.TryDecodeAsNil() { - yyv4628[yyj4628] = EndpointPort{} + yyv4633[yyj4633] = EndpointPort{} } else { - yyv4631 := &yyv4628[yyj4628] - yyv4631.CodecDecodeSelf(d) + yyv4636 := &yyv4633[yyj4633] + yyv4636.CodecDecodeSelf(d) } } else { @@ -58821,17 +58862,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4628 < len(yyv4628) { - yyv4628 = yyv4628[:yyj4628] - yyc4628 = true - } else if yyj4628 == 0 && yyv4628 == nil { - yyv4628 = []EndpointPort{} - yyc4628 = true + if yyj4633 < len(yyv4633) { + yyv4633 = yyv4633[:yyj4633] + yyc4633 = true + } else if yyj4633 == 0 && yyv4633 == nil { + yyv4633 = []EndpointPort{} + yyc4633 = true } } - yyh4628.End() - if yyc4628 { - *v = yyv4628 + yyh4633.End() + if yyc4633 { + *v = yyv4633 } } @@ -58840,10 +58881,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4632 := range v { + for _, yyv4637 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4633 := &yyv4632 - yy4633.CodecEncodeSelf(e) + yy4638 := &yyv4637 + yy4638.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58853,83 +58894,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4634 := *v - yyh4634, yyl4634 := z.DecSliceHelperStart() - var yyc4634 bool - if yyl4634 == 0 { - if yyv4634 == nil { - yyv4634 = []Endpoints{} - yyc4634 = true - } else if len(yyv4634) != 0 { - yyv4634 = yyv4634[:0] - yyc4634 = true + yyv4639 := *v + yyh4639, yyl4639 := z.DecSliceHelperStart() + var yyc4639 bool + if yyl4639 == 0 { + if yyv4639 == nil { + yyv4639 = []Endpoints{} + yyc4639 = true + } else if len(yyv4639) != 0 { + yyv4639 = yyv4639[:0] + yyc4639 = true } - } else if yyl4634 > 0 { - var yyrr4634, yyrl4634 int - var yyrt4634 bool - if yyl4634 > cap(yyv4634) { + } else if yyl4639 > 0 { + var yyrr4639, yyrl4639 int + var yyrt4639 bool + if yyl4639 > cap(yyv4639) { - yyrg4634 := len(yyv4634) > 0 - yyv24634 := yyv4634 - yyrl4634, yyrt4634 = z.DecInferLen(yyl4634, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4634 { - if yyrl4634 <= cap(yyv4634) { - yyv4634 = yyv4634[:yyrl4634] + yyrg4639 := len(yyv4639) > 0 + yyv24639 := yyv4639 + yyrl4639, yyrt4639 = z.DecInferLen(yyl4639, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4639 { + if yyrl4639 <= cap(yyv4639) { + yyv4639 = yyv4639[:yyrl4639] } else { - yyv4634 = make([]Endpoints, yyrl4634) + yyv4639 = make([]Endpoints, yyrl4639) } } else { - yyv4634 = make([]Endpoints, yyrl4634) + yyv4639 = make([]Endpoints, yyrl4639) } - yyc4634 = true - yyrr4634 = len(yyv4634) - if yyrg4634 { - copy(yyv4634, yyv24634) + yyc4639 = true + yyrr4639 = len(yyv4639) + if yyrg4639 { + copy(yyv4639, yyv24639) } - } else if yyl4634 != len(yyv4634) { - yyv4634 = yyv4634[:yyl4634] - yyc4634 = true + } else if yyl4639 != len(yyv4639) { + yyv4639 = yyv4639[:yyl4639] + yyc4639 = true } - yyj4634 := 0 - for ; yyj4634 < yyrr4634; yyj4634++ { - yyh4634.ElemContainerState(yyj4634) + yyj4639 := 0 + for ; yyj4639 < yyrr4639; yyj4639++ { + yyh4639.ElemContainerState(yyj4639) if r.TryDecodeAsNil() { - yyv4634[yyj4634] = Endpoints{} + yyv4639[yyj4639] = Endpoints{} } else { - yyv4635 := &yyv4634[yyj4634] - yyv4635.CodecDecodeSelf(d) + yyv4640 := &yyv4639[yyj4639] + yyv4640.CodecDecodeSelf(d) } } - if yyrt4634 { - for ; yyj4634 < yyl4634; yyj4634++ { - yyv4634 = append(yyv4634, Endpoints{}) - yyh4634.ElemContainerState(yyj4634) + if yyrt4639 { + for ; yyj4639 < yyl4639; yyj4639++ { + yyv4639 = append(yyv4639, Endpoints{}) + yyh4639.ElemContainerState(yyj4639) if r.TryDecodeAsNil() { - yyv4634[yyj4634] = Endpoints{} + yyv4639[yyj4639] = Endpoints{} } else { - yyv4636 := &yyv4634[yyj4634] - yyv4636.CodecDecodeSelf(d) + yyv4641 := &yyv4639[yyj4639] + yyv4641.CodecDecodeSelf(d) } } } } else { - yyj4634 := 0 - for ; !r.CheckBreak(); yyj4634++ { + yyj4639 := 0 + for ; !r.CheckBreak(); yyj4639++ { - if yyj4634 >= len(yyv4634) { - yyv4634 = append(yyv4634, Endpoints{}) // var yyz4634 Endpoints - yyc4634 = true + if yyj4639 >= len(yyv4639) { + yyv4639 = append(yyv4639, Endpoints{}) // var yyz4639 Endpoints + yyc4639 = true } - yyh4634.ElemContainerState(yyj4634) - if yyj4634 < len(yyv4634) { + yyh4639.ElemContainerState(yyj4639) + if yyj4639 < len(yyv4639) { if r.TryDecodeAsNil() { - yyv4634[yyj4634] = Endpoints{} + yyv4639[yyj4639] = Endpoints{} } else { - yyv4637 := &yyv4634[yyj4634] - yyv4637.CodecDecodeSelf(d) + yyv4642 := &yyv4639[yyj4639] + yyv4642.CodecDecodeSelf(d) } } else { @@ -58937,17 +58978,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4634 < len(yyv4634) { - yyv4634 = yyv4634[:yyj4634] - yyc4634 = true - } else if yyj4634 == 0 && yyv4634 == nil { - yyv4634 = []Endpoints{} - yyc4634 = true + if yyj4639 < len(yyv4639) { + yyv4639 = yyv4639[:yyj4639] + yyc4639 = true + } else if yyj4639 == 0 && yyv4639 == nil { + yyv4639 = []Endpoints{} + yyc4639 = true } } - yyh4634.End() - if yyc4634 { - *v = yyv4634 + yyh4639.End() + if yyc4639 { + *v = yyv4639 } } @@ -58956,10 +58997,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4638 := range v { + for _, yyv4643 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4639 := &yyv4638 - yy4639.CodecEncodeSelf(e) + yy4644 := &yyv4643 + yy4644.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58969,83 +59010,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4640 := *v - yyh4640, yyl4640 := z.DecSliceHelperStart() - var yyc4640 bool - if yyl4640 == 0 { - if yyv4640 == nil { - yyv4640 = []NodeCondition{} - yyc4640 = true - } else if len(yyv4640) != 0 { - yyv4640 = yyv4640[:0] - yyc4640 = true + yyv4645 := *v + yyh4645, yyl4645 := z.DecSliceHelperStart() + var yyc4645 bool + if yyl4645 == 0 { + if yyv4645 == nil { + yyv4645 = []NodeCondition{} + yyc4645 = true + } else if len(yyv4645) != 0 { + yyv4645 = yyv4645[:0] + yyc4645 = true } - } else if yyl4640 > 0 { - var yyrr4640, yyrl4640 int - var yyrt4640 bool - if yyl4640 > cap(yyv4640) { + } else if yyl4645 > 0 { + var yyrr4645, yyrl4645 int + var yyrt4645 bool + if yyl4645 > cap(yyv4645) { - yyrg4640 := len(yyv4640) > 0 - yyv24640 := yyv4640 - yyrl4640, yyrt4640 = z.DecInferLen(yyl4640, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4640 { - if yyrl4640 <= cap(yyv4640) { - yyv4640 = yyv4640[:yyrl4640] + yyrg4645 := len(yyv4645) > 0 + yyv24645 := yyv4645 + yyrl4645, yyrt4645 = z.DecInferLen(yyl4645, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4645 { + if yyrl4645 <= cap(yyv4645) { + yyv4645 = yyv4645[:yyrl4645] } else { - yyv4640 = make([]NodeCondition, yyrl4640) + yyv4645 = make([]NodeCondition, yyrl4645) } } else { - yyv4640 = make([]NodeCondition, yyrl4640) + yyv4645 = make([]NodeCondition, yyrl4645) } - yyc4640 = true - yyrr4640 = len(yyv4640) - if yyrg4640 { - copy(yyv4640, yyv24640) + yyc4645 = true + yyrr4645 = len(yyv4645) + if yyrg4645 { + copy(yyv4645, yyv24645) } - } else if yyl4640 != len(yyv4640) { - yyv4640 = yyv4640[:yyl4640] - yyc4640 = true + } else if yyl4645 != len(yyv4645) { + yyv4645 = yyv4645[:yyl4645] + yyc4645 = true } - yyj4640 := 0 - for ; yyj4640 < yyrr4640; yyj4640++ { - yyh4640.ElemContainerState(yyj4640) + yyj4645 := 0 + for ; yyj4645 < yyrr4645; yyj4645++ { + yyh4645.ElemContainerState(yyj4645) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = NodeCondition{} + yyv4645[yyj4645] = NodeCondition{} } else { - yyv4641 := &yyv4640[yyj4640] - yyv4641.CodecDecodeSelf(d) + yyv4646 := &yyv4645[yyj4645] + yyv4646.CodecDecodeSelf(d) } } - if yyrt4640 { - for ; yyj4640 < yyl4640; yyj4640++ { - yyv4640 = append(yyv4640, NodeCondition{}) - yyh4640.ElemContainerState(yyj4640) + if yyrt4645 { + for ; yyj4645 < yyl4645; yyj4645++ { + yyv4645 = append(yyv4645, NodeCondition{}) + yyh4645.ElemContainerState(yyj4645) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = NodeCondition{} + yyv4645[yyj4645] = NodeCondition{} } else { - yyv4642 := &yyv4640[yyj4640] - yyv4642.CodecDecodeSelf(d) + yyv4647 := &yyv4645[yyj4645] + yyv4647.CodecDecodeSelf(d) } } } } else { - yyj4640 := 0 - for ; !r.CheckBreak(); yyj4640++ { + yyj4645 := 0 + for ; !r.CheckBreak(); yyj4645++ { - if yyj4640 >= len(yyv4640) { - yyv4640 = append(yyv4640, NodeCondition{}) // var yyz4640 NodeCondition - yyc4640 = true + if yyj4645 >= len(yyv4645) { + yyv4645 = append(yyv4645, NodeCondition{}) // var yyz4645 NodeCondition + yyc4645 = true } - yyh4640.ElemContainerState(yyj4640) - if yyj4640 < len(yyv4640) { + yyh4645.ElemContainerState(yyj4645) + if yyj4645 < len(yyv4645) { if r.TryDecodeAsNil() { - yyv4640[yyj4640] = NodeCondition{} + yyv4645[yyj4645] = NodeCondition{} } else { - yyv4643 := &yyv4640[yyj4640] - yyv4643.CodecDecodeSelf(d) + yyv4648 := &yyv4645[yyj4645] + yyv4648.CodecDecodeSelf(d) } } else { @@ -59053,17 +59094,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4640 < len(yyv4640) { - yyv4640 = yyv4640[:yyj4640] - yyc4640 = true - } else if yyj4640 == 0 && yyv4640 == nil { - yyv4640 = []NodeCondition{} - yyc4640 = true + if yyj4645 < len(yyv4645) { + yyv4645 = yyv4645[:yyj4645] + yyc4645 = true + } else if yyj4645 == 0 && yyv4645 == nil { + yyv4645 = []NodeCondition{} + yyc4645 = true } } - yyh4640.End() - if yyc4640 { - *v = yyv4640 + yyh4645.End() + if yyc4645 { + *v = yyv4645 } } @@ -59072,10 +59113,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4644 := range v { + for _, yyv4649 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4645 := &yyv4644 - yy4645.CodecEncodeSelf(e) + yy4650 := &yyv4649 + yy4650.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59085,83 +59126,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4646 := *v - yyh4646, yyl4646 := z.DecSliceHelperStart() - var yyc4646 bool - if yyl4646 == 0 { - if yyv4646 == nil { - yyv4646 = []NodeAddress{} - 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 = []NodeAddress{} + 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, 32) - if yyrt4646 { - if yyrl4646 <= cap(yyv4646) { - yyv4646 = yyv4646[:yyrl4646] + yyrg4651 := len(yyv4651) > 0 + yyv24651 := yyv4651 + yyrl4651, yyrt4651 = z.DecInferLen(yyl4651, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4651 { + if yyrl4651 <= cap(yyv4651) { + yyv4651 = yyv4651[:yyrl4651] } else { - yyv4646 = make([]NodeAddress, yyrl4646) + yyv4651 = make([]NodeAddress, yyrl4651) } } else { - yyv4646 = make([]NodeAddress, yyrl4646) + yyv4651 = make([]NodeAddress, 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] = NodeAddress{} + yyv4651[yyj4651] = NodeAddress{} } else { - yyv4647 := &yyv4646[yyj4646] - yyv4647.CodecDecodeSelf(d) + yyv4652 := &yyv4651[yyj4651] + yyv4652.CodecDecodeSelf(d) } } - if yyrt4646 { - for ; yyj4646 < yyl4646; yyj4646++ { - yyv4646 = append(yyv4646, NodeAddress{}) - yyh4646.ElemContainerState(yyj4646) + if yyrt4651 { + for ; yyj4651 < yyl4651; yyj4651++ { + yyv4651 = append(yyv4651, NodeAddress{}) + yyh4651.ElemContainerState(yyj4651) if r.TryDecodeAsNil() { - yyv4646[yyj4646] = NodeAddress{} + yyv4651[yyj4651] = NodeAddress{} } 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, NodeAddress{}) // var yyz4646 NodeAddress - yyc4646 = true + if yyj4651 >= len(yyv4651) { + yyv4651 = append(yyv4651, NodeAddress{}) // var yyz4651 NodeAddress + yyc4651 = true } - yyh4646.ElemContainerState(yyj4646) - if yyj4646 < len(yyv4646) { + yyh4651.ElemContainerState(yyj4651) + if yyj4651 < len(yyv4651) { if r.TryDecodeAsNil() { - yyv4646[yyj4646] = NodeAddress{} + yyv4651[yyj4651] = NodeAddress{} } else { - yyv4649 := &yyv4646[yyj4646] - yyv4649.CodecDecodeSelf(d) + yyv4654 := &yyv4651[yyj4651] + yyv4654.CodecDecodeSelf(d) } } else { @@ -59169,17 +59210,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4646 < len(yyv4646) { - yyv4646 = yyv4646[:yyj4646] - yyc4646 = true - } else if yyj4646 == 0 && yyv4646 == nil { - yyv4646 = []NodeAddress{} - yyc4646 = true + if yyj4651 < len(yyv4651) { + yyv4651 = yyv4651[:yyj4651] + yyc4651 = true + } else if yyj4651 == 0 && yyv4651 == nil { + yyv4651 = []NodeAddress{} + yyc4651 = true } } - yyh4646.End() - if yyc4646 { - *v = yyv4646 + yyh4651.End() + if yyc4651 { + *v = yyv4651 } } @@ -59188,10 +59229,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4650 := range v { + for _, yyv4655 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4651 := &yyv4650 - yy4651.CodecEncodeSelf(e) + yy4656 := &yyv4655 + yy4656.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59201,83 +59242,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4652 := *v - yyh4652, yyl4652 := z.DecSliceHelperStart() - var yyc4652 bool - if yyl4652 == 0 { - if yyv4652 == nil { - yyv4652 = []ContainerImage{} - yyc4652 = true - } else if len(yyv4652) != 0 { - yyv4652 = yyv4652[:0] - yyc4652 = true + yyv4657 := *v + yyh4657, yyl4657 := z.DecSliceHelperStart() + var yyc4657 bool + if yyl4657 == 0 { + if yyv4657 == nil { + yyv4657 = []ContainerImage{} + yyc4657 = true + } else if len(yyv4657) != 0 { + yyv4657 = yyv4657[:0] + yyc4657 = true } - } else if yyl4652 > 0 { - var yyrr4652, yyrl4652 int - var yyrt4652 bool - if yyl4652 > cap(yyv4652) { + } else if yyl4657 > 0 { + var yyrr4657, yyrl4657 int + var yyrt4657 bool + if yyl4657 > cap(yyv4657) { - yyrg4652 := len(yyv4652) > 0 - yyv24652 := yyv4652 - yyrl4652, yyrt4652 = z.DecInferLen(yyl4652, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4652 { - if yyrl4652 <= cap(yyv4652) { - yyv4652 = yyv4652[:yyrl4652] + yyrg4657 := len(yyv4657) > 0 + yyv24657 := yyv4657 + yyrl4657, yyrt4657 = z.DecInferLen(yyl4657, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4657 { + if yyrl4657 <= cap(yyv4657) { + yyv4657 = yyv4657[:yyrl4657] } else { - yyv4652 = make([]ContainerImage, yyrl4652) + yyv4657 = make([]ContainerImage, yyrl4657) } } else { - yyv4652 = make([]ContainerImage, yyrl4652) + yyv4657 = make([]ContainerImage, yyrl4657) } - yyc4652 = true - yyrr4652 = len(yyv4652) - if yyrg4652 { - copy(yyv4652, yyv24652) + yyc4657 = true + yyrr4657 = len(yyv4657) + if yyrg4657 { + copy(yyv4657, yyv24657) } - } else if yyl4652 != len(yyv4652) { - yyv4652 = yyv4652[:yyl4652] - yyc4652 = true + } else if yyl4657 != len(yyv4657) { + yyv4657 = yyv4657[:yyl4657] + yyc4657 = true } - yyj4652 := 0 - for ; yyj4652 < yyrr4652; yyj4652++ { - yyh4652.ElemContainerState(yyj4652) + yyj4657 := 0 + for ; yyj4657 < yyrr4657; yyj4657++ { + yyh4657.ElemContainerState(yyj4657) if r.TryDecodeAsNil() { - yyv4652[yyj4652] = ContainerImage{} + yyv4657[yyj4657] = ContainerImage{} } else { - yyv4653 := &yyv4652[yyj4652] - yyv4653.CodecDecodeSelf(d) + yyv4658 := &yyv4657[yyj4657] + yyv4658.CodecDecodeSelf(d) } } - if yyrt4652 { - for ; yyj4652 < yyl4652; yyj4652++ { - yyv4652 = append(yyv4652, ContainerImage{}) - yyh4652.ElemContainerState(yyj4652) + if yyrt4657 { + for ; yyj4657 < yyl4657; yyj4657++ { + yyv4657 = append(yyv4657, ContainerImage{}) + yyh4657.ElemContainerState(yyj4657) if r.TryDecodeAsNil() { - yyv4652[yyj4652] = ContainerImage{} + yyv4657[yyj4657] = ContainerImage{} } else { - yyv4654 := &yyv4652[yyj4652] - yyv4654.CodecDecodeSelf(d) + yyv4659 := &yyv4657[yyj4657] + yyv4659.CodecDecodeSelf(d) } } } } else { - yyj4652 := 0 - for ; !r.CheckBreak(); yyj4652++ { + yyj4657 := 0 + for ; !r.CheckBreak(); yyj4657++ { - if yyj4652 >= len(yyv4652) { - yyv4652 = append(yyv4652, ContainerImage{}) // var yyz4652 ContainerImage - yyc4652 = true + if yyj4657 >= len(yyv4657) { + yyv4657 = append(yyv4657, ContainerImage{}) // var yyz4657 ContainerImage + yyc4657 = true } - yyh4652.ElemContainerState(yyj4652) - if yyj4652 < len(yyv4652) { + yyh4657.ElemContainerState(yyj4657) + if yyj4657 < len(yyv4657) { if r.TryDecodeAsNil() { - yyv4652[yyj4652] = ContainerImage{} + yyv4657[yyj4657] = ContainerImage{} } else { - yyv4655 := &yyv4652[yyj4652] - yyv4655.CodecDecodeSelf(d) + yyv4660 := &yyv4657[yyj4657] + yyv4660.CodecDecodeSelf(d) } } else { @@ -59285,17 +59326,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4652 < len(yyv4652) { - yyv4652 = yyv4652[:yyj4652] - yyc4652 = true - } else if yyj4652 == 0 && yyv4652 == nil { - yyv4652 = []ContainerImage{} - yyc4652 = true + if yyj4657 < len(yyv4657) { + yyv4657 = yyv4657[:yyj4657] + yyc4657 = true + } else if yyj4657 == 0 && yyv4657 == nil { + yyv4657 = []ContainerImage{} + yyc4657 = true } } - yyh4652.End() - if yyc4652 { - *v = yyv4652 + yyh4657.End() + if yyc4657 { + *v = yyv4657 } } @@ -59304,9 +59345,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4656 := range v { + for _, yyv4661 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4656.CodecEncodeSelf(e) + yyv4661.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59316,75 +59357,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4657 := *v - yyh4657, yyl4657 := z.DecSliceHelperStart() - var yyc4657 bool - if yyl4657 == 0 { - if yyv4657 == nil { - yyv4657 = []UniqueVolumeName{} - yyc4657 = true - } else if len(yyv4657) != 0 { - yyv4657 = yyv4657[:0] - yyc4657 = true + yyv4662 := *v + yyh4662, yyl4662 := z.DecSliceHelperStart() + var yyc4662 bool + if yyl4662 == 0 { + if yyv4662 == nil { + yyv4662 = []UniqueVolumeName{} + yyc4662 = true + } else if len(yyv4662) != 0 { + yyv4662 = yyv4662[:0] + yyc4662 = true } - } else if yyl4657 > 0 { - var yyrr4657, yyrl4657 int - var yyrt4657 bool - if yyl4657 > cap(yyv4657) { + } else if yyl4662 > 0 { + var yyrr4662, yyrl4662 int + var yyrt4662 bool + if yyl4662 > cap(yyv4662) { - yyrl4657, yyrt4657 = z.DecInferLen(yyl4657, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4657 { - if yyrl4657 <= cap(yyv4657) { - yyv4657 = yyv4657[:yyrl4657] + yyrl4662, yyrt4662 = z.DecInferLen(yyl4662, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4662 { + if yyrl4662 <= cap(yyv4662) { + yyv4662 = yyv4662[:yyrl4662] } else { - yyv4657 = make([]UniqueVolumeName, yyrl4657) + yyv4662 = make([]UniqueVolumeName, yyrl4662) } } else { - yyv4657 = make([]UniqueVolumeName, yyrl4657) + yyv4662 = make([]UniqueVolumeName, yyrl4662) } - yyc4657 = true - yyrr4657 = len(yyv4657) - } else if yyl4657 != len(yyv4657) { - yyv4657 = yyv4657[:yyl4657] - yyc4657 = true + yyc4662 = true + yyrr4662 = len(yyv4662) + } else if yyl4662 != len(yyv4662) { + yyv4662 = yyv4662[:yyl4662] + yyc4662 = true } - yyj4657 := 0 - for ; yyj4657 < yyrr4657; yyj4657++ { - yyh4657.ElemContainerState(yyj4657) + yyj4662 := 0 + for ; yyj4662 < yyrr4662; yyj4662++ { + yyh4662.ElemContainerState(yyj4662) if r.TryDecodeAsNil() { - yyv4657[yyj4657] = "" + yyv4662[yyj4662] = "" } else { - yyv4657[yyj4657] = UniqueVolumeName(r.DecodeString()) + yyv4662[yyj4662] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4657 { - for ; yyj4657 < yyl4657; yyj4657++ { - yyv4657 = append(yyv4657, "") - yyh4657.ElemContainerState(yyj4657) + if yyrt4662 { + for ; yyj4662 < yyl4662; yyj4662++ { + yyv4662 = append(yyv4662, "") + yyh4662.ElemContainerState(yyj4662) if r.TryDecodeAsNil() { - yyv4657[yyj4657] = "" + yyv4662[yyj4662] = "" } else { - yyv4657[yyj4657] = UniqueVolumeName(r.DecodeString()) + yyv4662[yyj4662] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4657 := 0 - for ; !r.CheckBreak(); yyj4657++ { + yyj4662 := 0 + for ; !r.CheckBreak(); yyj4662++ { - if yyj4657 >= len(yyv4657) { - yyv4657 = append(yyv4657, "") // var yyz4657 UniqueVolumeName - yyc4657 = true + if yyj4662 >= len(yyv4662) { + yyv4662 = append(yyv4662, "") // var yyz4662 UniqueVolumeName + yyc4662 = true } - yyh4657.ElemContainerState(yyj4657) - if yyj4657 < len(yyv4657) { + yyh4662.ElemContainerState(yyj4662) + if yyj4662 < len(yyv4662) { if r.TryDecodeAsNil() { - yyv4657[yyj4657] = "" + yyv4662[yyj4662] = "" } else { - yyv4657[yyj4657] = UniqueVolumeName(r.DecodeString()) + yyv4662[yyj4662] = UniqueVolumeName(r.DecodeString()) } } else { @@ -59392,17 +59433,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4657 < len(yyv4657) { - yyv4657 = yyv4657[:yyj4657] - yyc4657 = true - } else if yyj4657 == 0 && yyv4657 == nil { - yyv4657 = []UniqueVolumeName{} - yyc4657 = true + if yyj4662 < len(yyv4662) { + yyv4662 = yyv4662[:yyj4662] + yyc4662 = true + } else if yyj4662 == 0 && yyv4662 == nil { + yyv4662 = []UniqueVolumeName{} + yyc4662 = true } } - yyh4657.End() - if yyc4657 { - *v = yyv4657 + yyh4662.End() + if yyc4662 { + *v = yyv4662 } } @@ -59411,10 +59452,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4661 := range v { + for _, yyv4666 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4662 := &yyv4661 - yy4662.CodecEncodeSelf(e) + yy4667 := &yyv4666 + yy4667.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59424,83 +59465,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4663 := *v - yyh4663, yyl4663 := z.DecSliceHelperStart() - var yyc4663 bool - if yyl4663 == 0 { - if yyv4663 == nil { - yyv4663 = []AttachedVolume{} - yyc4663 = true - } else if len(yyv4663) != 0 { - yyv4663 = yyv4663[:0] - yyc4663 = true + yyv4668 := *v + yyh4668, yyl4668 := z.DecSliceHelperStart() + var yyc4668 bool + if yyl4668 == 0 { + if yyv4668 == nil { + yyv4668 = []AttachedVolume{} + yyc4668 = true + } else if len(yyv4668) != 0 { + yyv4668 = yyv4668[:0] + yyc4668 = true } - } else if yyl4663 > 0 { - var yyrr4663, yyrl4663 int - var yyrt4663 bool - if yyl4663 > cap(yyv4663) { + } else if yyl4668 > 0 { + var yyrr4668, yyrl4668 int + var yyrt4668 bool + if yyl4668 > cap(yyv4668) { - yyrg4663 := len(yyv4663) > 0 - yyv24663 := yyv4663 - yyrl4663, yyrt4663 = z.DecInferLen(yyl4663, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4663 { - if yyrl4663 <= cap(yyv4663) { - yyv4663 = yyv4663[:yyrl4663] + yyrg4668 := len(yyv4668) > 0 + yyv24668 := yyv4668 + yyrl4668, yyrt4668 = z.DecInferLen(yyl4668, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4668 { + if yyrl4668 <= cap(yyv4668) { + yyv4668 = yyv4668[:yyrl4668] } else { - yyv4663 = make([]AttachedVolume, yyrl4663) + yyv4668 = make([]AttachedVolume, yyrl4668) } } else { - yyv4663 = make([]AttachedVolume, yyrl4663) + yyv4668 = make([]AttachedVolume, yyrl4668) } - yyc4663 = true - yyrr4663 = len(yyv4663) - if yyrg4663 { - copy(yyv4663, yyv24663) + yyc4668 = true + yyrr4668 = len(yyv4668) + if yyrg4668 { + copy(yyv4668, yyv24668) } - } else if yyl4663 != len(yyv4663) { - yyv4663 = yyv4663[:yyl4663] - yyc4663 = true + } else if yyl4668 != len(yyv4668) { + yyv4668 = yyv4668[:yyl4668] + yyc4668 = true } - yyj4663 := 0 - for ; yyj4663 < yyrr4663; yyj4663++ { - yyh4663.ElemContainerState(yyj4663) + yyj4668 := 0 + for ; yyj4668 < yyrr4668; yyj4668++ { + yyh4668.ElemContainerState(yyj4668) if r.TryDecodeAsNil() { - yyv4663[yyj4663] = AttachedVolume{} + yyv4668[yyj4668] = AttachedVolume{} } else { - yyv4664 := &yyv4663[yyj4663] - yyv4664.CodecDecodeSelf(d) + yyv4669 := &yyv4668[yyj4668] + yyv4669.CodecDecodeSelf(d) } } - if yyrt4663 { - for ; yyj4663 < yyl4663; yyj4663++ { - yyv4663 = append(yyv4663, AttachedVolume{}) - yyh4663.ElemContainerState(yyj4663) + if yyrt4668 { + for ; yyj4668 < yyl4668; yyj4668++ { + yyv4668 = append(yyv4668, AttachedVolume{}) + yyh4668.ElemContainerState(yyj4668) if r.TryDecodeAsNil() { - yyv4663[yyj4663] = AttachedVolume{} + yyv4668[yyj4668] = AttachedVolume{} } else { - yyv4665 := &yyv4663[yyj4663] - yyv4665.CodecDecodeSelf(d) + yyv4670 := &yyv4668[yyj4668] + yyv4670.CodecDecodeSelf(d) } } } } else { - yyj4663 := 0 - for ; !r.CheckBreak(); yyj4663++ { + yyj4668 := 0 + for ; !r.CheckBreak(); yyj4668++ { - if yyj4663 >= len(yyv4663) { - yyv4663 = append(yyv4663, AttachedVolume{}) // var yyz4663 AttachedVolume - yyc4663 = true + if yyj4668 >= len(yyv4668) { + yyv4668 = append(yyv4668, AttachedVolume{}) // var yyz4668 AttachedVolume + yyc4668 = true } - yyh4663.ElemContainerState(yyj4663) - if yyj4663 < len(yyv4663) { + yyh4668.ElemContainerState(yyj4668) + if yyj4668 < len(yyv4668) { if r.TryDecodeAsNil() { - yyv4663[yyj4663] = AttachedVolume{} + yyv4668[yyj4668] = AttachedVolume{} } else { - yyv4666 := &yyv4663[yyj4663] - yyv4666.CodecDecodeSelf(d) + yyv4671 := &yyv4668[yyj4668] + yyv4671.CodecDecodeSelf(d) } } else { @@ -59508,17 +59549,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4663 < len(yyv4663) { - yyv4663 = yyv4663[:yyj4663] - yyc4663 = true - } else if yyj4663 == 0 && yyv4663 == nil { - yyv4663 = []AttachedVolume{} - yyc4663 = true + if yyj4668 < len(yyv4668) { + yyv4668 = yyv4668[:yyj4668] + yyc4668 = true + } else if yyj4668 == 0 && yyv4668 == nil { + yyv4668 = []AttachedVolume{} + yyc4668 = true } } - yyh4663.End() - if yyc4663 { - *v = yyv4663 + yyh4668.End() + if yyc4668 { + *v = yyv4668 } } @@ -59527,10 +59568,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4667 := range v { + for _, yyv4672 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4668 := &yyv4667 - yy4668.CodecEncodeSelf(e) + yy4673 := &yyv4672 + yy4673.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59540,83 +59581,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4669 := *v - yyh4669, yyl4669 := z.DecSliceHelperStart() - var yyc4669 bool - if yyl4669 == 0 { - if yyv4669 == nil { - yyv4669 = []PreferAvoidPodsEntry{} - yyc4669 = true - } else if len(yyv4669) != 0 { - yyv4669 = yyv4669[:0] - yyc4669 = true + yyv4674 := *v + yyh4674, yyl4674 := z.DecSliceHelperStart() + var yyc4674 bool + if yyl4674 == 0 { + if yyv4674 == nil { + yyv4674 = []PreferAvoidPodsEntry{} + yyc4674 = true + } else if len(yyv4674) != 0 { + yyv4674 = yyv4674[:0] + yyc4674 = true } - } else if yyl4669 > 0 { - var yyrr4669, yyrl4669 int - var yyrt4669 bool - if yyl4669 > cap(yyv4669) { + } else if yyl4674 > 0 { + var yyrr4674, yyrl4674 int + var yyrt4674 bool + if yyl4674 > cap(yyv4674) { - yyrg4669 := len(yyv4669) > 0 - yyv24669 := yyv4669 - yyrl4669, yyrt4669 = z.DecInferLen(yyl4669, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4669 { - if yyrl4669 <= cap(yyv4669) { - yyv4669 = yyv4669[:yyrl4669] + yyrg4674 := len(yyv4674) > 0 + yyv24674 := yyv4674 + yyrl4674, yyrt4674 = z.DecInferLen(yyl4674, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4674 { + if yyrl4674 <= cap(yyv4674) { + yyv4674 = yyv4674[:yyrl4674] } else { - yyv4669 = make([]PreferAvoidPodsEntry, yyrl4669) + yyv4674 = make([]PreferAvoidPodsEntry, yyrl4674) } } else { - yyv4669 = make([]PreferAvoidPodsEntry, yyrl4669) + yyv4674 = make([]PreferAvoidPodsEntry, yyrl4674) } - yyc4669 = true - yyrr4669 = len(yyv4669) - if yyrg4669 { - copy(yyv4669, yyv24669) + yyc4674 = true + yyrr4674 = len(yyv4674) + if yyrg4674 { + copy(yyv4674, yyv24674) } - } else if yyl4669 != len(yyv4669) { - yyv4669 = yyv4669[:yyl4669] - yyc4669 = true + } else if yyl4674 != len(yyv4674) { + yyv4674 = yyv4674[:yyl4674] + yyc4674 = true } - yyj4669 := 0 - for ; yyj4669 < yyrr4669; yyj4669++ { - yyh4669.ElemContainerState(yyj4669) + yyj4674 := 0 + for ; yyj4674 < yyrr4674; yyj4674++ { + yyh4674.ElemContainerState(yyj4674) if r.TryDecodeAsNil() { - yyv4669[yyj4669] = PreferAvoidPodsEntry{} + yyv4674[yyj4674] = PreferAvoidPodsEntry{} } else { - yyv4670 := &yyv4669[yyj4669] - yyv4670.CodecDecodeSelf(d) + yyv4675 := &yyv4674[yyj4674] + yyv4675.CodecDecodeSelf(d) } } - if yyrt4669 { - for ; yyj4669 < yyl4669; yyj4669++ { - yyv4669 = append(yyv4669, PreferAvoidPodsEntry{}) - yyh4669.ElemContainerState(yyj4669) + if yyrt4674 { + for ; yyj4674 < yyl4674; yyj4674++ { + yyv4674 = append(yyv4674, PreferAvoidPodsEntry{}) + yyh4674.ElemContainerState(yyj4674) if r.TryDecodeAsNil() { - yyv4669[yyj4669] = PreferAvoidPodsEntry{} + yyv4674[yyj4674] = PreferAvoidPodsEntry{} } else { - yyv4671 := &yyv4669[yyj4669] - yyv4671.CodecDecodeSelf(d) + yyv4676 := &yyv4674[yyj4674] + yyv4676.CodecDecodeSelf(d) } } } } else { - yyj4669 := 0 - for ; !r.CheckBreak(); yyj4669++ { + yyj4674 := 0 + for ; !r.CheckBreak(); yyj4674++ { - if yyj4669 >= len(yyv4669) { - yyv4669 = append(yyv4669, PreferAvoidPodsEntry{}) // var yyz4669 PreferAvoidPodsEntry - yyc4669 = true + if yyj4674 >= len(yyv4674) { + yyv4674 = append(yyv4674, PreferAvoidPodsEntry{}) // var yyz4674 PreferAvoidPodsEntry + yyc4674 = true } - yyh4669.ElemContainerState(yyj4669) - if yyj4669 < len(yyv4669) { + yyh4674.ElemContainerState(yyj4674) + if yyj4674 < len(yyv4674) { if r.TryDecodeAsNil() { - yyv4669[yyj4669] = PreferAvoidPodsEntry{} + yyv4674[yyj4674] = PreferAvoidPodsEntry{} } else { - yyv4672 := &yyv4669[yyj4669] - yyv4672.CodecDecodeSelf(d) + yyv4677 := &yyv4674[yyj4674] + yyv4677.CodecDecodeSelf(d) } } else { @@ -59624,17 +59665,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4669 < len(yyv4669) { - yyv4669 = yyv4669[:yyj4669] - yyc4669 = true - } else if yyj4669 == 0 && yyv4669 == nil { - yyv4669 = []PreferAvoidPodsEntry{} - yyc4669 = true + if yyj4674 < len(yyv4674) { + yyv4674 = yyv4674[:yyj4674] + yyc4674 = true + } else if yyj4674 == 0 && yyv4674 == nil { + yyv4674 = []PreferAvoidPodsEntry{} + yyc4674 = true } } - yyh4669.End() - if yyc4669 { - *v = yyv4669 + yyh4674.End() + if yyc4674 { + *v = yyv4674 } } @@ -59643,19 +59684,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4673, yyv4673 := range v { + for yyk4678, yyv4678 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4673.CodecEncodeSelf(e) + yyk4678.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4674 := &yyv4673 - yym4675 := z.EncBinary() - _ = yym4675 + yy4679 := &yyv4678 + yym4680 := z.EncBinary() + _ = yym4680 if false { - } else if z.HasExtensions() && z.EncExt(yy4674) { - } else if !yym4675 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4674) + } else if z.HasExtensions() && z.EncExt(yy4679) { + } else if !yym4680 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4679) } else { - z.EncFallback(yy4674) + z.EncFallback(yy4679) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -59666,86 +59707,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4676 := *v - yyl4676 := r.ReadMapStart() - yybh4676 := z.DecBasicHandle() - if yyv4676 == nil { - yyrl4676, _ := z.DecInferLen(yyl4676, yybh4676.MaxInitLen, 72) - yyv4676 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4676) - *v = yyv4676 + yyv4681 := *v + yyl4681 := r.ReadMapStart() + yybh4681 := z.DecBasicHandle() + if yyv4681 == nil { + yyrl4681, _ := z.DecInferLen(yyl4681, yybh4681.MaxInitLen, 72) + yyv4681 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4681) + *v = yyv4681 } - var yymk4676 ResourceName - var yymv4676 pkg3_resource.Quantity - var yymg4676 bool - if yybh4676.MapValueReset { - yymg4676 = true + var yymk4681 ResourceName + var yymv4681 pkg3_resource.Quantity + var yymg4681 bool + if yybh4681.MapValueReset { + yymg4681 = true } - if yyl4676 > 0 { - for yyj4676 := 0; yyj4676 < yyl4676; yyj4676++ { + if yyl4681 > 0 { + for yyj4681 := 0; yyj4681 < yyl4681; yyj4681++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4676 = "" + yymk4681 = "" } else { - yymk4676 = ResourceName(r.DecodeString()) + yymk4681 = ResourceName(r.DecodeString()) } - if yymg4676 { - yymv4676 = yyv4676[yymk4676] + if yymg4681 { + yymv4681 = yyv4681[yymk4681] } else { - yymv4676 = pkg3_resource.Quantity{} + yymv4681 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4676 = pkg3_resource.Quantity{} + yymv4681 = pkg3_resource.Quantity{} } else { - yyv4678 := &yymv4676 - yym4679 := z.DecBinary() - _ = yym4679 + yyv4683 := &yymv4681 + yym4684 := z.DecBinary() + _ = yym4684 if false { - } else if z.HasExtensions() && z.DecExt(yyv4678) { - } else if !yym4679 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4678) + } else if z.HasExtensions() && z.DecExt(yyv4683) { + } else if !yym4684 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4683) } else { - z.DecFallback(yyv4678, false) + z.DecFallback(yyv4683, false) } } - if yyv4676 != nil { - yyv4676[yymk4676] = yymv4676 + if yyv4681 != nil { + yyv4681[yymk4681] = yymv4681 } } - } else if yyl4676 < 0 { - for yyj4676 := 0; !r.CheckBreak(); yyj4676++ { + } else if yyl4681 < 0 { + for yyj4681 := 0; !r.CheckBreak(); yyj4681++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4676 = "" + yymk4681 = "" } else { - yymk4676 = ResourceName(r.DecodeString()) + yymk4681 = ResourceName(r.DecodeString()) } - if yymg4676 { - yymv4676 = yyv4676[yymk4676] + if yymg4681 { + yymv4681 = yyv4681[yymk4681] } else { - yymv4676 = pkg3_resource.Quantity{} + yymv4681 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4676 = pkg3_resource.Quantity{} + yymv4681 = pkg3_resource.Quantity{} } else { - yyv4681 := &yymv4676 - yym4682 := z.DecBinary() - _ = yym4682 + yyv4686 := &yymv4681 + yym4687 := z.DecBinary() + _ = yym4687 if false { - } else if z.HasExtensions() && z.DecExt(yyv4681) { - } else if !yym4682 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4681) + } else if z.HasExtensions() && z.DecExt(yyv4686) { + } else if !yym4687 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4686) } else { - z.DecFallback(yyv4681, false) + z.DecFallback(yyv4686, false) } } - if yyv4676 != nil { - yyv4676[yymk4676] = yymv4676 + if yyv4681 != nil { + yyv4681[yymk4681] = yymv4681 } } } // else len==0: TODO: Should we clear map entries? @@ -59757,10 +59798,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4683 := range v { + for _, yyv4688 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4684 := &yyv4683 - yy4684.CodecEncodeSelf(e) + yy4689 := &yyv4688 + yy4689.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59770,127 +59811,12 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4685 := *v - yyh4685, yyl4685 := z.DecSliceHelperStart() - var yyc4685 bool - if yyl4685 == 0 { - if yyv4685 == nil { - yyv4685 = []Node{} - yyc4685 = true - } else if len(yyv4685) != 0 { - yyv4685 = yyv4685[:0] - yyc4685 = true - } - } else if yyl4685 > 0 { - var yyrr4685, yyrl4685 int - var yyrt4685 bool - if yyl4685 > cap(yyv4685) { - - yyrg4685 := len(yyv4685) > 0 - yyv24685 := yyv4685 - yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 616) - if yyrt4685 { - if yyrl4685 <= cap(yyv4685) { - yyv4685 = yyv4685[:yyrl4685] - } else { - yyv4685 = make([]Node, yyrl4685) - } - } else { - yyv4685 = make([]Node, yyrl4685) - } - yyc4685 = true - yyrr4685 = len(yyv4685) - if yyrg4685 { - copy(yyv4685, yyv24685) - } - } else if yyl4685 != len(yyv4685) { - yyv4685 = yyv4685[:yyl4685] - yyc4685 = true - } - yyj4685 := 0 - for ; yyj4685 < yyrr4685; yyj4685++ { - yyh4685.ElemContainerState(yyj4685) - if r.TryDecodeAsNil() { - yyv4685[yyj4685] = Node{} - } else { - yyv4686 := &yyv4685[yyj4685] - yyv4686.CodecDecodeSelf(d) - } - - } - if yyrt4685 { - for ; yyj4685 < yyl4685; yyj4685++ { - yyv4685 = append(yyv4685, Node{}) - yyh4685.ElemContainerState(yyj4685) - if r.TryDecodeAsNil() { - yyv4685[yyj4685] = Node{} - } else { - yyv4687 := &yyv4685[yyj4685] - yyv4687.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4685 := 0 - for ; !r.CheckBreak(); yyj4685++ { - - if yyj4685 >= len(yyv4685) { - yyv4685 = append(yyv4685, Node{}) // var yyz4685 Node - yyc4685 = true - } - yyh4685.ElemContainerState(yyj4685) - if yyj4685 < len(yyv4685) { - if r.TryDecodeAsNil() { - yyv4685[yyj4685] = Node{} - } else { - yyv4688 := &yyv4685[yyj4685] - yyv4688.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4685 < len(yyv4685) { - yyv4685 = yyv4685[:yyj4685] - yyc4685 = true - } else if yyj4685 == 0 && yyv4685 == nil { - yyv4685 = []Node{} - yyc4685 = true - } - } - yyh4685.End() - if yyc4685 { - *v = yyv4685 - } -} - -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 _, yyv4689 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4689.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 - yyv4690 := *v yyh4690, yyl4690 := z.DecSliceHelperStart() var yyc4690 bool if yyl4690 == 0 { if yyv4690 == nil { - yyv4690 = []FinalizerName{} + yyv4690 = []Node{} yyc4690 = true } else if len(yyv4690) != 0 { yyv4690 = yyv4690[:0] @@ -59901,18 +59827,23 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. var yyrt4690 bool if yyl4690 > cap(yyv4690) { - yyrl4690, yyrt4690 = z.DecInferLen(yyl4690, z.DecBasicHandle().MaxInitLen, 16) + yyrg4690 := len(yyv4690) > 0 + yyv24690 := yyv4690 + yyrl4690, yyrt4690 = z.DecInferLen(yyl4690, z.DecBasicHandle().MaxInitLen, 616) if yyrt4690 { if yyrl4690 <= cap(yyv4690) { yyv4690 = yyv4690[:yyrl4690] } else { - yyv4690 = make([]FinalizerName, yyrl4690) + yyv4690 = make([]Node, yyrl4690) } } else { - yyv4690 = make([]FinalizerName, yyrl4690) + yyv4690 = make([]Node, yyrl4690) } yyc4690 = true yyrr4690 = len(yyv4690) + if yyrg4690 { + copy(yyv4690, yyv24690) + } } else if yyl4690 != len(yyv4690) { yyv4690 = yyv4690[:yyl4690] yyc4690 = true @@ -59921,20 +59852,22 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; yyj4690 < yyrr4690; yyj4690++ { yyh4690.ElemContainerState(yyj4690) if r.TryDecodeAsNil() { - yyv4690[yyj4690] = "" + yyv4690[yyj4690] = Node{} } else { - yyv4690[yyj4690] = FinalizerName(r.DecodeString()) + yyv4691 := &yyv4690[yyj4690] + yyv4691.CodecDecodeSelf(d) } } if yyrt4690 { for ; yyj4690 < yyl4690; yyj4690++ { - yyv4690 = append(yyv4690, "") + yyv4690 = append(yyv4690, Node{}) yyh4690.ElemContainerState(yyj4690) if r.TryDecodeAsNil() { - yyv4690[yyj4690] = "" + yyv4690[yyj4690] = Node{} } else { - yyv4690[yyj4690] = FinalizerName(r.DecodeString()) + yyv4692 := &yyv4690[yyj4690] + yyv4692.CodecDecodeSelf(d) } } @@ -59945,15 +59878,16 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; !r.CheckBreak(); yyj4690++ { if yyj4690 >= len(yyv4690) { - yyv4690 = append(yyv4690, "") // var yyz4690 FinalizerName + yyv4690 = append(yyv4690, Node{}) // var yyz4690 Node yyc4690 = true } yyh4690.ElemContainerState(yyj4690) if yyj4690 < len(yyv4690) { if r.TryDecodeAsNil() { - yyv4690[yyj4690] = "" + yyv4690[yyj4690] = Node{} } else { - yyv4690[yyj4690] = FinalizerName(r.DecodeString()) + yyv4693 := &yyv4690[yyj4690] + yyv4693.CodecDecodeSelf(d) } } else { @@ -59965,7 +59899,7 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. yyv4690 = yyv4690[:yyj4690] yyc4690 = true } else if yyj4690 == 0 && yyv4690 == nil { - yyv4690 = []FinalizerName{} + yyv4690 = []Node{} yyc4690 = true } } @@ -59975,101 +59909,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 _, yyv4694 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4695 := &yyv4694 - yy4695.CodecEncodeSelf(e) + yyv4694.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 - yyv4696 := *v - yyh4696, yyl4696 := z.DecSliceHelperStart() - var yyc4696 bool - if yyl4696 == 0 { - if yyv4696 == nil { - yyv4696 = []Namespace{} - yyc4696 = true - } else if len(yyv4696) != 0 { - yyv4696 = yyv4696[:0] - yyc4696 = true + yyv4695 := *v + yyh4695, yyl4695 := z.DecSliceHelperStart() + var yyc4695 bool + if yyl4695 == 0 { + if yyv4695 == nil { + yyv4695 = []FinalizerName{} + yyc4695 = true + } else if len(yyv4695) != 0 { + yyv4695 = yyv4695[:0] + yyc4695 = true } - } else if yyl4696 > 0 { - var yyrr4696, yyrl4696 int - var yyrt4696 bool - if yyl4696 > cap(yyv4696) { + } else if yyl4695 > 0 { + var yyrr4695, yyrl4695 int + var yyrt4695 bool + if yyl4695 > cap(yyv4695) { - yyrg4696 := len(yyv4696) > 0 - yyv24696 := yyv4696 - yyrl4696, yyrt4696 = z.DecInferLen(yyl4696, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4696 { - if yyrl4696 <= cap(yyv4696) { - yyv4696 = yyv4696[:yyrl4696] + yyrl4695, yyrt4695 = z.DecInferLen(yyl4695, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4695 { + if yyrl4695 <= cap(yyv4695) { + yyv4695 = yyv4695[:yyrl4695] } else { - yyv4696 = make([]Namespace, yyrl4696) + yyv4695 = make([]FinalizerName, yyrl4695) } } else { - yyv4696 = make([]Namespace, yyrl4696) - } - yyc4696 = true - yyrr4696 = len(yyv4696) - if yyrg4696 { - copy(yyv4696, yyv24696) + yyv4695 = make([]FinalizerName, yyrl4695) } - } else if yyl4696 != len(yyv4696) { - yyv4696 = yyv4696[:yyl4696] - yyc4696 = true + yyc4695 = true + yyrr4695 = len(yyv4695) + } else if yyl4695 != len(yyv4695) { + yyv4695 = yyv4695[:yyl4695] + yyc4695 = true } - yyj4696 := 0 - for ; yyj4696 < yyrr4696; yyj4696++ { - yyh4696.ElemContainerState(yyj4696) + yyj4695 := 0 + for ; yyj4695 < yyrr4695; yyj4695++ { + yyh4695.ElemContainerState(yyj4695) if r.TryDecodeAsNil() { - yyv4696[yyj4696] = Namespace{} + yyv4695[yyj4695] = "" } else { - yyv4697 := &yyv4696[yyj4696] - yyv4697.CodecDecodeSelf(d) + yyv4695[yyj4695] = FinalizerName(r.DecodeString()) } } - if yyrt4696 { - for ; yyj4696 < yyl4696; yyj4696++ { - yyv4696 = append(yyv4696, Namespace{}) - yyh4696.ElemContainerState(yyj4696) + if yyrt4695 { + for ; yyj4695 < yyl4695; yyj4695++ { + yyv4695 = append(yyv4695, "") + yyh4695.ElemContainerState(yyj4695) if r.TryDecodeAsNil() { - yyv4696[yyj4696] = Namespace{} + yyv4695[yyj4695] = "" } else { - yyv4698 := &yyv4696[yyj4696] - yyv4698.CodecDecodeSelf(d) + yyv4695[yyj4695] = FinalizerName(r.DecodeString()) } } } } else { - yyj4696 := 0 - for ; !r.CheckBreak(); yyj4696++ { + yyj4695 := 0 + for ; !r.CheckBreak(); yyj4695++ { - if yyj4696 >= len(yyv4696) { - yyv4696 = append(yyv4696, Namespace{}) // var yyz4696 Namespace - yyc4696 = true + if yyj4695 >= len(yyv4695) { + yyv4695 = append(yyv4695, "") // var yyz4695 FinalizerName + yyc4695 = true } - yyh4696.ElemContainerState(yyj4696) - if yyj4696 < len(yyv4696) { + yyh4695.ElemContainerState(yyj4695) + if yyj4695 < len(yyv4695) { if r.TryDecodeAsNil() { - yyv4696[yyj4696] = Namespace{} + yyv4695[yyj4695] = "" } else { - yyv4699 := &yyv4696[yyj4696] - yyv4699.CodecDecodeSelf(d) + yyv4695[yyj4695] = FinalizerName(r.DecodeString()) } } else { @@ -60077,115 +60002,115 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4696 < len(yyv4696) { - yyv4696 = yyv4696[:yyj4696] - yyc4696 = true - } else if yyj4696 == 0 && yyv4696 == nil { - yyv4696 = []Namespace{} - yyc4696 = true + if yyj4695 < len(yyv4695) { + yyv4695 = yyv4695[:yyj4695] + yyc4695 = true + } else if yyj4695 == 0 && yyv4695 == nil { + yyv4695 = []FinalizerName{} + yyc4695 = true } } - yyh4696.End() - if yyc4696 { - *v = yyv4696 + yyh4695.End() + if yyc4695 { + *v = yyv4695 } } -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 _, yyv4700 := range v { + for _, yyv4699 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4701 := &yyv4700 - yy4701.CodecEncodeSelf(e) + yy4700 := &yyv4699 + yy4700.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 - yyv4702 := *v - yyh4702, yyl4702 := z.DecSliceHelperStart() - var yyc4702 bool - if yyl4702 == 0 { - if yyv4702 == nil { - yyv4702 = []Event{} - yyc4702 = true - } else if len(yyv4702) != 0 { - yyv4702 = yyv4702[:0] - yyc4702 = true + yyv4701 := *v + yyh4701, yyl4701 := z.DecSliceHelperStart() + var yyc4701 bool + if yyl4701 == 0 { + if yyv4701 == nil { + yyv4701 = []Namespace{} + yyc4701 = true + } else if len(yyv4701) != 0 { + yyv4701 = yyv4701[:0] + yyc4701 = true } - } else if yyl4702 > 0 { - var yyrr4702, yyrl4702 int - var yyrt4702 bool - if yyl4702 > cap(yyv4702) { + } else if yyl4701 > 0 { + var yyrr4701, yyrl4701 int + var yyrt4701 bool + if yyl4701 > cap(yyv4701) { - yyrg4702 := len(yyv4702) > 0 - yyv24702 := yyv4702 - yyrl4702, yyrt4702 = z.DecInferLen(yyl4702, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4702 { - if yyrl4702 <= cap(yyv4702) { - yyv4702 = yyv4702[:yyrl4702] + yyrg4701 := len(yyv4701) > 0 + yyv24701 := yyv4701 + yyrl4701, yyrt4701 = z.DecInferLen(yyl4701, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4701 { + if yyrl4701 <= cap(yyv4701) { + yyv4701 = yyv4701[:yyrl4701] } else { - yyv4702 = make([]Event, yyrl4702) + yyv4701 = make([]Namespace, yyrl4701) } } else { - yyv4702 = make([]Event, yyrl4702) + yyv4701 = make([]Namespace, yyrl4701) } - yyc4702 = true - yyrr4702 = len(yyv4702) - if yyrg4702 { - copy(yyv4702, yyv24702) + yyc4701 = true + yyrr4701 = len(yyv4701) + if yyrg4701 { + copy(yyv4701, yyv24701) } - } else if yyl4702 != len(yyv4702) { - yyv4702 = yyv4702[:yyl4702] - yyc4702 = true + } else if yyl4701 != len(yyv4701) { + yyv4701 = yyv4701[:yyl4701] + yyc4701 = true } - yyj4702 := 0 - for ; yyj4702 < yyrr4702; yyj4702++ { - yyh4702.ElemContainerState(yyj4702) + yyj4701 := 0 + for ; yyj4701 < yyrr4701; yyj4701++ { + yyh4701.ElemContainerState(yyj4701) if r.TryDecodeAsNil() { - yyv4702[yyj4702] = Event{} + yyv4701[yyj4701] = Namespace{} } else { - yyv4703 := &yyv4702[yyj4702] - yyv4703.CodecDecodeSelf(d) + yyv4702 := &yyv4701[yyj4701] + yyv4702.CodecDecodeSelf(d) } } - if yyrt4702 { - for ; yyj4702 < yyl4702; yyj4702++ { - yyv4702 = append(yyv4702, Event{}) - yyh4702.ElemContainerState(yyj4702) + if yyrt4701 { + for ; yyj4701 < yyl4701; yyj4701++ { + yyv4701 = append(yyv4701, Namespace{}) + yyh4701.ElemContainerState(yyj4701) if r.TryDecodeAsNil() { - yyv4702[yyj4702] = Event{} + yyv4701[yyj4701] = Namespace{} } else { - yyv4704 := &yyv4702[yyj4702] - yyv4704.CodecDecodeSelf(d) + yyv4703 := &yyv4701[yyj4701] + yyv4703.CodecDecodeSelf(d) } } } } else { - yyj4702 := 0 - for ; !r.CheckBreak(); yyj4702++ { + yyj4701 := 0 + for ; !r.CheckBreak(); yyj4701++ { - if yyj4702 >= len(yyv4702) { - yyv4702 = append(yyv4702, Event{}) // var yyz4702 Event - yyc4702 = true + if yyj4701 >= len(yyv4701) { + yyv4701 = append(yyv4701, Namespace{}) // var yyz4701 Namespace + yyc4701 = true } - yyh4702.ElemContainerState(yyj4702) - if yyj4702 < len(yyv4702) { + yyh4701.ElemContainerState(yyj4701) + if yyj4701 < len(yyv4701) { if r.TryDecodeAsNil() { - yyv4702[yyj4702] = Event{} + yyv4701[yyj4701] = Namespace{} } else { - yyv4705 := &yyv4702[yyj4702] - yyv4705.CodecDecodeSelf(d) + yyv4704 := &yyv4701[yyj4701] + yyv4704.CodecDecodeSelf(d) } } else { @@ -60193,142 +60118,115 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4702 < len(yyv4702) { - yyv4702 = yyv4702[:yyj4702] - yyc4702 = true - } else if yyj4702 == 0 && yyv4702 == nil { - yyv4702 = []Event{} - yyc4702 = true + if yyj4701 < len(yyv4701) { + yyv4701 = yyv4701[:yyj4701] + yyc4701 = true + } else if yyj4701 == 0 && yyv4701 == nil { + yyv4701 = []Namespace{} + yyc4701 = true } } - yyh4702.End() - if yyc4702 { - *v = yyv4702 + yyh4701.End() + if yyc4701 { + *v = yyv4701 } } -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 _, yyv4706 := range v { + for _, yyv4705 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv4706 == nil { - r.EncodeNil() - } else { - yym4707 := z.EncBinary() - _ = yym4707 - if false { - } else if z.HasExtensions() && z.EncExt(yyv4706) { - } else { - z.EncFallback(yyv4706) - } - } + yy4706 := &yyv4705 + yy4706.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 - yyv4708 := *v - yyh4708, yyl4708 := z.DecSliceHelperStart() - var yyc4708 bool - if yyl4708 == 0 { - if yyv4708 == nil { - yyv4708 = []pkg7_runtime.Object{} - yyc4708 = true - } else if len(yyv4708) != 0 { - yyv4708 = yyv4708[:0] - yyc4708 = true + yyv4707 := *v + yyh4707, yyl4707 := z.DecSliceHelperStart() + var yyc4707 bool + if yyl4707 == 0 { + if yyv4707 == nil { + yyv4707 = []Event{} + yyc4707 = true + } else if len(yyv4707) != 0 { + yyv4707 = yyv4707[:0] + yyc4707 = true } - } else if yyl4708 > 0 { - var yyrr4708, yyrl4708 int - var yyrt4708 bool - if yyl4708 > cap(yyv4708) { + } else if yyl4707 > 0 { + var yyrr4707, yyrl4707 int + var yyrt4707 bool + if yyl4707 > cap(yyv4707) { - yyrg4708 := len(yyv4708) > 0 - yyv24708 := yyv4708 - yyrl4708, yyrt4708 = z.DecInferLen(yyl4708, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4708 { - if yyrl4708 <= cap(yyv4708) { - yyv4708 = yyv4708[:yyrl4708] + yyrg4707 := len(yyv4707) > 0 + yyv24707 := yyv4707 + yyrl4707, yyrt4707 = z.DecInferLen(yyl4707, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4707 { + if yyrl4707 <= cap(yyv4707) { + yyv4707 = yyv4707[:yyrl4707] } else { - yyv4708 = make([]pkg7_runtime.Object, yyrl4708) + yyv4707 = make([]Event, yyrl4707) } } else { - yyv4708 = make([]pkg7_runtime.Object, yyrl4708) + yyv4707 = make([]Event, yyrl4707) } - yyc4708 = true - yyrr4708 = len(yyv4708) - if yyrg4708 { - copy(yyv4708, yyv24708) + yyc4707 = true + yyrr4707 = len(yyv4707) + if yyrg4707 { + copy(yyv4707, yyv24707) } - } else if yyl4708 != len(yyv4708) { - yyv4708 = yyv4708[:yyl4708] - yyc4708 = true + } else if yyl4707 != len(yyv4707) { + yyv4707 = yyv4707[:yyl4707] + yyc4707 = true } - yyj4708 := 0 - for ; yyj4708 < yyrr4708; yyj4708++ { - yyh4708.ElemContainerState(yyj4708) + yyj4707 := 0 + for ; yyj4707 < yyrr4707; yyj4707++ { + yyh4707.ElemContainerState(yyj4707) if r.TryDecodeAsNil() { - yyv4708[yyj4708] = nil + yyv4707[yyj4707] = Event{} } else { - yyv4709 := &yyv4708[yyj4708] - yym4710 := z.DecBinary() - _ = yym4710 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4709) { - } else { - z.DecFallback(yyv4709, true) - } + yyv4708 := &yyv4707[yyj4707] + yyv4708.CodecDecodeSelf(d) } } - if yyrt4708 { - for ; yyj4708 < yyl4708; yyj4708++ { - yyv4708 = append(yyv4708, nil) - yyh4708.ElemContainerState(yyj4708) + if yyrt4707 { + for ; yyj4707 < yyl4707; yyj4707++ { + yyv4707 = append(yyv4707, Event{}) + yyh4707.ElemContainerState(yyj4707) if r.TryDecodeAsNil() { - yyv4708[yyj4708] = nil + yyv4707[yyj4707] = Event{} } else { - yyv4711 := &yyv4708[yyj4708] - yym4712 := z.DecBinary() - _ = yym4712 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4711) { - } else { - z.DecFallback(yyv4711, true) - } + yyv4709 := &yyv4707[yyj4707] + yyv4709.CodecDecodeSelf(d) } } } } else { - yyj4708 := 0 - for ; !r.CheckBreak(); yyj4708++ { + yyj4707 := 0 + for ; !r.CheckBreak(); yyj4707++ { - if yyj4708 >= len(yyv4708) { - yyv4708 = append(yyv4708, nil) // var yyz4708 pkg7_runtime.Object - yyc4708 = true + if yyj4707 >= len(yyv4707) { + yyv4707 = append(yyv4707, Event{}) // var yyz4707 Event + yyc4707 = true } - yyh4708.ElemContainerState(yyj4708) - if yyj4708 < len(yyv4708) { + yyh4707.ElemContainerState(yyj4707) + if yyj4707 < len(yyv4707) { if r.TryDecodeAsNil() { - yyv4708[yyj4708] = nil + yyv4707[yyj4707] = Event{} } else { - yyv4713 := &yyv4708[yyj4708] - yym4714 := z.DecBinary() - _ = yym4714 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4713) { - } else { - z.DecFallback(yyv4713, true) - } + yyv4710 := &yyv4707[yyj4707] + yyv4710.CodecDecodeSelf(d) } } else { @@ -60336,115 +60234,142 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } - if yyj4708 < len(yyv4708) { - yyv4708 = yyv4708[:yyj4708] - yyc4708 = true - } else if yyj4708 == 0 && yyv4708 == nil { - yyv4708 = []pkg7_runtime.Object{} - yyc4708 = true + if yyj4707 < len(yyv4707) { + yyv4707 = yyv4707[:yyj4707] + yyc4707 = true + } else if yyj4707 == 0 && yyv4707 == nil { + yyv4707 = []Event{} + yyc4707 = true } } - yyh4708.End() - if yyc4708 { - *v = yyv4708 + yyh4707.End() + if yyc4707 { + *v = yyv4707 } } -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 _, yyv4715 := range v { + for _, yyv4711 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4716 := &yyv4715 - yy4716.CodecEncodeSelf(e) + if yyv4711 == nil { + r.EncodeNil() + } else { + yym4712 := z.EncBinary() + _ = yym4712 + if false { + } else if z.HasExtensions() && z.EncExt(yyv4711) { + } else { + z.EncFallback(yyv4711) + } + } } 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 - yyv4717 := *v - yyh4717, yyl4717 := z.DecSliceHelperStart() - var yyc4717 bool - if yyl4717 == 0 { - if yyv4717 == nil { - yyv4717 = []LimitRangeItem{} - yyc4717 = true - } else if len(yyv4717) != 0 { - yyv4717 = yyv4717[:0] - yyc4717 = true + yyv4713 := *v + yyh4713, yyl4713 := z.DecSliceHelperStart() + var yyc4713 bool + if yyl4713 == 0 { + if yyv4713 == nil { + yyv4713 = []pkg7_runtime.Object{} + yyc4713 = true + } else if len(yyv4713) != 0 { + yyv4713 = yyv4713[:0] + yyc4713 = true } - } else if yyl4717 > 0 { - var yyrr4717, yyrl4717 int - var yyrt4717 bool - if yyl4717 > cap(yyv4717) { + } else if yyl4713 > 0 { + var yyrr4713, yyrl4713 int + var yyrt4713 bool + if yyl4713 > cap(yyv4713) { - yyrg4717 := len(yyv4717) > 0 - yyv24717 := yyv4717 - yyrl4717, yyrt4717 = z.DecInferLen(yyl4717, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4717 { - if yyrl4717 <= cap(yyv4717) { - yyv4717 = yyv4717[:yyrl4717] + yyrg4713 := len(yyv4713) > 0 + yyv24713 := yyv4713 + yyrl4713, yyrt4713 = z.DecInferLen(yyl4713, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4713 { + if yyrl4713 <= cap(yyv4713) { + yyv4713 = yyv4713[:yyrl4713] } else { - yyv4717 = make([]LimitRangeItem, yyrl4717) + yyv4713 = make([]pkg7_runtime.Object, yyrl4713) } } else { - yyv4717 = make([]LimitRangeItem, yyrl4717) + yyv4713 = make([]pkg7_runtime.Object, yyrl4713) } - yyc4717 = true - yyrr4717 = len(yyv4717) - if yyrg4717 { - copy(yyv4717, yyv24717) + yyc4713 = true + yyrr4713 = len(yyv4713) + if yyrg4713 { + copy(yyv4713, yyv24713) } - } else if yyl4717 != len(yyv4717) { - yyv4717 = yyv4717[:yyl4717] - yyc4717 = true + } else if yyl4713 != len(yyv4713) { + yyv4713 = yyv4713[:yyl4713] + yyc4713 = true } - yyj4717 := 0 - for ; yyj4717 < yyrr4717; yyj4717++ { - yyh4717.ElemContainerState(yyj4717) + yyj4713 := 0 + for ; yyj4713 < yyrr4713; yyj4713++ { + yyh4713.ElemContainerState(yyj4713) if r.TryDecodeAsNil() { - yyv4717[yyj4717] = LimitRangeItem{} + yyv4713[yyj4713] = nil } else { - yyv4718 := &yyv4717[yyj4717] - yyv4718.CodecDecodeSelf(d) + yyv4714 := &yyv4713[yyj4713] + yym4715 := z.DecBinary() + _ = yym4715 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4714) { + } else { + z.DecFallback(yyv4714, true) + } } } - if yyrt4717 { - for ; yyj4717 < yyl4717; yyj4717++ { - yyv4717 = append(yyv4717, LimitRangeItem{}) - yyh4717.ElemContainerState(yyj4717) + if yyrt4713 { + for ; yyj4713 < yyl4713; yyj4713++ { + yyv4713 = append(yyv4713, nil) + yyh4713.ElemContainerState(yyj4713) if r.TryDecodeAsNil() { - yyv4717[yyj4717] = LimitRangeItem{} + yyv4713[yyj4713] = nil } else { - yyv4719 := &yyv4717[yyj4717] - yyv4719.CodecDecodeSelf(d) + yyv4716 := &yyv4713[yyj4713] + yym4717 := z.DecBinary() + _ = yym4717 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4716) { + } else { + z.DecFallback(yyv4716, true) + } } } } } else { - yyj4717 := 0 - for ; !r.CheckBreak(); yyj4717++ { + yyj4713 := 0 + for ; !r.CheckBreak(); yyj4713++ { - if yyj4717 >= len(yyv4717) { - yyv4717 = append(yyv4717, LimitRangeItem{}) // var yyz4717 LimitRangeItem - yyc4717 = true + if yyj4713 >= len(yyv4713) { + yyv4713 = append(yyv4713, nil) // var yyz4713 pkg7_runtime.Object + yyc4713 = true } - yyh4717.ElemContainerState(yyj4717) - if yyj4717 < len(yyv4717) { + yyh4713.ElemContainerState(yyj4713) + if yyj4713 < len(yyv4713) { if r.TryDecodeAsNil() { - yyv4717[yyj4717] = LimitRangeItem{} + yyv4713[yyj4713] = nil } else { - yyv4720 := &yyv4717[yyj4717] - yyv4720.CodecDecodeSelf(d) + yyv4718 := &yyv4713[yyj4713] + yym4719 := z.DecBinary() + _ = yym4719 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4718) { + } else { + z.DecFallback(yyv4718, true) + } } } else { @@ -60452,115 +60377,115 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4717 < len(yyv4717) { - yyv4717 = yyv4717[:yyj4717] - yyc4717 = true - } else if yyj4717 == 0 && yyv4717 == nil { - yyv4717 = []LimitRangeItem{} - yyc4717 = true + if yyj4713 < len(yyv4713) { + yyv4713 = yyv4713[:yyj4713] + yyc4713 = true + } else if yyj4713 == 0 && yyv4713 == nil { + yyv4713 = []pkg7_runtime.Object{} + yyc4713 = true } } - yyh4717.End() - if yyc4717 { - *v = yyv4717 + yyh4713.End() + if yyc4713 { + *v = yyv4713 } } -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 _, yyv4721 := range v { + for _, yyv4720 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4722 := &yyv4721 - yy4722.CodecEncodeSelf(e) + yy4721 := &yyv4720 + yy4721.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 - yyv4723 := *v - yyh4723, yyl4723 := z.DecSliceHelperStart() - var yyc4723 bool - if yyl4723 == 0 { - if yyv4723 == nil { - yyv4723 = []LimitRange{} - yyc4723 = true - } else if len(yyv4723) != 0 { - yyv4723 = yyv4723[:0] - yyc4723 = true + yyv4722 := *v + yyh4722, yyl4722 := z.DecSliceHelperStart() + var yyc4722 bool + if yyl4722 == 0 { + if yyv4722 == nil { + yyv4722 = []LimitRangeItem{} + yyc4722 = true + } else if len(yyv4722) != 0 { + yyv4722 = yyv4722[:0] + yyc4722 = true } - } else if yyl4723 > 0 { - var yyrr4723, yyrl4723 int - var yyrt4723 bool - if yyl4723 > cap(yyv4723) { + } else if yyl4722 > 0 { + var yyrr4722, yyrl4722 int + var yyrt4722 bool + if yyl4722 > cap(yyv4722) { - yyrg4723 := len(yyv4723) > 0 - yyv24723 := yyv4723 - yyrl4723, yyrt4723 = z.DecInferLen(yyl4723, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4723 { - if yyrl4723 <= cap(yyv4723) { - yyv4723 = yyv4723[:yyrl4723] + yyrg4722 := len(yyv4722) > 0 + yyv24722 := yyv4722 + yyrl4722, yyrt4722 = z.DecInferLen(yyl4722, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4722 { + if yyrl4722 <= cap(yyv4722) { + yyv4722 = yyv4722[:yyrl4722] } else { - yyv4723 = make([]LimitRange, yyrl4723) + yyv4722 = make([]LimitRangeItem, yyrl4722) } } else { - yyv4723 = make([]LimitRange, yyrl4723) + yyv4722 = make([]LimitRangeItem, yyrl4722) } - yyc4723 = true - yyrr4723 = len(yyv4723) - if yyrg4723 { - copy(yyv4723, yyv24723) + yyc4722 = true + yyrr4722 = len(yyv4722) + if yyrg4722 { + copy(yyv4722, yyv24722) } - } else if yyl4723 != len(yyv4723) { - yyv4723 = yyv4723[:yyl4723] - yyc4723 = true + } else if yyl4722 != len(yyv4722) { + yyv4722 = yyv4722[:yyl4722] + yyc4722 = true } - yyj4723 := 0 - for ; yyj4723 < yyrr4723; yyj4723++ { - yyh4723.ElemContainerState(yyj4723) + yyj4722 := 0 + for ; yyj4722 < yyrr4722; yyj4722++ { + yyh4722.ElemContainerState(yyj4722) if r.TryDecodeAsNil() { - yyv4723[yyj4723] = LimitRange{} + yyv4722[yyj4722] = LimitRangeItem{} } else { - yyv4724 := &yyv4723[yyj4723] - yyv4724.CodecDecodeSelf(d) + yyv4723 := &yyv4722[yyj4722] + yyv4723.CodecDecodeSelf(d) } } - if yyrt4723 { - for ; yyj4723 < yyl4723; yyj4723++ { - yyv4723 = append(yyv4723, LimitRange{}) - yyh4723.ElemContainerState(yyj4723) + if yyrt4722 { + for ; yyj4722 < yyl4722; yyj4722++ { + yyv4722 = append(yyv4722, LimitRangeItem{}) + yyh4722.ElemContainerState(yyj4722) if r.TryDecodeAsNil() { - yyv4723[yyj4723] = LimitRange{} + yyv4722[yyj4722] = LimitRangeItem{} } else { - yyv4725 := &yyv4723[yyj4723] - yyv4725.CodecDecodeSelf(d) + yyv4724 := &yyv4722[yyj4722] + yyv4724.CodecDecodeSelf(d) } } } } else { - yyj4723 := 0 - for ; !r.CheckBreak(); yyj4723++ { + yyj4722 := 0 + for ; !r.CheckBreak(); yyj4722++ { - if yyj4723 >= len(yyv4723) { - yyv4723 = append(yyv4723, LimitRange{}) // var yyz4723 LimitRange - yyc4723 = true + if yyj4722 >= len(yyv4722) { + yyv4722 = append(yyv4722, LimitRangeItem{}) // var yyz4722 LimitRangeItem + yyc4722 = true } - yyh4723.ElemContainerState(yyj4723) - if yyj4723 < len(yyv4723) { + yyh4722.ElemContainerState(yyj4722) + if yyj4722 < len(yyv4722) { if r.TryDecodeAsNil() { - yyv4723[yyj4723] = LimitRange{} + yyv4722[yyj4722] = LimitRangeItem{} } else { - yyv4726 := &yyv4723[yyj4723] - yyv4726.CodecDecodeSelf(d) + yyv4725 := &yyv4722[yyj4722] + yyv4725.CodecDecodeSelf(d) } } else { @@ -60568,33 +60493,34 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4723 < len(yyv4723) { - yyv4723 = yyv4723[:yyj4723] - yyc4723 = true - } else if yyj4723 == 0 && yyv4723 == nil { - yyv4723 = []LimitRange{} - yyc4723 = true + if yyj4722 < len(yyv4722) { + yyv4722 = yyv4722[:yyj4722] + yyc4722 = true + } else if yyj4722 == 0 && yyv4722 == nil { + yyv4722 = []LimitRangeItem{} + yyc4722 = true } } - yyh4723.End() - if yyc4723 { - *v = yyv4723 + yyh4722.End() + if yyc4722 { + *v = yyv4722 } } -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 _, yyv4727 := range v { + for _, yyv4726 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4727.CodecEncodeSelf(e) + yy4727 := &yyv4726 + yy4727.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 @@ -60604,7 +60530,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyc4728 bool if yyl4728 == 0 { if yyv4728 == nil { - yyv4728 = []ResourceQuotaScope{} + yyv4728 = []LimitRange{} yyc4728 = true } else if len(yyv4728) != 0 { yyv4728 = yyv4728[:0] @@ -60615,18 +60541,23 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyrt4728 bool if yyl4728 > cap(yyv4728) { - yyrl4728, yyrt4728 = z.DecInferLen(yyl4728, z.DecBasicHandle().MaxInitLen, 16) + yyrg4728 := len(yyv4728) > 0 + yyv24728 := yyv4728 + yyrl4728, yyrt4728 = z.DecInferLen(yyl4728, z.DecBasicHandle().MaxInitLen, 264) if yyrt4728 { if yyrl4728 <= cap(yyv4728) { yyv4728 = yyv4728[:yyrl4728] } else { - yyv4728 = make([]ResourceQuotaScope, yyrl4728) + yyv4728 = make([]LimitRange, yyrl4728) } } else { - yyv4728 = make([]ResourceQuotaScope, yyrl4728) + yyv4728 = make([]LimitRange, yyrl4728) } yyc4728 = true yyrr4728 = len(yyv4728) + if yyrg4728 { + copy(yyv4728, yyv24728) + } } else if yyl4728 != len(yyv4728) { yyv4728 = yyv4728[:yyl4728] yyc4728 = true @@ -60635,20 +60566,22 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; yyj4728 < yyrr4728; yyj4728++ { yyh4728.ElemContainerState(yyj4728) if r.TryDecodeAsNil() { - yyv4728[yyj4728] = "" + yyv4728[yyj4728] = LimitRange{} } else { - yyv4728[yyj4728] = ResourceQuotaScope(r.DecodeString()) + yyv4729 := &yyv4728[yyj4728] + yyv4729.CodecDecodeSelf(d) } } if yyrt4728 { for ; yyj4728 < yyl4728; yyj4728++ { - yyv4728 = append(yyv4728, "") + yyv4728 = append(yyv4728, LimitRange{}) yyh4728.ElemContainerState(yyj4728) if r.TryDecodeAsNil() { - yyv4728[yyj4728] = "" + yyv4728[yyj4728] = LimitRange{} } else { - yyv4728[yyj4728] = ResourceQuotaScope(r.DecodeString()) + yyv4730 := &yyv4728[yyj4728] + yyv4730.CodecDecodeSelf(d) } } @@ -60659,15 +60592,16 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; !r.CheckBreak(); yyj4728++ { if yyj4728 >= len(yyv4728) { - yyv4728 = append(yyv4728, "") // var yyz4728 ResourceQuotaScope + yyv4728 = append(yyv4728, LimitRange{}) // var yyz4728 LimitRange yyc4728 = true } yyh4728.ElemContainerState(yyj4728) if yyj4728 < len(yyv4728) { if r.TryDecodeAsNil() { - yyv4728[yyj4728] = "" + yyv4728[yyj4728] = LimitRange{} } else { - yyv4728[yyj4728] = ResourceQuotaScope(r.DecodeString()) + yyv4731 := &yyv4728[yyj4728] + yyv4731.CodecDecodeSelf(d) } } else { @@ -60679,7 +60613,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * yyv4728 = yyv4728[:yyj4728] yyc4728 = true } else if yyj4728 == 0 && yyv4728 == nil { - yyv4728 = []ResourceQuotaScope{} + yyv4728 = []LimitRange{} yyc4728 = true } } @@ -60689,15 +60623,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 _, yyv4732 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4733 := &yyv4732 - yy4733.CodecEncodeSelf(e) + yyv4732.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 + + yyv4733 := *v + yyh4733, yyl4733 := z.DecSliceHelperStart() + var yyc4733 bool + if yyl4733 == 0 { + if yyv4733 == nil { + yyv4733 = []ResourceQuotaScope{} + yyc4733 = true + } else if len(yyv4733) != 0 { + yyv4733 = yyv4733[:0] + yyc4733 = true + } + } else if yyl4733 > 0 { + var yyrr4733, yyrl4733 int + var yyrt4733 bool + if yyl4733 > cap(yyv4733) { + + yyrl4733, yyrt4733 = z.DecInferLen(yyl4733, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4733 { + if yyrl4733 <= cap(yyv4733) { + yyv4733 = yyv4733[:yyrl4733] + } else { + yyv4733 = make([]ResourceQuotaScope, yyrl4733) + } + } else { + yyv4733 = make([]ResourceQuotaScope, yyrl4733) + } + yyc4733 = true + yyrr4733 = len(yyv4733) + } else if yyl4733 != len(yyv4733) { + yyv4733 = yyv4733[:yyl4733] + yyc4733 = true + } + yyj4733 := 0 + for ; yyj4733 < yyrr4733; yyj4733++ { + yyh4733.ElemContainerState(yyj4733) + if r.TryDecodeAsNil() { + yyv4733[yyj4733] = "" + } else { + yyv4733[yyj4733] = ResourceQuotaScope(r.DecodeString()) + } + + } + if yyrt4733 { + for ; yyj4733 < yyl4733; yyj4733++ { + yyv4733 = append(yyv4733, "") + yyh4733.ElemContainerState(yyj4733) + if r.TryDecodeAsNil() { + yyv4733[yyj4733] = "" + } else { + yyv4733[yyj4733] = ResourceQuotaScope(r.DecodeString()) + } + + } + } + + } else { + yyj4733 := 0 + for ; !r.CheckBreak(); yyj4733++ { + + if yyj4733 >= len(yyv4733) { + yyv4733 = append(yyv4733, "") // var yyz4733 ResourceQuotaScope + yyc4733 = true + } + yyh4733.ElemContainerState(yyj4733) + if yyj4733 < len(yyv4733) { + if r.TryDecodeAsNil() { + yyv4733[yyj4733] = "" + } else { + yyv4733[yyj4733] = ResourceQuotaScope(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4733 < len(yyv4733) { + yyv4733 = yyv4733[:yyj4733] + yyc4733 = true + } else if yyj4733 == 0 && yyv4733 == nil { + yyv4733 = []ResourceQuotaScope{} + yyc4733 = true + } + } + yyh4733.End() + if yyc4733 { + *v = yyv4733 + } +} + +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 _, yyv4737 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4738 := &yyv4737 + yy4738.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60707,83 +60748,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4734 := *v - yyh4734, yyl4734 := z.DecSliceHelperStart() - var yyc4734 bool - if yyl4734 == 0 { - if yyv4734 == nil { - yyv4734 = []ResourceQuota{} - yyc4734 = true - } else if len(yyv4734) != 0 { - yyv4734 = yyv4734[:0] - yyc4734 = true + yyv4739 := *v + yyh4739, yyl4739 := z.DecSliceHelperStart() + var yyc4739 bool + if yyl4739 == 0 { + if yyv4739 == nil { + yyv4739 = []ResourceQuota{} + yyc4739 = true + } else if len(yyv4739) != 0 { + yyv4739 = yyv4739[:0] + yyc4739 = true } - } else if yyl4734 > 0 { - var yyrr4734, yyrl4734 int - var yyrt4734 bool - if yyl4734 > cap(yyv4734) { + } else if yyl4739 > 0 { + var yyrr4739, yyrl4739 int + var yyrt4739 bool + if yyl4739 > cap(yyv4739) { - yyrg4734 := len(yyv4734) > 0 - yyv24734 := yyv4734 - yyrl4734, yyrt4734 = z.DecInferLen(yyl4734, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4734 { - if yyrl4734 <= cap(yyv4734) { - yyv4734 = yyv4734[:yyrl4734] + yyrg4739 := len(yyv4739) > 0 + yyv24739 := yyv4739 + yyrl4739, yyrt4739 = z.DecInferLen(yyl4739, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4739 { + if yyrl4739 <= cap(yyv4739) { + yyv4739 = yyv4739[:yyrl4739] } else { - yyv4734 = make([]ResourceQuota, yyrl4734) + yyv4739 = make([]ResourceQuota, yyrl4739) } } else { - yyv4734 = make([]ResourceQuota, yyrl4734) + yyv4739 = make([]ResourceQuota, yyrl4739) } - yyc4734 = true - yyrr4734 = len(yyv4734) - if yyrg4734 { - copy(yyv4734, yyv24734) + yyc4739 = true + yyrr4739 = len(yyv4739) + if yyrg4739 { + copy(yyv4739, yyv24739) } - } else if yyl4734 != len(yyv4734) { - yyv4734 = yyv4734[:yyl4734] - yyc4734 = true + } else if yyl4739 != len(yyv4739) { + yyv4739 = yyv4739[:yyl4739] + yyc4739 = true } - yyj4734 := 0 - for ; yyj4734 < yyrr4734; yyj4734++ { - yyh4734.ElemContainerState(yyj4734) + yyj4739 := 0 + for ; yyj4739 < yyrr4739; yyj4739++ { + yyh4739.ElemContainerState(yyj4739) if r.TryDecodeAsNil() { - yyv4734[yyj4734] = ResourceQuota{} + yyv4739[yyj4739] = ResourceQuota{} } else { - yyv4735 := &yyv4734[yyj4734] - yyv4735.CodecDecodeSelf(d) + yyv4740 := &yyv4739[yyj4739] + yyv4740.CodecDecodeSelf(d) } } - if yyrt4734 { - for ; yyj4734 < yyl4734; yyj4734++ { - yyv4734 = append(yyv4734, ResourceQuota{}) - yyh4734.ElemContainerState(yyj4734) + if yyrt4739 { + for ; yyj4739 < yyl4739; yyj4739++ { + yyv4739 = append(yyv4739, ResourceQuota{}) + yyh4739.ElemContainerState(yyj4739) if r.TryDecodeAsNil() { - yyv4734[yyj4734] = ResourceQuota{} + yyv4739[yyj4739] = ResourceQuota{} } else { - yyv4736 := &yyv4734[yyj4734] - yyv4736.CodecDecodeSelf(d) + yyv4741 := &yyv4739[yyj4739] + yyv4741.CodecDecodeSelf(d) } } } } else { - yyj4734 := 0 - for ; !r.CheckBreak(); yyj4734++ { + yyj4739 := 0 + for ; !r.CheckBreak(); yyj4739++ { - if yyj4734 >= len(yyv4734) { - yyv4734 = append(yyv4734, ResourceQuota{}) // var yyz4734 ResourceQuota - yyc4734 = true + if yyj4739 >= len(yyv4739) { + yyv4739 = append(yyv4739, ResourceQuota{}) // var yyz4739 ResourceQuota + yyc4739 = true } - yyh4734.ElemContainerState(yyj4734) - if yyj4734 < len(yyv4734) { + yyh4739.ElemContainerState(yyj4739) + if yyj4739 < len(yyv4739) { if r.TryDecodeAsNil() { - yyv4734[yyj4734] = ResourceQuota{} + yyv4739[yyj4739] = ResourceQuota{} } else { - yyv4737 := &yyv4734[yyj4734] - yyv4737.CodecDecodeSelf(d) + yyv4742 := &yyv4739[yyj4739] + yyv4742.CodecDecodeSelf(d) } } else { @@ -60791,17 +60832,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4734 < len(yyv4734) { - yyv4734 = yyv4734[:yyj4734] - yyc4734 = true - } else if yyj4734 == 0 && yyv4734 == nil { - yyv4734 = []ResourceQuota{} - yyc4734 = true + if yyj4739 < len(yyv4739) { + yyv4739 = yyv4739[:yyj4739] + yyc4739 = true + } else if yyj4739 == 0 && yyv4739 == nil { + yyv4739 = []ResourceQuota{} + yyc4739 = true } } - yyh4734.End() - if yyc4734 { - *v = yyv4734 + yyh4739.End() + if yyc4739 { + *v = yyv4739 } } @@ -60810,23 +60851,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4738, yyv4738 := range v { + for yyk4743, yyv4743 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4739 := z.EncBinary() - _ = yym4739 + yym4744 := z.EncBinary() + _ = yym4744 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4738)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4743)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4738 == nil { + if yyv4743 == nil { r.EncodeNil() } else { - yym4740 := z.EncBinary() - _ = yym4740 + yym4745 := z.EncBinary() + _ = yym4745 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4738)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4743)) } } } @@ -60838,80 +60879,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4741 := *v - yyl4741 := r.ReadMapStart() - yybh4741 := z.DecBasicHandle() - if yyv4741 == nil { - yyrl4741, _ := z.DecInferLen(yyl4741, yybh4741.MaxInitLen, 40) - yyv4741 = make(map[string][]uint8, yyrl4741) - *v = yyv4741 + yyv4746 := *v + yyl4746 := r.ReadMapStart() + yybh4746 := z.DecBasicHandle() + if yyv4746 == nil { + yyrl4746, _ := z.DecInferLen(yyl4746, yybh4746.MaxInitLen, 40) + yyv4746 = make(map[string][]uint8, yyrl4746) + *v = yyv4746 } - var yymk4741 string - var yymv4741 []uint8 - var yymg4741 bool - if yybh4741.MapValueReset { - yymg4741 = true + var yymk4746 string + var yymv4746 []uint8 + var yymg4746 bool + if yybh4746.MapValueReset { + yymg4746 = true } - if yyl4741 > 0 { - for yyj4741 := 0; yyj4741 < yyl4741; yyj4741++ { + if yyl4746 > 0 { + for yyj4746 := 0; yyj4746 < yyl4746; yyj4746++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4741 = "" + yymk4746 = "" } else { - yymk4741 = string(r.DecodeString()) + yymk4746 = string(r.DecodeString()) } - if yymg4741 { - yymv4741 = yyv4741[yymk4741] + if yymg4746 { + yymv4746 = yyv4746[yymk4746] } else { - yymv4741 = nil + yymv4746 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4741 = nil + yymv4746 = nil } else { - yyv4743 := &yymv4741 - yym4744 := z.DecBinary() - _ = yym4744 + yyv4748 := &yymv4746 + yym4749 := z.DecBinary() + _ = yym4749 if false { } else { - *yyv4743 = r.DecodeBytes(*(*[]byte)(yyv4743), false, false) + *yyv4748 = r.DecodeBytes(*(*[]byte)(yyv4748), false, false) } } - if yyv4741 != nil { - yyv4741[yymk4741] = yymv4741 + if yyv4746 != nil { + yyv4746[yymk4746] = yymv4746 } } - } else if yyl4741 < 0 { - for yyj4741 := 0; !r.CheckBreak(); yyj4741++ { + } else if yyl4746 < 0 { + for yyj4746 := 0; !r.CheckBreak(); yyj4746++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4741 = "" + yymk4746 = "" } else { - yymk4741 = string(r.DecodeString()) + yymk4746 = string(r.DecodeString()) } - if yymg4741 { - yymv4741 = yyv4741[yymk4741] + if yymg4746 { + yymv4746 = yyv4746[yymk4746] } else { - yymv4741 = nil + yymv4746 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4741 = nil + yymv4746 = nil } else { - yyv4746 := &yymv4741 - yym4747 := z.DecBinary() - _ = yym4747 + yyv4751 := &yymv4746 + yym4752 := z.DecBinary() + _ = yym4752 if false { } else { - *yyv4746 = r.DecodeBytes(*(*[]byte)(yyv4746), false, false) + *yyv4751 = r.DecodeBytes(*(*[]byte)(yyv4751), false, false) } } - if yyv4741 != nil { - yyv4741[yymk4741] = yymv4741 + if yyv4746 != nil { + yyv4746[yymk4746] = yymv4746 } } } // else len==0: TODO: Should we clear map entries? @@ -60923,10 +60964,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4748 := range v { + for _, yyv4753 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4749 := &yyv4748 - yy4749.CodecEncodeSelf(e) + yy4754 := &yyv4753 + yy4754.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60936,83 +60977,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4750 := *v - yyh4750, yyl4750 := z.DecSliceHelperStart() - var yyc4750 bool - if yyl4750 == 0 { - if yyv4750 == nil { - yyv4750 = []Secret{} - yyc4750 = true - } else if len(yyv4750) != 0 { - yyv4750 = yyv4750[:0] - yyc4750 = true + yyv4755 := *v + yyh4755, yyl4755 := z.DecSliceHelperStart() + var yyc4755 bool + if yyl4755 == 0 { + if yyv4755 == nil { + yyv4755 = []Secret{} + yyc4755 = true + } else if len(yyv4755) != 0 { + yyv4755 = yyv4755[:0] + yyc4755 = true } - } else if yyl4750 > 0 { - var yyrr4750, yyrl4750 int - var yyrt4750 bool - if yyl4750 > cap(yyv4750) { + } else if yyl4755 > 0 { + var yyrr4755, yyrl4755 int + var yyrt4755 bool + if yyl4755 > cap(yyv4755) { - yyrg4750 := len(yyv4750) > 0 - yyv24750 := yyv4750 - yyrl4750, yyrt4750 = z.DecInferLen(yyl4750, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4750 { - if yyrl4750 <= cap(yyv4750) { - yyv4750 = yyv4750[:yyrl4750] + yyrg4755 := len(yyv4755) > 0 + yyv24755 := yyv4755 + yyrl4755, yyrt4755 = z.DecInferLen(yyl4755, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4755 { + if yyrl4755 <= cap(yyv4755) { + yyv4755 = yyv4755[:yyrl4755] } else { - yyv4750 = make([]Secret, yyrl4750) + yyv4755 = make([]Secret, yyrl4755) } } else { - yyv4750 = make([]Secret, yyrl4750) + yyv4755 = make([]Secret, yyrl4755) } - yyc4750 = true - yyrr4750 = len(yyv4750) - if yyrg4750 { - copy(yyv4750, yyv24750) + yyc4755 = true + yyrr4755 = len(yyv4755) + if yyrg4755 { + copy(yyv4755, yyv24755) } - } else if yyl4750 != len(yyv4750) { - yyv4750 = yyv4750[:yyl4750] - yyc4750 = true + } else if yyl4755 != len(yyv4755) { + yyv4755 = yyv4755[:yyl4755] + yyc4755 = true } - yyj4750 := 0 - for ; yyj4750 < yyrr4750; yyj4750++ { - yyh4750.ElemContainerState(yyj4750) + yyj4755 := 0 + for ; yyj4755 < yyrr4755; yyj4755++ { + yyh4755.ElemContainerState(yyj4755) if r.TryDecodeAsNil() { - yyv4750[yyj4750] = Secret{} + yyv4755[yyj4755] = Secret{} } else { - yyv4751 := &yyv4750[yyj4750] - yyv4751.CodecDecodeSelf(d) + yyv4756 := &yyv4755[yyj4755] + yyv4756.CodecDecodeSelf(d) } } - if yyrt4750 { - for ; yyj4750 < yyl4750; yyj4750++ { - yyv4750 = append(yyv4750, Secret{}) - yyh4750.ElemContainerState(yyj4750) + if yyrt4755 { + for ; yyj4755 < yyl4755; yyj4755++ { + yyv4755 = append(yyv4755, Secret{}) + yyh4755.ElemContainerState(yyj4755) if r.TryDecodeAsNil() { - yyv4750[yyj4750] = Secret{} + yyv4755[yyj4755] = Secret{} } else { - yyv4752 := &yyv4750[yyj4750] - yyv4752.CodecDecodeSelf(d) + yyv4757 := &yyv4755[yyj4755] + yyv4757.CodecDecodeSelf(d) } } } } else { - yyj4750 := 0 - for ; !r.CheckBreak(); yyj4750++ { + yyj4755 := 0 + for ; !r.CheckBreak(); yyj4755++ { - if yyj4750 >= len(yyv4750) { - yyv4750 = append(yyv4750, Secret{}) // var yyz4750 Secret - yyc4750 = true + if yyj4755 >= len(yyv4755) { + yyv4755 = append(yyv4755, Secret{}) // var yyz4755 Secret + yyc4755 = true } - yyh4750.ElemContainerState(yyj4750) - if yyj4750 < len(yyv4750) { + yyh4755.ElemContainerState(yyj4755) + if yyj4755 < len(yyv4755) { if r.TryDecodeAsNil() { - yyv4750[yyj4750] = Secret{} + yyv4755[yyj4755] = Secret{} } else { - yyv4753 := &yyv4750[yyj4750] - yyv4753.CodecDecodeSelf(d) + yyv4758 := &yyv4755[yyj4755] + yyv4758.CodecDecodeSelf(d) } } else { @@ -61020,17 +61061,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4750 < len(yyv4750) { - yyv4750 = yyv4750[:yyj4750] - yyc4750 = true - } else if yyj4750 == 0 && yyv4750 == nil { - yyv4750 = []Secret{} - yyc4750 = true + if yyj4755 < len(yyv4755) { + yyv4755 = yyv4755[:yyj4755] + yyc4755 = true + } else if yyj4755 == 0 && yyv4755 == nil { + yyv4755 = []Secret{} + yyc4755 = true } } - yyh4750.End() - if yyc4750 { - *v = yyv4750 + yyh4755.End() + if yyc4755 { + *v = yyv4755 } } @@ -61039,10 +61080,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4754 := range v { + for _, yyv4759 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4755 := &yyv4754 - yy4755.CodecEncodeSelf(e) + yy4760 := &yyv4759 + yy4760.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61052,83 +61093,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4756 := *v - yyh4756, yyl4756 := z.DecSliceHelperStart() - var yyc4756 bool - if yyl4756 == 0 { - if yyv4756 == nil { - yyv4756 = []ConfigMap{} - yyc4756 = true - } else if len(yyv4756) != 0 { - yyv4756 = yyv4756[:0] - yyc4756 = true + yyv4761 := *v + yyh4761, yyl4761 := z.DecSliceHelperStart() + var yyc4761 bool + if yyl4761 == 0 { + if yyv4761 == nil { + yyv4761 = []ConfigMap{} + yyc4761 = true + } else if len(yyv4761) != 0 { + yyv4761 = yyv4761[:0] + yyc4761 = true } - } else if yyl4756 > 0 { - var yyrr4756, yyrl4756 int - var yyrt4756 bool - if yyl4756 > cap(yyv4756) { + } else if yyl4761 > 0 { + var yyrr4761, yyrl4761 int + var yyrt4761 bool + if yyl4761 > cap(yyv4761) { - yyrg4756 := len(yyv4756) > 0 - yyv24756 := yyv4756 - yyrl4756, yyrt4756 = z.DecInferLen(yyl4756, z.DecBasicHandle().MaxInitLen, 248) - if yyrt4756 { - if yyrl4756 <= cap(yyv4756) { - yyv4756 = yyv4756[:yyrl4756] + yyrg4761 := len(yyv4761) > 0 + yyv24761 := yyv4761 + yyrl4761, yyrt4761 = z.DecInferLen(yyl4761, z.DecBasicHandle().MaxInitLen, 248) + if yyrt4761 { + if yyrl4761 <= cap(yyv4761) { + yyv4761 = yyv4761[:yyrl4761] } else { - yyv4756 = make([]ConfigMap, yyrl4756) + yyv4761 = make([]ConfigMap, yyrl4761) } } else { - yyv4756 = make([]ConfigMap, yyrl4756) + yyv4761 = make([]ConfigMap, yyrl4761) } - yyc4756 = true - yyrr4756 = len(yyv4756) - if yyrg4756 { - copy(yyv4756, yyv24756) + yyc4761 = true + yyrr4761 = len(yyv4761) + if yyrg4761 { + copy(yyv4761, yyv24761) } - } else if yyl4756 != len(yyv4756) { - yyv4756 = yyv4756[:yyl4756] - yyc4756 = true + } else if yyl4761 != len(yyv4761) { + yyv4761 = yyv4761[:yyl4761] + yyc4761 = true } - yyj4756 := 0 - for ; yyj4756 < yyrr4756; yyj4756++ { - yyh4756.ElemContainerState(yyj4756) + yyj4761 := 0 + for ; yyj4761 < yyrr4761; yyj4761++ { + yyh4761.ElemContainerState(yyj4761) if r.TryDecodeAsNil() { - yyv4756[yyj4756] = ConfigMap{} + yyv4761[yyj4761] = ConfigMap{} } else { - yyv4757 := &yyv4756[yyj4756] - yyv4757.CodecDecodeSelf(d) + yyv4762 := &yyv4761[yyj4761] + yyv4762.CodecDecodeSelf(d) } } - if yyrt4756 { - for ; yyj4756 < yyl4756; yyj4756++ { - yyv4756 = append(yyv4756, ConfigMap{}) - yyh4756.ElemContainerState(yyj4756) + if yyrt4761 { + for ; yyj4761 < yyl4761; yyj4761++ { + yyv4761 = append(yyv4761, ConfigMap{}) + yyh4761.ElemContainerState(yyj4761) if r.TryDecodeAsNil() { - yyv4756[yyj4756] = ConfigMap{} + yyv4761[yyj4761] = ConfigMap{} } else { - yyv4758 := &yyv4756[yyj4756] - yyv4758.CodecDecodeSelf(d) + yyv4763 := &yyv4761[yyj4761] + yyv4763.CodecDecodeSelf(d) } } } } else { - yyj4756 := 0 - for ; !r.CheckBreak(); yyj4756++ { + yyj4761 := 0 + for ; !r.CheckBreak(); yyj4761++ { - if yyj4756 >= len(yyv4756) { - yyv4756 = append(yyv4756, ConfigMap{}) // var yyz4756 ConfigMap - yyc4756 = true + if yyj4761 >= len(yyv4761) { + yyv4761 = append(yyv4761, ConfigMap{}) // var yyz4761 ConfigMap + yyc4761 = true } - yyh4756.ElemContainerState(yyj4756) - if yyj4756 < len(yyv4756) { + yyh4761.ElemContainerState(yyj4761) + if yyj4761 < len(yyv4761) { if r.TryDecodeAsNil() { - yyv4756[yyj4756] = ConfigMap{} + yyv4761[yyj4761] = ConfigMap{} } else { - yyv4759 := &yyv4756[yyj4756] - yyv4759.CodecDecodeSelf(d) + yyv4764 := &yyv4761[yyj4761] + yyv4764.CodecDecodeSelf(d) } } else { @@ -61136,17 +61177,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4756 < len(yyv4756) { - yyv4756 = yyv4756[:yyj4756] - yyc4756 = true - } else if yyj4756 == 0 && yyv4756 == nil { - yyv4756 = []ConfigMap{} - yyc4756 = true + if yyj4761 < len(yyv4761) { + yyv4761 = yyv4761[:yyj4761] + yyc4761 = true + } else if yyj4761 == 0 && yyv4761 == nil { + yyv4761 = []ConfigMap{} + yyc4761 = true } } - yyh4756.End() - if yyc4756 { - *v = yyv4756 + yyh4761.End() + if yyc4761 { + *v = yyv4761 } } @@ -61155,10 +61196,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4760 := range v { + for _, yyv4765 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4761 := &yyv4760 - yy4761.CodecEncodeSelf(e) + yy4766 := &yyv4765 + yy4766.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61168,83 +61209,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4762 := *v - yyh4762, yyl4762 := z.DecSliceHelperStart() - var yyc4762 bool - if yyl4762 == 0 { - if yyv4762 == nil { - yyv4762 = []ComponentCondition{} - yyc4762 = true - } else if len(yyv4762) != 0 { - yyv4762 = yyv4762[:0] - yyc4762 = true + yyv4767 := *v + yyh4767, yyl4767 := z.DecSliceHelperStart() + var yyc4767 bool + if yyl4767 == 0 { + if yyv4767 == nil { + yyv4767 = []ComponentCondition{} + yyc4767 = true + } else if len(yyv4767) != 0 { + yyv4767 = yyv4767[:0] + yyc4767 = true } - } else if yyl4762 > 0 { - var yyrr4762, yyrl4762 int - var yyrt4762 bool - if yyl4762 > cap(yyv4762) { + } else if yyl4767 > 0 { + var yyrr4767, yyrl4767 int + var yyrt4767 bool + if yyl4767 > cap(yyv4767) { - yyrg4762 := len(yyv4762) > 0 - yyv24762 := yyv4762 - yyrl4762, yyrt4762 = z.DecInferLen(yyl4762, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4762 { - if yyrl4762 <= cap(yyv4762) { - yyv4762 = yyv4762[:yyrl4762] + yyrg4767 := len(yyv4767) > 0 + yyv24767 := yyv4767 + yyrl4767, yyrt4767 = z.DecInferLen(yyl4767, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4767 { + if yyrl4767 <= cap(yyv4767) { + yyv4767 = yyv4767[:yyrl4767] } else { - yyv4762 = make([]ComponentCondition, yyrl4762) + yyv4767 = make([]ComponentCondition, yyrl4767) } } else { - yyv4762 = make([]ComponentCondition, yyrl4762) + yyv4767 = make([]ComponentCondition, yyrl4767) } - yyc4762 = true - yyrr4762 = len(yyv4762) - if yyrg4762 { - copy(yyv4762, yyv24762) + yyc4767 = true + yyrr4767 = len(yyv4767) + if yyrg4767 { + copy(yyv4767, yyv24767) } - } else if yyl4762 != len(yyv4762) { - yyv4762 = yyv4762[:yyl4762] - yyc4762 = true + } else if yyl4767 != len(yyv4767) { + yyv4767 = yyv4767[:yyl4767] + yyc4767 = true } - yyj4762 := 0 - for ; yyj4762 < yyrr4762; yyj4762++ { - yyh4762.ElemContainerState(yyj4762) + yyj4767 := 0 + for ; yyj4767 < yyrr4767; yyj4767++ { + yyh4767.ElemContainerState(yyj4767) if r.TryDecodeAsNil() { - yyv4762[yyj4762] = ComponentCondition{} + yyv4767[yyj4767] = ComponentCondition{} } else { - yyv4763 := &yyv4762[yyj4762] - yyv4763.CodecDecodeSelf(d) + yyv4768 := &yyv4767[yyj4767] + yyv4768.CodecDecodeSelf(d) } } - if yyrt4762 { - for ; yyj4762 < yyl4762; yyj4762++ { - yyv4762 = append(yyv4762, ComponentCondition{}) - yyh4762.ElemContainerState(yyj4762) + if yyrt4767 { + for ; yyj4767 < yyl4767; yyj4767++ { + yyv4767 = append(yyv4767, ComponentCondition{}) + yyh4767.ElemContainerState(yyj4767) if r.TryDecodeAsNil() { - yyv4762[yyj4762] = ComponentCondition{} + yyv4767[yyj4767] = ComponentCondition{} } else { - yyv4764 := &yyv4762[yyj4762] - yyv4764.CodecDecodeSelf(d) + yyv4769 := &yyv4767[yyj4767] + yyv4769.CodecDecodeSelf(d) } } } } else { - yyj4762 := 0 - for ; !r.CheckBreak(); yyj4762++ { + yyj4767 := 0 + for ; !r.CheckBreak(); yyj4767++ { - if yyj4762 >= len(yyv4762) { - yyv4762 = append(yyv4762, ComponentCondition{}) // var yyz4762 ComponentCondition - yyc4762 = true + if yyj4767 >= len(yyv4767) { + yyv4767 = append(yyv4767, ComponentCondition{}) // var yyz4767 ComponentCondition + yyc4767 = true } - yyh4762.ElemContainerState(yyj4762) - if yyj4762 < len(yyv4762) { + yyh4767.ElemContainerState(yyj4767) + if yyj4767 < len(yyv4767) { if r.TryDecodeAsNil() { - yyv4762[yyj4762] = ComponentCondition{} + yyv4767[yyj4767] = ComponentCondition{} } else { - yyv4765 := &yyv4762[yyj4762] - yyv4765.CodecDecodeSelf(d) + yyv4770 := &yyv4767[yyj4767] + yyv4770.CodecDecodeSelf(d) } } else { @@ -61252,17 +61293,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4762 < len(yyv4762) { - yyv4762 = yyv4762[:yyj4762] - yyc4762 = true - } else if yyj4762 == 0 && yyv4762 == nil { - yyv4762 = []ComponentCondition{} - yyc4762 = true + if yyj4767 < len(yyv4767) { + yyv4767 = yyv4767[:yyj4767] + yyc4767 = true + } else if yyj4767 == 0 && yyv4767 == nil { + yyv4767 = []ComponentCondition{} + yyc4767 = true } } - yyh4762.End() - if yyc4762 { - *v = yyv4762 + yyh4767.End() + if yyc4767 { + *v = yyv4767 } } @@ -61271,10 +61312,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4766 := range v { + for _, yyv4771 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4767 := &yyv4766 - yy4767.CodecEncodeSelf(e) + yy4772 := &yyv4771 + yy4772.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61284,83 +61325,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4768 := *v - yyh4768, yyl4768 := z.DecSliceHelperStart() - var yyc4768 bool - if yyl4768 == 0 { - if yyv4768 == nil { - yyv4768 = []ComponentStatus{} - yyc4768 = true - } else if len(yyv4768) != 0 { - yyv4768 = yyv4768[:0] - yyc4768 = true + yyv4773 := *v + yyh4773, yyl4773 := z.DecSliceHelperStart() + var yyc4773 bool + if yyl4773 == 0 { + if yyv4773 == nil { + yyv4773 = []ComponentStatus{} + yyc4773 = true + } else if len(yyv4773) != 0 { + yyv4773 = yyv4773[:0] + yyc4773 = true } - } else if yyl4768 > 0 { - var yyrr4768, yyrl4768 int - var yyrt4768 bool - if yyl4768 > cap(yyv4768) { + } else if yyl4773 > 0 { + var yyrr4773, yyrl4773 int + var yyrt4773 bool + if yyl4773 > cap(yyv4773) { - yyrg4768 := len(yyv4768) > 0 - yyv24768 := yyv4768 - yyrl4768, yyrt4768 = z.DecInferLen(yyl4768, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4768 { - if yyrl4768 <= cap(yyv4768) { - yyv4768 = yyv4768[:yyrl4768] + yyrg4773 := len(yyv4773) > 0 + yyv24773 := yyv4773 + yyrl4773, yyrt4773 = z.DecInferLen(yyl4773, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4773 { + if yyrl4773 <= cap(yyv4773) { + yyv4773 = yyv4773[:yyrl4773] } else { - yyv4768 = make([]ComponentStatus, yyrl4768) + yyv4773 = make([]ComponentStatus, yyrl4773) } } else { - yyv4768 = make([]ComponentStatus, yyrl4768) + yyv4773 = make([]ComponentStatus, yyrl4773) } - yyc4768 = true - yyrr4768 = len(yyv4768) - if yyrg4768 { - copy(yyv4768, yyv24768) + yyc4773 = true + yyrr4773 = len(yyv4773) + if yyrg4773 { + copy(yyv4773, yyv24773) } - } else if yyl4768 != len(yyv4768) { - yyv4768 = yyv4768[:yyl4768] - yyc4768 = true + } else if yyl4773 != len(yyv4773) { + yyv4773 = yyv4773[:yyl4773] + yyc4773 = true } - yyj4768 := 0 - for ; yyj4768 < yyrr4768; yyj4768++ { - yyh4768.ElemContainerState(yyj4768) + yyj4773 := 0 + for ; yyj4773 < yyrr4773; yyj4773++ { + yyh4773.ElemContainerState(yyj4773) if r.TryDecodeAsNil() { - yyv4768[yyj4768] = ComponentStatus{} + yyv4773[yyj4773] = ComponentStatus{} } else { - yyv4769 := &yyv4768[yyj4768] - yyv4769.CodecDecodeSelf(d) + yyv4774 := &yyv4773[yyj4773] + yyv4774.CodecDecodeSelf(d) } } - if yyrt4768 { - for ; yyj4768 < yyl4768; yyj4768++ { - yyv4768 = append(yyv4768, ComponentStatus{}) - yyh4768.ElemContainerState(yyj4768) + if yyrt4773 { + for ; yyj4773 < yyl4773; yyj4773++ { + yyv4773 = append(yyv4773, ComponentStatus{}) + yyh4773.ElemContainerState(yyj4773) if r.TryDecodeAsNil() { - yyv4768[yyj4768] = ComponentStatus{} + yyv4773[yyj4773] = ComponentStatus{} } else { - yyv4770 := &yyv4768[yyj4768] - yyv4770.CodecDecodeSelf(d) + yyv4775 := &yyv4773[yyj4773] + yyv4775.CodecDecodeSelf(d) } } } } else { - yyj4768 := 0 - for ; !r.CheckBreak(); yyj4768++ { + yyj4773 := 0 + for ; !r.CheckBreak(); yyj4773++ { - if yyj4768 >= len(yyv4768) { - yyv4768 = append(yyv4768, ComponentStatus{}) // var yyz4768 ComponentStatus - yyc4768 = true + if yyj4773 >= len(yyv4773) { + yyv4773 = append(yyv4773, ComponentStatus{}) // var yyz4773 ComponentStatus + yyc4773 = true } - yyh4768.ElemContainerState(yyj4768) - if yyj4768 < len(yyv4768) { + yyh4773.ElemContainerState(yyj4773) + if yyj4773 < len(yyv4773) { if r.TryDecodeAsNil() { - yyv4768[yyj4768] = ComponentStatus{} + yyv4773[yyj4773] = ComponentStatus{} } else { - yyv4771 := &yyv4768[yyj4768] - yyv4771.CodecDecodeSelf(d) + yyv4776 := &yyv4773[yyj4773] + yyv4776.CodecDecodeSelf(d) } } else { @@ -61368,16 +61409,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4768 < len(yyv4768) { - yyv4768 = yyv4768[:yyj4768] - yyc4768 = true - } else if yyj4768 == 0 && yyv4768 == nil { - yyv4768 = []ComponentStatus{} - yyc4768 = true + if yyj4773 < len(yyv4773) { + yyv4773 = yyv4773[:yyj4773] + yyc4773 = true + } else if yyj4773 == 0 && yyv4773 == nil { + yyv4773 = []ComponentStatus{} + yyc4773 = true } } - yyh4768.End() - if yyc4768 { - *v = yyv4768 + yyh4773.End() + if yyc4773 { + *v = yyv4773 } } diff --git a/pkg/api/types.go b/pkg/api/types.go index c391b0825c0c..3c01ca773be5 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -1761,6 +1761,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 @@ -1791,24 +1796,49 @@ 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 the Service is exposed. Defaults to ClusterIP. Valid + // options are ExternalName, ClusterIP, NodePort, and LoadBalancer. + // "ExternalName" maps to the specified externalName. + // "ClusterIP" allocates a cluster-internal IP address for load-balancing to + // endpoints. Endpoints are determined by the selector or if that is not + // specified, by manual construction of an Endpoints object. If clusterIP is + // "None", no virtual IP is allocated and the endpoints are published as a + // set of endpoints rather than a stable IP. + // "NodePort" builds on ClusterIP and allocates a port on every node which + // routes to the clusterIP. + // "LoadBalancer" builds on NodePort and creates an + // external load-balancer (if supported in the current cloud) which routes + // to the clusterIP. + // 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/generated.pb.go b/pkg/api/v1/generated.pb.go index dc17aa0b7730..b56d51669dcb 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -7514,6 +7514,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 } @@ -10426,6 +10430,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 } @@ -12643,6 +12649,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 @@ -36200,6 +36207,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:]) @@ -38006,16 +38042,16 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 9596 bytes of a gzipped FileDescriptorProto + // 9609 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x24, 0xc7, 0x75, 0x98, 0x66, 0x66, 0xbf, 0xa6, 0xf6, 0xf3, 0xfa, 0xee, 0xc8, 0xe5, 0x4a, 0xfc, 0x6a, 0x91, 0x14, 0x79, 0xe4, 0xed, 0xf1, 0x8e, 0xa4, 0x49, 0x4a, 0x8a, 0xc4, 0xdd, 0x9d, 0xdd, 0xbb, 0xf5, 0xed, 0xdd, 0x0d, 0xdf, 0x2c, 0xef, 0x24, 0x8b, 0x91, 0xd9, 0x3b, 0xd3, 0xbb, 0xdb, 0xba, 0xd9, - 0xe9, 0x61, 0x77, 0xcf, 0xde, 0x2d, 0x15, 0x03, 0x8e, 0xe1, 0x38, 0x08, 0x62, 0x38, 0x42, 0x10, + 0xe9, 0x61, 0x77, 0xcf, 0xde, 0x2d, 0x15, 0x03, 0x8e, 0xe1, 0x38, 0x08, 0x6c, 0x38, 0x42, 0x10, 0x23, 0x01, 0x92, 0x20, 0x4e, 0x80, 0x04, 0x49, 0x8c, 0xd8, 0x96, 0xa3, 0xd8, 0x52, 0x62, 0x18, - 0x01, 0xe2, 0x08, 0xca, 0x87, 0x03, 0x0a, 0x08, 0x62, 0xc3, 0x06, 0x14, 0xcb, 0x46, 0x10, 0xe4, + 0x01, 0xe2, 0x08, 0xca, 0x87, 0x03, 0x1a, 0x08, 0x62, 0xc3, 0x06, 0x14, 0xcb, 0x46, 0x10, 0xe4, 0x5f, 0x80, 0xfc, 0x0a, 0x61, 0x24, 0xa9, 0x57, 0xdf, 0xd5, 0xd3, 0xb3, 0xdd, 0xb3, 0xbc, 0xd9, - 0x9c, 0x0d, 0xff, 0x58, 0x60, 0xa7, 0xde, 0xab, 0x57, 0x1f, 0xfd, 0xea, 0xd5, 0x7b, 0xaf, 0x5e, + 0x9c, 0x85, 0xfc, 0x58, 0x60, 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, 0x8a, 0x63, 0x2f, 0x6b, @@ -38024,11 +38060,11 @@ var fileDescriptorGenerated = []byte{ 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, + 0x7b, 0x49, 0xd0, 0xbe, 0x14, 0x74, 0x92, 0x38, 0x89, 0xd2, 0x55, 0xdc, 0xdf, 0x2b, 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, 0xfb, 0xc1, 0x93, 0x9f, 0xf8, - 0xc3, 0x1f, 0x3c, 0x39, 0x75, 0x5b, 0x94, 0x83, 0xc2, 0x70, 0x9e, 0x23, 0x13, 0xbb, 0xf1, 0xf6, + 0x9b, 0xb5, 0xc5, 0xd2, 0x53, 0xa5, 0xe7, 0xab, 0xab, 0x0b, 0xdf, 0xfb, 0xfe, 0x93, 0x9f, 0xf8, + 0xe3, 0xef, 0x3f, 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, @@ -38040,15 +38076,15 @@ var fileDescriptorGenerated = []byte{ 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, 0xfd, 0xe0, 0xc9, 0x85, 0x77, 0x3a, 0xc1, 0xfb, 0x3d, + 0xc4, 0xb4, 0x8f, 0xdd, 0xa4, 0x65, 0x1f, 0x7d, 0xff, 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, 0x4f, 0x95, 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, 0x5a, 0x22, 0xe7, 0x57, 0x3e, 0xe8, + 0x51, 0xd1, 0xf4, 0x7c, 0x0a, 0x0a, 0xe9, 0x36, 0xdc, 0x7f, 0x52, 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, 0xb2, 0x44, + 0x82, 0x62, 0xf4, 0x86, 0x04, 0x80, 0xc6, 0xb1, 0x18, 0xbd, 0x92, 0xcb, 0xe8, 0xff, 0xa2, 0x44, 0x26, 0x57, 0x83, 0x4e, 0x2b, 0xe8, 0xec, 0x39, 0x5f, 0x22, 0x53, 0x07, 0x7e, 0xe2, 0xb5, 0xbc, 0xc4, 0x13, 0x3c, 0xfe, 0xfc, 0xf1, 0x13, 0x75, 0x6b, 0xe7, 0x6b, 0x7e, 0x33, 0xb9, 0x41, 0xeb, 0xe8, 0x61, 0xe8, 0x32, 0x50, 0xd4, 0x9c, 0x77, 0xc8, 0x44, 0xe2, 0x45, 0x7b, 0x7e, 0x22, 0x58, @@ -38056,375 +38092,375 @@ var fileDescriptorGenerated = []byte{ 0x62, 0x6e, 0x93, 0xcc, 0xac, 0x79, 0x5d, 0x6f, 0x27, 0x68, 0xd3, 0x35, 0xee, 0xc7, 0xce, 0x67, 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, 0x6f, 0xcb, 0xc4, 0x59, 0xf3, + 0x7c, 0x04, 0xb9, 0xb1, 0x46, 0x7f, 0xa7, 0x50, 0x19, 0x8e, 0xfb, 0x6f, 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, 0xe3, 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, 0x56, 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, + 0x97, 0xd3, 0xfe, 0x66, 0x89, 0xce, 0x23, 0xe5, 0x34, 0x3f, 0x3a, 0x85, 0xed, 0x61, 0xb8, 0x45, + 0xf0, 0x87, 0xd8, 0xb5, 0xf0, 0xa0, 0x4b, 0xb7, 0xd1, 0x4e, 0xb2, 0x16, 0xd2, 0xd5, 0xc0, 0xb6, 0x8c, 0xcf, 0x92, 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, 0x26, 0xe3, 0x7e, 0x14, 0x85, 0x91, 0xe0, 0x88, 0x59, 0x81, 0x38, - 0xbe, 0x8e, 0x85, 0xc0, 0x61, 0xee, 0xf7, 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, 0x57, 0x22, 0x67, 0x53, 0x63, 0xda, 0x0a, - 0xe2, 0xc4, 0xf9, 0xf3, 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, 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, 0x5b, - 0x7e, 0xa3, 0xe4, 0xfe, 0x46, 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, 0x29, - 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, 0x33, 0x05, 0x3f, 0xdf, 0x00, 0x9e, 0xfb, 0x7b, 0x65, 0x72, 0x5e, 0xe1, 0x58, 0xe2, 0xf8, - 0x21, 0x99, 0xfe, 0xe1, 0x86, 0x4b, 0x3f, 0xcb, 0x76, 0x88, 0xfb, 0x69, 0xf6, 0x70, 0x9d, 0xcb, - 0x64, 0xba, 0xe5, 0xef, 0x7a, 0xbd, 0x76, 0x72, 0x83, 0x6a, 0xdd, 0xc2, 0x5c, 0x60, 0x3a, 0x73, - 0x4d, 0x17, 0x83, 0x89, 0xe3, 0xfe, 0x76, 0x95, 0xad, 0xca, 0xc4, 0x0b, 0xa8, 0xc9, 0x83, 0x1b, - 0xb4, 0xa1, 0xc1, 0xce, 0x98, 0x1a, 0xac, 0xd0, 0x56, 0xa9, 0x24, 0x0e, 0x0e, 0x50, 0x64, 0x97, - 0x6d, 0x49, 0xbc, 0x89, 0x85, 0xc0, 0x61, 0xce, 0xb3, 0x64, 0x92, 0x9a, 0x89, 0x07, 0x5e, 0xa7, - 0x45, 0xfb, 0x80, 0x2a, 0xc3, 0x34, 0x4a, 0xf5, 0x35, 0x5e, 0x04, 0x12, 0xe6, 0x7c, 0x8a, 0x8c, - 0x51, 0xfd, 0x26, 0xa6, 0x42, 0x1d, 0x71, 0xa6, 0xb0, 0xa5, 0x15, 0xfa, 0x1b, 0x58, 0x29, 0xaa, - 0x02, 0xf7, 0xc2, 0xe8, 0x2e, 0x55, 0xd8, 0x6a, 0x41, 0xc4, 0xf6, 0x75, 0x43, 0x15, 0xb8, 0xa3, - 0x20, 0x60, 0x60, 0x39, 0x75, 0x32, 0xde, 0x0d, 0xa3, 0x24, 0xa6, 0xdb, 0x34, 0x4e, 0xe7, 0x8b, - 0xb9, 0xdc, 0xc3, 0xc7, 0x5d, 0xa7, 0x75, 0xf4, 0x50, 0xf0, 0x17, 0x9d, 0x52, 0x46, 0xc8, 0x59, - 0x23, 0x15, 0xbf, 0x73, 0xb8, 0x38, 0xc9, 0xe8, 0x3d, 0x73, 0x3c, 0xbd, 0xf5, 0xce, 0xe1, 0x6d, - 0x2f, 0xd2, 0xab, 0x88, 0xfe, 0x06, 0xac, 0xed, 0x34, 0x49, 0x55, 0x1a, 0xbd, 0xf1, 0xe2, 0x54, - 0x11, 0x06, 0x03, 0x81, 0x0e, 0xfe, 0xfb, 0xbd, 0x20, 0xf2, 0x0f, 0xa8, 0x70, 0x8d, 0xb5, 0x3e, - 0x2c, 0xa1, 0x31, 0x68, 0xba, 0xb4, 0x91, 0x19, 0xae, 0x3e, 0xdc, 0x08, 0xa9, 0xe5, 0x1b, 0x2f, - 0x56, 0x59, 0x97, 0x73, 0x8c, 0xab, 0xdb, 0xba, 0xc6, 0xea, 0x39, 0x41, 0x7e, 0xc6, 0x28, 0x8c, - 0xc1, 0x22, 0x4a, 0x0d, 0xb8, 0xd9, 0x76, 0x70, 0x48, 0xcd, 0xe3, 0x38, 0xae, 0x47, 0xe1, 0x8e, - 0xbf, 0x48, 0xd8, 0x68, 0x3e, 0x9d, 0x67, 0x68, 0x50, 0xd4, 0xd5, 0x33, 0x94, 0xf6, 0xec, 0x96, - 0x59, 0x1b, 0x6c, 0x62, 0x54, 0x93, 0x9b, 0x43, 0x5d, 0x25, 0xd0, 0xe4, 0xa7, 0x8b, 0x93, 0x77, - 0x28, 0xf9, 0x39, 0xb0, 0xaa, 0x43, 0x8a, 0x9c, 0xb3, 0x4d, 0xaa, 0xed, 0x60, 0xd7, 0x6f, 0x1e, - 0x35, 0xa9, 0x76, 0x39, 0xc3, 0x68, 0xe7, 0x2c, 0xb9, 0x2d, 0x89, 0xce, 0xf5, 0x43, 0xf5, 0x13, - 0x34, 0x21, 0xe7, 0x36, 0x79, 0x24, 0xf1, 0xa3, 0x83, 0xa0, 0xe3, 0xe1, 0xa6, 0x2d, 0x94, 0x17, - 0x66, 0xcd, 0xcd, 0x32, 0xae, 0x7d, 0x42, 0x4c, 0xec, 0x23, 0xdb, 0x99, 0x58, 0x30, 0xa0, 0xb6, - 0x73, 0x8b, 0xcc, 0xb3, 0xf5, 0x54, 0xef, 0xb5, 0xdb, 0xf5, 0xb0, 0x1d, 0x34, 0x8f, 0x16, 0xe7, - 0x18, 0xc1, 0x67, 0xa5, 0x8d, 0xb6, 0x69, 0x83, 0x51, 0xaf, 0xd7, 0xbf, 0x20, 0x5d, 0x1b, 0x0d, - 0x64, 0xaa, 0xd5, 0xf6, 0x22, 0xaa, 0xf4, 0x23, 0xef, 0xfb, 0xf7, 0x93, 0xc5, 0xf9, 0x22, 0x76, - 0x4a, 0xc3, 0xae, 0xc4, 0x0d, 0xe4, 0x54, 0x21, 0xa4, 0x49, 0xa3, 0xa8, 0x88, 0x13, 0x3a, 0xfb, - 0x8b, 0x0b, 0x4c, 0x31, 0x55, 0xeb, 0xab, 0x81, 0x85, 0xc0, 0x61, 0xcc, 0xec, 0xc3, 0x7f, 0x6e, - 0xa1, 0xec, 0x3d, 0xc3, 0x10, 0xb5, 0xd9, 0x27, 0x01, 0xa0, 0x71, 0x70, 0xc3, 0x4a, 0xa8, 0x61, - 0xef, 0x30, 0x54, 0xb5, 0xd4, 0xb6, 0xb7, 0xbf, 0x0c, 0x58, 0xee, 0xee, 0x90, 0x39, 0xb5, 0xac, - 0xd9, 0xec, 0x38, 0x4f, 0x92, 0x71, 0x94, 0x5c, 0xd2, 0x7a, 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, 0x7f, 0xf8, 0xa6, 0xa8, 0x65, 0x47, 0x01, 0xb9, 0x49, 0x15, - 0xf5, 0xfd, 0x30, 0x4e, 0x10, 0x9b, 0xb5, 0x31, 0xae, 0x77, 0xc1, 0x6b, 0xa2, 0x1c, 0x14, 0x86, - 0xf3, 0x39, 0x32, 0xdb, 0x34, 0x1b, 0x10, 0xa2, 0xfc, 0xbc, 0xa8, 0x62, 0xb7, 0x0e, 0x36, 0xae, - 0xf3, 0x06, 0x99, 0x62, 0x6e, 0xab, 0x66, 0xd8, 0x16, 0xfa, 0xb2, 0xdc, 0x99, 0xa6, 0xea, 0xa2, - 0xfc, 0x23, 0xe3, 0x7f, 0x50, 0xd8, 0x68, 0x75, 0x60, 0x17, 0x36, 0xeb, 0x42, 0xdc, 0x2a, 0xab, - 0xe3, 0x1a, 0x2b, 0x05, 0x01, 0x75, 0x7f, 0xa5, 0x6c, 0xcc, 0x32, 0x2a, 0x7d, 0xbe, 0xf3, 0x63, - 0x64, 0xf2, 0x9e, 0x47, 0x95, 0xd6, 0xce, 0x9e, 0xd8, 0x41, 0x5f, 0x29, 0x28, 0x7b, 0x59, 0xf5, - 0x3b, 0xbc, 0x2a, 0xdf, 0x27, 0xc4, 0x0f, 0x90, 0x04, 0x91, 0x76, 0xd4, 0xeb, 0x74, 0x90, 0x76, - 0x79, 0x78, 0xda, 0xc0, 0xab, 0x72, 0xda, 0xe2, 0x07, 0x48, 0x82, 0xce, 0x2e, 0x21, 0x72, 0xf5, - 0xf9, 0x2d, 0xe1, 0x2e, 0xfa, 0x91, 0x61, 0xc8, 0x6f, 0xab, 0xda, 0xab, 0x73, 0xb8, 0x33, 0xe9, - 0xdf, 0x60, 0x50, 0x76, 0x7b, 0x4c, 0x11, 0xe9, 0xef, 0x16, 0x95, 0xa8, 0x94, 0xb9, 0xbd, 0x88, - 0xe2, 0xac, 0x24, 0x62, 0xea, 0x5e, 0x2c, 0xa8, 0x50, 0x6d, 0x07, 0x07, 0xbe, 0xb9, 0x5a, 0x04, - 0x15, 0xd0, 0x04, 0xdd, 0xef, 0x54, 0xc8, 0xe2, 0xa0, 0xfe, 0x22, 0x4f, 0xfa, 0xf7, 0x03, 0x6a, - 0x8d, 0xb4, 0x38, 0xe7, 0x1a, 0x3c, 0xb9, 0x2e, 0xca, 0x41, 0x61, 0x20, 0x73, 0xc4, 0xc1, 0x5e, - 0xc7, 0x6b, 0x0b, 0xfe, 0x55, 0xcc, 0xd1, 0x60, 0xa5, 0x20, 0xa0, 0x88, 0x47, 0xa5, 0x6e, 0x2c, - 0xdc, 0x95, 0x06, 0x13, 0x01, 0x2b, 0x05, 0x01, 0x35, 0xcd, 0xbf, 0xb1, 0x1c, 0xf3, 0xcf, 0x9a, - 0xa3, 0xf1, 0x07, 0x3c, 0x47, 0x74, 0xd7, 0x21, 0xe8, 0xd2, 0x8b, 0xf7, 0x19, 0xf9, 0x89, 0xe1, - 0xc9, 0x2b, 0xad, 0x64, 0x43, 0x91, 0x01, 0x83, 0xa4, 0xf3, 0x1a, 0x99, 0x56, 0x2b, 0x94, 0x5a, - 0xff, 0x93, 0x6c, 0xb4, 0x67, 0x45, 0xa5, 0x69, 0x2d, 0xae, 0x6a, 0x60, 0xe2, 0xb9, 0x5f, 0x4b, - 0xb3, 0x8c, 0x58, 0x18, 0xc6, 0x0c, 0x97, 0x8a, 0xce, 0x70, 0xf9, 0xf8, 0x19, 0x76, 0xff, 0x4b, - 0x05, 0x6d, 0x67, 0xa3, 0xb1, 0x5e, 0x5c, 0x40, 0xa8, 0xbd, 0x8d, 0x12, 0x9e, 0x76, 0x4c, 0x2c, - 0xcb, 0x97, 0x86, 0x59, 0x37, 0xe6, 0x7e, 0x80, 0xcb, 0x81, 0x53, 0x72, 0xf6, 0xe9, 0x0e, 0xed, - 0xc5, 0xcc, 0x92, 0xf4, 0xc5, 0x72, 0x1c, 0x8e, 0xac, 0xd6, 0xc2, 0x29, 0x19, 0x63, 0xc3, 0xe5, - 0xad, 0x68, 0xe2, 0xb8, 0x3d, 0xa1, 0x76, 0x20, 0xbd, 0xe4, 0xaa, 0x3b, 0xa8, 0x42, 0x1c, 0x01, - 0x87, 0x51, 0x59, 0x3a, 0x43, 0x35, 0x2c, 0x64, 0x95, 0x35, 0x54, 0x80, 0x18, 0xf3, 0x8d, 0x6b, - 0x4d, 0x09, 0x0c, 0x18, 0x58, 0x98, 0x5a, 0x51, 0x9e, 0x38, 0x46, 0x51, 0xa6, 0x5f, 0x88, 0xfd, - 0xa3, 0xb8, 0x42, 0x7d, 0xa1, 0x4d, 0x5e, 0x0c, 0x12, 0x9e, 0x66, 0xa2, 0xa9, 0x82, 0x4c, 0x74, - 0x81, 0xcc, 0xd5, 0x3c, 0xff, 0x20, 0xec, 0xac, 0x77, 0x5a, 0xdd, 0x30, 0xa0, 0x1d, 0x5b, 0x24, - 0x63, 0x6c, 0x4b, 0xe1, 0x2b, 0x7e, 0x0c, 0x29, 0xc0, 0x18, 0x2a, 0xbb, 0xee, 0xff, 0xa5, 0xfb, - 0x5a, 0x8d, 0xda, 0xa7, 0x89, 0x7f, 0xab, 0xcb, 0xdc, 0x0f, 0xce, 0x06, 0x71, 0xf6, 0x22, 0xaf, - 0xe9, 0xd7, 0xfd, 0x28, 0x08, 0x5b, 0x74, 0xc7, 0x0f, 0x3b, 0xcc, 0xb9, 0x8c, 0x7b, 0x24, 0x7a, - 0x13, 0x9d, 0xab, 0x7d, 0x50, 0xc8, 0xa8, 0xe1, 0xb4, 0xc8, 0x6c, 0x37, 0xf2, 0x2d, 0x7f, 0x49, - 0x29, 0x5f, 0x3f, 0xaf, 0x9b, 0x55, 0xb8, 0xfa, 0x68, 0x15, 0x81, 0x4d, 0xd4, 0x79, 0x8b, 0x2c, - 0x84, 0x51, 0x77, 0xdf, 0xeb, 0xd4, 0xfc, 0xae, 0xdf, 0x69, 0xa1, 0xce, 0x2c, 0x9c, 0x62, 0xe7, - 0x68, 0xdd, 0x85, 0x5b, 0x29, 0x18, 0xf4, 0x61, 0xbb, 0xbf, 0x48, 0xed, 0xc5, 0x5a, 0x78, 0xaf, - 0x73, 0xcf, 0x8b, 0x5a, 0x2b, 0xf5, 0x4d, 0xae, 0x08, 0x33, 0x27, 0xa3, 0x74, 0x6e, 0x96, 0x06, - 0x3a, 0x37, 0xbf, 0x42, 0xa6, 0x76, 0x03, 0xbf, 0xdd, 0x42, 0x2f, 0x24, 0x1f, 0xde, 0xe5, 0x22, - 0x1e, 0x8d, 0x0d, 0xac, 0x23, 0xbd, 0x02, 0xdc, 0xb7, 0xba, 0x21, 0xc8, 0x80, 0x22, 0xe8, 0xf4, - 0xc8, 0x82, 0xd4, 0xf4, 0x25, 0x54, 0xac, 0x8e, 0x57, 0x8a, 0x19, 0x12, 0x76, 0x33, 0x6c, 0x3e, - 0x20, 0x45, 0x10, 0xfa, 0x9a, 0x40, 0x0b, 0xed, 0x00, 0x77, 0x87, 0x31, 0xc6, 0x2b, 0xcc, 0x42, - 0x63, 0x26, 0x24, 0x2b, 0x75, 0xff, 0x51, 0x89, 0x3c, 0xda, 0x37, 0x5b, 0xc2, 0xbe, 0xfe, 0x92, - 0x34, 0x6c, 0xf9, 0x49, 0x44, 0x4e, 0x2f, 0x33, 0xe7, 0xbc, 0x98, 0x91, 0x5b, 0x2e, 0x60, 0xe4, - 0xde, 0x22, 0xe7, 0xd6, 0x0f, 0xba, 0xc9, 0x11, 0x35, 0x11, 0xad, 0x4e, 0xbe, 0x4e, 0x26, 0x0e, - 0xfc, 0x56, 0xd0, 0x3b, 0x10, 0x9f, 0xf5, 0x49, 0x29, 0x48, 0x6f, 0xb0, 0x52, 0xaa, 0x25, 0xcd, - 0xe2, 0x39, 0x1f, 0x5d, 0x80, 0xbc, 0x00, 0x04, 0xba, 0xfb, 0xc3, 0x12, 0x99, 0x97, 0x0b, 0x6a, - 0xa5, 0xd5, 0xa2, 0xf3, 0x16, 0x3b, 0x4b, 0xa4, 0x1c, 0x74, 0x05, 0x21, 0x22, 0x08, 0x95, 0xa9, - 0xd2, 0x44, 0x4b, 0xa9, 0x06, 0x53, 0xe5, 0xae, 0x7c, 0xcd, 0x1c, 0x43, 0x1e, 0x0d, 0x30, 0xeb, - 0x63, 0x5b, 0xd2, 0x00, 0x4d, 0x4e, 0x6a, 0x96, 0x4c, 0x54, 0x57, 0x6c, 0xc7, 0xf2, 0x35, 0x51, - 0x0e, 0x0a, 0x03, 0xdd, 0xf9, 0x78, 0x22, 0xc7, 0x4e, 0x59, 0xf8, 0xb6, 0xcb, 0x58, 0xee, 0xa6, - 0x28, 0x03, 0x05, 0x75, 0x7f, 0xb6, 0x44, 0x66, 0xe4, 0x18, 0x0b, 0x2a, 0xb9, 0xb8, 0x48, 0xb4, - 0x82, 0xab, 0x17, 0x09, 0x2a, 0xa9, 0x0c, 0x62, 0xe9, 0xa6, 0x95, 0x61, 0x74, 0x53, 0xf7, 0x3b, - 0x54, 0xe7, 0x94, 0xdd, 0x69, 0xf4, 0x76, 0x62, 0x3f, 0x71, 0xbe, 0x4a, 0xaa, 0x1e, 0x9f, 0x7c, - 0x5f, 0xf2, 0xd9, 0xc5, 0x3c, 0x0b, 0xdd, 0xfa, 0x66, 0x5a, 0x31, 0x58, 0x91, 0x74, 0x40, 0x93, - 0x74, 0x0e, 0xc9, 0x99, 0x4e, 0x98, 0xb0, 0xfd, 0x40, 0xc1, 0x8b, 0x79, 0x44, 0xd3, 0xed, 0x3c, - 0x26, 0xda, 0x39, 0x73, 0x33, 0x4d, 0x0f, 0xfa, 0x9b, 0xa0, 0x76, 0x9f, 0xf0, 0x62, 0x54, 0x58, - 0x5b, 0x17, 0x8a, 0xb5, 0x35, 0xd8, 0x89, 0xe1, 0xfe, 0x66, 0x89, 0x54, 0x25, 0xda, 0x28, 0x7d, - 0xe2, 0x77, 0xc8, 0x64, 0xcc, 0x3e, 0x8d, 0x9c, 0xa6, 0x97, 0x8a, 0x75, 0x9d, 0x7f, 0x4f, 0xbd, - 0xf9, 0xf1, 0xdf, 0x31, 0x48, 0x6a, 0xcc, 0x0d, 0xa9, 0x06, 0xf0, 0xf0, 0xb9, 0x21, 0x55, 0xd7, - 0x06, 0xb8, 0x21, 0xff, 0x71, 0x89, 0x4c, 0x70, 0xe7, 0x50, 0x31, 0x0f, 0x9b, 0xe1, 0x4b, 0xd6, - 0x14, 0x6f, 0x63, 0xa1, 0x70, 0x2d, 0xd3, 0x99, 0xae, 0xb2, 0x7f, 0x36, 0xa2, 0xf0, 0x40, 0x6c, - 0x04, 0x17, 0x8a, 0x38, 0xa7, 0xb8, 0xe0, 0xe3, 0xd2, 0xe4, 0xb6, 0x24, 0x00, 0x9a, 0x96, 0xfb, - 0x1b, 0x15, 0x5c, 0xf5, 0x1a, 0xd5, 0xda, 0xd6, 0x4a, 0xa7, 0xb1, 0xad, 0x95, 0x47, 0xbf, 0xad, - 0xbd, 0x4f, 0xe6, 0x9b, 0x86, 0x4f, 0x5e, 0x6f, 0xa6, 0x57, 0x0a, 0xba, 0x9b, 0x0d, 0x47, 0x3e, - 0x77, 0x86, 0xac, 0xd9, 0xe4, 0x20, 0x4d, 0xdf, 0xf1, 0xc9, 0x0c, 0x3f, 0x50, 0x14, 0xed, 0x8d, - 0xe5, 0xf2, 0x2c, 0xf7, 0xbb, 0xf0, 0x1a, 0xaa, 0x31, 0x16, 0x60, 0xd1, 0x30, 0x08, 0x81, 0x45, - 0xd6, 0xfd, 0x1b, 0xe3, 0x64, 0x7c, 0xfd, 0x90, 0xea, 0x32, 0x23, 0x5c, 0xe5, 0x07, 0x64, 0x2e, - 0xe8, 0x1c, 0x86, 0xed, 0x43, 0xbf, 0xc5, 0xe1, 0x27, 0xdb, 0xd1, 0x1e, 0x11, 0x8d, 0xcc, 0x6d, - 0x5a, 0xc4, 0x20, 0x45, 0x7c, 0x14, 0xf6, 0xe4, 0xdb, 0xd4, 0x94, 0x65, 0x1c, 0x21, 0x8c, 0xc9, - 0x1c, 0x27, 0x29, 0x9b, 0x50, 0xb1, 0x72, 0xb4, 0xd5, 0xcb, 0xfd, 0xb3, 0x82, 0x90, 0x73, 0x97, - 0xcc, 0xed, 0x06, 0x11, 0xb5, 0x38, 0xa8, 0x41, 0x48, 0xad, 0x80, 0x83, 0xee, 0x49, 0x0c, 0x49, - 0x35, 0x25, 0x1b, 0x16, 0x29, 0x48, 0x91, 0xa6, 0x46, 0xd2, 0x2c, 0xda, 0x31, 0xba, 0xad, 0xc9, - 0xe1, 0xdb, 0x52, 0xbe, 0xa4, 0x2d, 0x93, 0x12, 0xd8, 0x84, 0x51, 0x18, 0x35, 0x99, 0xe1, 0x33, - 0xc5, 0xb6, 0x74, 0x25, 0x8c, 0xb8, 0xc5, 0xc3, 0x61, 0x28, 0xd3, 0xd8, 0xf9, 0x71, 0xd5, 0x96, - 0x69, 0xfa, 0x94, 0xd8, 0xfd, 0x16, 0x6e, 0x40, 0x38, 0x8b, 0xa7, 0x21, 0xbb, 0xaf, 0xd9, 0xb2, - 0xfb, 0xd3, 0x05, 0x3e, 0xee, 0x00, 0xb9, 0xfd, 0x1e, 0x99, 0x36, 0xbe, 0x3d, 0x3a, 0x0a, 0x9b, - 0xf2, 0xa8, 0x53, 0x08, 0x70, 0xa5, 0x40, 0xa8, 0x33, 0x50, 0xd0, 0x38, 0x38, 0x31, 0xa8, 0x78, - 0xa5, 0x23, 0x22, 0x50, 0x2d, 0x03, 0x06, 0x71, 0x5f, 0x21, 0x64, 0xfd, 0xbe, 0xdf, 0x5c, 0x69, - 0xb2, 0x83, 0x78, 0xe3, 0xdc, 0xa4, 0x34, 0xf8, 0xdc, 0xc4, 0x7d, 0x97, 0x6e, 0x86, 0xf7, 0x71, - 0x67, 0x97, 0x66, 0x1a, 0x5d, 0x22, 0x3e, 0x2b, 0x60, 0xbd, 0x9a, 0xd2, 0x4c, 0xca, 0xd1, 0x40, - 0x40, 0xd9, 0x31, 0xfa, 0x7d, 0x4f, 0x2c, 0x58, 0xc3, 0xe4, 0x5d, 0xc7, 0x42, 0xe0, 0x30, 0xf7, - 0x9b, 0x25, 0x32, 0xb7, 0xb1, 0x66, 0xe9, 0xc9, 0xcb, 0x84, 0x70, 0x7d, 0xf3, 0xce, 0x9d, 0x9b, - 0xd2, 0x8f, 0xca, 0x9d, 0x5d, 0xaa, 0x14, 0x0c, 0x0c, 0xe7, 0x31, 0x52, 0x69, 0xf7, 0x3a, 0x42, - 0x0d, 0x9c, 0x44, 0xff, 0xec, 0x56, 0xaf, 0x03, 0x58, 0x66, 0x04, 0x36, 0x54, 0x0a, 0x07, 0x36, - 0xe4, 0x87, 0xb1, 0xfd, 0x7c, 0x85, 0x2c, 0x6c, 0xb4, 0xfd, 0xfb, 0x56, 0xaf, 0x69, 0x53, 0xad, - 0x28, 0xa0, 0xcc, 0x93, 0x76, 0x93, 0xd4, 0x58, 0x29, 0x08, 0x68, 0xe1, 0x58, 0x0b, 0x2b, 0xce, - 0xa4, 0x32, 0xe2, 0x38, 0x93, 0xdc, 0x31, 0x3b, 0xbb, 0x64, 0x32, 0xe4, 0xdf, 0x9f, 0x4a, 0x31, - 0x64, 0xf4, 0xcf, 0x1d, 0xdf, 0x99, 0xf4, 0xfc, 0x2c, 0x0b, 0xee, 0xe1, 0x87, 0xde, 0x4a, 0x58, - 0x8a, 0x52, 0x90, 0xc4, 0x97, 0x3e, 0x4b, 0x66, 0x4c, 0xcc, 0xa1, 0x4e, 0xbf, 0xb7, 0xc8, 0xd9, - 0x0d, 0x8c, 0x96, 0x4c, 0xc5, 0xc2, 0xbc, 0x46, 0x4d, 0x38, 0xba, 0x52, 0x63, 0x2b, 0x40, 0x4c, - 0xf9, 0x32, 0x6a, 0x1a, 0x04, 0x26, 0x9e, 0xfb, 0x9f, 0x4a, 0xe4, 0xf1, 0xab, 0x6b, 0xeb, 0x75, - 0x14, 0x07, 0x71, 0x42, 0x17, 0x58, 0x2d, 0x88, 0xef, 0xa6, 0x3f, 0x79, 0xb7, 0x65, 0xd0, 0x54, - 0x9f, 0xb2, 0x5e, 0x63, 0xe4, 0x04, 0xf4, 0x61, 0x89, 0xbe, 0xa4, 0x7a, 0xe1, 0xd9, 0xab, 0x01, - 0xfd, 0xf6, 0xdd, 0x30, 0x1d, 0x3f, 0x17, 0xd1, 0xb2, 0x18, 0xe3, 0xaa, 0x8e, 0xd2, 0xf1, 0x73, - 0xa0, 0x20, 0x60, 0x60, 0xf1, 0x96, 0x0f, 0x03, 0x14, 0x94, 0x62, 0x50, 0x46, 0xcb, 0xbc, 0x1c, - 0x14, 0x06, 0x0e, 0xac, 0x15, 0x44, 0x4c, 0xa7, 0x38, 0x12, 0x2b, 0x51, 0x0d, 0xac, 0x26, 0x01, - 0xa0, 0x71, 0xdc, 0xbf, 0x53, 0x22, 0xe7, 0xaf, 0xb6, 0x7b, 0x74, 0xda, 0xa3, 0xdd, 0xd8, 0xea, - 0xec, 0x2b, 0xa4, 0xea, 0x4b, 0xfd, 0x57, 0xf4, 0x55, 0xed, 0x2d, 0x4a, 0x31, 0xe6, 0xc1, 0x7b, - 0x0a, 0xaf, 0x40, 0xac, 0xd8, 0x70, 0x91, 0x4d, 0xff, 0xaa, 0x4c, 0x66, 0xaf, 0x6d, 0x6f, 0xd7, - 0xaf, 0xfa, 0x89, 0x90, 0xa5, 0xf9, 0x0e, 0x9b, 0xba, 0x61, 0xad, 0x4e, 0x5f, 0x59, 0x1e, 0xb0, - 0x7a, 0x30, 0x2e, 0x78, 0x99, 0xc7, 0x05, 0x2f, 0x6f, 0x76, 0x92, 0x5b, 0x51, 0x23, 0x89, 0xf0, - 0x38, 0x21, 0xcb, 0xba, 0x95, 0xf2, 0xbe, 0x32, 0x48, 0xde, 0xd3, 0xc9, 0x9a, 0x88, 0x9b, 0xfb, - 0xbe, 0x32, 0xbe, 0x3f, 0xa9, 0xd4, 0x09, 0x56, 0x4a, 0x6d, 0xdf, 0xea, 0x3b, 0xb0, 0xc9, 0x7f, - 0x80, 0x40, 0xa5, 0x82, 0x67, 0x7a, 0x3f, 0x49, 0xba, 0xd7, 0xe8, 0x60, 0x29, 0xeb, 0x8b, 0xd5, - 0x9e, 0xa3, 0xcd, 0xe1, 0x64, 0xf0, 0x0a, 0x7a, 0x61, 0xe9, 0xb2, 0x18, 0x4c, 0x8a, 0x6e, 0x83, - 0x10, 0x0d, 0x7b, 0x40, 0x26, 0x8a, 0xfb, 0x17, 0xcb, 0x64, 0xf2, 0x1a, 0xdd, 0xae, 0xda, 0x94, - 0xe4, 0x06, 0x19, 0xf3, 0xe9, 0x36, 0x57, 0x4c, 0x11, 0xd5, 0x1b, 0x22, 0xf7, 0x38, 0xe1, 0x6f, - 0x60, 0xf5, 0x1d, 0x20, 0x93, 0xd8, 0xef, 0xab, 0x2a, 0xc0, 0xf2, 0xc5, 0xfc, 0x59, 0x50, 0x2c, - 0xc1, 0x77, 0x53, 0x51, 0x04, 0x92, 0x10, 0xf3, 0xcd, 0x34, 0xbb, 0x0d, 0x94, 0x52, 0x49, 0xb1, - 0x78, 0xe1, 0xed, 0xb5, 0x3a, 0x47, 0x17, 0x74, 0xb9, 0x6f, 0x46, 0x16, 0x82, 0x26, 0xe7, 0xbe, - 0x41, 0xce, 0xb1, 0xd3, 0x3d, 0xca, 0x6e, 0xd6, 0x9a, 0xc9, 0x65, 0x4e, 0xf7, 0xef, 0x97, 0xc9, - 0x99, 0xcd, 0xc6, 0x5a, 0xc3, 0xf6, 0xaa, 0xbd, 0x41, 0x66, 0xf8, 0x36, 0x8b, 0x4c, 0xe7, 0xb5, - 0x45, 0x7d, 0xe5, 0x8e, 0xde, 0x36, 0x60, 0x60, 0x61, 0xe2, 0xb1, 0x69, 0xf0, 0x7e, 0x27, 0x1d, - 0xe7, 0xb3, 0xf9, 0xf6, 0x4d, 0xc0, 0x72, 0x04, 0xe3, 0x8e, 0xcd, 0x45, 0x9c, 0x02, 0xab, 0x5d, - 0xfb, 0x0b, 0x54, 0xe5, 0x8f, 0x9b, 0x71, 0x40, 0x17, 0x00, 0x5d, 0xff, 0x5e, 0x53, 0xb2, 0xaf, - 0xd6, 0xe1, 0xb1, 0xab, 0x0a, 0x0a, 0x29, 0x6c, 0x43, 0xde, 0x8e, 0x17, 0xde, 0xf5, 0xf3, 0x23, - 0x2d, 0xbf, 0x46, 0xaa, 0x2a, 0x22, 0x46, 0x06, 0x32, 0x95, 0xb2, 0x03, 0x99, 0x0a, 0x08, 0x1c, - 0xe9, 0xeb, 0xac, 0x64, 0xfa, 0x3a, 0xff, 0x19, 0xd5, 0x60, 0xd5, 0xe1, 0x3f, 0xe5, 0xc3, 0x2a, - 0x15, 0xbc, 0x09, 0x3b, 0x4e, 0x12, 0x4c, 0xfd, 0x6c, 0x0e, 0x27, 0xf2, 0x95, 0xc0, 0x79, 0xa5, - 0x2e, 0xeb, 0x82, 0x26, 0xe3, 0x6c, 0x91, 0xc9, 0x6e, 0xe4, 0x37, 0x12, 0x16, 0xae, 0x3b, 0x04, - 0x45, 0xc6, 0xd5, 0x75, 0x5e, 0x13, 0x24, 0x09, 0xf7, 0xd7, 0x4a, 0x84, 0x6c, 0x05, 0x07, 0x74, - 0x73, 0xf1, 0x3a, 0x7b, 0xfe, 0x08, 0xad, 0xc1, 0x9b, 0x64, 0x2c, 0xee, 0xd2, 0xa5, 0x5d, 0xe8, - 0x08, 0x48, 0xf7, 0xa8, 0x41, 0xeb, 0xe8, 0xcf, 0x80, 0xbf, 0x80, 0xd1, 0x71, 0x7f, 0x89, 0x90, - 0x39, 0x8d, 0x86, 0xea, 0xb8, 0x73, 0xd1, 0x8a, 0x4f, 0x7d, 0x2c, 0x15, 0x9f, 0x5a, 0x65, 0xd8, - 0x46, 0x48, 0x6a, 0x42, 0x2a, 0x07, 0xde, 0x7d, 0xa1, 0xfd, 0xbf, 0x56, 0xb4, 0x43, 0xd8, 0xd2, - 0xf2, 0x0d, 0xef, 0x3e, 0x57, 0x87, 0x5e, 0x94, 0x0c, 0x44, 0x4b, 0x3e, 0xe2, 0x07, 0x3d, 0x6c, - 0x05, 0xa2, 0xb9, 0xf1, 0x53, 0xff, 0x55, 0xff, 0x66, 0x42, 0x11, 0x9b, 0x63, 0xad, 0x06, 0x1d, - 0xe1, 0xb2, 0x1b, 0xb2, 0xd5, 0xa0, 0x93, 0x6e, 0x35, 0xe8, 0x14, 0x68, 0x35, 0xe8, 0x60, 0x18, - 0xdb, 0xa4, 0xf0, 0x74, 0xb3, 0x30, 0xaa, 0xe9, 0x2b, 0x6f, 0x0e, 0xd5, 0xb4, 0x70, 0x99, 0xf3, - 0xe6, 0x2f, 0x49, 0x1d, 0x50, 0x94, 0xe6, 0x76, 0x41, 0x36, 0xed, 0xfc, 0x02, 0xb5, 0x19, 0xc4, - 0xff, 0x18, 0xb1, 0x44, 0x8d, 0x47, 0xb1, 0x4b, 0xbd, 0x75, 0x92, 0xde, 0x08, 0x12, 0xbc, 0x53, - 0x3f, 0x22, 0x45, 0x8c, 0x0d, 0xcc, 0xed, 0x5b, 0xaa, 0x3f, 0xce, 0xb7, 0x4b, 0xe4, 0x1c, 0xfd, - 0x4e, 0xbc, 0x45, 0x5e, 0x06, 0x78, 0x30, 0x28, 0x42, 0xc5, 0x36, 0x86, 0xe5, 0x93, 0x3e, 0x42, - 0xbc, 0xbb, 0x9f, 0x97, 0xc7, 0x8f, 0x59, 0x28, 0xb9, 0x9d, 0xce, 0xec, 0xe1, 0x52, 0x8b, 0x4c, - 0x49, 0xc6, 0xcc, 0xd0, 0xbe, 0x57, 0xcd, 0xcd, 0xf8, 0xf8, 0x15, 0x28, 0x1d, 0x61, 0xcb, 0x6f, - 0xf7, 0xbc, 0x4e, 0x82, 0xa1, 0xff, 0x5a, 0x57, 0x67, 0xad, 0x08, 0x46, 0x1c, 0x61, 0x2b, 0xfb, - 0x64, 0xc6, 0xe4, 0xb9, 0x11, 0xb6, 0x14, 0x92, 0xb3, 0x19, 0xfc, 0x34, 0xc2, 0x06, 0x7b, 0xe4, - 0xb1, 0x81, 0x7c, 0x31, 0xba, 0x66, 0xd1, 0xb9, 0x6f, 0x08, 0xcc, 0xd3, 0x70, 0xb0, 0xdc, 0xb0, - 0x1d, 0x2c, 0xcf, 0x17, 0x5d, 0x3a, 0x03, 0xbc, 0x2c, 0xbb, 0x66, 0xff, 0x71, 0x27, 0x70, 0xb6, - 0xc9, 0x44, 0x1b, 0x4b, 0xe4, 0xa9, 0xce, 0x4b, 0xc3, 0x2c, 0x4e, 0xad, 0x5c, 0xb0, 0xf2, 0x18, - 0x04, 0x2d, 0xf7, 0xd7, 0x4b, 0x64, 0xec, 0x34, 0xa6, 0xa7, 0x6e, 0x4f, 0xcf, 0x20, 0x15, 0x55, - 0xdc, 0x4f, 0x5c, 0x06, 0xef, 0xde, 0xfa, 0x7d, 0x6a, 0xcd, 0xc6, 0x4c, 0x95, 0xcc, 0x9c, 0xa1, - 0x5f, 0x2c, 0x93, 0x69, 0x6c, 0x48, 0xfa, 0x7b, 0x3e, 0x87, 0xfe, 0xbf, 0x1d, 0xbf, 0x2d, 0xdd, - 0xc2, 0x69, 0xb3, 0x6b, 0xcb, 0x04, 0x82, 0x8d, 0x8b, 0x95, 0x77, 0x4d, 0xaf, 0xb9, 0x50, 0x89, - 0x54, 0x65, 0xcb, 0xa5, 0x0e, 0x36, 0x2e, 0x6a, 0xfe, 0xf7, 0xbc, 0xa4, 0xb9, 0x2f, 0x4c, 0x32, - 0xd5, 0xdd, 0x3b, 0x58, 0x08, 0x1c, 0xe6, 0xac, 0x90, 0x79, 0xc9, 0xb1, 0xb7, 0xf9, 0xd4, 0x09, - 0x75, 0x51, 0xdd, 0x2d, 0x03, 0x1b, 0x0c, 0x69, 0x7c, 0xe7, 0xb3, 0x64, 0x0e, 0x27, 0x27, 0xec, - 0x25, 0x32, 0xe8, 0x60, 0x9c, 0x05, 0x1d, 0xb0, 0x20, 0xcf, 0x6d, 0x0b, 0x02, 0x29, 0x4c, 0xf7, - 0xc7, 0xc9, 0xd9, 0xad, 0xd0, 0x6b, 0xad, 0x7a, 0x6d, 0xaf, 0xd3, 0xf4, 0xa3, 0xcd, 0xce, 0x5e, - 0xee, 0xf9, 0xac, 0x79, 0x86, 0x5a, 0xce, 0x3b, 0x43, 0x75, 0x23, 0xe2, 0x98, 0x0d, 0x88, 0x70, - 0x99, 0x77, 0xc9, 0x64, 0xc0, 0x9b, 0x12, 0x5c, 0x7b, 0x39, 0xcf, 0x39, 0xd4, 0xd7, 0x47, 0x23, - 0xfc, 0x83, 0x17, 0x80, 0x24, 0x89, 0x96, 0x44, 0x96, 0x37, 0x29, 0xdf, 0x58, 0x73, 0xff, 0x4a, - 0x89, 0xcc, 0xdf, 0x4c, 0x5d, 0xea, 0xc2, 0x58, 0x2e, 0x3f, 0xca, 0x70, 0x8d, 0x35, 0x58, 0x29, - 0x08, 0xe8, 0x03, 0x37, 0xd3, 0xff, 0x6a, 0x99, 0x54, 0x59, 0xec, 0x65, 0xd7, 0x6b, 0x8e, 0x52, + 0xbe, 0x8e, 0x85, 0xc0, 0x61, 0xee, 0xef, 0x96, 0xc8, 0xbc, 0xea, 0x2b, 0x6f, 0x6b, 0x84, 0x4b, + 0xbd, 0x45, 0x48, 0x53, 0x0e, 0x2c, 0x66, 0x0b, 0x6c, 0xfa, 0xca, 0xcb, 0xc7, 0xd3, 0xee, 0x9f, + 0x48, 0xdd, 0x86, 0x2a, 0x8a, 0xc1, 0xa0, 0xeb, 0x7e, 0xaf, 0x44, 0xce, 0xa6, 0xc6, 0xb4, 0x15, + 0xc4, 0x89, 0xf3, 0xe7, 0xfb, 0xc6, 0x75, 0xe9, 0x98, 0xb6, 0x0d, 0xed, 0x69, 0x19, 0xab, 0xb3, + 0xe1, 0x29, 0x46, 0x91, 0x25, 0xc6, 0xe0, 0x80, 0x8c, 0x07, 0x89, 0x7f, 0x20, 0xc7, 0x75, 0xb1, + 0xe0, 0xb8, 0x78, 0x07, 0xf5, 0xe7, 0xd9, 0x44, 0x1a, 0xc0, 0x49, 0xb9, 0xff, 0x93, 0xee, 0x59, + 0x74, 0x94, 0xbb, 0xc1, 0xde, 0x0d, 0xaf, 0x3b, 0xc2, 0x0f, 0xd3, 0xa0, 0x32, 0x0f, 0xa9, 0xf2, + 0xae, 0x5f, 0xce, 0xeb, 0xba, 0xe8, 0xd0, 0x72, 0x8d, 0xd6, 0xe1, 0x3b, 0xa0, 0x92, 0x4b, 0x58, + 0x04, 0x8c, 0xd8, 0xd2, 0xeb, 0xa4, 0xaa, 0x10, 0x9c, 0x05, 0x52, 0xb9, 0xeb, 0x73, 0xf5, 0xa8, + 0x0a, 0xf8, 0xaf, 0x73, 0x8e, 0x8c, 0x1f, 0x7a, 0xed, 0x9e, 0x58, 0xad, 0xc0, 0x7f, 0x7c, 0xb6, + 0xfc, 0x46, 0xc9, 0xfd, 0xcd, 0x12, 0x39, 0xa7, 0x1a, 0xb9, 0xee, 0x1f, 0x35, 0xfc, 0x36, 0xed, + 0x72, 0x18, 0x39, 0x3f, 0x4d, 0x01, 0xed, 0x0c, 0x39, 0x24, 0x66, 0xe3, 0x24, 0x12, 0xec, 0x53, + 0xa2, 0xe3, 0xe7, 0xb2, 0xa0, 0x90, 0xd9, 0x9a, 0xf3, 0x38, 0x1f, 0x0b, 0x5f, 0xbc, 0xd3, 0x82, + 0x40, 0x85, 0x76, 0x94, 0x0d, 0x0c, 0xbb, 0x3f, 0xab, 0xba, 0x7f, 0x1a, 0x9c, 0xb7, 0x65, 0x73, + 0xde, 0x67, 0x0a, 0x7e, 0xbe, 0x01, 0x3c, 0xf7, 0x77, 0xcb, 0xe4, 0xbc, 0xc2, 0xb1, 0xc4, 0xf1, + 0x43, 0x32, 0xfd, 0xc3, 0x0d, 0x97, 0x7e, 0x96, 0xed, 0x10, 0xf7, 0xd3, 0xec, 0xe1, 0x3a, 0x97, + 0xc9, 0x74, 0xcb, 0xdf, 0xf5, 0x7a, 0xed, 0xe4, 0x06, 0xd5, 0xba, 0x85, 0xb9, 0xc0, 0x74, 0xe6, + 0x9a, 0x2e, 0x06, 0x13, 0xc7, 0xfd, 0x9d, 0x2a, 0x5b, 0x95, 0x89, 0x17, 0x50, 0x93, 0x07, 0x37, + 0x68, 0x43, 0x83, 0x9d, 0x31, 0x35, 0x58, 0xa1, 0xad, 0x52, 0x49, 0x1c, 0x1c, 0xa0, 0xc8, 0x2e, + 0xdb, 0x92, 0x78, 0x13, 0x0b, 0x81, 0xc3, 0x9c, 0x67, 0xc9, 0x24, 0x35, 0x13, 0x0f, 0xbc, 0x4e, + 0x8b, 0xf6, 0x01, 0x55, 0x86, 0x69, 0x94, 0xea, 0x6b, 0xbc, 0x08, 0x24, 0xcc, 0xf9, 0x14, 0x19, + 0xa3, 0xfa, 0x4d, 0x4c, 0x85, 0x3a, 0xe2, 0x4c, 0x61, 0x4b, 0x2b, 0xf4, 0x37, 0xb0, 0x52, 0x54, + 0x05, 0xee, 0x85, 0xd1, 0x5d, 0xaa, 0xb0, 0xd5, 0x82, 0x88, 0xed, 0xeb, 0x86, 0x2a, 0x70, 0x47, + 0x41, 0xc0, 0xc0, 0x72, 0xea, 0x64, 0xbc, 0x1b, 0x46, 0x49, 0x4c, 0xb7, 0x69, 0x9c, 0xce, 0x17, + 0x73, 0xb9, 0x87, 0x8f, 0xbb, 0x4e, 0xeb, 0xe8, 0xa1, 0xe0, 0x2f, 0x3a, 0xa5, 0x8c, 0x90, 0xb3, + 0x46, 0x2a, 0x7e, 0xe7, 0x70, 0x71, 0x92, 0xd1, 0x7b, 0xe6, 0x78, 0x7a, 0xeb, 0x9d, 0xc3, 0xdb, + 0x5e, 0xa4, 0x57, 0x11, 0xfd, 0x0d, 0x58, 0xdb, 0x69, 0x92, 0xaa, 0x34, 0x7a, 0xe3, 0xc5, 0xa9, + 0x22, 0x0c, 0x06, 0x02, 0x1d, 0xfc, 0xf7, 0x7b, 0x41, 0xe4, 0x1f, 0x50, 0xe1, 0x1a, 0x6b, 0x7d, + 0x58, 0x42, 0x63, 0xd0, 0x74, 0x69, 0x23, 0x33, 0x5c, 0x7d, 0xb8, 0x11, 0x52, 0xcb, 0x37, 0x5e, + 0xac, 0xb2, 0x2e, 0xe7, 0x18, 0x57, 0xb7, 0x75, 0x8d, 0xd5, 0x73, 0x82, 0xfc, 0x8c, 0x51, 0x18, + 0x83, 0x45, 0x94, 0x1a, 0x70, 0xb3, 0xed, 0xe0, 0x90, 0x9a, 0xc7, 0x71, 0x5c, 0x8f, 0xc2, 0x1d, + 0x7f, 0x91, 0xb0, 0xd1, 0x7c, 0x3a, 0xcf, 0xd0, 0xa0, 0xa8, 0xab, 0x67, 0x28, 0xed, 0xd9, 0x2d, + 0xb3, 0x36, 0xd8, 0xc4, 0xa8, 0x26, 0x37, 0x87, 0xba, 0x4a, 0xa0, 0xc9, 0x4f, 0x17, 0x27, 0xef, + 0x50, 0xf2, 0x73, 0x60, 0x55, 0x87, 0x14, 0x39, 0x67, 0x9b, 0x54, 0xdb, 0xc1, 0xae, 0xdf, 0x3c, + 0x6a, 0x52, 0xed, 0x72, 0x86, 0xd1, 0xce, 0x59, 0x72, 0x5b, 0x12, 0x9d, 0xeb, 0x87, 0xea, 0x27, + 0x68, 0x42, 0xce, 0x6d, 0xf2, 0x48, 0xe2, 0x47, 0x07, 0x41, 0xc7, 0xc3, 0x4d, 0x5b, 0x28, 0x2f, + 0xcc, 0x9a, 0x9b, 0x65, 0x5c, 0xfb, 0x84, 0x98, 0xd8, 0x47, 0xb6, 0x33, 0xb1, 0x60, 0x40, 0x6d, + 0xe7, 0x16, 0x99, 0x67, 0xeb, 0xa9, 0xde, 0x6b, 0xb7, 0xeb, 0x61, 0x3b, 0x68, 0x1e, 0x2d, 0xce, + 0x31, 0x82, 0xcf, 0x4a, 0x1b, 0x6d, 0xd3, 0x06, 0xa3, 0x5e, 0xaf, 0x7f, 0x41, 0xba, 0x36, 0x1a, + 0xc8, 0x54, 0xab, 0xed, 0x45, 0x54, 0xe9, 0x47, 0xde, 0xf7, 0xef, 0x27, 0x8b, 0xf3, 0x45, 0xec, + 0x94, 0x86, 0x5d, 0x89, 0x1b, 0xc8, 0xa9, 0x42, 0x48, 0x93, 0x46, 0x51, 0x11, 0x27, 0x74, 0xf6, + 0x17, 0x17, 0x98, 0x62, 0xaa, 0xd6, 0x57, 0x03, 0x0b, 0x81, 0xc3, 0x98, 0xd9, 0x87, 0xff, 0xdc, + 0x42, 0xd9, 0x7b, 0x86, 0x21, 0x6a, 0xb3, 0x4f, 0x02, 0x40, 0xe3, 0xe0, 0x86, 0x95, 0x50, 0xc3, + 0xde, 0x61, 0xa8, 0x6a, 0xa9, 0x6d, 0x6f, 0x7f, 0x19, 0xb0, 0xdc, 0xdd, 0x21, 0x73, 0x6a, 0x59, + 0xb3, 0xd9, 0x71, 0x9e, 0x24, 0xe3, 0x28, 0xb9, 0xa4, 0xf5, 0x52, 0xc5, 0x2e, 0xa0, 0x40, 0xa3, + 0x4b, 0x9c, 0x95, 0xb3, 0x2e, 0x04, 0x1f, 0xf8, 0xab, 0x47, 0x74, 0xd4, 0x4c, 0xac, 0x55, 0x8c, + 0x2e, 0x48, 0x00, 0x68, 0x1c, 0xf7, 0x7f, 0xf3, 0x4d, 0x51, 0xcb, 0x8e, 0x02, 0x72, 0x93, 0x2a, + 0xea, 0xfb, 0x61, 0x9c, 0x20, 0x36, 0x6b, 0x63, 0x5c, 0xef, 0x82, 0xd7, 0x44, 0x39, 0x28, 0x0c, + 0xe7, 0x73, 0x64, 0xb6, 0x69, 0x36, 0x20, 0x44, 0xf9, 0x79, 0x51, 0xc5, 0x6e, 0x1d, 0x6c, 0x5c, + 0xe7, 0x0d, 0x32, 0xc5, 0xdc, 0x56, 0xcd, 0xb0, 0x2d, 0xf4, 0x65, 0xb9, 0x33, 0x4d, 0xd5, 0x45, + 0xf9, 0x47, 0xc6, 0xff, 0xa0, 0xb0, 0xd1, 0xea, 0xc0, 0x2e, 0x6c, 0xd6, 0x85, 0xb8, 0x55, 0x56, + 0xc7, 0x35, 0x56, 0x0a, 0x02, 0xea, 0xfe, 0x6a, 0xd9, 0x98, 0x65, 0x54, 0xfa, 0x7c, 0xe7, 0xc7, + 0xc8, 0xe4, 0x3d, 0x8f, 0x2a, 0xad, 0x9d, 0x3d, 0xb1, 0x83, 0xbe, 0x52, 0x50, 0xf6, 0xb2, 0xea, + 0x77, 0x78, 0x55, 0xbe, 0x4f, 0x88, 0x1f, 0x20, 0x09, 0x22, 0xed, 0xa8, 0xd7, 0xe9, 0x20, 0xed, + 0xf2, 0xf0, 0xb4, 0x81, 0x57, 0xe5, 0xb4, 0xc5, 0x0f, 0x90, 0x04, 0x9d, 0x5d, 0x42, 0xe4, 0xea, + 0xf3, 0x5b, 0xc2, 0x5d, 0xf4, 0x23, 0xc3, 0x90, 0xdf, 0x56, 0xb5, 0x57, 0xe7, 0x70, 0x67, 0xd2, + 0xbf, 0xc1, 0xa0, 0xec, 0xf6, 0x98, 0x22, 0xd2, 0xdf, 0x2d, 0x2a, 0x51, 0x29, 0x73, 0x7b, 0x11, + 0xc5, 0x59, 0x49, 0xc4, 0xd4, 0xbd, 0x58, 0x50, 0xa1, 0xda, 0x0e, 0x0e, 0x7c, 0x73, 0xb5, 0x08, + 0x2a, 0xa0, 0x09, 0xba, 0xdf, 0xa9, 0x90, 0xc5, 0x41, 0xfd, 0x45, 0x9e, 0xf4, 0xef, 0x07, 0xd4, + 0x1a, 0x69, 0x71, 0xce, 0x35, 0x78, 0x72, 0x5d, 0x94, 0x83, 0xc2, 0x40, 0xe6, 0x88, 0x83, 0xbd, + 0x8e, 0xd7, 0x16, 0xfc, 0xab, 0x98, 0xa3, 0xc1, 0x4a, 0x41, 0x40, 0x11, 0x8f, 0x4a, 0xdd, 0x58, + 0xb8, 0x2b, 0x0d, 0x26, 0x02, 0x56, 0x0a, 0x02, 0x6a, 0x9a, 0x7f, 0x63, 0x39, 0xe6, 0x9f, 0x35, + 0x47, 0xe3, 0x0f, 0x78, 0x8e, 0xe8, 0xae, 0x43, 0xd0, 0xa5, 0x17, 0xef, 0x33, 0xf2, 0x13, 0xc3, + 0x93, 0x57, 0x5a, 0xc9, 0x86, 0x22, 0x03, 0x06, 0x49, 0xe7, 0x35, 0x32, 0xad, 0x56, 0x28, 0xb5, + 0xfe, 0x27, 0xd9, 0x68, 0xcf, 0x8a, 0x4a, 0xd3, 0x5a, 0x5c, 0xd5, 0xc0, 0xc4, 0x73, 0xbf, 0x96, + 0x66, 0x19, 0xb1, 0x30, 0x8c, 0x19, 0x2e, 0x15, 0x9d, 0xe1, 0xf2, 0xf1, 0x33, 0xec, 0xfe, 0xe7, + 0x0a, 0xda, 0xce, 0x46, 0x63, 0xbd, 0xb8, 0x80, 0x50, 0x7b, 0x1b, 0x25, 0x3c, 0xed, 0x98, 0x58, + 0x96, 0x2f, 0x0d, 0xb3, 0x6e, 0xcc, 0xfd, 0x00, 0x97, 0x03, 0xa7, 0xe4, 0xec, 0xd3, 0x1d, 0xda, + 0x8b, 0x99, 0x25, 0xe9, 0x8b, 0xe5, 0x38, 0x1c, 0x59, 0xad, 0x85, 0x53, 0x32, 0xc6, 0x86, 0xcb, + 0x5b, 0xd1, 0xc4, 0x71, 0x7b, 0x42, 0xed, 0x40, 0x7a, 0xc9, 0x55, 0x77, 0x50, 0x85, 0x38, 0x02, + 0x0e, 0xa3, 0xb2, 0x74, 0x86, 0x6a, 0x58, 0xc8, 0x2a, 0x6b, 0xa8, 0x00, 0x31, 0xe6, 0x1b, 0xd7, + 0x9a, 0x12, 0x18, 0x30, 0xb0, 0x30, 0xb5, 0xa2, 0x3c, 0x71, 0x8c, 0xa2, 0x4c, 0xbf, 0x10, 0xfb, + 0x47, 0x71, 0x85, 0xfa, 0x42, 0x9b, 0xbc, 0x18, 0x24, 0x3c, 0xcd, 0x44, 0x53, 0x05, 0x99, 0xe8, + 0x02, 0x99, 0xab, 0x79, 0xfe, 0x41, 0xd8, 0x59, 0xef, 0xb4, 0xba, 0x61, 0x40, 0x3b, 0xb6, 0x48, + 0xc6, 0xd8, 0x96, 0xc2, 0x57, 0xfc, 0x18, 0x52, 0x80, 0x31, 0x54, 0x76, 0xdd, 0xff, 0x43, 0xf7, + 0xb5, 0x1a, 0xb5, 0x4f, 0x13, 0xff, 0x56, 0x97, 0xb9, 0x1f, 0x9c, 0x0d, 0xe2, 0xec, 0x45, 0x5e, + 0xd3, 0xaf, 0xfb, 0x51, 0x10, 0xb6, 0xe8, 0x8e, 0x1f, 0x76, 0x98, 0x73, 0x19, 0xf7, 0x48, 0xf4, + 0x26, 0x3a, 0x57, 0xfb, 0xa0, 0x90, 0x51, 0xc3, 0x69, 0x91, 0xd9, 0x6e, 0xe4, 0x5b, 0xfe, 0x92, + 0x52, 0xbe, 0x7e, 0x5e, 0x37, 0xab, 0x70, 0xf5, 0xd1, 0x2a, 0x02, 0x9b, 0xa8, 0xf3, 0x16, 0x59, + 0x08, 0xa3, 0xee, 0xbe, 0xd7, 0xa9, 0xf9, 0x5d, 0xbf, 0xd3, 0x42, 0x9d, 0x59, 0x38, 0xc5, 0xce, + 0xd1, 0xba, 0x0b, 0xb7, 0x52, 0x30, 0xe8, 0xc3, 0x76, 0x7f, 0x89, 0xda, 0x8b, 0xb5, 0xf0, 0x5e, + 0xe7, 0x9e, 0x17, 0xb5, 0x56, 0xea, 0x9b, 0x5c, 0x11, 0x66, 0x4e, 0x46, 0xe9, 0xdc, 0x2c, 0x0d, + 0x74, 0x6e, 0x7e, 0x85, 0x4c, 0xed, 0x06, 0x7e, 0xbb, 0x85, 0x5e, 0x48, 0x3e, 0xbc, 0xcb, 0x45, + 0x3c, 0x1a, 0x1b, 0x58, 0x47, 0x7a, 0x05, 0xb8, 0x6f, 0x75, 0x43, 0x90, 0x01, 0x45, 0xd0, 0xe9, + 0x91, 0x05, 0xa9, 0xe9, 0x4b, 0xa8, 0x58, 0x1d, 0xaf, 0x14, 0x33, 0x24, 0xec, 0x66, 0xd8, 0x7c, + 0x40, 0x8a, 0x20, 0xf4, 0x35, 0x81, 0x16, 0xda, 0x01, 0xee, 0x0e, 0x63, 0x8c, 0x57, 0x98, 0x85, + 0xc6, 0x4c, 0x48, 0x56, 0xea, 0xfe, 0xc3, 0x12, 0x79, 0xb4, 0x6f, 0xb6, 0x84, 0x7d, 0xfd, 0x25, + 0x69, 0xd8, 0xf2, 0x93, 0x88, 0x9c, 0x5e, 0x66, 0xce, 0x79, 0x31, 0x23, 0xb7, 0x5c, 0xc0, 0xc8, + 0xbd, 0x45, 0xce, 0xad, 0x1f, 0x74, 0x93, 0x23, 0x6a, 0x22, 0x5a, 0x9d, 0x7c, 0x9d, 0x4c, 0x1c, + 0xf8, 0xad, 0xa0, 0x77, 0x20, 0x3e, 0xeb, 0x93, 0x52, 0x90, 0xde, 0x60, 0xa5, 0x54, 0x4b, 0x9a, + 0xc5, 0x73, 0x3e, 0xba, 0x00, 0x79, 0x01, 0x08, 0x74, 0xf7, 0x07, 0x25, 0x32, 0x2f, 0x17, 0xd4, + 0x4a, 0xab, 0x45, 0xe7, 0x2d, 0x76, 0x96, 0x48, 0x39, 0xe8, 0x0a, 0x42, 0x44, 0x10, 0x2a, 0x53, + 0xa5, 0x89, 0x96, 0x52, 0x0d, 0xa6, 0xca, 0x5d, 0xf9, 0x9a, 0x39, 0x86, 0x3c, 0x1a, 0x60, 0xd6, + 0xc7, 0xb6, 0xa4, 0x01, 0x9a, 0x9c, 0xd4, 0x2c, 0x99, 0xa8, 0xae, 0xd8, 0x8e, 0xe5, 0x6b, 0xa2, + 0x1c, 0x14, 0x06, 0xba, 0xf3, 0xf1, 0x44, 0x8e, 0x9d, 0xb2, 0xf0, 0x6d, 0x97, 0xb1, 0xdc, 0x4d, + 0x51, 0x06, 0x0a, 0xea, 0xfe, 0x5c, 0x89, 0xcc, 0xc8, 0x31, 0x16, 0x54, 0x72, 0x71, 0x91, 0x68, + 0x05, 0x57, 0x2f, 0x12, 0x54, 0x52, 0x19, 0xc4, 0xd2, 0x4d, 0x2b, 0xc3, 0xe8, 0xa6, 0xee, 0x77, + 0xa8, 0xce, 0x29, 0xbb, 0xd3, 0xe8, 0xed, 0xc4, 0x7e, 0xe2, 0x7c, 0x95, 0x54, 0x3d, 0x3e, 0xf9, + 0xbe, 0xe4, 0xb3, 0x8b, 0x79, 0x16, 0xba, 0xf5, 0xcd, 0xb4, 0x62, 0xb0, 0x22, 0xe9, 0x80, 0x26, + 0xe9, 0x1c, 0x92, 0x33, 0x9d, 0x30, 0x61, 0xfb, 0x81, 0x82, 0x17, 0xf3, 0x88, 0xa6, 0xdb, 0x79, + 0x4c, 0xb4, 0x73, 0xe6, 0x66, 0x9a, 0x1e, 0xf4, 0x37, 0x41, 0xed, 0x3e, 0xe1, 0xc5, 0xa8, 0xb0, + 0xb6, 0x2e, 0x14, 0x6b, 0x6b, 0xb0, 0x13, 0xc3, 0xfd, 0xad, 0x12, 0xa9, 0x4a, 0xb4, 0x51, 0xfa, + 0xc4, 0xef, 0x90, 0xc9, 0x98, 0x7d, 0x1a, 0x39, 0x4d, 0x2f, 0x15, 0xeb, 0x3a, 0xff, 0x9e, 0x7a, + 0xf3, 0xe3, 0xbf, 0x63, 0x90, 0xd4, 0x98, 0x1b, 0x52, 0x0d, 0xe0, 0xe1, 0x73, 0x43, 0xaa, 0xae, + 0x0d, 0x70, 0x43, 0xfe, 0xa3, 0x12, 0x99, 0xe0, 0xce, 0xa1, 0x62, 0x1e, 0x36, 0xc3, 0x97, 0xac, + 0x29, 0xde, 0xc6, 0x42, 0xe1, 0x5a, 0xa6, 0x33, 0x5d, 0x65, 0xff, 0x6c, 0x44, 0xe1, 0x81, 0xd8, + 0x08, 0x2e, 0x14, 0x71, 0x4e, 0x71, 0xc1, 0xc7, 0xa5, 0xc9, 0x6d, 0x49, 0x00, 0x34, 0x2d, 0xf7, + 0x37, 0x2b, 0xb8, 0xea, 0x35, 0xaa, 0xb5, 0xad, 0x95, 0x4e, 0x63, 0x5b, 0x2b, 0x8f, 0x7e, 0x5b, + 0x7b, 0x9f, 0xcc, 0x37, 0x0d, 0x9f, 0xbc, 0xde, 0x4c, 0xaf, 0x14, 0x74, 0x37, 0x1b, 0x8e, 0x7c, + 0xee, 0x0c, 0x59, 0xb3, 0xc9, 0x41, 0x9a, 0xbe, 0xe3, 0x93, 0x19, 0x7e, 0xa0, 0x28, 0xda, 0x1b, + 0xcb, 0xe5, 0x59, 0xee, 0x77, 0xe1, 0x35, 0x54, 0x63, 0x2c, 0xc0, 0xa2, 0x61, 0x10, 0x02, 0x8b, + 0xac, 0xfb, 0xd7, 0xc7, 0xc9, 0xf8, 0xfa, 0x21, 0xd5, 0x65, 0x46, 0xb8, 0xca, 0x0f, 0xc8, 0x5c, + 0xd0, 0x39, 0x0c, 0xdb, 0x87, 0x7e, 0x8b, 0xc3, 0x4f, 0xb6, 0xa3, 0x3d, 0x22, 0x1a, 0x99, 0xdb, + 0xb4, 0x88, 0x41, 0x8a, 0xf8, 0x28, 0xec, 0xc9, 0xb7, 0xa9, 0x29, 0xcb, 0x38, 0x42, 0x18, 0x93, + 0x39, 0x4e, 0x52, 0x36, 0xa1, 0x62, 0xe5, 0x68, 0xab, 0x97, 0xfb, 0x67, 0x05, 0x21, 0xe7, 0x2e, + 0x99, 0xdb, 0x0d, 0x22, 0x6a, 0x71, 0x50, 0x83, 0x90, 0x5a, 0x01, 0x07, 0xdd, 0x93, 0x18, 0x92, + 0x6a, 0x4a, 0x36, 0x2c, 0x52, 0x90, 0x22, 0x4d, 0x8d, 0xa4, 0x59, 0xb4, 0x63, 0x74, 0x5b, 0x93, + 0xc3, 0xb7, 0xa5, 0x7c, 0x49, 0x5b, 0x26, 0x25, 0xb0, 0x09, 0xa3, 0x30, 0x6a, 0x32, 0xc3, 0x67, + 0x8a, 0x6d, 0xe9, 0x4a, 0x18, 0x71, 0x8b, 0x87, 0xc3, 0x50, 0xa6, 0xb1, 0xf3, 0xe3, 0xaa, 0x2d, + 0xd3, 0xf4, 0x29, 0xb1, 0xfb, 0x2d, 0xdc, 0x80, 0x70, 0x16, 0x4f, 0x43, 0x76, 0x5f, 0xb3, 0x65, + 0xf7, 0xa7, 0x0b, 0x7c, 0xdc, 0x01, 0x72, 0xfb, 0x3d, 0x32, 0x6d, 0x7c, 0x7b, 0x74, 0x14, 0x36, + 0xe5, 0x51, 0xa7, 0x10, 0xe0, 0x4a, 0x81, 0x50, 0x67, 0xa0, 0xa0, 0x71, 0x70, 0x62, 0x50, 0xf1, + 0x4a, 0x47, 0x44, 0xa0, 0x5a, 0x06, 0x0c, 0xe2, 0xbe, 0x42, 0xc8, 0xfa, 0x7d, 0xbf, 0xb9, 0xd2, + 0x64, 0x07, 0xf1, 0xc6, 0xb9, 0x49, 0x69, 0xf0, 0xb9, 0x89, 0xfb, 0x2e, 0xdd, 0x0c, 0xef, 0xe3, + 0xce, 0x2e, 0xcd, 0x34, 0xba, 0x44, 0x7c, 0x56, 0xc0, 0x7a, 0x35, 0xa5, 0x99, 0x94, 0xa3, 0x81, + 0x80, 0xb2, 0x63, 0xf4, 0xfb, 0x9e, 0x58, 0xb0, 0x86, 0xc9, 0xbb, 0x8e, 0x85, 0xc0, 0x61, 0xee, + 0x37, 0x4b, 0x64, 0x6e, 0x63, 0xcd, 0xd2, 0x93, 0x97, 0x09, 0xe1, 0xfa, 0xe6, 0x9d, 0x3b, 0x37, + 0xa5, 0x1f, 0x95, 0x3b, 0xbb, 0x54, 0x29, 0x18, 0x18, 0xce, 0x63, 0xa4, 0xd2, 0xee, 0x75, 0x84, + 0x1a, 0x38, 0x89, 0xfe, 0xd9, 0xad, 0x5e, 0x07, 0xb0, 0xcc, 0x08, 0x6c, 0xa8, 0x14, 0x0e, 0x6c, + 0xc8, 0x0f, 0x63, 0xfb, 0x85, 0x0a, 0x59, 0xd8, 0x68, 0xfb, 0xf7, 0xad, 0x5e, 0xd3, 0xa6, 0x5a, + 0x51, 0x40, 0x99, 0x27, 0xed, 0x26, 0xa9, 0xb1, 0x52, 0x10, 0xd0, 0xc2, 0xb1, 0x16, 0x56, 0x9c, + 0x49, 0x65, 0xc4, 0x71, 0x26, 0xb9, 0x63, 0x76, 0x76, 0xc9, 0x64, 0xc8, 0xbf, 0x3f, 0x95, 0x62, + 0xc8, 0xe8, 0x9f, 0x3b, 0xbe, 0x33, 0xe9, 0xf9, 0x59, 0x16, 0xdc, 0xc3, 0x0f, 0xbd, 0x95, 0xb0, + 0x14, 0xa5, 0x20, 0x89, 0x2f, 0x7d, 0x96, 0xcc, 0x98, 0x98, 0x43, 0x9d, 0x7e, 0x6f, 0x91, 0xb3, + 0x1b, 0x18, 0x2d, 0x99, 0x8a, 0x85, 0x79, 0x8d, 0x9a, 0x70, 0x74, 0xa5, 0xc6, 0x56, 0x80, 0x98, + 0xf2, 0x65, 0xd4, 0x34, 0x08, 0x4c, 0x3c, 0xf7, 0x3f, 0x96, 0xc8, 0xe3, 0x57, 0xd7, 0xd6, 0xeb, + 0x28, 0x0e, 0xe2, 0x84, 0x2e, 0xb0, 0x5a, 0x10, 0xdf, 0x4d, 0x7f, 0xf2, 0x6e, 0xcb, 0xa0, 0xa9, + 0x3e, 0x65, 0xbd, 0xc6, 0xc8, 0x09, 0xe8, 0xc3, 0x12, 0x7d, 0x49, 0xf5, 0xc2, 0xb3, 0x57, 0x03, + 0xfa, 0xed, 0xbb, 0x61, 0x3a, 0x7e, 0x2e, 0xa2, 0x65, 0x31, 0xc6, 0x55, 0x1d, 0xa5, 0xe3, 0xe7, + 0x40, 0x41, 0xc0, 0xc0, 0xe2, 0x2d, 0x1f, 0x06, 0x28, 0x28, 0xc5, 0xa0, 0x8c, 0x96, 0x79, 0x39, + 0x28, 0x0c, 0x1c, 0x58, 0x2b, 0x88, 0x98, 0x4e, 0x71, 0x24, 0x56, 0xa2, 0x1a, 0x58, 0x4d, 0x02, + 0x40, 0xe3, 0xb8, 0x7f, 0xbb, 0x44, 0xce, 0x5f, 0x6d, 0xf7, 0xe8, 0xb4, 0x47, 0xbb, 0xb1, 0xd5, + 0xd9, 0x57, 0x48, 0xd5, 0x97, 0xfa, 0xaf, 0xe8, 0xab, 0xda, 0x5b, 0x94, 0x62, 0xcc, 0x83, 0xf7, + 0x14, 0x5e, 0x81, 0x58, 0xb1, 0xe1, 0x22, 0x9b, 0xfe, 0x65, 0x99, 0xcc, 0x5e, 0xdb, 0xde, 0xae, + 0x5f, 0xf5, 0x13, 0x21, 0x4b, 0xf3, 0x1d, 0x36, 0x75, 0xc3, 0x5a, 0x9d, 0xbe, 0xb2, 0x3c, 0x60, + 0xf5, 0x60, 0x5c, 0xf0, 0x32, 0x8f, 0x0b, 0x5e, 0xde, 0xec, 0x24, 0xb7, 0xa2, 0x46, 0x12, 0xe1, + 0x71, 0x42, 0x96, 0x75, 0x2b, 0xe5, 0x7d, 0x65, 0x90, 0xbc, 0xa7, 0x93, 0x35, 0x11, 0x37, 0xf7, + 0x7d, 0x65, 0x7c, 0x7f, 0x52, 0xa9, 0x13, 0xac, 0x94, 0xda, 0xbe, 0xd5, 0x77, 0x60, 0x93, 0xff, + 0x00, 0x81, 0x4a, 0x05, 0xcf, 0xf4, 0x7e, 0x92, 0x74, 0xaf, 0xd1, 0xc1, 0x52, 0xd6, 0x17, 0xab, + 0x3d, 0x47, 0x9b, 0xc3, 0xc9, 0xe0, 0x15, 0xf4, 0xc2, 0xd2, 0x65, 0x31, 0x98, 0x14, 0xdd, 0x06, + 0x21, 0x1a, 0xf6, 0x80, 0x4c, 0x14, 0xf7, 0x2f, 0x96, 0xc9, 0xe4, 0x35, 0xba, 0x5d, 0xb5, 0x29, + 0xc9, 0x0d, 0x32, 0xe6, 0xd3, 0x6d, 0xae, 0x98, 0x22, 0xaa, 0x37, 0x44, 0xee, 0x71, 0xc2, 0xdf, + 0xc0, 0xea, 0x3b, 0x40, 0x26, 0xb1, 0xdf, 0x57, 0x55, 0x80, 0xe5, 0x8b, 0xf9, 0xb3, 0xa0, 0x58, + 0x82, 0xef, 0xa6, 0xa2, 0x08, 0x24, 0x21, 0xe6, 0x9b, 0x69, 0x76, 0x1b, 0x28, 0xa5, 0x92, 0x62, + 0xf1, 0xc2, 0xdb, 0x6b, 0x75, 0x8e, 0x2e, 0xe8, 0x72, 0xdf, 0x8c, 0x2c, 0x04, 0x4d, 0xce, 0x7d, + 0x83, 0x9c, 0x63, 0xa7, 0x7b, 0x94, 0xdd, 0xac, 0x35, 0x93, 0xcb, 0x9c, 0xee, 0xdf, 0x2b, 0x93, + 0x33, 0x9b, 0x8d, 0xb5, 0x86, 0xed, 0x55, 0x7b, 0x83, 0xcc, 0xf0, 0x6d, 0x16, 0x99, 0xce, 0x6b, + 0x8b, 0xfa, 0xca, 0x1d, 0xbd, 0x6d, 0xc0, 0xc0, 0xc2, 0xc4, 0x63, 0xd3, 0xe0, 0xfd, 0x4e, 0x3a, + 0xce, 0x67, 0xf3, 0xed, 0x9b, 0x80, 0xe5, 0x08, 0xc6, 0x1d, 0x9b, 0x8b, 0x38, 0x05, 0x56, 0xbb, + 0xf6, 0x17, 0xa8, 0xca, 0x1f, 0x37, 0xe3, 0x80, 0x2e, 0x00, 0xba, 0xfe, 0xbd, 0xa6, 0x64, 0x5f, + 0xad, 0xc3, 0x63, 0x57, 0x15, 0x14, 0x52, 0xd8, 0x86, 0xbc, 0x1d, 0x2f, 0xbc, 0xeb, 0xe7, 0x47, + 0x5a, 0x7e, 0x8d, 0x54, 0x55, 0x44, 0x8c, 0x0c, 0x64, 0x2a, 0x65, 0x07, 0x32, 0x15, 0x10, 0x38, + 0xd2, 0xd7, 0x59, 0xc9, 0xf4, 0x75, 0xfe, 0x53, 0xaa, 0xc1, 0xaa, 0xc3, 0x7f, 0xca, 0x87, 0x55, + 0x2a, 0x78, 0x13, 0x76, 0x9c, 0x24, 0x98, 0xfa, 0xd9, 0x1c, 0x4e, 0xe4, 0x2b, 0x81, 0xf3, 0x4a, + 0x5d, 0xd6, 0x05, 0x4d, 0xc6, 0xd9, 0x22, 0x93, 0xdd, 0xc8, 0x6f, 0x24, 0x2c, 0x5c, 0x77, 0x08, + 0x8a, 0x8c, 0xab, 0xeb, 0xbc, 0x26, 0x48, 0x12, 0xee, 0xaf, 0x97, 0x08, 0xd9, 0x0a, 0x0e, 0xe8, + 0xe6, 0xe2, 0x75, 0xf6, 0xfc, 0x11, 0x5a, 0x83, 0x37, 0xc9, 0x58, 0xdc, 0xa5, 0x4b, 0xbb, 0xd0, + 0x11, 0x90, 0xee, 0x51, 0x83, 0xd6, 0xd1, 0x9f, 0x01, 0x7f, 0x01, 0xa3, 0xe3, 0xfe, 0x32, 0x21, + 0x73, 0x1a, 0x0d, 0xd5, 0x71, 0xe7, 0xa2, 0x15, 0x9f, 0xfa, 0x58, 0x2a, 0x3e, 0xb5, 0xca, 0xb0, + 0x8d, 0x90, 0xd4, 0x84, 0x54, 0x0e, 0xbc, 0xfb, 0x42, 0xfb, 0x7f, 0xad, 0x68, 0x87, 0xb0, 0xa5, + 0xe5, 0x1b, 0xde, 0x7d, 0xae, 0x0e, 0xbd, 0x28, 0x19, 0x88, 0x96, 0x7c, 0xc4, 0x0f, 0x7a, 0xd8, + 0x0a, 0x44, 0x73, 0xe3, 0xa7, 0xfe, 0x8b, 0xfe, 0xcd, 0x84, 0x22, 0x36, 0xc7, 0x5a, 0x0d, 0x3a, + 0xc2, 0x65, 0x37, 0x64, 0xab, 0x41, 0x27, 0xdd, 0x6a, 0xd0, 0x29, 0xd0, 0x6a, 0xd0, 0xc1, 0x30, + 0xb6, 0x49, 0xe1, 0xe9, 0x66, 0x61, 0x54, 0xd3, 0x57, 0xde, 0x1c, 0xaa, 0x69, 0xe1, 0x32, 0xe7, + 0xcd, 0x5f, 0x92, 0x3a, 0xa0, 0x28, 0xcd, 0xed, 0x82, 0x6c, 0xda, 0xf9, 0x45, 0x6a, 0x33, 0x88, + 0xff, 0x31, 0x62, 0x89, 0x1a, 0x8f, 0x62, 0x97, 0x7a, 0xeb, 0x24, 0xbd, 0x11, 0x24, 0x78, 0xa7, + 0x7e, 0x44, 0x8a, 0x18, 0x1b, 0x98, 0xdb, 0xb7, 0x54, 0x7f, 0x9c, 0x6f, 0x97, 0xc8, 0x39, 0xfa, + 0x9d, 0x78, 0x8b, 0xbc, 0x0c, 0xf0, 0x60, 0x50, 0x84, 0x8a, 0x6d, 0x0c, 0xcb, 0x27, 0x7d, 0x84, + 0x78, 0x77, 0x3f, 0x2f, 0x8f, 0x1f, 0xb3, 0x50, 0x72, 0x3b, 0x9d, 0xd9, 0xc3, 0xa5, 0x16, 0x99, + 0x92, 0x8c, 0x99, 0xa1, 0x7d, 0xaf, 0x9a, 0x9b, 0xf1, 0xf1, 0x2b, 0x50, 0x3a, 0xc2, 0x96, 0xdf, + 0xee, 0x79, 0x9d, 0x04, 0x43, 0xff, 0xb5, 0xae, 0xce, 0x5a, 0x11, 0x8c, 0x38, 0xc2, 0x56, 0xf6, + 0xc9, 0x8c, 0xc9, 0x73, 0x23, 0x6c, 0x29, 0x24, 0x67, 0x33, 0xf8, 0x69, 0x84, 0x0d, 0xf6, 0xc8, + 0x63, 0x03, 0xf9, 0x62, 0x74, 0xcd, 0xa2, 0x73, 0xdf, 0x10, 0x98, 0xa7, 0xe1, 0x60, 0xb9, 0x61, + 0x3b, 0x58, 0x9e, 0x2f, 0xba, 0x74, 0x06, 0x78, 0x59, 0x76, 0xcd, 0xfe, 0xe3, 0x4e, 0xe0, 0x6c, + 0x93, 0x89, 0x36, 0x96, 0xc8, 0x53, 0x9d, 0x97, 0x86, 0x59, 0x9c, 0x5a, 0xb9, 0x60, 0xe5, 0x31, + 0x08, 0x5a, 0xee, 0x6f, 0x94, 0xc8, 0xd8, 0x69, 0x4c, 0x4f, 0xdd, 0x9e, 0x9e, 0x41, 0x2a, 0xaa, + 0xb8, 0x9f, 0xb8, 0x0c, 0xde, 0xbd, 0xf5, 0xfb, 0xd4, 0x9a, 0x8d, 0x99, 0x2a, 0x99, 0x39, 0x43, + 0xbf, 0x54, 0x26, 0xd3, 0xd8, 0x90, 0xf4, 0xf7, 0x7c, 0x0e, 0xfd, 0x7f, 0x3b, 0x7e, 0x5b, 0xba, + 0x85, 0xd3, 0x66, 0xd7, 0x96, 0x09, 0x04, 0x1b, 0x17, 0x2b, 0xef, 0x9a, 0x5e, 0x73, 0xa1, 0x12, + 0xa9, 0xca, 0x96, 0x4b, 0x1d, 0x6c, 0x5c, 0xd4, 0xfc, 0xef, 0x79, 0x49, 0x73, 0x5f, 0x98, 0x64, + 0xaa, 0xbb, 0x77, 0xb0, 0x10, 0x38, 0xcc, 0x59, 0x21, 0xf3, 0x92, 0x63, 0x6f, 0xf3, 0xa9, 0x13, + 0xea, 0xa2, 0xba, 0x5b, 0x06, 0x36, 0x18, 0xd2, 0xf8, 0xce, 0x67, 0xc9, 0x1c, 0x4e, 0x4e, 0xd8, + 0x4b, 0x64, 0xd0, 0xc1, 0x38, 0x0b, 0x3a, 0x60, 0x41, 0x9e, 0xdb, 0x16, 0x04, 0x52, 0x98, 0xee, + 0x8f, 0x93, 0xb3, 0x5b, 0xa1, 0xd7, 0x5a, 0xf5, 0xda, 0x5e, 0xa7, 0xe9, 0x47, 0x9b, 0x9d, 0xbd, + 0xdc, 0xf3, 0x59, 0xf3, 0x0c, 0xb5, 0x9c, 0x77, 0x86, 0xea, 0x46, 0xc4, 0x31, 0x1b, 0x10, 0xe1, + 0x32, 0xef, 0x92, 0xc9, 0x80, 0x37, 0x25, 0xb8, 0xf6, 0x72, 0x9e, 0x73, 0xa8, 0xaf, 0x8f, 0x46, + 0xf8, 0x07, 0x2f, 0x00, 0x49, 0x12, 0x2d, 0x89, 0x2c, 0x6f, 0x52, 0xbe, 0xb1, 0xe6, 0xfe, 0x95, + 0x12, 0x99, 0xbf, 0x99, 0xba, 0xd4, 0x85, 0xb1, 0x5c, 0x7e, 0x94, 0xe1, 0x1a, 0x6b, 0xb0, 0x52, + 0x10, 0xd0, 0x07, 0x6e, 0xa6, 0xff, 0x6c, 0x99, 0x54, 0x59, 0xec, 0x65, 0xd7, 0x6b, 0x8e, 0x52, 0x29, 0xbd, 0x61, 0x29, 0xa5, 0x39, 0x46, 0xa2, 0xea, 0xd0, 0x20, 0x9d, 0x14, 0xaf, 0xf5, 0x89, 0x4b, 0x4e, 0x85, 0xec, 0x43, 0x4d, 0x90, 0xdf, 0x87, 0x99, 0xb3, 0xef, 0x44, 0xc9, 0x0b, 0x50, 0xec, 0x54, 0x53, 0xe1, 0x3e, 0x7c, 0xa7, 0x9a, 0xaa, 0x6b, 0x03, 0xa4, 0x52, 0xdd, 0xe8, 0x3d, 0x13, 0xdb, 0x5f, 0x64, 0x81, 0x74, 0x5e, 0x3b, 0xf8, 0xc0, 0x57, 0x97, 0x05, 0x9f, 0x14, 0x71, 0x71, 0xa2, 0xf4, 0x23, 0x26, 0x60, 0xc4, 0x2f, 0x7e, 0x07, 0x54, 0x57, 0x71, 0xaf, 0x51, 0x4e, 0xb5, 0xe7, 0xce, 0x79, 0x8d, 0x8c, 0x77, 0xf7, 0xbd, 0xd8, 0x4f, 0x45, 0x68, 0x8c, 0xd7, 0xb1, - 0x90, 0x52, 0x9b, 0x53, 0x15, 0x58, 0x09, 0x70, 0x6c, 0xf7, 0x8f, 0xa9, 0xac, 0xc7, 0x98, 0x86, + 0x90, 0x52, 0x9b, 0x53, 0x15, 0x58, 0x09, 0x70, 0x6c, 0xf7, 0x4f, 0xa9, 0xac, 0xc7, 0x98, 0x86, 0x11, 0xf2, 0xd8, 0x35, 0x8b, 0xc7, 0x9e, 0xcb, 0xbf, 0x25, 0x3d, 0x90, 0xbd, 0xea, 0x29, 0xf6, 0x7a, 0xbe, 0x00, 0xad, 0xe3, 0x39, 0xeb, 0x80, 0x4c, 0xb3, 0x5b, 0xd8, 0x22, 0x34, 0xe5, 0x15, 0xcb, 0x80, 0x7a, 0x32, 0x65, 0x40, 0xcd, 0x1b, 0xa8, 0x86, 0x19, 0xf5, 0x02, 0x99, 0x14, 0xa1, - 0x10, 0xe9, 0xe8, 0x41, 0x81, 0x0b, 0x12, 0xee, 0xfe, 0x6a, 0x85, 0x58, 0xb7, 0xbe, 0x9d, 0xef, + 0x10, 0xe9, 0xe8, 0x41, 0x81, 0x0b, 0x12, 0xee, 0xfe, 0x5a, 0x85, 0x58, 0xb7, 0xbe, 0x9d, 0xef, 0x96, 0x08, 0x55, 0x5a, 0xd8, 0xd5, 0x85, 0x56, 0xad, 0x87, 0xfe, 0x32, 0x74, 0x69, 0xb5, 0x7a, 0x6d, 0xfa, 0xdf, 0xe6, 0x5e, 0x27, 0x54, 0xc5, 0xe8, 0xdb, 0xe9, 0x31, 0xef, 0x6a, 0xe1, 0xcb, - 0xe6, 0xea, 0x2c, 0xf4, 0x0a, 0xed, 0xcb, 0x32, 0x0c, 0xd5, 0x0a, 0x0c, 0xd9, 0x2b, 0xe7, 0x77, + 0xe6, 0xea, 0x2c, 0xf4, 0x0a, 0xed, 0xcb, 0x32, 0x0c, 0xd5, 0x0a, 0x0c, 0xd9, 0x2b, 0xe7, 0xf7, 0x4b, 0xe4, 0x12, 0xbf, 0xf7, 0x5c, 0x7c, 0x24, 0x85, 0x0c, 0xcf, 0xba, 0x24, 0xaa, 0xc9, 0x61, - 0xb0, 0xe2, 0xea, 0xeb, 0x62, 0x92, 0x2f, 0xd5, 0x87, 0x6b, 0x15, 0x86, 0xed, 0xa6, 0xfb, 0x6f, - 0x2a, 0x74, 0xfd, 0xd2, 0xf9, 0xd4, 0xf7, 0x40, 0x5f, 0xb3, 0xd8, 0xe4, 0xe9, 0x14, 0x9b, 0x9c, + 0xb0, 0xe2, 0xea, 0xeb, 0x62, 0x92, 0x2f, 0xd5, 0x87, 0x6b, 0x15, 0x86, 0xed, 0xa6, 0xfb, 0xaf, + 0x2b, 0x74, 0xfd, 0xd2, 0xf9, 0xd4, 0xf7, 0x40, 0x5f, 0xb3, 0xd8, 0xe4, 0xe9, 0x14, 0x9b, 0x9c, 0xb1, 0x90, 0x1f, 0xcc, 0x15, 0xd0, 0x84, 0x9c, 0xc1, 0xf3, 0xc6, 0x6b, 0xbe, 0x17, 0x25, 0x3b, 0xbe, 0xc7, 0x0e, 0x1e, 0xc5, 0x22, 0x18, 0xea, 0x30, 0x53, 0xc5, 0xd7, 0x6c, 0xa5, 0xa9, 0x41, 0x7f, 0x03, 0xce, 0x3d, 0xe2, 0xb0, 0x53, 0xce, 0xc8, 0xa3, 0x4a, 0x17, 0x1b, 0x4c, 0x20, 0x1c, 0xb2, 0x43, 0x36, 0xbb, 0x24, 0x9a, 0x75, 0xb6, 0xfa, 0xc8, 0x41, 0x46, 0x13, 0xc6, 0x51, 0xf6, 0x78, 0xd1, 0xa3, 0xec, 0x89, 0x9c, 0xc0, 0xdd, 0x9f, 0x29, 0x91, 0xb3, 0xf8, 0x61, 0xec, 0x20, 0xcf, 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, 0x14, 0xd9, + 0xa6, 0xa3, 0x35, 0xb6, 0xeb, 0x36, 0x31, 0x48, 0x53, 0x77, 0x7f, 0xad, 0x44, 0x58, 0x14, 0xd9, 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, 0xbe, 0xd9, 0xbf, 0x5c, 0xe2, 0xe2, 0x4e, 0x69, 0xc5, 0xf7, 0x30, 0x50, 0x4c, 0xff, 0xc6, 0x85, 0x2c, 0x95, 0xc0, 0xe5, 0xe2, 0x02, 0x8d, - 0xad, 0x7f, 0x23, 0x52, 0x2c, 0x45, 0x10, 0xfa, 0xdb, 0x70, 0xff, 0x41, 0x89, 0x3c, 0x6a, 0x22, + 0xad, 0x7f, 0x23, 0x52, 0x2c, 0x45, 0x10, 0xfa, 0xdb, 0x70, 0xff, 0x7e, 0x89, 0x3c, 0x6a, 0x22, 0x1a, 0xd7, 0xc5, 0xf2, 0x1c, 0xa2, 0x35, 0x32, 0x15, 0x76, 0x31, 0xcb, 0x89, 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, 0xf4, 0x23, 0xc8, 0xcd, 0xec, 0x18, 0x80, 0x2e, 0x72, 0x0e, - 0x71, 0xff, 0x5a, 0x89, 0xcf, 0xb2, 0xd9, 0x75, 0xe7, 0xeb, 0x64, 0xe1, 0x00, 0x8d, 0x85, 0xf5, + 0x71, 0xff, 0x6a, 0x89, 0xcf, 0xb2, 0xd9, 0x75, 0xe7, 0xeb, 0x64, 0xe1, 0x00, 0x8d, 0x85, 0xf5, 0xfb, 0x5d, 0xdc, 0x42, 0xd8, 0x31, 0x66, 0xa9, 0x88, 0xe0, 0x1c, 0x30, 0xdc, 0xd5, 0x45, 0xd1, - 0xfb, 0x85, 0x1b, 0x29, 0xb2, 0xd0, 0xd7, 0x90, 0xfb, 0x7b, 0x82, 0x57, 0x99, 0xd6, 0x42, 0x17, + 0xfb, 0x85, 0x1b, 0x29, 0xb2, 0xd0, 0xd7, 0x90, 0xfb, 0x07, 0x82, 0x57, 0x99, 0xd6, 0x42, 0x17, 0x5b, 0x37, 0x6c, 0xad, 0x6d, 0xd6, 0x40, 0xcc, 0x95, 0x5a, 0x6c, 0x75, 0x5e, 0x0c, 0x12, 0x8e, 0xe7, 0x72, 0x3e, 0x35, 0xd5, 0x22, 0xaa, 0xb0, 0x6c, 0xd6, 0xd2, 0xa9, 0x3a, 0xd6, 0x15, 0x04, 0x0c, 0x2c, 0xac, 0xd3, 0x8d, 0xc2, 0xc3, 0xa0, 0xc5, 0xc2, 0xb6, 0x2b, 0x76, 0x9d, 0xba, 0x82, 0x80, 0x81, 0x85, 0x26, 0x5a, 0xaf, 0x13, 0x73, 0x01, 0xee, 0xed, 0x88, 0x44, 0x08, 0x53, 0xda, - 0x44, 0x7b, 0xc7, 0x04, 0x82, 0x8d, 0xeb, 0x7e, 0xbf, 0x4a, 0x88, 0x56, 0x11, 0xd0, 0x43, 0x38, - 0xd5, 0xf4, 0xa8, 0x82, 0xc4, 0x33, 0xba, 0x54, 0xf2, 0xef, 0xb7, 0xe8, 0xca, 0xcb, 0x6b, 0xa2, - 0x22, 0xf7, 0x6d, 0xbd, 0x2c, 0x19, 0x44, 0x16, 0xe7, 0xfa, 0xb3, 0x54, 0xcb, 0xce, 0x37, 0x4a, - 0x64, 0xda, 0x6b, 0xe3, 0x1d, 0xd8, 0x84, 0x8d, 0xa8, 0x5c, 0xc4, 0x59, 0x69, 0xf4, 0x64, 0x45, - 0xd7, 0xe5, 0x9d, 0x79, 0x45, 0x9e, 0x6a, 0x19, 0x90, 0xdc, 0xfe, 0x98, 0x5d, 0x70, 0x5e, 0x96, - 0xaa, 0x25, 0xff, 0x28, 0x4b, 0x69, 0xd5, 0xb2, 0xca, 0x44, 0x83, 0xa1, 0x55, 0xe2, 0x4d, 0x11, - 0x23, 0x86, 0x7d, 0xac, 0xc8, 0x1d, 0x53, 0x6b, 0xd3, 0xcc, 0xbb, 0xee, 0x8f, 0x67, 0x51, 0x3a, - 0xa2, 0x75, 0xbc, 0xc8, 0x05, 0x4e, 0x43, 0x77, 0xcb, 0x89, 0x66, 0x4d, 0xc8, 0x7c, 0xcb, 0xde, - 0x24, 0x44, 0x88, 0xd2, 0xe5, 0xfc, 0x16, 0x52, 0xbb, 0x8b, 0xde, 0x16, 0x52, 0x00, 0x48, 0x37, - 0x41, 0x47, 0xc4, 0x22, 0x8a, 0x37, 0x3b, 0xbb, 0xa1, 0x88, 0x52, 0x7a, 0xa9, 0xc0, 0x37, 0x3f, - 0x8a, 0xa9, 0x78, 0xc6, 0x3a, 0x7a, 0x1b, 0xb8, 0x29, 0xa8, 0x80, 0xa2, 0x87, 0x6e, 0x22, 0x76, - 0x3b, 0x02, 0xef, 0xd4, 0x56, 0x86, 0xb8, 0x28, 0xc2, 0xee, 0x56, 0xe8, 0xcd, 0x97, 0xfd, 0xa4, - 0xe2, 0x8a, 0xd3, 0xa2, 0x7a, 0xbd, 0xb8, 0xf2, 0x1a, 0x6f, 0x76, 0xde, 0x89, 0x7d, 0x76, 0x8f, - 0xb6, 0xba, 0xfa, 0x8c, 0xbe, 0x18, 0xcb, 0xcb, 0x33, 0x33, 0xfa, 0x58, 0x35, 0x71, 0x0f, 0x16, - 0xbf, 0x65, 0xa2, 0xa0, 0x45, 0x52, 0xa4, 0xa3, 0x76, 0x5a, 0x21, 0x3d, 0xd9, 0xb7, 0x6d, 0x62, - 0x90, 0xa6, 0xbe, 0x14, 0x90, 0x59, 0x6b, 0xc5, 0x8e, 0xd0, 0xd9, 0xd9, 0x26, 0x0b, 0xe9, 0x25, - 0x39, 0x42, 0x1f, 0xe7, 0x1f, 0x8d, 0x91, 0x39, 0x9b, 0x31, 0x30, 0x82, 0xe1, 0x80, 0x8e, 0x9a, - 0x7e, 0x4f, 0x95, 0x50, 0x45, 0xf1, 0xff, 0x0d, 0x09, 0x00, 0x8d, 0xc3, 0x52, 0xcb, 0xb0, 0xea, - 0xef, 0xbc, 0xd3, 0x2f, 0xbc, 0x1b, 0x0a, 0x02, 0x06, 0x16, 0x2a, 0x6c, 0x3b, 0x61, 0x98, 0x28, - 0xc1, 0xad, 0x78, 0x66, 0x95, 0x95, 0x82, 0x80, 0xa2, 0xc0, 0xbe, 0x8b, 0x03, 0x6a, 0xdb, 0xfe, - 0x2e, 0x25, 0xb0, 0xaf, 0x9b, 0x40, 0xb0, 0x71, 0x71, 0x03, 0x0a, 0x63, 0xc6, 0x84, 0x42, 0x2d, - 0xd4, 0xb1, 0x38, 0x0d, 0x7e, 0x5b, 0x48, 0xc2, 0x9d, 0x2f, 0x93, 0x47, 0xd5, 0xe5, 0x1e, 0xe0, - 0xfe, 0x43, 0xd9, 0xe2, 0x84, 0x65, 0xdb, 0x3d, 0xba, 0x96, 0x8d, 0x06, 0x83, 0xea, 0xe3, 0x11, - 0xaf, 0x50, 0xe9, 0x24, 0xc5, 0x49, 0xfb, 0x88, 0xf7, 0xba, 0x05, 0x85, 0x14, 0x36, 0xd5, 0x27, - 0x16, 0xb0, 0x84, 0xa9, 0x52, 0x92, 0x02, 0xbf, 0xa4, 0xa4, 0x76, 0xe6, 0xeb, 0x29, 0x38, 0xf4, - 0xd5, 0x40, 0xd7, 0x21, 0xd7, 0x2d, 0xd0, 0x82, 0x61, 0xdf, 0x41, 0x44, 0x15, 0xaa, 0x45, 0x70, - 0xcb, 0x06, 0x43, 0x1a, 0x1f, 0xcf, 0xc8, 0xbd, 0x88, 0x7e, 0xf4, 0x84, 0xaa, 0x08, 0xbd, 0x88, - 0xdf, 0x50, 0x37, 0xce, 0xc8, 0x57, 0x0c, 0x18, 0x58, 0x98, 0xee, 0x07, 0xe4, 0x6c, 0x46, 0xf0, - 0x32, 0x32, 0x0e, 0x65, 0x50, 0x39, 0xa6, 0x54, 0x34, 0x0e, 0xde, 0x58, 0x11, 0xa3, 0x31, 0xb0, - 0x90, 0x3b, 0x99, 0xe3, 0xd4, 0xc8, 0xe9, 0xa5, 0xb8, 0x73, 0x43, 0x02, 0x40, 0xe3, 0xb8, 0xdf, - 0xa2, 0xbb, 0xb6, 0x76, 0x33, 0x14, 0x88, 0xc1, 0xa0, 0xc3, 0x94, 0x69, 0xea, 0x8c, 0x94, 0x59, - 0x6a, 0x98, 0x57, 0x0d, 0x18, 0x58, 0x98, 0xd8, 0xb7, 0x8e, 0x74, 0x9a, 0xa4, 0x63, 0x7f, 0x94, - 0x37, 0x05, 0x34, 0x0e, 0xfa, 0xf8, 0x62, 0xbf, 0xbd, 0xbb, 0x15, 0x74, 0xee, 0x0a, 0xc6, 0x56, - 0x52, 0xb9, 0x21, 0xca, 0x41, 0x61, 0x38, 0x6f, 0x91, 0x4a, 0x2f, 0x68, 0x09, 0x56, 0x5e, 0x96, - 0x7a, 0x27, 0x5d, 0x4d, 0x54, 0x62, 0x3e, 0x99, 0x9d, 0x7b, 0x0f, 0xcd, 0xc8, 0x78, 0x19, 0x17, - 0x1f, 0x56, 0xcd, 0xf2, 0x1f, 0x4f, 0x0c, 0xe9, 0x3f, 0xa6, 0xdf, 0x4c, 0x8c, 0x59, 0x72, 0x72, - 0x45, 0x7f, 0xb3, 0xab, 0x0a, 0x02, 0x06, 0x16, 0x1a, 0xa3, 0x4d, 0x6a, 0x80, 0x49, 0x6b, 0x8d, - 0x47, 0xd6, 0x4e, 0x7d, 0x0c, 0x63, 0x74, 0x2d, 0x4d, 0x0d, 0xfa, 0x1b, 0x70, 0xba, 0xe4, 0x4c, - 0x0b, 0xd7, 0x91, 0xd5, 0x6a, 0xf5, 0x04, 0xf1, 0xbc, 0xd8, 0x62, 0x2d, 0x4d, 0x09, 0xfa, 0x89, - 0x3b, 0x5f, 0x25, 0x4b, 0xb2, 0xb0, 0xff, 0xfa, 0x1e, 0x5b, 0x2e, 0x95, 0xd5, 0x27, 0x28, 0xb5, - 0xa5, 0xda, 0x40, 0x2c, 0x38, 0x86, 0x82, 0xf3, 0x2e, 0x99, 0x60, 0x27, 0x0e, 0xf1, 0xe2, 0x34, - 0xdb, 0xed, 0x5e, 0x2d, 0xea, 0x70, 0x5b, 0x66, 0xe7, 0x16, 0x22, 0x20, 0x51, 0x9f, 0xe2, 0xb0, - 0x42, 0x10, 0x34, 0xe9, 0x7c, 0x4d, 0x7b, 0x9d, 0x4e, 0x98, 0x78, 0x5c, 0x09, 0x9b, 0x29, 0xa2, - 0x47, 0x1a, 0x4d, 0xac, 0xe8, 0xba, 0xbc, 0x1d, 0x15, 0x1d, 0x65, 0x40, 0xc0, 0x6c, 0x02, 0xb7, - 0xf1, 0xf0, 0x1e, 0x0a, 0x4c, 0xe9, 0x74, 0x8f, 0x17, 0x67, 0x8b, 0x6c, 0xe3, 0xb7, 0xac, 0x4a, - 0x86, 0x04, 0xb3, 0x89, 0x41, 0x9a, 0x3a, 0x86, 0xdb, 0x1a, 0x7e, 0xd4, 0x39, 0x1d, 0x6e, 0xab, - 0xfd, 0xa8, 0xa6, 0xdb, 0x74, 0xe9, 0x4d, 0x32, 0x6d, 0xcc, 0xdc, 0x30, 0x01, 0x9a, 0x4b, 0x5f, - 0xa0, 0xdb, 0x78, 0x6a, 0x46, 0x86, 0x0a, 0xf0, 0xfc, 0x9f, 0x65, 0x32, 0x9f, 0x71, 0x24, 0x71, - 0x37, 0x60, 0x21, 0xcc, 0x96, 0xec, 0xba, 0x4e, 0xcb, 0x80, 0x41, 0x6c, 0x09, 0x54, 0x2e, 0x20, - 0x81, 0xa4, 0x38, 0xac, 0x0c, 0x14, 0x87, 0x42, 0xea, 0x8c, 0x9d, 0x5c, 0xea, 0xd8, 0x62, 0x7e, - 0xbc, 0x90, 0x98, 0x7f, 0x00, 0x92, 0xca, 0xda, 0x29, 0x26, 0x0b, 0xec, 0x14, 0x1f, 0x95, 0xc8, - 0x9c, 0xcd, 0x42, 0x05, 0x66, 0xfc, 0x61, 0x9d, 0xc0, 0x65, 0x66, 0x51, 0x25, 0x51, 0xd8, 0x6e, - 0xfb, 0x91, 0x08, 0xf9, 0x9a, 0x13, 0x06, 0x92, 0x28, 0x05, 0x03, 0xc3, 0xfd, 0x85, 0x32, 0x59, - 0xd0, 0xf1, 0xbf, 0x22, 0xef, 0xe6, 0xe8, 0x7c, 0xfc, 0xdb, 0x96, 0x8f, 0x3f, 0x2f, 0x9d, 0x66, - 0xaa, 0x5f, 0x03, 0xfd, 0xfd, 0xef, 0xa6, 0xfc, 0xfd, 0xaf, 0x0e, 0x49, 0xf7, 0x78, 0xdf, 0xff, - 0x2f, 0x97, 0xc9, 0xf9, 0x74, 0x95, 0xb5, 0xb6, 0x17, 0x1c, 0x8c, 0x70, 0x9e, 0xbe, 0x6c, 0xcd, - 0xd3, 0xeb, 0xc3, 0x8d, 0x87, 0x75, 0x6e, 0xe0, 0x64, 0x79, 0xa9, 0xc9, 0x7a, 0xf3, 0x24, 0xc4, - 0x8f, 0x9f, 0xb1, 0xff, 0x5c, 0x22, 0x8f, 0x65, 0xd6, 0x3b, 0x0d, 0x5f, 0xe6, 0x97, 0x6c, 0x5f, - 0xe6, 0x2b, 0x27, 0x18, 0xde, 0x00, 0xe7, 0xe6, 0x7f, 0x2b, 0x0f, 0x18, 0x16, 0x73, 0x7b, 0xdd, - 0xa2, 0xfb, 0x68, 0x93, 0xee, 0x36, 0x31, 0x06, 0x39, 0xca, 0xd3, 0xba, 0x8b, 0x6c, 0x23, 0xd4, - 0xc5, 0x74, 0xed, 0x2f, 0xa5, 0x49, 0x68, 0x30, 0x98, 0x14, 0xec, 0x24, 0x57, 0xe5, 0x11, 0x25, - 0xb9, 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, 0x12, - 0xa3, 0x72, 0x3d, 0x2a, 0x9a, 0xee, 0xb7, 0x2a, 0xe4, 0x93, 0xc7, 0xb0, 0x1d, 0xdd, 0x24, 0xac, - 0x23, 0xcc, 0x17, 0xd3, 0x7e, 0xa6, 0xa5, 0xcc, 0xca, 0x96, 0xe3, 0x29, 0xf5, 0xb1, 0xca, 0x1f, - 0xfb, 0x63, 0xfd, 0xbc, 0xe9, 0x15, 0xe4, 0x31, 0x8b, 0x57, 0x4f, 0xbc, 0xb0, 0x1e, 0x9c, 0x9b, - 0xf0, 0x14, 0x3d, 0x18, 0x98, 0x43, 0xf9, 0xe9, 0xcc, 0x41, 0x59, 0x91, 0x12, 0x78, 0xe7, 0x0b, - 0x0b, 0x8d, 0x4b, 0x25, 0xfa, 0xce, 0x97, 0x04, 0x80, 0xc6, 0xb1, 0x02, 0x22, 0xca, 0xb9, 0x01, - 0x11, 0xff, 0xbe, 0x44, 0xce, 0xa5, 0x3b, 0x71, 0x1a, 0x52, 0xa7, 0x61, 0x4b, 0x9d, 0xe5, 0xe1, - 0xbe, 0xfd, 0x00, 0x81, 0xf3, 0xcb, 0xd3, 0xe4, 0x91, 0xbe, 0xcd, 0x8a, 0x4f, 0xe3, 0x4f, 0x96, - 0xc8, 0x99, 0x3d, 0x66, 0x28, 0x18, 0x57, 0x77, 0xc4, 0xc0, 0x72, 0xee, 0x2d, 0x1d, 0x7b, 0xe3, - 0x87, 0x9b, 0x3d, 0x7d, 0x28, 0xd0, 0xdf, 0x98, 0xf3, 0xb3, 0x74, 0xaa, 0xbd, 0x7b, 0x71, 0x5f, - 0x12, 0x77, 0xc1, 0x47, 0x5f, 0xc8, 0xf1, 0xc9, 0xe5, 0xa4, 0x7f, 0x5f, 0x5d, 0xc4, 0xa0, 0xcf, - 0x2c, 0x2c, 0xc8, 0x6c, 0x95, 0x2a, 0x01, 0x3c, 0xdd, 0x17, 0xaa, 0x7d, 0x85, 0x2e, 0x93, 0x65, - 0x5d, 0x24, 0xe0, 0x32, 0x49, 0x42, 0x40, 0x51, 0x74, 0xde, 0x23, 0xd5, 0x3d, 0x79, 0x5b, 0x47, - 0x08, 0xbd, 0x9c, 0x9d, 0x25, 0xf3, 0x72, 0x0f, 0x0f, 0x57, 0x57, 0x20, 0xd0, 0x44, 0x9d, 0x6b, - 0xa4, 0xd2, 0xd9, 0x8d, 0xc5, 0x05, 0xda, 0xbc, 0x80, 0x18, 0x3b, 0xfc, 0x88, 0x5f, 0x09, 0xa4, - 0x85, 0x80, 0x24, 0x90, 0x52, 0xb4, 0xd3, 0x12, 0xce, 0xe8, 0x1c, 0x4a, 0xb0, 0x5a, 0xeb, 0xa7, - 0x44, 0x0b, 0x01, 0x49, 0xb0, 0xc8, 0x3b, 0xbc, 0x78, 0x20, 0x3c, 0xcd, 0x39, 0xb7, 0xab, 0xfb, - 0xae, 0x57, 0xf0, 0xdc, 0x70, 0xac, 0x18, 0x38, 0x21, 0x74, 0x31, 0x37, 0x59, 0x2e, 0x67, 0xe1, - 0x08, 0xc8, 0xcb, 0xf0, 0xdb, 0x97, 0xf7, 0x99, 0x9f, 0x88, 0xf1, 0x72, 0x10, 0xb4, 0x18, 0x55, - 0xbf, 0xbb, 0xbf, 0x1b, 0x0b, 0x43, 0x3f, 0x8f, 0x6a, 0x5f, 0x56, 0x6e, 0x41, 0x95, 0x95, 0x83, - 0xa0, 0xe5, 0xd4, 0x48, 0x79, 0xb7, 0x29, 0x12, 0x32, 0xe6, 0x98, 0xa6, 0xf6, 0xfd, 0xce, 0xd5, - 0x09, 0x0c, 0x85, 0xdb, 0x58, 0x03, 0x5a, 0x9f, 0xea, 0x23, 0x93, 0xbb, 0xfc, 0xca, 0x9e, 0x48, - 0xbe, 0x78, 0x39, 0xef, 0x5a, 0x61, 0xdf, 0xfd, 0x3e, 0x7e, 0x25, 0x41, 0x00, 0x40, 0x92, 0xa3, - 0xfb, 0x30, 0xd9, 0x55, 0x77, 0x10, 0x45, 0xf6, 0xc5, 0xe5, 0xe1, 0xee, 0x2c, 0x0a, 0x33, 0x58, - 0x95, 0x82, 0x41, 0x11, 0x79, 0xde, 0x93, 0xe9, 0xe8, 0x59, 0xe6, 0xc5, 0x5c, 0x9e, 0xcf, 0xcc, - 0x5e, 0xcf, 0x79, 0x5e, 0x81, 0x40, 0x13, 0x75, 0x7a, 0x64, 0xf6, 0x30, 0xee, 0xee, 0xfb, 0x72, - 0xe9, 0xb3, 0x74, 0x8c, 0xd3, 0x57, 0x3e, 0x9f, 0x93, 0x63, 0x53, 0x54, 0x09, 0xa2, 0xa4, 0xe7, - 0xb5, 0xfb, 0x24, 0x18, 0xcb, 0x6b, 0x74, 0xdb, 0x24, 0x0b, 0x76, 0x2b, 0xf8, 0x49, 0xde, 0xef, - 0x85, 0x3b, 0x47, 0x89, 0x2f, 0xd2, 0x35, 0xe6, 0x7c, 0x92, 0xb7, 0x39, 0x72, 0xff, 0x27, 0x11, - 0x00, 0x90, 0xe4, 0xdc, 0xdf, 0x1b, 0xef, 0xdf, 0x7e, 0x98, 0x76, 0xf8, 0x73, 0xfd, 0xa7, 0x86, - 0x6f, 0x0d, 0x6f, 0xfd, 0x3c, 0xc0, 0xf3, 0x43, 0x2a, 0xbd, 0x1f, 0xe9, 0x66, 0xee, 0x2d, 0x42, - 0x7e, 0x0f, 0x6b, 0x44, 0xf1, 0x69, 0x51, 0xa9, 0x39, 0xb3, 0xe1, 0x30, 0xa0, 0xcd, 0xb4, 0x42, - 0x56, 0xf9, 0xd8, 0x0a, 0xd9, 0x1d, 0x3a, 0xdf, 0xa8, 0x43, 0xe8, 0xdc, 0x10, 0x43, 0xa6, 0x53, - 0x60, 0x3b, 0xc1, 0x9a, 0x20, 0x01, 0x8a, 0x18, 0x4e, 0xdc, 0xe3, 0xe9, 0x41, 0x80, 0xcf, 0xc0, - 0x22, 0xa7, 0x28, 0xb7, 0xd4, 0x37, 0xc4, 0x4c, 0x3c, 0x5e, 0x3f, 0x0e, 0xf9, 0xa3, 0x3c, 0x04, - 0x38, 0xbe, 0xb1, 0xd3, 0x54, 0xf0, 0xfe, 0x49, 0x29, 0x43, 0x1d, 0xe1, 0x2a, 0xf9, 0xe7, 0x6d, - 0x95, 0xfc, 0xb9, 0xb4, 0x4a, 0xde, 0x67, 0x40, 0x5b, 0xda, 0x78, 0xf1, 0xbc, 0x7a, 0x45, 0x93, - 0x57, 0xb8, 0xff, 0xbb, 0x44, 0x2a, 0xf5, 0xb0, 0x35, 0x42, 0x13, 0xfd, 0xaa, 0x65, 0xa2, 0x3f, - 0x9b, 0xfb, 0x22, 0xca, 0x40, 0x83, 0xfc, 0x56, 0xca, 0x20, 0xff, 0x4c, 0x3e, 0xa9, 0xe3, 0xcd, - 0xef, 0x6f, 0x57, 0x88, 0xf9, 0xa6, 0x8b, 0xf3, 0xdb, 0x27, 0x09, 0x1e, 0xac, 0x14, 0x7b, 0xe6, - 0x45, 0xb4, 0xc1, 0x42, 0x6d, 0xe4, 0xcd, 0xa2, 0x3f, 0xb1, 0x31, 0x84, 0x77, 0xfc, 0x60, 0x6f, - 0x3f, 0xf1, 0x5b, 0xe9, 0x81, 0x9d, 0x5e, 0x0c, 0xe1, 0x7f, 0x2f, 0x91, 0xf9, 0x54, 0xeb, 0xce, - 0x41, 0xd6, 0xe5, 0x84, 0x93, 0xda, 0xdc, 0x67, 0x72, 0xaf, 0x33, 0x2c, 0x13, 0xa2, 0xfc, 0xc4, - 0xd2, 0x32, 0x66, 0x5a, 0x82, 0x72, 0x24, 0xc7, 0x60, 0x60, 0x60, 0xee, 0x81, 0x24, 0xec, 0x86, - 0xed, 0x70, 0xef, 0xe8, 0xba, 0x2f, 0xef, 0xbe, 0xab, 0x43, 0x80, 0x6d, 0x0d, 0x02, 0x13, 0x0f, - 0xf3, 0x22, 0xa5, 0x9f, 0x04, 0xfa, 0x33, 0x46, 0xfd, 0x93, 0xc3, 0xa8, 0xbf, 0x53, 0x22, 0x0b, - 0xd8, 0x3a, 0x8b, 0x94, 0x90, 0x91, 0x7e, 0x2a, 0x41, 0x75, 0xe9, 0x98, 0x04, 0xd5, 0x78, 0x55, - 0x22, 0x69, 0x85, 0x3d, 0x99, 0x34, 0xc5, 0x90, 0x62, 0x58, 0x0a, 0x02, 0x2a, 0xf0, 0x68, 0x9f, - 0xc4, 0x35, 0x08, 0x13, 0x8f, 0x96, 0x82, 0x80, 0xca, 0xfc, 0xd5, 0x63, 0xd9, 0xf9, 0xab, 0x79, - 0x8e, 0x19, 0x71, 0x42, 0x2f, 0x76, 0x66, 0x23, 0xc7, 0x8c, 0x3c, 0xba, 0xd7, 0x38, 0xee, 0xbf, - 0xa8, 0x90, 0x19, 0x0c, 0x54, 0x53, 0x51, 0xbc, 0xaf, 0x5a, 0x51, 0xbc, 0x4f, 0xa5, 0xa2, 0x78, - 0x17, 0x4c, 0xdc, 0x07, 0x13, 0xc4, 0x2b, 0xb2, 0x11, 0xb1, 0x0c, 0xeb, 0x27, 0x0d, 0xe0, 0xb5, - 0xb2, 0x11, 0x29, 0x4a, 0x60, 0x13, 0xfe, 0x53, 0x15, 0xb8, 0xfb, 0xc7, 0x25, 0x32, 0x47, 0xbf, - 0x05, 0xb2, 0xe8, 0x9f, 0x26, 0x7e, 0x34, 0x73, 0x18, 0x4d, 0x1c, 0x93, 0xc3, 0xe8, 0x57, 0x4a, + 0x44, 0x7b, 0xc7, 0x04, 0x82, 0x8d, 0xeb, 0xfe, 0x6e, 0x95, 0x10, 0xad, 0x22, 0xa0, 0x87, 0x70, + 0xaa, 0xe9, 0x51, 0x05, 0x89, 0x67, 0x74, 0xa9, 0xe4, 0xdf, 0x6f, 0xd1, 0x95, 0x97, 0xd7, 0x44, + 0x45, 0xee, 0xdb, 0x7a, 0x59, 0x32, 0x88, 0x2c, 0xce, 0xf5, 0x67, 0xa9, 0x96, 0x9d, 0x6f, 0x94, + 0xc8, 0xb4, 0xd7, 0xc6, 0x3b, 0xb0, 0x09, 0x1b, 0x51, 0xb9, 0x88, 0xb3, 0xd2, 0xe8, 0xc9, 0x8a, + 0xae, 0xcb, 0x3b, 0xf3, 0x8a, 0x3c, 0xd5, 0x32, 0x20, 0xb9, 0xfd, 0x31, 0xbb, 0xe0, 0xbc, 0x2c, + 0x55, 0x4b, 0xfe, 0x51, 0x96, 0xd2, 0xaa, 0x65, 0x95, 0x89, 0x06, 0x43, 0xab, 0xc4, 0x9b, 0x22, + 0x46, 0x0c, 0xfb, 0x58, 0x91, 0x3b, 0xa6, 0xd6, 0xa6, 0x99, 0x77, 0xdd, 0x1f, 0xcf, 0xa2, 0x74, + 0x44, 0xeb, 0x78, 0x91, 0x0b, 0x9c, 0x86, 0xee, 0x96, 0x13, 0xcd, 0x9a, 0x90, 0xf9, 0x96, 0xbd, + 0x49, 0x88, 0x10, 0xa5, 0xcb, 0xf9, 0x2d, 0xa4, 0x76, 0x17, 0xbd, 0x2d, 0xa4, 0x00, 0x90, 0x6e, + 0x82, 0x8e, 0x88, 0x45, 0x14, 0x6f, 0x76, 0x76, 0x43, 0x11, 0xa5, 0xf4, 0x52, 0x81, 0x6f, 0x7e, + 0x14, 0x53, 0xf1, 0x8c, 0x75, 0xf4, 0x36, 0x70, 0x53, 0x50, 0x01, 0x45, 0x0f, 0xdd, 0x44, 0xec, + 0x76, 0x04, 0xde, 0xa9, 0xad, 0x0c, 0x71, 0x51, 0x84, 0xdd, 0xad, 0xd0, 0x9b, 0x2f, 0xfb, 0x49, + 0xc5, 0x15, 0xa7, 0x45, 0xf5, 0x7a, 0x71, 0xe5, 0x35, 0xde, 0xec, 0xbc, 0x13, 0xfb, 0xec, 0x1e, + 0x6d, 0x75, 0xf5, 0x19, 0x7d, 0x31, 0x96, 0x97, 0x67, 0x66, 0xf4, 0xb1, 0x6a, 0xe2, 0x1e, 0x2c, + 0x7e, 0xcb, 0x44, 0x41, 0x8b, 0xa4, 0x48, 0x47, 0xed, 0xb4, 0x42, 0x7a, 0xb2, 0x6f, 0xdb, 0xc4, + 0x20, 0x4d, 0x7d, 0x29, 0x20, 0xb3, 0xd6, 0x8a, 0x1d, 0xa1, 0xb3, 0xb3, 0x4d, 0x16, 0xd2, 0x4b, + 0x72, 0x84, 0x3e, 0xce, 0x3f, 0x19, 0x23, 0x73, 0x36, 0x63, 0x60, 0x04, 0xc3, 0x01, 0x1d, 0x35, + 0xfd, 0x9e, 0x2a, 0xa1, 0x8a, 0xe2, 0xff, 0x1b, 0x12, 0x00, 0x1a, 0x87, 0xa5, 0x96, 0x61, 0xd5, + 0xdf, 0x79, 0xa7, 0x5f, 0x78, 0x37, 0x14, 0x04, 0x0c, 0x2c, 0x54, 0xd8, 0x76, 0xc2, 0x30, 0x51, + 0x82, 0x5b, 0xf1, 0xcc, 0x2a, 0x2b, 0x05, 0x01, 0x45, 0x81, 0x7d, 0x17, 0x07, 0xd4, 0xb6, 0xfd, + 0x5d, 0x4a, 0x60, 0x5f, 0x37, 0x81, 0x60, 0xe3, 0xe2, 0x06, 0x14, 0xc6, 0x8c, 0x09, 0x85, 0x5a, + 0xa8, 0x63, 0x71, 0x1a, 0xfc, 0xb6, 0x90, 0x84, 0x3b, 0x5f, 0x26, 0x8f, 0xaa, 0xcb, 0x3d, 0xc0, + 0xfd, 0x87, 0xb2, 0xc5, 0x09, 0xcb, 0xb6, 0x7b, 0x74, 0x2d, 0x1b, 0x0d, 0x06, 0xd5, 0xc7, 0x23, + 0x5e, 0xa1, 0xd2, 0x49, 0x8a, 0x93, 0xf6, 0x11, 0xef, 0x75, 0x0b, 0x0a, 0x29, 0x6c, 0xaa, 0x4f, + 0x2c, 0x60, 0x09, 0x53, 0xa5, 0x24, 0x05, 0x7e, 0x49, 0x49, 0xed, 0xcc, 0xd7, 0x53, 0x70, 0xe8, + 0xab, 0x81, 0xae, 0x43, 0xae, 0x5b, 0xa0, 0x05, 0xc3, 0xbe, 0x83, 0x88, 0x2a, 0x54, 0x8b, 0xe0, + 0x96, 0x0d, 0x86, 0x34, 0x3e, 0x9e, 0x91, 0x7b, 0x11, 0xfd, 0xe8, 0x09, 0x55, 0x11, 0x7a, 0x11, + 0xbf, 0xa1, 0x6e, 0x9c, 0x91, 0xaf, 0x18, 0x30, 0xb0, 0x30, 0xdd, 0x0f, 0xc8, 0xd9, 0x8c, 0xe0, + 0x65, 0x64, 0x1c, 0xca, 0xa0, 0x72, 0x4c, 0xa9, 0x68, 0x1c, 0xbc, 0xb1, 0x22, 0x46, 0x63, 0x60, + 0x21, 0x77, 0x32, 0xc7, 0xa9, 0x91, 0xd3, 0x4b, 0x71, 0xe7, 0x86, 0x04, 0x80, 0xc6, 0x71, 0xbf, + 0x45, 0x77, 0x6d, 0xed, 0x66, 0x28, 0x10, 0x83, 0x41, 0x87, 0x29, 0xd3, 0xd4, 0x19, 0x29, 0xb3, + 0xd4, 0x30, 0xaf, 0x1a, 0x30, 0xb0, 0x30, 0xb1, 0x6f, 0x1d, 0xe9, 0x34, 0x49, 0xc7, 0xfe, 0x28, + 0x6f, 0x0a, 0x68, 0x1c, 0xf4, 0xf1, 0xc5, 0x7e, 0x7b, 0x77, 0x2b, 0xe8, 0xdc, 0x15, 0x8c, 0xad, + 0xa4, 0x72, 0x43, 0x94, 0x83, 0xc2, 0x70, 0xde, 0x22, 0x95, 0x5e, 0xd0, 0x12, 0xac, 0xbc, 0x2c, + 0xf5, 0x4e, 0xba, 0x9a, 0xa8, 0xc4, 0x7c, 0x32, 0x3b, 0xf7, 0x1e, 0x9a, 0x91, 0xf1, 0x32, 0x2e, + 0x3e, 0xac, 0x9a, 0xe5, 0x3f, 0x9e, 0x18, 0xd2, 0x7f, 0x4c, 0xbf, 0x99, 0x18, 0xb3, 0xe4, 0xe4, + 0x8a, 0xfe, 0x66, 0x57, 0x15, 0x04, 0x0c, 0x2c, 0x34, 0x46, 0x9b, 0xd4, 0x00, 0x93, 0xd6, 0x1a, + 0x8f, 0xac, 0x9d, 0xfa, 0x18, 0xc6, 0xe8, 0x5a, 0x9a, 0x1a, 0xf4, 0x37, 0xe0, 0x74, 0xc9, 0x99, + 0x16, 0xae, 0x23, 0xab, 0xd5, 0xea, 0x09, 0xe2, 0x79, 0xb1, 0xc5, 0x5a, 0x9a, 0x12, 0xf4, 0x13, + 0x77, 0xbe, 0x4a, 0x96, 0x64, 0x61, 0xff, 0xf5, 0x3d, 0xb6, 0x5c, 0x2a, 0xab, 0x4f, 0x50, 0x6a, + 0x4b, 0xb5, 0x81, 0x58, 0x70, 0x0c, 0x05, 0xe7, 0x5d, 0x32, 0xc1, 0x4e, 0x1c, 0xe2, 0xc5, 0x69, + 0xb6, 0xdb, 0xbd, 0x5a, 0xd4, 0xe1, 0xb6, 0xcc, 0xce, 0x2d, 0x44, 0x40, 0xa2, 0x3e, 0xc5, 0x61, + 0x85, 0x20, 0x68, 0xd2, 0xf9, 0x9a, 0xf6, 0x3a, 0x9d, 0x30, 0xf1, 0xb8, 0x12, 0x36, 0x53, 0x44, + 0x8f, 0x34, 0x9a, 0x58, 0xd1, 0x75, 0x79, 0x3b, 0x2a, 0x3a, 0xca, 0x80, 0x80, 0xd9, 0x04, 0x6e, + 0xe3, 0xe1, 0x3d, 0x14, 0x98, 0xd2, 0xe9, 0x1e, 0x2f, 0xce, 0x16, 0xd9, 0xc6, 0x6f, 0x59, 0x95, + 0x0c, 0x09, 0x66, 0x13, 0x83, 0x34, 0x75, 0x0c, 0xb7, 0x35, 0xfc, 0xa8, 0x73, 0x3a, 0xdc, 0x56, + 0xfb, 0x51, 0x4d, 0xb7, 0xe9, 0xd2, 0x9b, 0x64, 0xda, 0x98, 0xb9, 0x61, 0x02, 0x34, 0x97, 0xbe, + 0x40, 0xb7, 0xf1, 0xd4, 0x8c, 0x0c, 0x15, 0xe0, 0xf9, 0x3f, 0xca, 0x64, 0x3e, 0xe3, 0x48, 0xe2, + 0x6e, 0xc0, 0x42, 0x98, 0x2d, 0xd9, 0x75, 0x9d, 0x96, 0x01, 0x83, 0xd8, 0x12, 0xa8, 0x5c, 0x40, + 0x02, 0x49, 0x71, 0x58, 0x19, 0x28, 0x0e, 0x85, 0xd4, 0x19, 0x3b, 0xb9, 0xd4, 0xb1, 0xc5, 0xfc, + 0x78, 0x21, 0x31, 0xff, 0x00, 0x24, 0x95, 0xb5, 0x53, 0x4c, 0x16, 0xd8, 0x29, 0x3e, 0x2a, 0x91, + 0x39, 0x9b, 0x85, 0x0a, 0xcc, 0xf8, 0xc3, 0x3a, 0x81, 0xcb, 0xcc, 0xa2, 0x4a, 0xa2, 0xb0, 0xdd, + 0xf6, 0x23, 0x11, 0xf2, 0x35, 0x27, 0x0c, 0x24, 0x51, 0x0a, 0x06, 0x86, 0xfb, 0x8b, 0x65, 0xb2, + 0xa0, 0xe3, 0x7f, 0x45, 0xde, 0xcd, 0xd1, 0xf9, 0xf8, 0xb7, 0x2d, 0x1f, 0x7f, 0x5e, 0x3a, 0xcd, + 0x54, 0xbf, 0x06, 0xfa, 0xfb, 0xdf, 0x4d, 0xf9, 0xfb, 0x5f, 0x1d, 0x92, 0xee, 0xf1, 0xbe, 0xff, + 0x5f, 0x29, 0x93, 0xf3, 0xe9, 0x2a, 0x6b, 0x6d, 0x2f, 0x38, 0x18, 0xe1, 0x3c, 0x7d, 0xd9, 0x9a, + 0xa7, 0xd7, 0x87, 0x1b, 0x0f, 0xeb, 0xdc, 0xc0, 0xc9, 0xf2, 0x52, 0x93, 0xf5, 0xe6, 0x49, 0x88, + 0x1f, 0x3f, 0x63, 0xff, 0xa9, 0x44, 0x1e, 0xcb, 0xac, 0x77, 0x1a, 0xbe, 0xcc, 0x2f, 0xd9, 0xbe, + 0xcc, 0x57, 0x4e, 0x30, 0xbc, 0x01, 0xce, 0xcd, 0xff, 0x5a, 0x1e, 0x30, 0x2c, 0xe6, 0xf6, 0xba, + 0x45, 0xf7, 0xd1, 0x26, 0xdd, 0x6d, 0x62, 0x0c, 0x72, 0x94, 0xa7, 0x75, 0x17, 0xd9, 0x46, 0xa8, + 0x8b, 0xe9, 0xda, 0x5f, 0x4a, 0x93, 0xd0, 0x60, 0x30, 0x29, 0xd8, 0x49, 0xae, 0xca, 0x23, 0x4a, + 0x72, 0x45, 0x65, 0xcc, 0xa1, 0x32, 0xb7, 0xd3, 0xde, 0x34, 0xc3, 0x10, 0x37, 0xb0, 0xa8, 0xbe, + 0x83, 0xca, 0x29, 0x8f, 0x75, 0x18, 0xcb, 0x5d, 0x70, 0xd6, 0x07, 0x34, 0x03, 0x27, 0xf8, 0x25, + 0x46, 0xe5, 0x7a, 0x54, 0x34, 0xdd, 0x6f, 0x55, 0xc8, 0x27, 0x8f, 0x61, 0x3b, 0xba, 0x49, 0x58, + 0x47, 0x98, 0x2f, 0xa6, 0xfd, 0x4c, 0x4b, 0x99, 0x95, 0x2d, 0xc7, 0x53, 0xea, 0x63, 0x95, 0x3f, + 0xf6, 0xc7, 0xfa, 0x05, 0xd3, 0x2b, 0xc8, 0x63, 0x16, 0xaf, 0x9e, 0x78, 0x61, 0x3d, 0x38, 0x37, + 0xe1, 0x29, 0x7a, 0x30, 0x30, 0x87, 0xf2, 0xd3, 0x99, 0x83, 0xb2, 0x22, 0x25, 0xf0, 0xce, 0x17, + 0x16, 0x1a, 0x97, 0x4a, 0xf4, 0x9d, 0x2f, 0x09, 0x00, 0x8d, 0x63, 0x05, 0x44, 0x94, 0x73, 0x03, + 0x22, 0xfe, 0x5d, 0x89, 0x9c, 0x4b, 0x77, 0xe2, 0x34, 0xa4, 0x4e, 0xc3, 0x96, 0x3a, 0xcb, 0xc3, + 0x7d, 0xfb, 0x01, 0x02, 0xe7, 0x57, 0xa6, 0xc9, 0x23, 0x7d, 0x9b, 0x15, 0x9f, 0xc6, 0x9f, 0x2c, + 0x91, 0x33, 0x7b, 0xcc, 0x50, 0x30, 0xae, 0xee, 0x88, 0x81, 0xe5, 0xdc, 0x5b, 0x3a, 0xf6, 0xc6, + 0x0f, 0x37, 0x7b, 0xfa, 0x50, 0xa0, 0xbf, 0x31, 0xe7, 0xe7, 0xe8, 0x54, 0x7b, 0xf7, 0xe2, 0xbe, + 0x24, 0xee, 0x82, 0x8f, 0xbe, 0x90, 0xe3, 0x93, 0xcb, 0x49, 0xff, 0xbe, 0xba, 0x88, 0x41, 0x9f, + 0x59, 0x58, 0x90, 0xd9, 0x2a, 0x55, 0x02, 0x78, 0xba, 0x2f, 0x54, 0xfb, 0x0a, 0x5d, 0x26, 0xcb, + 0xba, 0x48, 0xc0, 0x65, 0x92, 0x84, 0x80, 0xa2, 0xe8, 0xbc, 0x47, 0xaa, 0x7b, 0xf2, 0xb6, 0x8e, + 0x10, 0x7a, 0x39, 0x3b, 0x4b, 0xe6, 0xe5, 0x1e, 0x1e, 0xae, 0xae, 0x40, 0xa0, 0x89, 0x3a, 0xd7, + 0x48, 0xa5, 0xb3, 0x1b, 0x8b, 0x0b, 0xb4, 0x79, 0x01, 0x31, 0x76, 0xf8, 0x11, 0xbf, 0x12, 0x48, + 0x0b, 0x01, 0x49, 0x20, 0xa5, 0x68, 0xa7, 0x25, 0x9c, 0xd1, 0x39, 0x94, 0x60, 0xb5, 0xd6, 0x4f, + 0x89, 0x16, 0x02, 0x92, 0x60, 0x91, 0x77, 0x78, 0xf1, 0x40, 0x78, 0x9a, 0x73, 0x6e, 0x57, 0xf7, + 0x5d, 0xaf, 0xe0, 0xb9, 0xe1, 0x58, 0x31, 0x70, 0x42, 0xe8, 0x62, 0x6e, 0xb2, 0x5c, 0xce, 0xc2, + 0x11, 0x90, 0x97, 0xe1, 0xb7, 0x2f, 0xef, 0x33, 0x3f, 0x11, 0xe3, 0xe5, 0x20, 0x68, 0x31, 0xaa, + 0x7e, 0x77, 0x7f, 0x37, 0x16, 0x86, 0x7e, 0x1e, 0xd5, 0xbe, 0xac, 0xdc, 0x82, 0x2a, 0x2b, 0x07, + 0x41, 0xcb, 0xa9, 0x91, 0xf2, 0x6e, 0x53, 0x24, 0x64, 0xcc, 0x31, 0x4d, 0xed, 0xfb, 0x9d, 0xab, + 0x13, 0x18, 0x0a, 0xb7, 0xb1, 0x06, 0xb4, 0x3e, 0xd5, 0x47, 0x26, 0x77, 0xf9, 0x95, 0x3d, 0x91, + 0x7c, 0xf1, 0x72, 0xde, 0xb5, 0xc2, 0xbe, 0xfb, 0x7d, 0xfc, 0x4a, 0x82, 0x00, 0x80, 0x24, 0x47, + 0xf7, 0x61, 0xb2, 0xab, 0xee, 0x20, 0x8a, 0xec, 0x8b, 0xcb, 0xc3, 0xdd, 0x59, 0x14, 0x66, 0xb0, + 0x2a, 0x05, 0x83, 0x22, 0xf2, 0xbc, 0x27, 0xd3, 0xd1, 0xb3, 0xcc, 0x8b, 0xb9, 0x3c, 0x9f, 0x99, + 0xbd, 0x9e, 0xf3, 0xbc, 0x02, 0x81, 0x26, 0xea, 0xf4, 0xc8, 0xec, 0x61, 0xdc, 0xdd, 0xf7, 0xe5, + 0xd2, 0x67, 0xe9, 0x18, 0xa7, 0xaf, 0x7c, 0x3e, 0x27, 0xc7, 0xa6, 0xa8, 0x12, 0x44, 0x49, 0xcf, + 0x6b, 0xf7, 0x49, 0x30, 0x96, 0xd7, 0xe8, 0xb6, 0x49, 0x16, 0xec, 0x56, 0xf0, 0x93, 0xbc, 0xdf, + 0x0b, 0x77, 0x8e, 0x12, 0x5f, 0xa4, 0x6b, 0xcc, 0xf9, 0x24, 0x6f, 0x73, 0xe4, 0xfe, 0x4f, 0x22, + 0x00, 0x20, 0xc9, 0xb9, 0x7f, 0x30, 0xde, 0xbf, 0xfd, 0x30, 0xed, 0xf0, 0xe7, 0xfb, 0x4f, 0x0d, + 0xdf, 0x1a, 0xde, 0xfa, 0x79, 0x80, 0xe7, 0x87, 0x54, 0x7a, 0x3f, 0xd2, 0xcd, 0xdc, 0x5b, 0x84, + 0xfc, 0x1e, 0xd6, 0x88, 0xe2, 0xd3, 0xa2, 0x52, 0x73, 0x66, 0xc3, 0x61, 0x40, 0x9b, 0x69, 0x85, + 0xac, 0xf2, 0xb1, 0x15, 0xb2, 0x3b, 0x74, 0xbe, 0x51, 0x87, 0xd0, 0xb9, 0x21, 0x86, 0x4c, 0xa7, + 0xc0, 0x76, 0x82, 0x35, 0x41, 0x02, 0x14, 0x31, 0x9c, 0xb8, 0xc7, 0xd3, 0x83, 0x00, 0x9f, 0x81, + 0x45, 0x4e, 0x51, 0x6e, 0xa9, 0x6f, 0x88, 0x99, 0x78, 0xbc, 0x7e, 0x1c, 0xf2, 0x47, 0x79, 0x08, + 0x70, 0x7c, 0x63, 0xa7, 0xa9, 0xe0, 0xfd, 0xe3, 0x52, 0x86, 0x3a, 0xc2, 0x55, 0xf2, 0xcf, 0xdb, + 0x2a, 0xf9, 0x73, 0x69, 0x95, 0xbc, 0xcf, 0x80, 0xb6, 0xb4, 0xf1, 0xe2, 0x79, 0xf5, 0x8a, 0x26, + 0xaf, 0x70, 0xff, 0x57, 0x89, 0x54, 0xea, 0x61, 0x6b, 0x84, 0x26, 0xfa, 0x55, 0xcb, 0x44, 0x7f, + 0x36, 0xf7, 0x45, 0x94, 0x81, 0x06, 0xf9, 0xad, 0x94, 0x41, 0xfe, 0x99, 0x7c, 0x52, 0xc7, 0x9b, + 0xdf, 0xdf, 0xae, 0x10, 0xf3, 0x4d, 0x17, 0xe7, 0x77, 0x4e, 0x12, 0x3c, 0x58, 0x29, 0xf6, 0xcc, + 0x8b, 0x68, 0x83, 0x85, 0xda, 0xc8, 0x9b, 0x45, 0x7f, 0x66, 0x63, 0x08, 0xef, 0xf8, 0xc1, 0xde, + 0x7e, 0xe2, 0xb7, 0xd2, 0x03, 0x3b, 0xbd, 0x18, 0xc2, 0xff, 0x56, 0x22, 0xf3, 0xa9, 0xd6, 0x9d, + 0x83, 0xac, 0xcb, 0x09, 0x27, 0xb5, 0xb9, 0xcf, 0xe4, 0x5e, 0x67, 0x58, 0x26, 0x44, 0xf9, 0x89, + 0xa5, 0x65, 0xcc, 0xb4, 0x04, 0xe5, 0x48, 0x8e, 0xc1, 0xc0, 0xc0, 0xdc, 0x03, 0x49, 0xd8, 0x0d, + 0xdb, 0xe1, 0xde, 0xd1, 0x75, 0x5f, 0xde, 0x7d, 0x57, 0x87, 0x00, 0xdb, 0x1a, 0x04, 0x26, 0x1e, + 0xe6, 0x45, 0x4a, 0x3f, 0x09, 0xf4, 0xff, 0x19, 0xf5, 0xcf, 0x0e, 0xa3, 0xfe, 0x5e, 0x89, 0x2c, + 0x60, 0xeb, 0x2c, 0x52, 0x42, 0x46, 0xfa, 0xa9, 0x04, 0xd5, 0xa5, 0x63, 0x12, 0x54, 0xe3, 0x55, + 0x89, 0xa4, 0x15, 0xf6, 0x64, 0xd2, 0x14, 0x43, 0x8a, 0x61, 0x29, 0x08, 0xa8, 0xc0, 0xa3, 0x7d, + 0x12, 0xd7, 0x20, 0x4c, 0x3c, 0x5a, 0x0a, 0x02, 0x2a, 0xf3, 0x57, 0x8f, 0x65, 0xe7, 0xaf, 0xe6, + 0x39, 0x66, 0xc4, 0x09, 0xbd, 0xd8, 0x99, 0x8d, 0x1c, 0x33, 0xf2, 0xe8, 0x5e, 0xe3, 0xb8, 0xff, + 0xbc, 0x42, 0x66, 0x30, 0x50, 0x4d, 0x45, 0xf1, 0xbe, 0x6a, 0x45, 0xf1, 0x3e, 0x95, 0x8a, 0xe2, + 0x5d, 0x30, 0x71, 0x1f, 0x4c, 0x10, 0xaf, 0xc8, 0x46, 0xc4, 0x32, 0xac, 0x9f, 0x34, 0x80, 0xd7, + 0xca, 0x46, 0xa4, 0x28, 0x81, 0x4d, 0xf8, 0x87, 0x2a, 0x70, 0xf7, 0x4f, 0x4b, 0x64, 0x8e, 0x7e, + 0x0b, 0x64, 0xd1, 0x1f, 0x26, 0x7e, 0x34, 0x73, 0x18, 0x4d, 0x1c, 0x93, 0xc3, 0xe8, 0x57, 0x4b, 0x04, 0xe3, 0x2b, 0x4f, 0xc3, 0xd7, 0xb5, 0x61, 0xfb, 0xba, 0x9e, 0xce, 0x15, 0xbe, 0x03, 0xdc, - 0x5b, 0xbf, 0x5e, 0x21, 0xb3, 0xd8, 0xe5, 0x70, 0x4f, 0x7e, 0x30, 0x6b, 0x72, 0x4a, 0x05, 0x26, + 0x5b, 0xbf, 0x51, 0x21, 0xb3, 0xd8, 0xe5, 0x70, 0x4f, 0x7e, 0x30, 0x6b, 0x72, 0x4a, 0x05, 0x26, 0x07, 0xf3, 0x20, 0x84, 0xed, 0x76, 0x78, 0x2f, 0xfd, 0xf1, 0x36, 0x58, 0x29, 0x08, 0x28, 0x3a, 0x11, 0xbb, 0x98, 0xab, 0x25, 0xec, 0xc5, 0xe9, 0x5b, 0x55, 0x75, 0x51, 0x0e, 0x0a, 0x83, 0xae, 0xf8, 0x99, 0x38, 0xa0, 0x36, 0x80, 0x3c, 0xc2, 0x1f, 0x63, 0x47, 0xf8, 0x3c, 0x55, 0x9c, 0x51, @@ -38442,7 +38478,7 @@ var fileDescriptorGenerated = []byte{ 0x07, 0x85, 0x8c, 0x1a, 0xb8, 0xe8, 0x77, 0x63, 0xf6, 0xbf, 0xb8, 0xa7, 0xc9, 0x3d, 0x40, 0x0d, 0x56, 0x04, 0x12, 0xe6, 0xf6, 0xd8, 0x56, 0xc5, 0xf2, 0xc5, 0x63, 0xc0, 0x95, 0xe3, 0x93, 0xd9, 0x2e, 0xdb, 0x8e, 0xe4, 0x01, 0x70, 0xa1, 0xa9, 0x4c, 0xc5, 0x55, 0xf0, 0xbc, 0xd0, 0x26, 0x19, - 0xb0, 0xa9, 0xba, 0xff, 0x91, 0x30, 0x59, 0x23, 0x8e, 0xbd, 0x26, 0x45, 0xd4, 0xa4, 0xd0, 0xc5, + 0xb0, 0xa9, 0xba, 0xff, 0x81, 0x30, 0x59, 0x23, 0x8e, 0xbd, 0x26, 0x45, 0xd4, 0xa4, 0xd0, 0xc5, 0x9e, 0x29, 0xf2, 0x40, 0x8a, 0x96, 0xe3, 0x22, 0x06, 0x13, 0x24, 0x15, 0xe7, 0x2b, 0xfc, 0x04, 0x9b, 0xad, 0xef, 0xe2, 0xaf, 0x16, 0x71, 0x7c, 0x2b, 0x1e, 0x58, 0x90, 0x00, 0x83, 0x9c, 0xb3, 0x45, 0x66, 0x45, 0x52, 0x71, 0x61, 0xab, 0x57, 0x2c, 0x7b, 0x75, 0x16, 0x4c, 0xe0, 0x47, 0xe9, @@ -38464,22 +38500,22 @@ var fileDescriptorGenerated = []byte{ 0x55, 0x35, 0x33, 0xe9, 0x9f, 0x8a, 0x81, 0xdd, 0x4c, 0xd1, 0x84, 0xbe, 0x56, 0xac, 0xcb, 0xe8, 0x0b, 0xb9, 0x09, 0xbd, 0xf1, 0xf5, 0x9a, 0xde, 0x4e, 0x2b, 0x3c, 0xa0, 0x22, 0x83, 0x3d, 0xa0, 0x63, 0xbe, 0x9b, 0x2a, 0x01, 0xa0, 0x71, 0x96, 0xbe, 0x48, 0xce, 0xf4, 0xf1, 0xf4, 0x50, 0x31, - 0x5f, 0x3f, 0x37, 0x46, 0xaa, 0xca, 0xab, 0x43, 0xdb, 0xb7, 0x5c, 0x69, 0x8f, 0xa5, 0x5d, 0x69, + 0x5f, 0x3f, 0x3f, 0x46, 0xaa, 0xca, 0xab, 0x43, 0xdb, 0xb7, 0x5c, 0x69, 0x8f, 0xa5, 0x5d, 0x69, 0x53, 0xb8, 0xf3, 0x9a, 0xde, 0xb3, 0xaf, 0x66, 0x3c, 0x9c, 0x78, 0x21, 0xf7, 0x23, 0x16, 0xbf, 0x43, 0x31, 0xc4, 0xb3, 0x92, 0x5a, 0xad, 0x1f, 0x3b, 0x56, 0xad, 0x2f, 0xf8, 0x2e, 0x0e, 0x2a, 0xf0, 0x74, 0xe7, 0xa1, 0x68, 0xa9, 0x37, 0x1f, 0xea, 0x58, 0x08, 0x1c, 0xc6, 0xf4, 0x2e, 0x14, 0xca, 0x4c, 0xef, 0x9a, 0x3c, 0xa9, 0xde, 0x25, 0x29, 0x80, 0x26, 0x86, 0xf9, 0xca, 0x9b, 0xf6, 0x1b, 0x1e, 0xea, 0x6a, 0xc4, 0xc5, 0x21, 0xde, 0xd0, 0xe8, 0x19, 0xf9, 0xca, 0xd7, 0xd2, 0xf4, 0xa0, 0xbf, 0x09, 0xbc, 0xc7, 0x3e, 0xaf, 0x18, 0x82, 0xee, 0x40, 0x98, 0x11, 0x68, 0x74, 0x8e, - 0xcc, 0x5b, 0x96, 0xa5, 0xfa, 0x00, 0xfc, 0x8f, 0xbf, 0x55, 0x62, 0xfe, 0xc7, 0x6d, 0xff, 0xa0, + 0xcc, 0x5b, 0x96, 0xa5, 0xfa, 0x00, 0xfc, 0x8f, 0xbf, 0x5d, 0x62, 0xfe, 0xc7, 0x6d, 0xff, 0xa0, 0xdb, 0xc6, 0x87, 0x41, 0x46, 0xd7, 0xf5, 0xaf, 0x90, 0xa9, 0x44, 0xb4, 0x52, 0x2c, 0x67, 0xb2, - 0xd1, 0x2d, 0xe6, 0x8f, 0x55, 0x82, 0x40, 0x96, 0x82, 0x22, 0xe8, 0xfe, 0x6b, 0xfe, 0x15, 0x24, + 0xd1, 0x2d, 0xe6, 0x8f, 0x55, 0x82, 0x40, 0x96, 0x82, 0x22, 0xe8, 0xfe, 0x2b, 0xfe, 0x15, 0x24, 0xe4, 0x34, 0x2c, 0xab, 0x9b, 0xb6, 0x65, 0xf5, 0x42, 0xe1, 0xc1, 0x0c, 0xb0, 0xb0, 0xbe, 0x65, 0x0f, 0x81, 0x29, 0x6c, 0x0f, 0xbf, 0x47, 0xdc, 0xbd, 0x41, 0xec, 0x77, 0x49, 0xa8, 0xba, 0xc2, - 0x62, 0x29, 0xb9, 0x44, 0xbc, 0x30, 0x64, 0x1c, 0xa5, 0xfb, 0x6b, 0x65, 0x72, 0x2e, 0xeb, 0x69, + 0x62, 0x29, 0xb9, 0x44, 0xbc, 0x30, 0x64, 0x1c, 0xa5, 0xfb, 0xeb, 0x65, 0x72, 0x2e, 0xeb, 0x69, 0x6e, 0xa7, 0x45, 0x66, 0xba, 0x86, 0xfa, 0x5c, 0xec, 0xca, 0xbc, 0xa9, 0x70, 0x6b, 0xd5, 0xc5, 0x2c, 0x05, 0x8b, 0x2a, 0x66, 0x2a, 0xc7, 0x87, 0xc6, 0x95, 0x7b, 0xa5, 0x3c, 0xbc, 0x88, 0x52, - 0xcd, 0xac, 0x1b, 0x84, 0xc0, 0x22, 0x3b, 0x82, 0xb4, 0xde, 0xee, 0x3f, 0x2c, 0x91, 0x47, 0x07, + 0xcd, 0xac, 0x1b, 0x84, 0xc0, 0x22, 0x3b, 0x82, 0xb4, 0xde, 0xee, 0x3f, 0x28, 0x91, 0x47, 0x07, 0xdc, 0xab, 0xc7, 0xe6, 0xee, 0x31, 0x2f, 0xa4, 0x78, 0xf7, 0x46, 0x35, 0xc7, 0x7d, 0x93, 0x20, 0xa0, 0xce, 0x0e, 0x5e, 0xd7, 0x54, 0x8f, 0x81, 0x96, 0x8b, 0x1c, 0x52, 0xf7, 0xdd, 0xe1, 0x35, 0xae, 0x77, 0xaa, 0xe7, 0x3f, 0x0d, 0xaa, 0xee, 0x37, 0x2b, 0x64, 0x9c, 0xbf, 0x47, 0x58, 0xa7, @@ -38490,7 +38526,7 @@ var fileDescriptorGenerated = []byte{ 0xec, 0x6c, 0xb3, 0xc2, 0xc6, 0xc5, 0x2b, 0x45, 0x71, 0x8f, 0x9d, 0x91, 0x6e, 0xef, 0x53, 0x4b, 0x66, 0x3f, 0x6c, 0xb7, 0xc4, 0x03, 0x4c, 0x4a, 0x9d, 0x6a, 0xa4, 0xe0, 0xd0, 0x57, 0x03, 0xa9, 0xec, 0x7a, 0x41, 0x9b, 0xb2, 0xb6, 0xa6, 0x32, 0x61, 0x53, 0xd9, 0x48, 0xc1, 0xa1, 0xaf, 0x86, - 0xfb, 0x07, 0x25, 0x72, 0x36, 0xe3, 0x5c, 0x9d, 0x87, 0x7b, 0xed, 0x51, 0xd1, 0xa8, 0x12, 0xf5, + 0xfb, 0x47, 0x25, 0x72, 0x36, 0xe3, 0x5c, 0x9d, 0x87, 0x7b, 0xed, 0x51, 0xd1, 0xa8, 0x12, 0xf5, 0x1a, 0xe1, 0x5e, 0xbc, 0x1c, 0x14, 0x06, 0x72, 0x21, 0xb7, 0x1b, 0xd3, 0x79, 0x87, 0xc5, 0x51, 0xa9, 0x80, 0x0e, 0x97, 0x55, 0x47, 0x3d, 0xab, 0x3e, 0x36, 0xf0, 0x59, 0x75, 0xaa, 0x98, 0xec, 0x29, 0xeb, 0xdc, 0x50, 0x4c, 0xb8, 0x7d, 0xce, 0x61, 0x98, 0x44, 0x7b, 0x3e, 0x15, 0x5f, 0x83, @@ -38499,7 +38535,7 @@ var fileDescriptorGenerated = []byte{ 0x2b, 0x86, 0x8a, 0xe9, 0x29, 0xb9, 0x3a, 0x2d, 0x06, 0x06, 0x74, 0x9e, 0x15, 0xa3, 0x4f, 0x39, 0x27, 0xc1, 0x6b, 0x85, 0xb1, 0x31, 0x05, 0x54, 0x8e, 0x50, 0xb5, 0x16, 0x4f, 0x05, 0xd2, 0xae, 0xd9, 0xeb, 0xbc, 0x18, 0x24, 0xdc, 0x4e, 0xf4, 0x3d, 0x39, 0xe2, 0x44, 0xdf, 0x53, 0xb9, 0x31, - 0x82, 0xbf, 0x44, 0x77, 0x45, 0x96, 0xdd, 0x4c, 0x5c, 0xb8, 0x44, 0x27, 0xff, 0xe8, 0x76, 0x45, + 0x82, 0xbf, 0x4c, 0x77, 0x45, 0x96, 0xdd, 0x4c, 0x5c, 0xb8, 0x44, 0x27, 0xff, 0xe8, 0x76, 0x45, 0x7c, 0x16, 0x0d, 0x1b, 0x4b, 0xe7, 0xf6, 0x65, 0x3d, 0x00, 0x0e, 0xc3, 0x5c, 0xa9, 0xac, 0x69, 0xfc, 0x7c, 0x33, 0x3c, 0x57, 0xaa, 0x7e, 0x2c, 0x9b, 0x45, 0xa0, 0x83, 0xdf, 0xa5, 0xb6, 0x37, 0xeb, 0xac, 0xf6, 0xc4, 0x3c, 0x2c, 0x11, 0xe8, 0x99, 0x9d, 0x7b, 0x50, 0x11, 0xe8, 0xd9, 0xc4, @@ -38507,22 +38543,22 @@ var fileDescriptorGenerated = []byte{ 0x1e, 0x30, 0x2c, 0xa6, 0xd9, 0x3d, 0x8f, 0xab, 0x80, 0x01, 0x63, 0xb1, 0x29, 0xcf, 0xf0, 0x15, 0xc0, 0xcb, 0x40, 0x41, 0x9d, 0xd8, 0x88, 0xe0, 0xe6, 0x9d, 0x5c, 0x3f, 0xe1, 0x07, 0x5e, 0xb6, 0x5d, 0x39, 0xe6, 0x3d, 0xc6, 0x54, 0x58, 0x37, 0x46, 0xe4, 0x28, 0x65, 0xbd, 0x72, 0x12, 0x65, - 0x7d, 0x26, 0x5b, 0x51, 0x5f, 0xa2, 0x7b, 0xe2, 0xc9, 0x8d, 0xef, 0xff, 0x51, 0x22, 0x9f, 0x3c, + 0x7d, 0x26, 0x5b, 0x51, 0x5f, 0xa2, 0x7b, 0xe2, 0xc9, 0x8d, 0xef, 0xff, 0x5e, 0x22, 0x9f, 0x3c, 0x86, 0xc3, 0xb8, 0x68, 0xb1, 0x26, 0xd5, 0x10, 0x2d, 0x7d, 0x13, 0x5b, 0x27, 0xe7, 0x76, 0x7b, 0xed, 0xf6, 0x11, 0x3b, 0x61, 0xf7, 0x5b, 0x12, 0x43, 0xa8, 0x0b, 0xea, 0x29, 0xc5, 0x8d, 0x0c, 0x1c, 0xc8, 0xac, 0x89, 0x8e, 0xaf, 0x70, 0x87, 0x65, 0x8f, 0x6b, 0xe9, 0x6b, 0x96, 0x6c, 0xfe, - 0x2a, 0xda, 0xf1, 0x75, 0xab, 0x0f, 0x03, 0x32, 0x6a, 0xb9, 0xbf, 0x5f, 0x42, 0x39, 0x92, 0xf1, + 0x2a, 0xda, 0xf1, 0x75, 0xab, 0x0f, 0x03, 0x32, 0x6a, 0xb9, 0x7f, 0x58, 0x42, 0x39, 0x92, 0xf1, 0xd0, 0x8f, 0xf5, 0x3e, 0xae, 0x11, 0x99, 0xdd, 0xff, 0x3e, 0x2e, 0x73, 0x69, 0xd9, 0xb8, 0x7c, 0x8a, 0x62, 0x1d, 0x3b, 0x66, 0x6d, 0xd9, 0xe2, 0x46, 0x82, 0xc2, 0xc0, 0x37, 0xad, 0x5a, 0xc1, 0x61, 0x10, 0x87, 0x51, 0x81, 0xe7, 0x28, 0xfb, 0xe2, 0x91, 0xf4, 0x2e, 0x53, 0xe3, 0x44, 0x40, - 0x52, 0x73, 0xff, 0x66, 0x99, 0xcc, 0xca, 0xf6, 0xa8, 0x66, 0xc1, 0x16, 0xe2, 0xa8, 0xa4, 0xe3, + 0x52, 0x73, 0xff, 0x46, 0x99, 0xcc, 0xca, 0xf6, 0xa8, 0x66, 0xc1, 0x16, 0xe2, 0xa8, 0xa4, 0xe3, 0xdb, 0x96, 0x74, 0xbc, 0x54, 0xec, 0x5a, 0x06, 0xeb, 0xd4, 0x40, 0xa9, 0xf8, 0xe5, 0x94, 0x54, 0xbc, 0x3c, 0x0c, 0xd1, 0x5c, 0x83, 0xfc, 0x8c, 0x85, 0xff, 0x10, 0x65, 0xed, 0xcc, 0x1a, 0xce, 0x00, 0xe9, 0xf7, 0xcd, 0x72, 0x6a, 0x18, 0x4c, 0xea, 0x7d, 0x9d, 0x8c, 0xed, 0x7b, 0x51, 0x4b, 0x9c, 0x3e, 0xbc, 0x39, 0xe4, 0xa7, 0xa0, 0x16, 0x40, 0xd4, 0xe2, 0xb2, 0xeb, 0x25, 0xf5, 0xbc, 0x00, 0x2d, 0xca, 0x8d, 0xa4, 0x64, 0x8d, 0x3a, 0x6f, 0xe0, 0xf3, 0x03, 0x61, 0x57, 0x05, 0xca, 0x3c, 0xc5, 0x9f, 0x1e, 0xc0, 0x12, 0x4a, 0xc1, 0xb1, 0x9b, 0xc3, 0x62, 0x10, 0xf8, 0x4b, 0x3e, - 0xa9, 0xaa, 0xa6, 0x47, 0x18, 0xb3, 0xf7, 0xc3, 0x0a, 0x39, 0x9b, 0xc1, 0x2a, 0xce, 0x4f, 0x58, + 0xa9, 0xaa, 0xa6, 0x47, 0x18, 0xb3, 0xf7, 0x83, 0x0a, 0x39, 0x9b, 0xc1, 0x2a, 0xce, 0x4f, 0x58, 0xb3, 0xf6, 0xb9, 0xa1, 0x79, 0xed, 0x63, 0xce, 0xdb, 0x4f, 0x30, 0x1d, 0xb3, 0x25, 0x78, 0xe3, 0x04, 0xcd, 0x53, 0x45, 0x34, 0xdd, 0x3c, 0x16, 0xe5, 0x37, 0x8f, 0xcd, 0x9e, 0xd2, 0xe4, 0x63, 0x33, 0xaa, 0x9f, 0x23, 0xfc, 0xc6, 0x3f, 0x3d, 0x46, 0xce, 0x65, 0x5d, 0xfd, 0x72, 0x7e, 0xa6, @@ -38530,7 +38566,7 @@ var fileDescriptorGenerated = []byte{ 0x09, 0x38, 0x77, 0xb6, 0x45, 0xeb, 0x2c, 0xfa, 0x39, 0xe2, 0x29, 0x9c, 0xa5, 0x3c, 0x78, 0xeb, 0x04, 0x5d, 0x11, 0x59, 0xa0, 0xe3, 0x54, 0xf4, 0xb3, 0x2c, 0xce, 0x8f, 0x7e, 0x96, 0x7d, 0x58, 0xda, 0xc3, 0xfc, 0xbf, 0x6a, 0x5c, 0x23, 0x64, 0x81, 0x00, 0xf7, 0x24, 0xa3, 0xd7, 0x23, 0x64, - 0x83, 0xbf, 0x5d, 0x22, 0xa9, 0x13, 0x70, 0x65, 0xc8, 0x96, 0x06, 0x1a, 0xb2, 0x14, 0x83, 0xaa, + 0x83, 0xbf, 0x55, 0x22, 0xa9, 0x13, 0x70, 0x65, 0xc8, 0x96, 0x06, 0x1a, 0xb2, 0x14, 0x83, 0xaa, 0x3b, 0x7e, 0x3a, 0x21, 0x2d, 0xd0, 0x32, 0x60, 0x10, 0xf5, 0x18, 0x59, 0x65, 0xd0, 0x63, 0x64, 0x68, 0xe1, 0xb4, 0xfd, 0x43, 0x5f, 0x9a, 0x95, 0x4a, 0x78, 0x6f, 0x61, 0x21, 0x70, 0x98, 0xfb, 0xdd, 0x0a, 0x99, 0xe0, 0xb6, 0xdb, 0x08, 0xb7, 0xe5, 0xba, 0x30, 0xa3, 0x0a, 0x5d, 0xc2, 0xe2, @@ -38541,9 +38577,9 @@ var fileDescriptorGenerated = []byte{ 0xb5, 0x35, 0x94, 0xc2, 0xfc, 0x1d, 0xaa, 0x4c, 0xf4, 0xbd, 0xa3, 0x88, 0x59, 0xd1, 0xce, 0xb5, 0x33, 0x8c, 0x76, 0xf1, 0x81, 0x4f, 0x62, 0xee, 0xeb, 0x87, 0xc7, 0x33, 0xa0, 0x90, 0xd9, 0x9a, 0xcc, 0xd1, 0x57, 0xce, 0xce, 0xd1, 0xc7, 0x1e, 0xf1, 0xe0, 0x7d, 0x3f, 0x0d, 0x0d, 0x68, 0xd3, - 0xd6, 0x80, 0x9e, 0x29, 0xc2, 0x06, 0x03, 0x54, 0x9f, 0x7f, 0x57, 0x22, 0x0e, 0x47, 0x48, 0xbf, + 0xd6, 0x80, 0x9e, 0x29, 0xc2, 0x06, 0x03, 0x54, 0x9f, 0x7f, 0x5b, 0x22, 0x0e, 0x47, 0x48, 0xbf, 0x6b, 0xc5, 0x9d, 0x20, 0x86, 0xce, 0xae, 0xf9, 0x46, 0x41, 0xc0, 0xc0, 0x1a, 0x32, 0x67, 0xb1, - 0x7a, 0x0f, 0xa6, 0xd8, 0xe3, 0xd1, 0x95, 0x02, 0x8f, 0x47, 0xff, 0x56, 0x85, 0xa4, 0x4f, 0x8b, + 0x7a, 0x0f, 0xa6, 0xd8, 0xe3, 0xd1, 0x95, 0x02, 0x8f, 0x47, 0xff, 0x76, 0x85, 0xa4, 0x4f, 0x8b, 0x9d, 0xf7, 0xc8, 0x0c, 0xde, 0x4c, 0xd9, 0x09, 0xda, 0x41, 0x12, 0xf8, 0x71, 0x31, 0x4f, 0xfc, 0x9a, 0x51, 0x43, 0xb8, 0xd1, 0x8c, 0x12, 0xb0, 0x28, 0x62, 0x88, 0x53, 0x37, 0xa2, 0x96, 0x42, 0xdb, 0xdf, 0x63, 0x7a, 0x87, 0x4a, 0x8c, 0x50, 0x57, 0xa5, 0x60, 0x60, 0x64, 0x84, 0x25, 0x55, @@ -38553,58 +38589,59 @@ var fileDescriptorGenerated = []byte{ 0x57, 0xf1, 0xd6, 0xba, 0xbd, 0xf8, 0x87, 0xbc, 0x78, 0x63, 0x5c, 0x58, 0x97, 0x8b, 0x5d, 0x93, 0x74, 0xff, 0x52, 0x99, 0x4c, 0x8a, 0xa8, 0x8c, 0x11, 0x6e, 0x24, 0xd7, 0x2d, 0xfb, 0xee, 0x85, 0xbc, 0x95, 0xcb, 0xba, 0x33, 0xd0, 0xb2, 0x6b, 0xa4, 0x2c, 0xbb, 0x17, 0x8b, 0x91, 0x3b, 0xde, - 0xa6, 0xfb, 0xcd, 0x32, 0xdd, 0xed, 0xed, 0x68, 0x94, 0xd1, 0x4d, 0xc7, 0x97, 0xc8, 0x64, 0x2c, + 0xa6, 0xfb, 0xad, 0x32, 0xdd, 0xed, 0xed, 0x68, 0x94, 0xd1, 0x4d, 0xc7, 0x97, 0xc8, 0x64, 0x2c, 0x42, 0x36, 0x0a, 0x3d, 0xd7, 0x9d, 0xfe, 0xa4, 0xfa, 0x21, 0x6a, 0x11, 0xa4, 0x21, 0xc9, 0x65, 0x46, 0x85, 0x54, 0x4e, 0x23, 0x2a, 0xc4, 0xfd, 0x2e, 0x13, 0xa9, 0xe6, 0x04, 0x9e, 0xc6, 0x9e, 0xf0, 0xb6, 0x2d, 0x7d, 0x5f, 0x2a, 0xc4, 0x0a, 0xa2, 0x7f, 0x03, 0xf6, 0x86, 0x6f, 0x97, 0xc8, 0xb4, 0x40, 0x3c, 0x8d, 0x11, 0xfc, 0xa8, 0x3d, 0x82, 0x67, 0x0b, 0x8d, 0x60, 0x40, 0xd7, 0xff, - 0x6e, 0x59, 0x75, 0xbd, 0xe0, 0x8b, 0xf8, 0xe6, 0x7b, 0xf7, 0xe5, 0x61, 0xde, 0xbb, 0x57, 0x6f, + 0x4e, 0x59, 0x75, 0xbd, 0xe0, 0x8b, 0xf8, 0xe6, 0x7b, 0xf7, 0xe5, 0x61, 0xde, 0xbb, 0x57, 0x6f, 0xe9, 0x57, 0x06, 0xbe, 0xa5, 0xbf, 0x23, 0x5f, 0x65, 0xc5, 0x32, 0x11, 0x05, 0x3f, 0xec, 0x2b, 0x86, 0x3a, 0x2c, 0x57, 0x51, 0x02, 0x83, 0xaa, 0x8c, 0x18, 0x63, 0x2d, 0x8c, 0xdb, 0xee, 0xc4, - 0x9b, 0xa2, 0x1c, 0x14, 0x86, 0xfb, 0x3a, 0x93, 0xb1, 0x6c, 0x7a, 0x86, 0x8b, 0xb5, 0xfd, 0xfe, - 0xb8, 0x9a, 0x58, 0xe6, 0x24, 0xb9, 0x29, 0x5f, 0xc0, 0x2f, 0x15, 0x09, 0x2c, 0x30, 0x3e, 0x49, - 0xf6, 0x03, 0xf8, 0x8e, 0xdf, 0xe7, 0x40, 0x7e, 0xbd, 0xb0, 0x8c, 0x1c, 0xc2, 0x65, 0xcc, 0x92, - 0x45, 0xb0, 0x0b, 0xf2, 0x9b, 0xf5, 0x74, 0x66, 0xbd, 0x35, 0x09, 0x00, 0x8d, 0x43, 0x2b, 0x70, - 0x75, 0xdd, 0x7e, 0x0c, 0x52, 0xaa, 0xeb, 0x72, 0x4a, 0x0c, 0x7d, 0x9d, 0xea, 0x2f, 0x2a, 0xb7, - 0x70, 0x9d, 0xa7, 0x88, 0xad, 0x72, 0xfd, 0x65, 0x5d, 0x17, 0x83, 0x89, 0x43, 0xd5, 0xba, 0xb3, - 0x2d, 0x15, 0x20, 0x58, 0xef, 0xed, 0xb4, 0x83, 0x26, 0x56, 0xe5, 0xc1, 0xf9, 0x8f, 0xe2, 0x69, - 0x70, 0xad, 0x1f, 0x0c, 0x59, 0x75, 0x9c, 0x6d, 0x0c, 0xc2, 0x63, 0x39, 0x94, 0xe5, 0x35, 0x1e, - 0x91, 0xb1, 0xea, 0x82, 0x4c, 0x77, 0xd5, 0xb0, 0xc1, 0x1f, 0xb1, 0x22, 0x2e, 0x14, 0x44, 0x11, - 0xa4, 0x49, 0xe0, 0x19, 0x73, 0xdb, 0x7c, 0x0b, 0xa5, 0x2e, 0xe2, 0x24, 0xd5, 0x19, 0xb3, 0xf5, - 0x52, 0x4a, 0x1d, 0x52, 0xd8, 0x54, 0xda, 0x2f, 0x9a, 0x25, 0xe2, 0xe6, 0x2e, 0x9e, 0x53, 0xc5, - 0x22, 0x79, 0xeb, 0xa7, 0x30, 0x4a, 0x72, 0x6b, 0x00, 0x0e, 0x0c, 0xac, 0xfd, 0xf1, 0x3c, 0xf5, - 0x5f, 0xc7, 0xca, 0xc6, 0xd6, 0xe8, 0x7c, 0x8d, 0xcc, 0x98, 0x2d, 0x09, 0x61, 0xf7, 0x72, 0xf1, - 0x57, 0x62, 0xc4, 0x16, 0xab, 0xa2, 0x2b, 0x4c, 0x18, 0x58, 0xb4, 0xdd, 0x26, 0x99, 0x4f, 0xbd, - 0x52, 0xa9, 0x9e, 0x3b, 0x2d, 0x3d, 0xa8, 0xe7, 0x4e, 0x31, 0x83, 0xca, 0xf8, 0xb6, 0x17, 0xe4, - 0xe7, 0x1a, 0x2f, 0xf2, 0x5e, 0xa8, 0xf3, 0x1a, 0x99, 0xf0, 0x77, 0x77, 0xf1, 0x39, 0x79, 0xbe, - 0x72, 0x1e, 0x57, 0x8f, 0x58, 0xb3, 0x52, 0x5c, 0x0f, 0xac, 0x31, 0xfe, 0x13, 0x04, 0xb2, 0xfb, - 0x1f, 0xa8, 0x8d, 0xb4, 0x4d, 0x0d, 0x7f, 0x91, 0xc4, 0x31, 0xa7, 0x27, 0xab, 0x7d, 0x59, 0xcf, - 0x9f, 0xcb, 0xc8, 0x7a, 0xee, 0x68, 0x82, 0x19, 0x39, 0xcf, 0xd5, 0x68, 0x2a, 0x85, 0x46, 0x33, - 0x36, 0xcc, 0x68, 0xbe, 0x51, 0x22, 0x22, 0x16, 0xa0, 0xc0, 0xe6, 0xd2, 0x92, 0x99, 0x8a, 0xad, - 0x8b, 0xf0, 0x17, 0x8a, 0x04, 0xb4, 0x8b, 0xeb, 0xef, 0x8a, 0x95, 0xac, 0x4b, 0xef, 0x16, 0x55, - 0x34, 0xa0, 0xa7, 0x39, 0xf8, 0x86, 0x7c, 0xed, 0x3d, 0xa7, 0x5f, 0x43, 0xa5, 0xc0, 0x61, 0x89, - 0x7c, 0x91, 0xb0, 0xca, 0x84, 0x62, 0x26, 0xf2, 0x95, 0x00, 0xd0, 0x38, 0x78, 0x92, 0x1f, 0xf7, - 0x76, 0x18, 0x7a, 0x2a, 0x30, 0xa0, 0xc1, 0x8b, 0x41, 0xc2, 0xdd, 0xbf, 0xbe, 0x40, 0xac, 0xa1, - 0x59, 0x59, 0x57, 0x4a, 0x0f, 0x3c, 0xeb, 0x0a, 0xa5, 0xee, 0x1f, 0x74, 0x93, 0xa3, 0x5a, 0x10, - 0x15, 0xcb, 0x80, 0xb5, 0x2e, 0xb0, 0xfb, 0xa9, 0x4b, 0x08, 0x28, 0x8a, 0x03, 0x72, 0xe8, 0x54, - 0x1e, 0x8a, 0x1c, 0x3a, 0x63, 0xff, 0x5f, 0x72, 0xe8, 0x50, 0x3d, 0x7f, 0x8f, 0x3f, 0x9f, 0x2d, - 0x2e, 0x30, 0xe5, 0x1c, 0x42, 0x65, 0xbc, 0xb5, 0xcd, 0x6f, 0xaa, 0x08, 0x00, 0x48, 0x72, 0x98, - 0xa1, 0x85, 0xab, 0xfc, 0x22, 0x2d, 0xcd, 0xcb, 0x45, 0x9c, 0x21, 0xfd, 0x19, 0x5a, 0x44, 0xf4, - 0x87, 0xa0, 0x25, 0x73, 0xe6, 0x4c, 0x7e, 0xfc, 0x9c, 0x39, 0x2a, 0xd3, 0xcd, 0xd4, 0x83, 0xca, - 0x74, 0x63, 0x65, 0x0c, 0xaa, 0x8e, 0x22, 0x63, 0x10, 0x95, 0x6d, 0xe7, 0xbb, 0x59, 0x09, 0xb7, - 0x44, 0xce, 0x9a, 0x2f, 0x9e, 0x20, 0x01, 0x99, 0xd5, 0x34, 0xbb, 0x57, 0x92, 0x89, 0x06, 0xd9, - 0x0d, 0xcb, 0xd4, 0x43, 0xd3, 0x1f, 0x3f, 0xf5, 0xd0, 0xa8, 0x93, 0xdb, 0xe8, 0x44, 0x44, 0xb3, - 0x23, 0x49, 0x44, 0x34, 0xf7, 0x00, 0x13, 0x11, 0x19, 0x29, 0x84, 0xe6, 0x1f, 0x6c, 0x0a, 0xa1, - 0x7d, 0x32, 0xdd, 0x0a, 0xef, 0x75, 0xee, 0x79, 0x51, 0x6b, 0xa5, 0xbe, 0xc9, 0x6e, 0x47, 0xe4, - 0x5e, 0x3e, 0xaf, 0xe9, 0x0a, 0x56, 0x0b, 0xdc, 0xeb, 0xa7, 0x81, 0x60, 0x92, 0x16, 0xc9, 0x94, - 0xce, 0x7c, 0xcc, 0x64, 0x4a, 0x56, 0x4a, 0x22, 0x67, 0x14, 0x29, 0x89, 0xde, 0x63, 0x57, 0x50, - 0x77, 0x83, 0xbd, 0x1b, 0x5e, 0x77, 0xf1, 0x6c, 0x91, 0x16, 0xd6, 0x24, 0x7a, 0x7f, 0x0b, 0x0a, - 0x04, 0x9a, 0x68, 0x7f, 0xd2, 0xa3, 0x73, 0xa7, 0x9d, 0xf4, 0xe8, 0xfc, 0x83, 0x4d, 0x7a, 0xf4, - 0x17, 0xc8, 0x13, 0xc7, 0xf7, 0x4e, 0x67, 0x99, 0xac, 0x6b, 0xb3, 0x35, 0x95, 0x65, 0x92, 0xed, - 0xfc, 0x06, 0x96, 0x11, 0xd3, 0x58, 0x3e, 0x2e, 0xa6, 0xd1, 0xfd, 0xe7, 0x25, 0xf2, 0xe8, 0x80, - 0x7c, 0x08, 0x85, 0x83, 0x94, 0xbb, 0x64, 0xbe, 0x6b, 0x57, 0x2d, 0x7c, 0x9d, 0xc0, 0xca, 0xbf, - 0xa0, 0xb2, 0x14, 0xa7, 0x00, 0x90, 0x26, 0xbf, 0xfa, 0xcc, 0xf7, 0x7e, 0xf8, 0xc4, 0x27, 0x3e, - 0xa4, 0x7f, 0xbf, 0x4b, 0xff, 0x7e, 0xf2, 0x0f, 0x9f, 0x28, 0x7d, 0x8f, 0xfe, 0x7d, 0x48, 0xff, - 0xfe, 0x80, 0xfe, 0x7d, 0xe3, 0x8f, 0x9e, 0xf8, 0xc4, 0x8f, 0x95, 0x0f, 0x2f, 0xff, 0xbf, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x9f, 0xc1, 0xf6, 0x8b, 0x70, 0xae, 0x00, 0x00, + 0x9b, 0xa2, 0x1c, 0x14, 0x86, 0xfb, 0x3a, 0x93, 0xb1, 0x6c, 0x7a, 0x86, 0x8b, 0xb5, 0xfd, 0xd9, + 0x09, 0x35, 0xb1, 0xcc, 0x49, 0x72, 0x53, 0xbe, 0x80, 0x5f, 0x2a, 0x12, 0x58, 0x60, 0x7c, 0x92, + 0xec, 0x07, 0xf0, 0x1d, 0xbf, 0xcf, 0x81, 0xfc, 0x7a, 0x61, 0x19, 0x39, 0x84, 0xcb, 0x98, 0x25, + 0x8b, 0x60, 0x17, 0xe4, 0x37, 0xeb, 0xe9, 0xcc, 0x7a, 0x6b, 0x12, 0x00, 0x1a, 0x87, 0x56, 0xe0, + 0xea, 0xba, 0xfd, 0x18, 0xa4, 0x54, 0xd7, 0xe5, 0x94, 0x18, 0xfa, 0x3a, 0xd5, 0x5f, 0x54, 0x6e, + 0xe1, 0x3a, 0x4f, 0x11, 0x5b, 0xe5, 0xfa, 0xcb, 0xba, 0x2e, 0x06, 0x13, 0x87, 0xaa, 0x75, 0x67, + 0x5b, 0x2a, 0x40, 0xb0, 0xde, 0xdb, 0x69, 0x07, 0x4d, 0xac, 0xca, 0x83, 0xf3, 0x1f, 0xc5, 0xd3, + 0xe0, 0x5a, 0x3f, 0x18, 0xb2, 0xea, 0x38, 0xdb, 0x18, 0x84, 0xc7, 0x72, 0x28, 0xcb, 0x6b, 0x3c, + 0x22, 0x63, 0xd5, 0x05, 0x99, 0xee, 0xaa, 0x61, 0x83, 0x3f, 0x62, 0x45, 0x5c, 0x28, 0x88, 0x22, + 0x48, 0x93, 0xc0, 0x33, 0xe6, 0xb6, 0xf9, 0x16, 0x4a, 0x5d, 0xc4, 0x49, 0xaa, 0x33, 0x66, 0xeb, + 0xa5, 0x94, 0x3a, 0xa4, 0xb0, 0xa9, 0xb4, 0x5f, 0x34, 0x4b, 0xc4, 0xcd, 0x5d, 0x3c, 0xa7, 0x8a, + 0x45, 0xf2, 0xd6, 0x4f, 0x61, 0x94, 0xe4, 0xd6, 0x00, 0x1c, 0x18, 0x58, 0x1b, 0x73, 0x2c, 0xca, + 0x99, 0x34, 0x62, 0x26, 0x75, 0x74, 0x83, 0x01, 0x03, 0x0b, 0xf3, 0xe3, 0xf9, 0xf8, 0xbf, 0x8e, + 0x95, 0x8d, 0x4d, 0xd5, 0xf9, 0x1a, 0x99, 0x31, 0xfb, 0x28, 0xc4, 0xe4, 0xcb, 0xc5, 0xdf, 0x97, + 0x11, 0x9b, 0xb3, 0xea, 0xb9, 0x09, 0x03, 0x8b, 0xb6, 0xdb, 0x24, 0xf3, 0xa9, 0xf7, 0x2d, 0xd5, + 0x43, 0xa9, 0xa5, 0x07, 0xf5, 0x50, 0x2a, 0xe6, 0x5e, 0x19, 0xdf, 0xf6, 0x82, 0xfc, 0x2c, 0xe5, + 0x45, 0x5e, 0x1a, 0x75, 0x5e, 0x23, 0x13, 0xfe, 0xee, 0x2e, 0x3e, 0x44, 0xcf, 0xd7, 0xdc, 0xe3, + 0xea, 0xf9, 0x6b, 0x56, 0x8a, 0x2b, 0x89, 0x35, 0xc6, 0x7f, 0x82, 0x40, 0x76, 0xff, 0x3d, 0xb5, + 0xae, 0xb6, 0xc3, 0xb6, 0x4c, 0xff, 0x98, 0xd3, 0x93, 0xd5, 0xbe, 0x7c, 0xe9, 0xcf, 0x65, 0xe4, + 0x4b, 0x77, 0x34, 0xc1, 0x8c, 0x6c, 0xe9, 0x6a, 0x34, 0x95, 0x42, 0xa3, 0x19, 0x1b, 0x66, 0x34, + 0xdf, 0x28, 0x11, 0x11, 0x45, 0x50, 0x60, 0x5b, 0x6a, 0xc9, 0x1c, 0xc7, 0xd6, 0x15, 0xfa, 0x0b, + 0x45, 0x42, 0xe1, 0xc5, 0xc5, 0x79, 0xc5, 0x4a, 0xd6, 0x75, 0x79, 0x8b, 0x2a, 0x9a, 0xde, 0xd3, + 0x1c, 0x7c, 0x43, 0xbe, 0x13, 0x9f, 0xd3, 0xaf, 0xa1, 0x92, 0xe7, 0xb0, 0x14, 0xc0, 0x48, 0x58, + 0xe5, 0x50, 0x31, 0x53, 0x00, 0x4b, 0x00, 0x68, 0x1c, 0x8c, 0x01, 0x88, 0x7b, 0x3b, 0x0c, 0x3d, + 0x15, 0x52, 0xd0, 0xe0, 0xc5, 0x20, 0xe1, 0xee, 0x5f, 0x5b, 0x20, 0xd6, 0xd0, 0xac, 0x7c, 0x2d, + 0xa5, 0x07, 0x9e, 0xaf, 0x85, 0x52, 0xf7, 0x0f, 0xba, 0xc9, 0x51, 0x2d, 0x88, 0x8a, 0xe5, 0xce, + 0x5a, 0x17, 0xd8, 0xfd, 0xd4, 0x25, 0x04, 0x14, 0xc5, 0x01, 0xd9, 0x77, 0x2a, 0x0f, 0x45, 0xf6, + 0x9d, 0xb1, 0xff, 0x27, 0xd9, 0x77, 0xa8, 0x85, 0xb0, 0xc7, 0x1f, 0xde, 0x16, 0x57, 0x9f, 0x72, + 0x8e, 0xaf, 0x32, 0x5e, 0xe9, 0xe6, 0x77, 0x5c, 0x04, 0x00, 0x24, 0x39, 0xcc, 0xed, 0xc2, 0x8d, + 0x05, 0x91, 0xd0, 0xe6, 0xe5, 0x22, 0x6e, 0x94, 0xfe, 0xdc, 0x2e, 0x22, 0x6e, 0x44, 0xd0, 0x92, + 0xd9, 0x76, 0x26, 0x3f, 0x7e, 0xb6, 0x1d, 0x95, 0x23, 0x67, 0xea, 0x41, 0xe5, 0xc8, 0xb1, 0x72, + 0x0d, 0x55, 0x47, 0x91, 0x6b, 0x88, 0xca, 0xb6, 0xf3, 0xdd, 0xac, 0x54, 0x5d, 0x22, 0xdb, 0xcd, + 0x17, 0x4f, 0x90, 0xba, 0xcc, 0x6a, 0x9a, 0xdd, 0x48, 0xc9, 0x44, 0x83, 0xec, 0x86, 0x65, 0xd2, + 0xa2, 0xe9, 0x8f, 0x9f, 0xb4, 0x68, 0xd4, 0x69, 0x71, 0x74, 0x0a, 0xa3, 0xd9, 0x91, 0xa4, 0x30, + 0x9a, 0x7b, 0x80, 0x29, 0x8c, 0x8c, 0xe4, 0x43, 0xf3, 0x0f, 0x36, 0xf9, 0xd0, 0x3e, 0x99, 0x6e, + 0x85, 0xf7, 0x3a, 0xf7, 0xbc, 0xa8, 0xb5, 0x52, 0xdf, 0x64, 0xf7, 0x2a, 0x72, 0xaf, 0xad, 0xd7, + 0x74, 0x05, 0xab, 0x05, 0xee, 0x2f, 0xd4, 0x40, 0x30, 0x49, 0x8b, 0x34, 0x4c, 0x67, 0x3e, 0x66, + 0x1a, 0x26, 0x2b, 0x99, 0x91, 0x33, 0x8a, 0x64, 0x46, 0xef, 0xb1, 0xcb, 0xab, 0xbb, 0xc1, 0xde, + 0x0d, 0xaf, 0xbb, 0x78, 0xb6, 0x48, 0x0b, 0x6b, 0x12, 0xbd, 0xbf, 0x05, 0x05, 0x02, 0x4d, 0xb4, + 0x3f, 0x5d, 0xd2, 0xb9, 0xd3, 0x4e, 0x97, 0x74, 0xfe, 0xc1, 0xa6, 0x4b, 0xfa, 0x0b, 0xe4, 0x89, + 0xe3, 0x7b, 0xa7, 0xf3, 0x53, 0xd6, 0xb5, 0xc1, 0x9b, 0xca, 0x4f, 0xc9, 0x76, 0x7e, 0x03, 0xcb, + 0x88, 0x86, 0x2c, 0x1f, 0x17, 0x0d, 0xe9, 0xfe, 0xb3, 0x12, 0x79, 0x74, 0x40, 0x26, 0x85, 0xc2, + 0xe1, 0xcd, 0x5d, 0x32, 0xdf, 0xb5, 0xab, 0x16, 0xbe, 0x88, 0x60, 0x65, 0x6e, 0x50, 0xf9, 0x8d, + 0x53, 0x00, 0x48, 0x93, 0x5f, 0x7d, 0xe6, 0x7b, 0x3f, 0x78, 0xe2, 0x13, 0x1f, 0xd2, 0xbf, 0xdf, + 0xa7, 0x7f, 0x3f, 0xf9, 0xc7, 0x4f, 0x94, 0xbe, 0x47, 0xff, 0x3e, 0xa4, 0x7f, 0x7f, 0x44, 0xff, + 0xbe, 0xf1, 0x27, 0x4f, 0x7c, 0xe2, 0xc7, 0xca, 0x87, 0x97, 0xff, 0x6f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0xb6, 0x6d, 0xda, 0x94, 0xaa, 0xae, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index 8053e852bb2c..83b600868ad3 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -2779,24 +2779,39 @@ 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 the Service is exposed. Defaults to ClusterIP. Valid + // options are ExternalName, ClusterIP, NodePort, and LoadBalancer. + // "ExternalName" maps to the specified externalName. + // "ClusterIP" allocates a cluster-internal IP address for load-balancing to + // endpoints. Endpoints are determined by the selector or if that is not + // specified, by manual construction of an Endpoints object. If clusterIP is + // "None", no virtual IP is allocated and the endpoints are published as a + // set of endpoints rather than a stable IP. + // "NodePort" builds on ClusterIP and allocates a port on every node which + // routes to the clusterIP. + // "LoadBalancer" builds on NodePort and creates an + // external load-balancer (if supported in the current cloud) which routes + // to the clusterIP. + // 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 @@ -2835,6 +2850,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 3020269e4aa1..8cf92b8c57a5 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -32081,7 +32081,7 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2442 := !z.EncBinary() yy2arr2442 := z.EncBasicHandle().StructToArray - var yyq2442 [9]bool + var yyq2442 [10]bool _, _, _ = yysep2442, yyq2442, yy2arr2442 const yyr2442 bool = false yyq2442[1] = len(x.Selector) != 0 @@ -32092,9 +32092,10 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { yyq2442[6] = x.SessionAffinity != "" yyq2442[7] = x.LoadBalancerIP != "" yyq2442[8] = len(x.LoadBalancerSourceRanges) != 0 + yyq2442[9] = x.ExternalName != "" var yynn2442 int if yyr2442 || yy2arr2442 { - r.EncodeArrayStart(9) + r.EncodeArrayStart(10) } else { yynn2442 = 1 for _, b := range yyq2442 { @@ -32344,6 +32345,31 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr2442 || yy2arr2442 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2442[9] { + yym2467 := z.EncBinary() + _ = yym2467 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2442[9] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("externalName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2468 := z.EncBinary() + _ = yym2468 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } + } if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -32357,25 +32383,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2466 := z.DecBinary() - _ = yym2466 + yym2469 := z.DecBinary() + _ = yym2469 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2467 := r.ContainerType() - if yyct2467 == codecSelferValueTypeMap1234 { - yyl2467 := r.ReadMapStart() - if yyl2467 == 0 { + yyct2470 := r.ContainerType() + if yyct2470 == codecSelferValueTypeMap1234 { + yyl2470 := r.ReadMapStart() + if yyl2470 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2467, d) + x.codecDecodeSelfFromMap(yyl2470, d) } - } else if yyct2467 == codecSelferValueTypeArray1234 { - yyl2467 := r.ReadArrayStart() - if yyl2467 == 0 { + } else if yyct2470 == codecSelferValueTypeArray1234 { + yyl2470 := r.ReadArrayStart() + if yyl2470 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2467, d) + x.codecDecodeSelfFromArray(yyl2470, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32387,12 +32413,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2468Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2468Slc - var yyhl2468 bool = l >= 0 - for yyj2468 := 0; ; yyj2468++ { - if yyhl2468 { - if yyj2468 >= l { + var yys2471Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2471Slc + var yyhl2471 bool = l >= 0 + for yyj2471 := 0; ; yyj2471++ { + if yyhl2471 { + if yyj2471 >= l { break } } else { @@ -32401,32 +32427,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2468Slc = r.DecodeBytes(yys2468Slc, true, true) - yys2468 := string(yys2468Slc) + yys2471Slc = r.DecodeBytes(yys2471Slc, true, true) + yys2471 := string(yys2471Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2468 { + switch yys2471 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2469 := &x.Ports - yym2470 := z.DecBinary() - _ = yym2470 + yyv2472 := &x.Ports + yym2473 := z.DecBinary() + _ = yym2473 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2469), d) + h.decSliceServicePort((*[]ServicePort)(yyv2472), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2471 := &x.Selector - yym2472 := z.DecBinary() - _ = yym2472 + yyv2474 := &x.Selector + yym2475 := z.DecBinary() + _ = yym2475 if false { } else { - z.F.DecMapStringStringX(yyv2471, false, d) + z.F.DecMapStringStringX(yyv2474, false, d) } } case "clusterIP": @@ -32445,24 +32471,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2475 := &x.ExternalIPs - yym2476 := z.DecBinary() - _ = yym2476 + yyv2478 := &x.ExternalIPs + yym2479 := z.DecBinary() + _ = yym2479 if false { } else { - z.F.DecSliceStringX(yyv2475, false, d) + z.F.DecSliceStringX(yyv2478, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2477 := &x.DeprecatedPublicIPs - yym2478 := z.DecBinary() - _ = yym2478 + yyv2480 := &x.DeprecatedPublicIPs + yym2481 := z.DecBinary() + _ = yym2481 if false { } else { - z.F.DecSliceStringX(yyv2477, false, d) + z.F.DecSliceStringX(yyv2480, false, d) } } case "sessionAffinity": @@ -32481,18 +32507,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2481 := &x.LoadBalancerSourceRanges - yym2482 := z.DecBinary() - _ = yym2482 + yyv2484 := &x.LoadBalancerSourceRanges + yym2485 := z.DecBinary() + _ = yym2485 if false { } else { - z.F.DecSliceStringX(yyv2481, false, d) + z.F.DecSliceStringX(yyv2484, false, d) } } + case "externalName": + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } default: - z.DecStructFieldNotFound(-1, yys2468) - } // end switch yys2468 - } // end for yyj2468 + z.DecStructFieldNotFound(-1, yys2471) + } // end switch yys2471 + } // end for yyj2471 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32500,16 +32532,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2483 int - var yyb2483 bool - var yyhl2483 bool = l >= 0 - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + var yyj2487 int + var yyb2487 bool + var yyhl2487 bool = l >= 0 + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32517,21 +32549,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2484 := &x.Ports - yym2485 := z.DecBinary() - _ = yym2485 + yyv2488 := &x.Ports + yym2489 := z.DecBinary() + _ = yym2489 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2484), d) + h.decSliceServicePort((*[]ServicePort)(yyv2488), d) } } - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32539,21 +32571,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2486 := &x.Selector - yym2487 := z.DecBinary() - _ = yym2487 + yyv2490 := &x.Selector + yym2491 := z.DecBinary() + _ = yym2491 if false { } else { - z.F.DecMapStringStringX(yyv2486, false, d) + z.F.DecMapStringStringX(yyv2490, false, d) } } - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32563,13 +32595,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32579,13 +32611,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32593,21 +32625,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2490 := &x.ExternalIPs - yym2491 := z.DecBinary() - _ = yym2491 + yyv2494 := &x.ExternalIPs + yym2495 := z.DecBinary() + _ = yym2495 if false { } else { - z.F.DecSliceStringX(yyv2490, false, d) + z.F.DecSliceStringX(yyv2494, false, d) } } - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32615,21 +32647,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2492 := &x.DeprecatedPublicIPs - yym2493 := z.DecBinary() - _ = yym2493 + yyv2496 := &x.DeprecatedPublicIPs + yym2497 := z.DecBinary() + _ = yym2497 if false { } else { - z.F.DecSliceStringX(yyv2492, false, d) + z.F.DecSliceStringX(yyv2496, false, d) } } - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32639,13 +32671,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32655,13 +32687,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32669,26 +32701,42 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2496 := &x.LoadBalancerSourceRanges - yym2497 := z.DecBinary() - _ = yym2497 + yyv2500 := &x.LoadBalancerSourceRanges + yym2501 := z.DecBinary() + _ = yym2501 if false { } else { - z.F.DecSliceStringX(yyv2496, false, d) + z.F.DecSliceStringX(yyv2500, false, d) } } + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l + } else { + yyb2487 = r.CheckBreak() + } + if yyb2487 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } for { - yyj2483++ - if yyhl2483 { - yyb2483 = yyj2483 > l + yyj2487++ + if yyhl2487 { + yyb2487 = yyj2487 > l } else { - yyb2483 = r.CheckBreak() + yyb2487 = r.CheckBreak() } - if yyb2483 { + if yyb2487 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2483-1, "") + z.DecStructFieldNotFound(yyj2487-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32700,38 +32748,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2498 := z.EncBinary() - _ = yym2498 + yym2503 := z.EncBinary() + _ = yym2503 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2499 := !z.EncBinary() - yy2arr2499 := z.EncBasicHandle().StructToArray - var yyq2499 [5]bool - _, _, _ = yysep2499, yyq2499, yy2arr2499 - const yyr2499 bool = false - yyq2499[0] = x.Name != "" - yyq2499[1] = x.Protocol != "" - yyq2499[3] = true - yyq2499[4] = x.NodePort != 0 - var yynn2499 int - if yyr2499 || yy2arr2499 { + yysep2504 := !z.EncBinary() + yy2arr2504 := z.EncBasicHandle().StructToArray + var yyq2504 [5]bool + _, _, _ = yysep2504, yyq2504, yy2arr2504 + const yyr2504 bool = false + yyq2504[0] = x.Name != "" + yyq2504[1] = x.Protocol != "" + yyq2504[3] = true + yyq2504[4] = x.NodePort != 0 + var yynn2504 int + if yyr2504 || yy2arr2504 { r.EncodeArrayStart(5) } else { - yynn2499 = 1 - for _, b := range yyq2499 { + yynn2504 = 1 + for _, b := range yyq2504 { if b { - yynn2499++ + yynn2504++ } } - r.EncodeMapStart(yynn2499) - yynn2499 = 0 + r.EncodeMapStart(yynn2504) + yynn2504 = 0 } - if yyr2499 || yy2arr2499 { + if yyr2504 || yy2arr2504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2499[0] { - yym2501 := z.EncBinary() - _ = yym2501 + if yyq2504[0] { + yym2506 := z.EncBinary() + _ = yym2506 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -32740,37 +32788,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2499[0] { + if yyq2504[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2502 := z.EncBinary() - _ = yym2502 + yym2507 := z.EncBinary() + _ = yym2507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2499 || yy2arr2499 { + if yyr2504 || yy2arr2504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2499[1] { + if yyq2504[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2499[1] { + if yyq2504[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2499 || yy2arr2499 { + if yyr2504 || yy2arr2504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2505 := z.EncBinary() - _ = yym2505 + yym2510 := z.EncBinary() + _ = yym2510 if false { } else { r.EncodeInt(int64(x.Port)) @@ -32779,51 +32827,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2506 := z.EncBinary() - _ = yym2506 + yym2511 := z.EncBinary() + _ = yym2511 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2499 || yy2arr2499 { + if yyr2504 || yy2arr2504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2499[3] { - yy2508 := &x.TargetPort - yym2509 := z.EncBinary() - _ = yym2509 + if yyq2504[3] { + yy2513 := &x.TargetPort + yym2514 := z.EncBinary() + _ = yym2514 if false { - } else if z.HasExtensions() && z.EncExt(yy2508) { - } else if !yym2509 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2508) + } else if z.HasExtensions() && z.EncExt(yy2513) { + } else if !yym2514 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2513) } else { - z.EncFallback(yy2508) + z.EncFallback(yy2513) } } else { r.EncodeNil() } } else { - if yyq2499[3] { + if yyq2504[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2510 := &x.TargetPort - yym2511 := z.EncBinary() - _ = yym2511 + yy2515 := &x.TargetPort + yym2516 := z.EncBinary() + _ = yym2516 if false { - } else if z.HasExtensions() && z.EncExt(yy2510) { - } else if !yym2511 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2510) + } else if z.HasExtensions() && z.EncExt(yy2515) { + } else if !yym2516 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2515) } else { - z.EncFallback(yy2510) + z.EncFallback(yy2515) } } } - if yyr2499 || yy2arr2499 { + if yyr2504 || yy2arr2504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2499[4] { - yym2513 := z.EncBinary() - _ = yym2513 + if yyq2504[4] { + yym2518 := z.EncBinary() + _ = yym2518 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -32832,19 +32880,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2499[4] { + if yyq2504[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2514 := z.EncBinary() - _ = yym2514 + yym2519 := z.EncBinary() + _ = yym2519 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2499 || yy2arr2499 { + if yyr2504 || yy2arr2504 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32857,25 +32905,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2515 := z.DecBinary() - _ = yym2515 + yym2520 := z.DecBinary() + _ = yym2520 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2516 := r.ContainerType() - if yyct2516 == codecSelferValueTypeMap1234 { - yyl2516 := r.ReadMapStart() - if yyl2516 == 0 { + yyct2521 := r.ContainerType() + if yyct2521 == codecSelferValueTypeMap1234 { + yyl2521 := r.ReadMapStart() + if yyl2521 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2516, d) + x.codecDecodeSelfFromMap(yyl2521, d) } - } else if yyct2516 == codecSelferValueTypeArray1234 { - yyl2516 := r.ReadArrayStart() - if yyl2516 == 0 { + } else if yyct2521 == codecSelferValueTypeArray1234 { + yyl2521 := r.ReadArrayStart() + if yyl2521 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2516, d) + x.codecDecodeSelfFromArray(yyl2521, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32887,12 +32935,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2517Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2517Slc - var yyhl2517 bool = l >= 0 - for yyj2517 := 0; ; yyj2517++ { - if yyhl2517 { - if yyj2517 >= l { + var yys2522Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2522Slc + var yyhl2522 bool = l >= 0 + for yyj2522 := 0; ; yyj2522++ { + if yyhl2522 { + if yyj2522 >= l { break } } else { @@ -32901,10 +32949,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2517Slc = r.DecodeBytes(yys2517Slc, true, true) - yys2517 := string(yys2517Slc) + yys2522Slc = r.DecodeBytes(yys2522Slc, true, true) + yys2522 := string(yys2522Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2517 { + switch yys2522 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -32927,15 +32975,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2521 := &x.TargetPort - yym2522 := z.DecBinary() - _ = yym2522 + yyv2526 := &x.TargetPort + yym2527 := z.DecBinary() + _ = yym2527 if false { - } else if z.HasExtensions() && z.DecExt(yyv2521) { - } else if !yym2522 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2521) + } else if z.HasExtensions() && z.DecExt(yyv2526) { + } else if !yym2527 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2526) } else { - z.DecFallback(yyv2521, false) + z.DecFallback(yyv2526, false) } } case "nodePort": @@ -32945,9 +32993,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2517) - } // end switch yys2517 - } // end for yyj2517 + z.DecStructFieldNotFound(-1, yys2522) + } // end switch yys2522 + } // end for yyj2522 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32955,16 +33003,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2524 int - var yyb2524 bool - var yyhl2524 bool = l >= 0 - yyj2524++ - if yyhl2524 { - yyb2524 = yyj2524 > l + var yyj2529 int + var yyb2529 bool + var yyhl2529 bool = l >= 0 + yyj2529++ + if yyhl2529 { + yyb2529 = yyj2529 > l } else { - yyb2524 = r.CheckBreak() + yyb2529 = r.CheckBreak() } - if yyb2524 { + if yyb2529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32974,13 +33022,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2524++ - if yyhl2524 { - yyb2524 = yyj2524 > l + yyj2529++ + if yyhl2529 { + yyb2529 = yyj2529 > l } else { - yyb2524 = r.CheckBreak() + yyb2529 = r.CheckBreak() } - if yyb2524 { + if yyb2529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32990,13 +33038,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2524++ - if yyhl2524 { - yyb2524 = yyj2524 > l + yyj2529++ + if yyhl2529 { + yyb2529 = yyj2529 > l } else { - yyb2524 = r.CheckBreak() + yyb2529 = r.CheckBreak() } - if yyb2524 { + if yyb2529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33006,13 +33054,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2524++ - if yyhl2524 { - yyb2524 = yyj2524 > l + yyj2529++ + if yyhl2529 { + yyb2529 = yyj2529 > l } else { - yyb2524 = r.CheckBreak() + yyb2529 = r.CheckBreak() } - if yyb2524 { + if yyb2529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33020,24 +33068,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2528 := &x.TargetPort - yym2529 := z.DecBinary() - _ = yym2529 + yyv2533 := &x.TargetPort + yym2534 := z.DecBinary() + _ = yym2534 if false { - } else if z.HasExtensions() && z.DecExt(yyv2528) { - } else if !yym2529 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2528) + } else if z.HasExtensions() && z.DecExt(yyv2533) { + } else if !yym2534 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2533) } else { - z.DecFallback(yyv2528, false) + z.DecFallback(yyv2533, false) } } - yyj2524++ - if yyhl2524 { - yyb2524 = yyj2524 > l + yyj2529++ + if yyhl2529 { + yyb2529 = yyj2529 > l } else { - yyb2524 = r.CheckBreak() + yyb2529 = r.CheckBreak() } - if yyb2524 { + if yyb2529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33048,17 +33096,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2524++ - if yyhl2524 { - yyb2524 = yyj2524 > l + yyj2529++ + if yyhl2529 { + yyb2529 = yyj2529 > l } else { - yyb2524 = r.CheckBreak() + yyb2529 = r.CheckBreak() } - if yyb2524 { + if yyb2529 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2524-1, "") + z.DecStructFieldNotFound(yyj2529-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33070,39 +33118,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2531 := z.EncBinary() - _ = yym2531 + yym2536 := z.EncBinary() + _ = yym2536 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2532 := !z.EncBinary() - yy2arr2532 := z.EncBasicHandle().StructToArray - var yyq2532 [5]bool - _, _, _ = yysep2532, yyq2532, yy2arr2532 - const yyr2532 bool = false - yyq2532[0] = x.Kind != "" - yyq2532[1] = x.APIVersion != "" - yyq2532[2] = true - yyq2532[3] = true - yyq2532[4] = true - var yynn2532 int - if yyr2532 || yy2arr2532 { + yysep2537 := !z.EncBinary() + yy2arr2537 := z.EncBasicHandle().StructToArray + var yyq2537 [5]bool + _, _, _ = yysep2537, yyq2537, yy2arr2537 + const yyr2537 bool = false + yyq2537[0] = x.Kind != "" + yyq2537[1] = x.APIVersion != "" + yyq2537[2] = true + yyq2537[3] = true + yyq2537[4] = true + var yynn2537 int + if yyr2537 || yy2arr2537 { r.EncodeArrayStart(5) } else { - yynn2532 = 0 - for _, b := range yyq2532 { + yynn2537 = 0 + for _, b := range yyq2537 { if b { - yynn2532++ + yynn2537++ } } - r.EncodeMapStart(yynn2532) - yynn2532 = 0 + r.EncodeMapStart(yynn2537) + yynn2537 = 0 } - if yyr2532 || yy2arr2532 { + if yyr2537 || yy2arr2537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2532[0] { - yym2534 := z.EncBinary() - _ = yym2534 + if yyq2537[0] { + yym2539 := z.EncBinary() + _ = yym2539 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33111,23 +33159,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2532[0] { + if yyq2537[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2535 := z.EncBinary() - _ = yym2535 + yym2540 := z.EncBinary() + _ = yym2540 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2532 || yy2arr2532 { + if yyr2537 || yy2arr2537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2532[1] { - yym2537 := z.EncBinary() - _ = yym2537 + if yyq2537[1] { + yym2542 := z.EncBinary() + _ = yym2542 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33136,70 +33184,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2532[1] { + if yyq2537[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2538 := z.EncBinary() - _ = yym2538 + yym2543 := z.EncBinary() + _ = yym2543 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2532 || yy2arr2532 { + if yyr2537 || yy2arr2537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2532[2] { - yy2540 := &x.ObjectMeta - yy2540.CodecEncodeSelf(e) + if yyq2537[2] { + yy2545 := &x.ObjectMeta + yy2545.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2532[2] { + if yyq2537[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2541 := &x.ObjectMeta - yy2541.CodecEncodeSelf(e) + yy2546 := &x.ObjectMeta + yy2546.CodecEncodeSelf(e) } } - if yyr2532 || yy2arr2532 { + if yyr2537 || yy2arr2537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2532[3] { - yy2543 := &x.Spec - yy2543.CodecEncodeSelf(e) + if yyq2537[3] { + yy2548 := &x.Spec + yy2548.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2532[3] { + if yyq2537[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2544 := &x.Spec - yy2544.CodecEncodeSelf(e) + yy2549 := &x.Spec + yy2549.CodecEncodeSelf(e) } } - if yyr2532 || yy2arr2532 { + if yyr2537 || yy2arr2537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2532[4] { - yy2546 := &x.Status - yy2546.CodecEncodeSelf(e) + if yyq2537[4] { + yy2551 := &x.Status + yy2551.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2532[4] { + if yyq2537[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2547 := &x.Status - yy2547.CodecEncodeSelf(e) + yy2552 := &x.Status + yy2552.CodecEncodeSelf(e) } } - if yyr2532 || yy2arr2532 { + if yyr2537 || yy2arr2537 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33212,25 +33260,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2548 := z.DecBinary() - _ = yym2548 + yym2553 := z.DecBinary() + _ = yym2553 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2549 := r.ContainerType() - if yyct2549 == codecSelferValueTypeMap1234 { - yyl2549 := r.ReadMapStart() - if yyl2549 == 0 { + yyct2554 := r.ContainerType() + if yyct2554 == codecSelferValueTypeMap1234 { + yyl2554 := r.ReadMapStart() + if yyl2554 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2549, d) + x.codecDecodeSelfFromMap(yyl2554, d) } - } else if yyct2549 == codecSelferValueTypeArray1234 { - yyl2549 := r.ReadArrayStart() - if yyl2549 == 0 { + } else if yyct2554 == codecSelferValueTypeArray1234 { + yyl2554 := r.ReadArrayStart() + if yyl2554 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2549, d) + x.codecDecodeSelfFromArray(yyl2554, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33242,12 +33290,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2550Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2550Slc - var yyhl2550 bool = l >= 0 - for yyj2550 := 0; ; yyj2550++ { - if yyhl2550 { - if yyj2550 >= l { + var yys2555Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2555Slc + var yyhl2555 bool = l >= 0 + for yyj2555 := 0; ; yyj2555++ { + if yyhl2555 { + if yyj2555 >= l { break } } else { @@ -33256,10 +33304,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2550Slc = r.DecodeBytes(yys2550Slc, true, true) - yys2550 := string(yys2550Slc) + yys2555Slc = r.DecodeBytes(yys2555Slc, true, true) + yys2555 := string(yys2555Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2550 { + switch yys2555 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33276,27 +33324,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2553 := &x.ObjectMeta - yyv2553.CodecDecodeSelf(d) + yyv2558 := &x.ObjectMeta + yyv2558.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2554 := &x.Spec - yyv2554.CodecDecodeSelf(d) + yyv2559 := &x.Spec + yyv2559.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2555 := &x.Status - yyv2555.CodecDecodeSelf(d) + yyv2560 := &x.Status + yyv2560.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2550) - } // end switch yys2550 - } // end for yyj2550 + z.DecStructFieldNotFound(-1, yys2555) + } // end switch yys2555 + } // end for yyj2555 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33304,16 +33352,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2556 int - var yyb2556 bool - var yyhl2556 bool = l >= 0 - yyj2556++ - if yyhl2556 { - yyb2556 = yyj2556 > l + var yyj2561 int + var yyb2561 bool + var yyhl2561 bool = l >= 0 + yyj2561++ + if yyhl2561 { + yyb2561 = yyj2561 > l } else { - yyb2556 = r.CheckBreak() + yyb2561 = r.CheckBreak() } - if yyb2556 { + if yyb2561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33323,13 +33371,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2556++ - if yyhl2556 { - yyb2556 = yyj2556 > l + yyj2561++ + if yyhl2561 { + yyb2561 = yyj2561 > l } else { - yyb2556 = r.CheckBreak() + yyb2561 = r.CheckBreak() } - if yyb2556 { + if yyb2561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33339,13 +33387,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2556++ - if yyhl2556 { - yyb2556 = yyj2556 > l + yyj2561++ + if yyhl2561 { + yyb2561 = yyj2561 > l } else { - yyb2556 = r.CheckBreak() + yyb2561 = r.CheckBreak() } - if yyb2556 { + if yyb2561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33353,16 +33401,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2559 := &x.ObjectMeta - yyv2559.CodecDecodeSelf(d) + yyv2564 := &x.ObjectMeta + yyv2564.CodecDecodeSelf(d) } - yyj2556++ - if yyhl2556 { - yyb2556 = yyj2556 > l + yyj2561++ + if yyhl2561 { + yyb2561 = yyj2561 > l } else { - yyb2556 = r.CheckBreak() + yyb2561 = r.CheckBreak() } - if yyb2556 { + if yyb2561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33370,16 +33418,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2560 := &x.Spec - yyv2560.CodecDecodeSelf(d) + yyv2565 := &x.Spec + yyv2565.CodecDecodeSelf(d) } - yyj2556++ - if yyhl2556 { - yyb2556 = yyj2556 > l + yyj2561++ + if yyhl2561 { + yyb2561 = yyj2561 > l } else { - yyb2556 = r.CheckBreak() + yyb2561 = r.CheckBreak() } - if yyb2556 { + if yyb2561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33387,21 +33435,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2561 := &x.Status - yyv2561.CodecDecodeSelf(d) + yyv2566 := &x.Status + yyv2566.CodecDecodeSelf(d) } for { - yyj2556++ - if yyhl2556 { - yyb2556 = yyj2556 > l + yyj2561++ + if yyhl2561 { + yyb2561 = yyj2561 > l } else { - yyb2556 = r.CheckBreak() + yyb2561 = r.CheckBreak() } - if yyb2556 { + if yyb2561 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2556-1, "") + z.DecStructFieldNotFound(yyj2561-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33413,37 +33461,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2562 := z.EncBinary() - _ = yym2562 + yym2567 := z.EncBinary() + _ = yym2567 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2563 := !z.EncBinary() - yy2arr2563 := z.EncBasicHandle().StructToArray - var yyq2563 [4]bool - _, _, _ = yysep2563, yyq2563, yy2arr2563 - const yyr2563 bool = false - yyq2563[0] = x.Kind != "" - yyq2563[1] = x.APIVersion != "" - yyq2563[2] = true - var yynn2563 int - if yyr2563 || yy2arr2563 { + yysep2568 := !z.EncBinary() + yy2arr2568 := z.EncBasicHandle().StructToArray + var yyq2568 [4]bool + _, _, _ = yysep2568, yyq2568, yy2arr2568 + const yyr2568 bool = false + yyq2568[0] = x.Kind != "" + yyq2568[1] = x.APIVersion != "" + yyq2568[2] = true + var yynn2568 int + if yyr2568 || yy2arr2568 { r.EncodeArrayStart(4) } else { - yynn2563 = 1 - for _, b := range yyq2563 { + yynn2568 = 1 + for _, b := range yyq2568 { if b { - yynn2563++ + yynn2568++ } } - r.EncodeMapStart(yynn2563) - yynn2563 = 0 + r.EncodeMapStart(yynn2568) + yynn2568 = 0 } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2563[0] { - yym2565 := z.EncBinary() - _ = yym2565 + if yyq2568[0] { + yym2570 := z.EncBinary() + _ = yym2570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33452,23 +33500,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2563[0] { + if yyq2568[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2566 := z.EncBinary() - _ = yym2566 + yym2571 := z.EncBinary() + _ = yym2571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2563[1] { - yym2568 := z.EncBinary() - _ = yym2568 + if yyq2568[1] { + yym2573 := z.EncBinary() + _ = yym2573 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33477,54 +33525,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2563[1] { + if yyq2568[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2569 := z.EncBinary() - _ = yym2569 + yym2574 := z.EncBinary() + _ = yym2574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2563[2] { - yy2571 := &x.ListMeta - yym2572 := z.EncBinary() - _ = yym2572 + if yyq2568[2] { + yy2576 := &x.ListMeta + yym2577 := z.EncBinary() + _ = yym2577 if false { - } else if z.HasExtensions() && z.EncExt(yy2571) { + } else if z.HasExtensions() && z.EncExt(yy2576) { } else { - z.EncFallback(yy2571) + z.EncFallback(yy2576) } } else { r.EncodeNil() } } else { - if yyq2563[2] { + if yyq2568[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2573 := &x.ListMeta - yym2574 := z.EncBinary() - _ = yym2574 + yy2578 := &x.ListMeta + yym2579 := z.EncBinary() + _ = yym2579 if false { - } else if z.HasExtensions() && z.EncExt(yy2573) { + } else if z.HasExtensions() && z.EncExt(yy2578) { } else { - z.EncFallback(yy2573) + z.EncFallback(yy2578) } } } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2576 := z.EncBinary() - _ = yym2576 + yym2581 := z.EncBinary() + _ = yym2581 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -33537,15 +33585,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2577 := z.EncBinary() - _ = yym2577 + yym2582 := z.EncBinary() + _ = yym2582 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2563 || yy2arr2563 { + if yyr2568 || yy2arr2568 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33558,25 +33606,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2578 := z.DecBinary() - _ = yym2578 + yym2583 := z.DecBinary() + _ = yym2583 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2579 := r.ContainerType() - if yyct2579 == codecSelferValueTypeMap1234 { - yyl2579 := r.ReadMapStart() - if yyl2579 == 0 { + yyct2584 := r.ContainerType() + if yyct2584 == codecSelferValueTypeMap1234 { + yyl2584 := r.ReadMapStart() + if yyl2584 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2579, d) + x.codecDecodeSelfFromMap(yyl2584, d) } - } else if yyct2579 == codecSelferValueTypeArray1234 { - yyl2579 := r.ReadArrayStart() - if yyl2579 == 0 { + } else if yyct2584 == codecSelferValueTypeArray1234 { + yyl2584 := r.ReadArrayStart() + if yyl2584 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2579, d) + x.codecDecodeSelfFromArray(yyl2584, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33588,12 +33636,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2580Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2580Slc - var yyhl2580 bool = l >= 0 - for yyj2580 := 0; ; yyj2580++ { - if yyhl2580 { - if yyj2580 >= l { + var yys2585Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2585Slc + var yyhl2585 bool = l >= 0 + for yyj2585 := 0; ; yyj2585++ { + if yyhl2585 { + if yyj2585 >= l { break } } else { @@ -33602,10 +33650,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2580Slc = r.DecodeBytes(yys2580Slc, true, true) - yys2580 := string(yys2580Slc) + yys2585Slc = r.DecodeBytes(yys2585Slc, true, true) + yys2585 := string(yys2585Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2580 { + switch yys2585 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33622,31 +33670,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2583 := &x.ListMeta - yym2584 := z.DecBinary() - _ = yym2584 + yyv2588 := &x.ListMeta + yym2589 := z.DecBinary() + _ = yym2589 if false { - } else if z.HasExtensions() && z.DecExt(yyv2583) { + } else if z.HasExtensions() && z.DecExt(yyv2588) { } else { - z.DecFallback(yyv2583, false) + z.DecFallback(yyv2588, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2585 := &x.Items - yym2586 := z.DecBinary() - _ = yym2586 + yyv2590 := &x.Items + yym2591 := z.DecBinary() + _ = yym2591 if false { } else { - h.decSliceService((*[]Service)(yyv2585), d) + h.decSliceService((*[]Service)(yyv2590), d) } } default: - z.DecStructFieldNotFound(-1, yys2580) - } // end switch yys2580 - } // end for yyj2580 + z.DecStructFieldNotFound(-1, yys2585) + } // end switch yys2585 + } // end for yyj2585 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33654,16 +33702,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2587 int - var yyb2587 bool - var yyhl2587 bool = l >= 0 - yyj2587++ - if yyhl2587 { - yyb2587 = yyj2587 > l + var yyj2592 int + var yyb2592 bool + var yyhl2592 bool = l >= 0 + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2587 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2587 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33673,13 +33721,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2587++ - if yyhl2587 { - yyb2587 = yyj2587 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2587 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2587 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33689,13 +33737,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2587++ - if yyhl2587 { - yyb2587 = yyj2587 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2587 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2587 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33703,22 +33751,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2590 := &x.ListMeta - yym2591 := z.DecBinary() - _ = yym2591 + yyv2595 := &x.ListMeta + yym2596 := z.DecBinary() + _ = yym2596 if false { - } else if z.HasExtensions() && z.DecExt(yyv2590) { + } else if z.HasExtensions() && z.DecExt(yyv2595) { } else { - z.DecFallback(yyv2590, false) + z.DecFallback(yyv2595, false) } } - yyj2587++ - if yyhl2587 { - yyb2587 = yyj2587 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2587 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2587 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33726,26 +33774,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2592 := &x.Items - yym2593 := z.DecBinary() - _ = yym2593 + yyv2597 := &x.Items + yym2598 := z.DecBinary() + _ = yym2598 if false { } else { - h.decSliceService((*[]Service)(yyv2592), d) + h.decSliceService((*[]Service)(yyv2597), d) } } for { - yyj2587++ - if yyhl2587 { - yyb2587 = yyj2587 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2587 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2587 { + if yyb2592 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2587-1, "") + z.DecStructFieldNotFound(yyj2592-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33757,39 +33805,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2594 := z.EncBinary() - _ = yym2594 + yym2599 := z.EncBinary() + _ = yym2599 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2595 := !z.EncBinary() - yy2arr2595 := z.EncBasicHandle().StructToArray - var yyq2595 [5]bool - _, _, _ = yysep2595, yyq2595, yy2arr2595 - const yyr2595 bool = false - yyq2595[0] = x.Kind != "" - yyq2595[1] = x.APIVersion != "" - yyq2595[2] = true - yyq2595[3] = len(x.Secrets) != 0 - yyq2595[4] = len(x.ImagePullSecrets) != 0 - var yynn2595 int - if yyr2595 || yy2arr2595 { + yysep2600 := !z.EncBinary() + yy2arr2600 := z.EncBasicHandle().StructToArray + var yyq2600 [5]bool + _, _, _ = yysep2600, yyq2600, yy2arr2600 + const yyr2600 bool = false + yyq2600[0] = x.Kind != "" + yyq2600[1] = x.APIVersion != "" + yyq2600[2] = true + yyq2600[3] = len(x.Secrets) != 0 + yyq2600[4] = len(x.ImagePullSecrets) != 0 + var yynn2600 int + if yyr2600 || yy2arr2600 { r.EncodeArrayStart(5) } else { - yynn2595 = 0 - for _, b := range yyq2595 { + yynn2600 = 0 + for _, b := range yyq2600 { if b { - yynn2595++ + yynn2600++ } } - r.EncodeMapStart(yynn2595) - yynn2595 = 0 + r.EncodeMapStart(yynn2600) + yynn2600 = 0 } - if yyr2595 || yy2arr2595 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2595[0] { - yym2597 := z.EncBinary() - _ = yym2597 + if yyq2600[0] { + yym2602 := z.EncBinary() + _ = yym2602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33798,23 +33846,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2595[0] { + if yyq2600[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2598 := z.EncBinary() - _ = yym2598 + yym2603 := z.EncBinary() + _ = yym2603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2595 || yy2arr2595 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2595[1] { - yym2600 := z.EncBinary() - _ = yym2600 + if yyq2600[1] { + yym2605 := z.EncBinary() + _ = yym2605 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33823,43 +33871,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2595[1] { + if yyq2600[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2601 := z.EncBinary() - _ = yym2601 + yym2606 := z.EncBinary() + _ = yym2606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2595 || yy2arr2595 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2595[2] { - yy2603 := &x.ObjectMeta - yy2603.CodecEncodeSelf(e) + if yyq2600[2] { + yy2608 := &x.ObjectMeta + yy2608.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2595[2] { + if yyq2600[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2604 := &x.ObjectMeta - yy2604.CodecEncodeSelf(e) + yy2609 := &x.ObjectMeta + yy2609.CodecEncodeSelf(e) } } - if yyr2595 || yy2arr2595 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2595[3] { + if yyq2600[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2606 := z.EncBinary() - _ = yym2606 + yym2611 := z.EncBinary() + _ = yym2611 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33869,15 +33917,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2595[3] { + if yyq2600[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2607 := z.EncBinary() - _ = yym2607 + yym2612 := z.EncBinary() + _ = yym2612 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33885,14 +33933,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2595 || yy2arr2595 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2595[4] { + if yyq2600[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2609 := z.EncBinary() - _ = yym2609 + yym2614 := z.EncBinary() + _ = yym2614 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33902,15 +33950,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2595[4] { + if yyq2600[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2610 := z.EncBinary() - _ = yym2610 + yym2615 := z.EncBinary() + _ = yym2615 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33918,7 +33966,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2595 || yy2arr2595 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33931,25 +33979,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2611 := z.DecBinary() - _ = yym2611 + yym2616 := z.DecBinary() + _ = yym2616 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2612 := r.ContainerType() - if yyct2612 == codecSelferValueTypeMap1234 { - yyl2612 := r.ReadMapStart() - if yyl2612 == 0 { + yyct2617 := r.ContainerType() + if yyct2617 == codecSelferValueTypeMap1234 { + yyl2617 := r.ReadMapStart() + if yyl2617 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2612, d) + x.codecDecodeSelfFromMap(yyl2617, d) } - } else if yyct2612 == codecSelferValueTypeArray1234 { - yyl2612 := r.ReadArrayStart() - if yyl2612 == 0 { + } else if yyct2617 == codecSelferValueTypeArray1234 { + yyl2617 := r.ReadArrayStart() + if yyl2617 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2612, d) + x.codecDecodeSelfFromArray(yyl2617, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33961,12 +34009,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2613Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2613Slc - var yyhl2613 bool = l >= 0 - for yyj2613 := 0; ; yyj2613++ { - if yyhl2613 { - if yyj2613 >= l { + var yys2618Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2618Slc + var yyhl2618 bool = l >= 0 + for yyj2618 := 0; ; yyj2618++ { + if yyhl2618 { + if yyj2618 >= l { break } } else { @@ -33975,10 +34023,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2613Slc = r.DecodeBytes(yys2613Slc, true, true) - yys2613 := string(yys2613Slc) + yys2618Slc = r.DecodeBytes(yys2618Slc, true, true) + yys2618 := string(yys2618Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2613 { + switch yys2618 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33995,37 +34043,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2616 := &x.ObjectMeta - yyv2616.CodecDecodeSelf(d) + yyv2621 := &x.ObjectMeta + yyv2621.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2617 := &x.Secrets - yym2618 := z.DecBinary() - _ = yym2618 + yyv2622 := &x.Secrets + yym2623 := z.DecBinary() + _ = yym2623 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2617), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2622), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2619 := &x.ImagePullSecrets - yym2620 := z.DecBinary() - _ = yym2620 + yyv2624 := &x.ImagePullSecrets + yym2625 := z.DecBinary() + _ = yym2625 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2619), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2624), d) } } default: - z.DecStructFieldNotFound(-1, yys2613) - } // end switch yys2613 - } // end for yyj2613 + z.DecStructFieldNotFound(-1, yys2618) + } // end switch yys2618 + } // end for yyj2618 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34033,16 +34081,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2621 int - var yyb2621 bool - var yyhl2621 bool = l >= 0 - yyj2621++ - if yyhl2621 { - yyb2621 = yyj2621 > l + var yyj2626 int + var yyb2626 bool + var yyhl2626 bool = l >= 0 + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2621 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2621 { + if yyb2626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34052,13 +34100,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2621++ - if yyhl2621 { - yyb2621 = yyj2621 > l + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2621 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2621 { + if yyb2626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34068,13 +34116,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2621++ - if yyhl2621 { - yyb2621 = yyj2621 > l + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2621 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2621 { + if yyb2626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34082,16 +34130,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2624 := &x.ObjectMeta - yyv2624.CodecDecodeSelf(d) + yyv2629 := &x.ObjectMeta + yyv2629.CodecDecodeSelf(d) } - yyj2621++ - if yyhl2621 { - yyb2621 = yyj2621 > l + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2621 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2621 { + if yyb2626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34099,21 +34147,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2625 := &x.Secrets - yym2626 := z.DecBinary() - _ = yym2626 + yyv2630 := &x.Secrets + yym2631 := z.DecBinary() + _ = yym2631 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2625), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2630), d) } } - yyj2621++ - if yyhl2621 { - yyb2621 = yyj2621 > l + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2621 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2621 { + if yyb2626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34121,26 +34169,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2627 := &x.ImagePullSecrets - yym2628 := z.DecBinary() - _ = yym2628 + yyv2632 := &x.ImagePullSecrets + yym2633 := z.DecBinary() + _ = yym2633 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2627), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2632), d) } } for { - yyj2621++ - if yyhl2621 { - yyb2621 = yyj2621 > l + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2621 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2621 { + if yyb2626 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2621-1, "") + z.DecStructFieldNotFound(yyj2626-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34152,37 +34200,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2629 := z.EncBinary() - _ = yym2629 + yym2634 := z.EncBinary() + _ = yym2634 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2630 := !z.EncBinary() - yy2arr2630 := z.EncBasicHandle().StructToArray - var yyq2630 [4]bool - _, _, _ = yysep2630, yyq2630, yy2arr2630 - const yyr2630 bool = false - yyq2630[0] = x.Kind != "" - yyq2630[1] = x.APIVersion != "" - yyq2630[2] = true - var yynn2630 int - if yyr2630 || yy2arr2630 { + yysep2635 := !z.EncBinary() + yy2arr2635 := z.EncBasicHandle().StructToArray + var yyq2635 [4]bool + _, _, _ = yysep2635, yyq2635, yy2arr2635 + const yyr2635 bool = false + yyq2635[0] = x.Kind != "" + yyq2635[1] = x.APIVersion != "" + yyq2635[2] = true + var yynn2635 int + if yyr2635 || yy2arr2635 { r.EncodeArrayStart(4) } else { - yynn2630 = 1 - for _, b := range yyq2630 { + yynn2635 = 1 + for _, b := range yyq2635 { if b { - yynn2630++ + yynn2635++ } } - r.EncodeMapStart(yynn2630) - yynn2630 = 0 + r.EncodeMapStart(yynn2635) + yynn2635 = 0 } - if yyr2630 || yy2arr2630 { + if yyr2635 || yy2arr2635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2630[0] { - yym2632 := z.EncBinary() - _ = yym2632 + if yyq2635[0] { + yym2637 := z.EncBinary() + _ = yym2637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34191,23 +34239,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2630[0] { + if yyq2635[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2633 := z.EncBinary() - _ = yym2633 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2630 || yy2arr2630 { + if yyr2635 || yy2arr2635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2630[1] { - yym2635 := z.EncBinary() - _ = yym2635 + if yyq2635[1] { + yym2640 := z.EncBinary() + _ = yym2640 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34216,54 +34264,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2630[1] { + if yyq2635[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2636 := z.EncBinary() - _ = yym2636 + yym2641 := z.EncBinary() + _ = yym2641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2630 || yy2arr2630 { + if yyr2635 || yy2arr2635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2630[2] { - yy2638 := &x.ListMeta - yym2639 := z.EncBinary() - _ = yym2639 + if yyq2635[2] { + yy2643 := &x.ListMeta + yym2644 := z.EncBinary() + _ = yym2644 if false { - } else if z.HasExtensions() && z.EncExt(yy2638) { + } else if z.HasExtensions() && z.EncExt(yy2643) { } else { - z.EncFallback(yy2638) + z.EncFallback(yy2643) } } else { r.EncodeNil() } } else { - if yyq2630[2] { + if yyq2635[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2640 := &x.ListMeta - yym2641 := z.EncBinary() - _ = yym2641 + yy2645 := &x.ListMeta + yym2646 := z.EncBinary() + _ = yym2646 if false { - } else if z.HasExtensions() && z.EncExt(yy2640) { + } else if z.HasExtensions() && z.EncExt(yy2645) { } else { - z.EncFallback(yy2640) + z.EncFallback(yy2645) } } } - if yyr2630 || yy2arr2630 { + if yyr2635 || yy2arr2635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2643 := z.EncBinary() - _ = yym2643 + yym2648 := z.EncBinary() + _ = yym2648 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -34276,15 +34324,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2644 := z.EncBinary() - _ = yym2644 + yym2649 := z.EncBinary() + _ = yym2649 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2630 || yy2arr2630 { + if yyr2635 || yy2arr2635 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34297,25 +34345,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2645 := z.DecBinary() - _ = yym2645 + yym2650 := z.DecBinary() + _ = yym2650 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2646 := r.ContainerType() - if yyct2646 == codecSelferValueTypeMap1234 { - yyl2646 := r.ReadMapStart() - if yyl2646 == 0 { + yyct2651 := r.ContainerType() + if yyct2651 == codecSelferValueTypeMap1234 { + yyl2651 := r.ReadMapStart() + if yyl2651 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2646, d) + x.codecDecodeSelfFromMap(yyl2651, d) } - } else if yyct2646 == codecSelferValueTypeArray1234 { - yyl2646 := r.ReadArrayStart() - if yyl2646 == 0 { + } else if yyct2651 == codecSelferValueTypeArray1234 { + yyl2651 := r.ReadArrayStart() + if yyl2651 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2646, d) + x.codecDecodeSelfFromArray(yyl2651, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34327,12 +34375,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2647Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2647Slc - var yyhl2647 bool = l >= 0 - for yyj2647 := 0; ; yyj2647++ { - if yyhl2647 { - if yyj2647 >= l { + var yys2652Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2652Slc + var yyhl2652 bool = l >= 0 + for yyj2652 := 0; ; yyj2652++ { + if yyhl2652 { + if yyj2652 >= l { break } } else { @@ -34341,10 +34389,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2647Slc = r.DecodeBytes(yys2647Slc, true, true) - yys2647 := string(yys2647Slc) + yys2652Slc = r.DecodeBytes(yys2652Slc, true, true) + yys2652 := string(yys2652Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2647 { + switch yys2652 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34361,31 +34409,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2650 := &x.ListMeta - yym2651 := z.DecBinary() - _ = yym2651 + yyv2655 := &x.ListMeta + yym2656 := z.DecBinary() + _ = yym2656 if false { - } else if z.HasExtensions() && z.DecExt(yyv2650) { + } else if z.HasExtensions() && z.DecExt(yyv2655) { } else { - z.DecFallback(yyv2650, false) + z.DecFallback(yyv2655, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2652 := &x.Items - yym2653 := z.DecBinary() - _ = yym2653 + yyv2657 := &x.Items + yym2658 := z.DecBinary() + _ = yym2658 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2652), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2657), d) } } default: - z.DecStructFieldNotFound(-1, yys2647) - } // end switch yys2647 - } // end for yyj2647 + z.DecStructFieldNotFound(-1, yys2652) + } // end switch yys2652 + } // end for yyj2652 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34393,16 +34441,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2654 int - var yyb2654 bool - var yyhl2654 bool = l >= 0 - yyj2654++ - if yyhl2654 { - yyb2654 = yyj2654 > l + var yyj2659 int + var yyb2659 bool + var yyhl2659 bool = l >= 0 + yyj2659++ + if yyhl2659 { + yyb2659 = yyj2659 > l } else { - yyb2654 = r.CheckBreak() + yyb2659 = r.CheckBreak() } - if yyb2654 { + if yyb2659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34412,13 +34460,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2654++ - if yyhl2654 { - yyb2654 = yyj2654 > l + yyj2659++ + if yyhl2659 { + yyb2659 = yyj2659 > l } else { - yyb2654 = r.CheckBreak() + yyb2659 = r.CheckBreak() } - if yyb2654 { + if yyb2659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34428,13 +34476,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2654++ - if yyhl2654 { - yyb2654 = yyj2654 > l + yyj2659++ + if yyhl2659 { + yyb2659 = yyj2659 > l } else { - yyb2654 = r.CheckBreak() + yyb2659 = r.CheckBreak() } - if yyb2654 { + if yyb2659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34442,22 +34490,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2657 := &x.ListMeta - yym2658 := z.DecBinary() - _ = yym2658 + yyv2662 := &x.ListMeta + yym2663 := z.DecBinary() + _ = yym2663 if false { - } else if z.HasExtensions() && z.DecExt(yyv2657) { + } else if z.HasExtensions() && z.DecExt(yyv2662) { } else { - z.DecFallback(yyv2657, false) + z.DecFallback(yyv2662, false) } } - yyj2654++ - if yyhl2654 { - yyb2654 = yyj2654 > l + yyj2659++ + if yyhl2659 { + yyb2659 = yyj2659 > l } else { - yyb2654 = r.CheckBreak() + yyb2659 = r.CheckBreak() } - if yyb2654 { + if yyb2659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34465,26 +34513,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2659 := &x.Items - yym2660 := z.DecBinary() - _ = yym2660 + yyv2664 := &x.Items + yym2665 := z.DecBinary() + _ = yym2665 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2659), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2664), d) } } for { - yyj2654++ - if yyhl2654 { - yyb2654 = yyj2654 > l + yyj2659++ + if yyhl2659 { + yyb2659 = yyj2659 > l } else { - yyb2654 = r.CheckBreak() + yyb2659 = r.CheckBreak() } - if yyb2654 { + if yyb2659 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2654-1, "") + z.DecStructFieldNotFound(yyj2659-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34496,37 +34544,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2661 := z.EncBinary() - _ = yym2661 + yym2666 := z.EncBinary() + _ = yym2666 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2662 := !z.EncBinary() - yy2arr2662 := z.EncBasicHandle().StructToArray - var yyq2662 [4]bool - _, _, _ = yysep2662, yyq2662, yy2arr2662 - const yyr2662 bool = false - yyq2662[0] = x.Kind != "" - yyq2662[1] = x.APIVersion != "" - yyq2662[2] = true - var yynn2662 int - if yyr2662 || yy2arr2662 { + yysep2667 := !z.EncBinary() + yy2arr2667 := z.EncBasicHandle().StructToArray + var yyq2667 [4]bool + _, _, _ = yysep2667, yyq2667, yy2arr2667 + const yyr2667 bool = false + yyq2667[0] = x.Kind != "" + yyq2667[1] = x.APIVersion != "" + yyq2667[2] = true + var yynn2667 int + if yyr2667 || yy2arr2667 { r.EncodeArrayStart(4) } else { - yynn2662 = 1 - for _, b := range yyq2662 { + yynn2667 = 1 + for _, b := range yyq2667 { if b { - yynn2662++ + yynn2667++ } } - r.EncodeMapStart(yynn2662) - yynn2662 = 0 + r.EncodeMapStart(yynn2667) + yynn2667 = 0 } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2662[0] { - yym2664 := z.EncBinary() - _ = yym2664 + if yyq2667[0] { + yym2669 := z.EncBinary() + _ = yym2669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34535,23 +34583,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2662[0] { + if yyq2667[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2665 := z.EncBinary() - _ = yym2665 + yym2670 := z.EncBinary() + _ = yym2670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2662[1] { - yym2667 := z.EncBinary() - _ = yym2667 + if yyq2667[1] { + yym2672 := z.EncBinary() + _ = yym2672 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34560,42 +34608,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2662[1] { + if yyq2667[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2668 := z.EncBinary() - _ = yym2668 + yym2673 := z.EncBinary() + _ = yym2673 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2662[2] { - yy2670 := &x.ObjectMeta - yy2670.CodecEncodeSelf(e) + if yyq2667[2] { + yy2675 := &x.ObjectMeta + yy2675.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2662[2] { + if yyq2667[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2671 := &x.ObjectMeta - yy2671.CodecEncodeSelf(e) + yy2676 := &x.ObjectMeta + yy2676.CodecEncodeSelf(e) } } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2673 := z.EncBinary() - _ = yym2673 + yym2678 := z.EncBinary() + _ = yym2678 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -34608,15 +34656,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2674 := z.EncBinary() - _ = yym2674 + yym2679 := z.EncBinary() + _ = yym2679 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2662 || yy2arr2662 { + if yyr2667 || yy2arr2667 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34629,25 +34677,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2675 := z.DecBinary() - _ = yym2675 + yym2680 := z.DecBinary() + _ = yym2680 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2676 := r.ContainerType() - if yyct2676 == codecSelferValueTypeMap1234 { - yyl2676 := r.ReadMapStart() - if yyl2676 == 0 { + yyct2681 := r.ContainerType() + if yyct2681 == codecSelferValueTypeMap1234 { + yyl2681 := r.ReadMapStart() + if yyl2681 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2676, d) + x.codecDecodeSelfFromMap(yyl2681, d) } - } else if yyct2676 == codecSelferValueTypeArray1234 { - yyl2676 := r.ReadArrayStart() - if yyl2676 == 0 { + } else if yyct2681 == codecSelferValueTypeArray1234 { + yyl2681 := r.ReadArrayStart() + if yyl2681 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2676, d) + x.codecDecodeSelfFromArray(yyl2681, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34659,12 +34707,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2677Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2677Slc - var yyhl2677 bool = l >= 0 - for yyj2677 := 0; ; yyj2677++ { - if yyhl2677 { - if yyj2677 >= l { + var yys2682Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2682Slc + var yyhl2682 bool = l >= 0 + for yyj2682 := 0; ; yyj2682++ { + if yyhl2682 { + if yyj2682 >= l { break } } else { @@ -34673,10 +34721,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2677Slc = r.DecodeBytes(yys2677Slc, true, true) - yys2677 := string(yys2677Slc) + yys2682Slc = r.DecodeBytes(yys2682Slc, true, true) + yys2682 := string(yys2682Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2677 { + switch yys2682 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34693,25 +34741,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2680 := &x.ObjectMeta - yyv2680.CodecDecodeSelf(d) + yyv2685 := &x.ObjectMeta + yyv2685.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2681 := &x.Subsets - yym2682 := z.DecBinary() - _ = yym2682 + yyv2686 := &x.Subsets + yym2687 := z.DecBinary() + _ = yym2687 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2681), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2686), d) } } default: - z.DecStructFieldNotFound(-1, yys2677) - } // end switch yys2677 - } // end for yyj2677 + z.DecStructFieldNotFound(-1, yys2682) + } // end switch yys2682 + } // end for yyj2682 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34719,16 +34767,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2683 int - var yyb2683 bool - var yyhl2683 bool = l >= 0 - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l + var yyj2688 int + var yyb2688 bool + var yyhl2688 bool = l >= 0 + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2683 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2683 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34738,13 +34786,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2683 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2683 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34754,13 +34802,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2683 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2683 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34768,16 +34816,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2686 := &x.ObjectMeta - yyv2686.CodecDecodeSelf(d) + yyv2691 := &x.ObjectMeta + yyv2691.CodecDecodeSelf(d) } - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2683 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2683 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34785,26 +34833,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2687 := &x.Subsets - yym2688 := z.DecBinary() - _ = yym2688 + yyv2692 := &x.Subsets + yym2693 := z.DecBinary() + _ = yym2693 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2687), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2692), d) } } for { - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2683 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2683 { + if yyb2688 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2683-1, "") + z.DecStructFieldNotFound(yyj2688-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34816,40 +34864,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2689 := z.EncBinary() - _ = yym2689 + yym2694 := z.EncBinary() + _ = yym2694 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2690 := !z.EncBinary() - yy2arr2690 := z.EncBasicHandle().StructToArray - var yyq2690 [3]bool - _, _, _ = yysep2690, yyq2690, yy2arr2690 - const yyr2690 bool = false - yyq2690[0] = len(x.Addresses) != 0 - yyq2690[1] = len(x.NotReadyAddresses) != 0 - yyq2690[2] = len(x.Ports) != 0 - var yynn2690 int - if yyr2690 || yy2arr2690 { + yysep2695 := !z.EncBinary() + yy2arr2695 := z.EncBasicHandle().StructToArray + var yyq2695 [3]bool + _, _, _ = yysep2695, yyq2695, yy2arr2695 + const yyr2695 bool = false + yyq2695[0] = len(x.Addresses) != 0 + yyq2695[1] = len(x.NotReadyAddresses) != 0 + yyq2695[2] = len(x.Ports) != 0 + var yynn2695 int + if yyr2695 || yy2arr2695 { r.EncodeArrayStart(3) } else { - yynn2690 = 0 - for _, b := range yyq2690 { + yynn2695 = 0 + for _, b := range yyq2695 { if b { - yynn2690++ + yynn2695++ } } - r.EncodeMapStart(yynn2690) - yynn2690 = 0 + r.EncodeMapStart(yynn2695) + yynn2695 = 0 } - if yyr2690 || yy2arr2690 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2690[0] { + if yyq2695[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2692 := z.EncBinary() - _ = yym2692 + yym2697 := z.EncBinary() + _ = yym2697 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34859,15 +34907,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2690[0] { + if yyq2695[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2693 := z.EncBinary() - _ = yym2693 + yym2698 := z.EncBinary() + _ = yym2698 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34875,14 +34923,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2690 || yy2arr2690 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2690[1] { + if yyq2695[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2695 := z.EncBinary() - _ = yym2695 + yym2700 := z.EncBinary() + _ = yym2700 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34892,15 +34940,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2690[1] { + if yyq2695[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2696 := z.EncBinary() - _ = yym2696 + yym2701 := z.EncBinary() + _ = yym2701 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34908,14 +34956,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2690 || yy2arr2690 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2690[2] { + if yyq2695[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2698 := z.EncBinary() - _ = yym2698 + yym2703 := z.EncBinary() + _ = yym2703 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34925,15 +34973,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2690[2] { + if yyq2695[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2699 := z.EncBinary() - _ = yym2699 + yym2704 := z.EncBinary() + _ = yym2704 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34941,7 +34989,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2690 || yy2arr2690 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34954,25 +35002,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2700 := z.DecBinary() - _ = yym2700 + yym2705 := z.DecBinary() + _ = yym2705 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2701 := r.ContainerType() - if yyct2701 == codecSelferValueTypeMap1234 { - yyl2701 := r.ReadMapStart() - if yyl2701 == 0 { + yyct2706 := r.ContainerType() + if yyct2706 == codecSelferValueTypeMap1234 { + yyl2706 := r.ReadMapStart() + if yyl2706 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2701, d) + x.codecDecodeSelfFromMap(yyl2706, d) } - } else if yyct2701 == codecSelferValueTypeArray1234 { - yyl2701 := r.ReadArrayStart() - if yyl2701 == 0 { + } else if yyct2706 == codecSelferValueTypeArray1234 { + yyl2706 := r.ReadArrayStart() + if yyl2706 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2701, d) + x.codecDecodeSelfFromArray(yyl2706, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34984,12 +35032,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2702Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2702Slc - var yyhl2702 bool = l >= 0 - for yyj2702 := 0; ; yyj2702++ { - if yyhl2702 { - if yyj2702 >= l { + var yys2707Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2707Slc + var yyhl2707 bool = l >= 0 + for yyj2707 := 0; ; yyj2707++ { + if yyhl2707 { + if yyj2707 >= l { break } } else { @@ -34998,50 +35046,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2702Slc = r.DecodeBytes(yys2702Slc, true, true) - yys2702 := string(yys2702Slc) + yys2707Slc = r.DecodeBytes(yys2707Slc, true, true) + yys2707 := string(yys2707Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2702 { + switch yys2707 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2703 := &x.Addresses - yym2704 := z.DecBinary() - _ = yym2704 + yyv2708 := &x.Addresses + yym2709 := z.DecBinary() + _ = yym2709 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2703), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2708), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2705 := &x.NotReadyAddresses - yym2706 := z.DecBinary() - _ = yym2706 + yyv2710 := &x.NotReadyAddresses + yym2711 := z.DecBinary() + _ = yym2711 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2705), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2710), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2707 := &x.Ports - yym2708 := z.DecBinary() - _ = yym2708 + yyv2712 := &x.Ports + yym2713 := z.DecBinary() + _ = yym2713 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2707), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2712), d) } } default: - z.DecStructFieldNotFound(-1, yys2702) - } // end switch yys2702 - } // end for yyj2702 + z.DecStructFieldNotFound(-1, yys2707) + } // end switch yys2707 + } // end for yyj2707 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35049,16 +35097,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2709 int - var yyb2709 bool - var yyhl2709 bool = l >= 0 - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + var yyj2714 int + var yyb2714 bool + var yyhl2714 bool = l >= 0 + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35066,21 +35114,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2710 := &x.Addresses - yym2711 := z.DecBinary() - _ = yym2711 + yyv2715 := &x.Addresses + yym2716 := z.DecBinary() + _ = yym2716 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2710), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2715), d) } } - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35088,21 +35136,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2712 := &x.NotReadyAddresses - yym2713 := z.DecBinary() - _ = yym2713 + yyv2717 := &x.NotReadyAddresses + yym2718 := z.DecBinary() + _ = yym2718 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2712), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2717), d) } } - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35110,26 +35158,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2714 := &x.Ports - yym2715 := z.DecBinary() - _ = yym2715 + yyv2719 := &x.Ports + yym2720 := z.DecBinary() + _ = yym2720 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2714), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2719), d) } } for { - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2709-1, "") + z.DecStructFieldNotFound(yyj2714-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35141,36 +35189,36 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2716 := z.EncBinary() - _ = yym2716 + yym2721 := z.EncBinary() + _ = yym2721 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2717 := !z.EncBinary() - yy2arr2717 := z.EncBasicHandle().StructToArray - var yyq2717 [4]bool - _, _, _ = yysep2717, yyq2717, yy2arr2717 - const yyr2717 bool = false - yyq2717[1] = x.Hostname != "" - yyq2717[2] = x.NodeName != nil - yyq2717[3] = x.TargetRef != nil - var yynn2717 int - if yyr2717 || yy2arr2717 { + yysep2722 := !z.EncBinary() + yy2arr2722 := z.EncBasicHandle().StructToArray + var yyq2722 [4]bool + _, _, _ = yysep2722, yyq2722, yy2arr2722 + const yyr2722 bool = false + yyq2722[1] = x.Hostname != "" + yyq2722[2] = x.NodeName != nil + yyq2722[3] = x.TargetRef != nil + var yynn2722 int + if yyr2722 || yy2arr2722 { r.EncodeArrayStart(4) } else { - yynn2717 = 1 - for _, b := range yyq2717 { + yynn2722 = 1 + for _, b := range yyq2722 { if b { - yynn2717++ + yynn2722++ } } - r.EncodeMapStart(yynn2717) - yynn2717 = 0 + r.EncodeMapStart(yynn2722) + yynn2722 = 0 } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2719 := z.EncBinary() - _ = yym2719 + yym2724 := z.EncBinary() + _ = yym2724 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -35179,18 +35227,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2720 := z.EncBinary() - _ = yym2720 + yym2725 := z.EncBinary() + _ = yym2725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2717[1] { - yym2722 := z.EncBinary() - _ = yym2722 + if yyq2722[1] { + yym2727 := z.EncBinary() + _ = yym2727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -35199,56 +35247,56 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2717[1] { + if yyq2722[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2723 := z.EncBinary() - _ = yym2723 + yym2728 := z.EncBinary() + _ = yym2728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2717[2] { + if yyq2722[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2725 := *x.NodeName - yym2726 := z.EncBinary() - _ = yym2726 + yy2730 := *x.NodeName + yym2731 := z.EncBinary() + _ = yym2731 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2725)) + r.EncodeString(codecSelferC_UTF81234, string(yy2730)) } } } else { r.EncodeNil() } } else { - if yyq2717[2] { + if yyq2722[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2727 := *x.NodeName - yym2728 := z.EncBinary() - _ = yym2728 + yy2732 := *x.NodeName + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2727)) + r.EncodeString(codecSelferC_UTF81234, string(yy2732)) } } } } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2717[3] { + if yyq2722[3] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -35258,7 +35306,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2717[3] { + if yyq2722[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -35269,7 +35317,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35282,25 +35330,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2730 := z.DecBinary() - _ = yym2730 + yym2735 := z.DecBinary() + _ = yym2735 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2731 := r.ContainerType() - if yyct2731 == codecSelferValueTypeMap1234 { - yyl2731 := r.ReadMapStart() - if yyl2731 == 0 { + yyct2736 := r.ContainerType() + if yyct2736 == codecSelferValueTypeMap1234 { + yyl2736 := r.ReadMapStart() + if yyl2736 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2731, d) + x.codecDecodeSelfFromMap(yyl2736, d) } - } else if yyct2731 == codecSelferValueTypeArray1234 { - yyl2731 := r.ReadArrayStart() - if yyl2731 == 0 { + } else if yyct2736 == codecSelferValueTypeArray1234 { + yyl2736 := r.ReadArrayStart() + if yyl2736 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2731, d) + x.codecDecodeSelfFromArray(yyl2736, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35312,12 +35360,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2732Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2732Slc - var yyhl2732 bool = l >= 0 - for yyj2732 := 0; ; yyj2732++ { - if yyhl2732 { - if yyj2732 >= l { + var yys2737Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2737Slc + var yyhl2737 bool = l >= 0 + for yyj2737 := 0; ; yyj2737++ { + if yyhl2737 { + if yyj2737 >= l { break } } else { @@ -35326,10 +35374,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2732Slc = r.DecodeBytes(yys2732Slc, true, true) - yys2732 := string(yys2732Slc) + yys2737Slc = r.DecodeBytes(yys2737Slc, true, true) + yys2737 := string(yys2737Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2732 { + switch yys2737 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -35351,8 +35399,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2736 := z.DecBinary() - _ = yym2736 + yym2741 := z.DecBinary() + _ = yym2741 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -35370,9 +35418,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2732) - } // end switch yys2732 - } // end for yyj2732 + z.DecStructFieldNotFound(-1, yys2737) + } // end switch yys2737 + } // end for yyj2737 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35380,16 +35428,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2738 int - var yyb2738 bool - var yyhl2738 bool = l >= 0 - yyj2738++ - if yyhl2738 { - yyb2738 = yyj2738 > l + var yyj2743 int + var yyb2743 bool + var yyhl2743 bool = l >= 0 + yyj2743++ + if yyhl2743 { + yyb2743 = yyj2743 > l } else { - yyb2738 = r.CheckBreak() + yyb2743 = r.CheckBreak() } - if yyb2738 { + if yyb2743 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35399,13 +35447,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2738++ - if yyhl2738 { - yyb2738 = yyj2738 > l + yyj2743++ + if yyhl2743 { + yyb2743 = yyj2743 > l } else { - yyb2738 = r.CheckBreak() + yyb2743 = r.CheckBreak() } - if yyb2738 { + if yyb2743 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35415,13 +35463,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2738++ - if yyhl2738 { - yyb2738 = yyj2738 > l + yyj2743++ + if yyhl2743 { + yyb2743 = yyj2743 > l } else { - yyb2738 = r.CheckBreak() + yyb2743 = r.CheckBreak() } - if yyb2738 { + if yyb2743 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35434,20 +35482,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2742 := z.DecBinary() - _ = yym2742 + yym2747 := z.DecBinary() + _ = yym2747 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2738++ - if yyhl2738 { - yyb2738 = yyj2738 > l + yyj2743++ + if yyhl2743 { + yyb2743 = yyj2743 > l } else { - yyb2738 = r.CheckBreak() + yyb2743 = r.CheckBreak() } - if yyb2738 { + if yyb2743 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35463,17 +35511,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2738++ - if yyhl2738 { - yyb2738 = yyj2738 > l + yyj2743++ + if yyhl2743 { + yyb2743 = yyj2743 > l } else { - yyb2738 = r.CheckBreak() + yyb2743 = r.CheckBreak() } - if yyb2738 { + if yyb2743 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2738-1, "") + z.DecStructFieldNotFound(yyj2743-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35485,36 +35533,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2744 := z.EncBinary() - _ = yym2744 + yym2749 := z.EncBinary() + _ = yym2749 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2745 := !z.EncBinary() - yy2arr2745 := z.EncBasicHandle().StructToArray - var yyq2745 [3]bool - _, _, _ = yysep2745, yyq2745, yy2arr2745 - const yyr2745 bool = false - yyq2745[0] = x.Name != "" - yyq2745[2] = x.Protocol != "" - var yynn2745 int - if yyr2745 || yy2arr2745 { + yysep2750 := !z.EncBinary() + yy2arr2750 := z.EncBasicHandle().StructToArray + var yyq2750 [3]bool + _, _, _ = yysep2750, yyq2750, yy2arr2750 + const yyr2750 bool = false + yyq2750[0] = x.Name != "" + yyq2750[2] = x.Protocol != "" + var yynn2750 int + if yyr2750 || yy2arr2750 { r.EncodeArrayStart(3) } else { - yynn2745 = 1 - for _, b := range yyq2745 { + yynn2750 = 1 + for _, b := range yyq2750 { if b { - yynn2745++ + yynn2750++ } } - r.EncodeMapStart(yynn2745) - yynn2745 = 0 + r.EncodeMapStart(yynn2750) + yynn2750 = 0 } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[0] { - yym2747 := z.EncBinary() - _ = yym2747 + if yyq2750[0] { + yym2752 := z.EncBinary() + _ = yym2752 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -35523,22 +35571,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2745[0] { + if yyq2750[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2748 := z.EncBinary() - _ = yym2748 + yym2753 := z.EncBinary() + _ = yym2753 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2750 := z.EncBinary() - _ = yym2750 + yym2755 := z.EncBinary() + _ = yym2755 if false { } else { r.EncodeInt(int64(x.Port)) @@ -35547,29 +35595,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2751 := z.EncBinary() - _ = yym2751 + yym2756 := z.EncBinary() + _ = yym2756 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[2] { + if yyq2750[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2745[2] { + if yyq2750[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35582,25 +35630,25 @@ func (x *EndpointPort) 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) @@ -35612,12 +35660,12 @@ func (x *EndpointPort) 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 { @@ -35626,10 +35674,10 @@ func (x *EndpointPort) 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 "name": if r.TryDecodeAsNil() { x.Name = "" @@ -35649,9 +35697,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } 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) } @@ -35659,16 +35707,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2759 int - var yyb2759 bool - var yyhl2759 bool = l >= 0 - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + var yyj2764 int + var yyb2764 bool + var yyhl2764 bool = l >= 0 + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35678,13 +35726,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35694,13 +35742,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35711,17 +35759,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2759-1, "") + z.DecStructFieldNotFound(yyj2764-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35733,37 +35781,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2763 := z.EncBinary() - _ = yym2763 + yym2768 := z.EncBinary() + _ = yym2768 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2764 := !z.EncBinary() - yy2arr2764 := z.EncBasicHandle().StructToArray - var yyq2764 [4]bool - _, _, _ = yysep2764, yyq2764, yy2arr2764 - const yyr2764 bool = false - yyq2764[0] = x.Kind != "" - yyq2764[1] = x.APIVersion != "" - yyq2764[2] = true - var yynn2764 int - if yyr2764 || yy2arr2764 { + yysep2769 := !z.EncBinary() + yy2arr2769 := z.EncBasicHandle().StructToArray + var yyq2769 [4]bool + _, _, _ = yysep2769, yyq2769, yy2arr2769 + const yyr2769 bool = false + yyq2769[0] = x.Kind != "" + yyq2769[1] = x.APIVersion != "" + yyq2769[2] = true + var yynn2769 int + if yyr2769 || yy2arr2769 { r.EncodeArrayStart(4) } else { - yynn2764 = 1 - for _, b := range yyq2764 { + yynn2769 = 1 + for _, b := range yyq2769 { if b { - yynn2764++ + yynn2769++ } } - r.EncodeMapStart(yynn2764) - yynn2764 = 0 + r.EncodeMapStart(yynn2769) + yynn2769 = 0 } - if yyr2764 || yy2arr2764 { + if yyr2769 || yy2arr2769 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2764[0] { - yym2766 := z.EncBinary() - _ = yym2766 + if yyq2769[0] { + yym2771 := z.EncBinary() + _ = yym2771 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35772,23 +35820,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2764[0] { + if yyq2769[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2767 := z.EncBinary() - _ = yym2767 + yym2772 := z.EncBinary() + _ = yym2772 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2764 || yy2arr2764 { + if yyr2769 || yy2arr2769 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2764[1] { - yym2769 := z.EncBinary() - _ = yym2769 + if yyq2769[1] { + yym2774 := z.EncBinary() + _ = yym2774 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35797,54 +35845,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2764[1] { + if yyq2769[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2770 := z.EncBinary() - _ = yym2770 + yym2775 := z.EncBinary() + _ = yym2775 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2764 || yy2arr2764 { + if yyr2769 || yy2arr2769 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2764[2] { - yy2772 := &x.ListMeta - yym2773 := z.EncBinary() - _ = yym2773 + if yyq2769[2] { + yy2777 := &x.ListMeta + yym2778 := z.EncBinary() + _ = yym2778 if false { - } else if z.HasExtensions() && z.EncExt(yy2772) { + } else if z.HasExtensions() && z.EncExt(yy2777) { } else { - z.EncFallback(yy2772) + z.EncFallback(yy2777) } } else { r.EncodeNil() } } else { - if yyq2764[2] { + if yyq2769[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2774 := &x.ListMeta - yym2775 := z.EncBinary() - _ = yym2775 + yy2779 := &x.ListMeta + yym2780 := z.EncBinary() + _ = yym2780 if false { - } else if z.HasExtensions() && z.EncExt(yy2774) { + } else if z.HasExtensions() && z.EncExt(yy2779) { } else { - z.EncFallback(yy2774) + z.EncFallback(yy2779) } } } - if yyr2764 || yy2arr2764 { + if yyr2769 || yy2arr2769 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2777 := z.EncBinary() - _ = yym2777 + yym2782 := z.EncBinary() + _ = yym2782 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -35857,15 +35905,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2778 := z.EncBinary() - _ = yym2778 + yym2783 := z.EncBinary() + _ = yym2783 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2764 || yy2arr2764 { + if yyr2769 || yy2arr2769 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35878,25 +35926,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2779 := z.DecBinary() - _ = yym2779 + yym2784 := z.DecBinary() + _ = yym2784 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2780 := r.ContainerType() - if yyct2780 == codecSelferValueTypeMap1234 { - yyl2780 := r.ReadMapStart() - if yyl2780 == 0 { + yyct2785 := r.ContainerType() + if yyct2785 == codecSelferValueTypeMap1234 { + yyl2785 := r.ReadMapStart() + if yyl2785 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2780, d) + x.codecDecodeSelfFromMap(yyl2785, d) } - } else if yyct2780 == codecSelferValueTypeArray1234 { - yyl2780 := r.ReadArrayStart() - if yyl2780 == 0 { + } else if yyct2785 == codecSelferValueTypeArray1234 { + yyl2785 := r.ReadArrayStart() + if yyl2785 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2780, d) + x.codecDecodeSelfFromArray(yyl2785, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35908,12 +35956,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2781Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2781Slc - var yyhl2781 bool = l >= 0 - for yyj2781 := 0; ; yyj2781++ { - if yyhl2781 { - if yyj2781 >= l { + var yys2786Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2786Slc + var yyhl2786 bool = l >= 0 + for yyj2786 := 0; ; yyj2786++ { + if yyhl2786 { + if yyj2786 >= l { break } } else { @@ -35922,10 +35970,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2781Slc = r.DecodeBytes(yys2781Slc, true, true) - yys2781 := string(yys2781Slc) + yys2786Slc = r.DecodeBytes(yys2786Slc, true, true) + yys2786 := string(yys2786Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2781 { + switch yys2786 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35942,31 +35990,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2784 := &x.ListMeta - yym2785 := z.DecBinary() - _ = yym2785 + yyv2789 := &x.ListMeta + yym2790 := z.DecBinary() + _ = yym2790 if false { - } else if z.HasExtensions() && z.DecExt(yyv2784) { + } else if z.HasExtensions() && z.DecExt(yyv2789) { } else { - z.DecFallback(yyv2784, false) + z.DecFallback(yyv2789, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2786 := &x.Items - yym2787 := z.DecBinary() - _ = yym2787 + yyv2791 := &x.Items + yym2792 := z.DecBinary() + _ = yym2792 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2786), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2791), d) } } default: - z.DecStructFieldNotFound(-1, yys2781) - } // end switch yys2781 - } // end for yyj2781 + z.DecStructFieldNotFound(-1, yys2786) + } // end switch yys2786 + } // end for yyj2786 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35974,16 +36022,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2788 int - var yyb2788 bool - var yyhl2788 bool = l >= 0 - yyj2788++ - if yyhl2788 { - yyb2788 = yyj2788 > l + var yyj2793 int + var yyb2793 bool + var yyhl2793 bool = l >= 0 + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l } else { - yyb2788 = r.CheckBreak() + yyb2793 = r.CheckBreak() } - if yyb2788 { + if yyb2793 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35993,13 +36041,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2788++ - if yyhl2788 { - yyb2788 = yyj2788 > l + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l } else { - yyb2788 = r.CheckBreak() + yyb2793 = r.CheckBreak() } - if yyb2788 { + if yyb2793 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36009,13 +36057,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2788++ - if yyhl2788 { - yyb2788 = yyj2788 > l + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l } else { - yyb2788 = r.CheckBreak() + yyb2793 = r.CheckBreak() } - if yyb2788 { + if yyb2793 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36023,22 +36071,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2791 := &x.ListMeta - yym2792 := z.DecBinary() - _ = yym2792 + yyv2796 := &x.ListMeta + yym2797 := z.DecBinary() + _ = yym2797 if false { - } else if z.HasExtensions() && z.DecExt(yyv2791) { + } else if z.HasExtensions() && z.DecExt(yyv2796) { } else { - z.DecFallback(yyv2791, false) + z.DecFallback(yyv2796, false) } } - yyj2788++ - if yyhl2788 { - yyb2788 = yyj2788 > l + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l } else { - yyb2788 = r.CheckBreak() + yyb2793 = r.CheckBreak() } - if yyb2788 { + if yyb2793 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36046,26 +36094,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2793 := &x.Items - yym2794 := z.DecBinary() - _ = yym2794 + yyv2798 := &x.Items + yym2799 := z.DecBinary() + _ = yym2799 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2793), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2798), d) } } for { - yyj2788++ - if yyhl2788 { - yyb2788 = yyj2788 > l + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l } else { - yyb2788 = r.CheckBreak() + yyb2793 = r.CheckBreak() } - if yyb2788 { + if yyb2793 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2788-1, "") + z.DecStructFieldNotFound(yyj2793-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36077,38 +36125,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2795 := z.EncBinary() - _ = yym2795 + yym2800 := z.EncBinary() + _ = yym2800 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2796 := !z.EncBinary() - yy2arr2796 := z.EncBasicHandle().StructToArray - var yyq2796 [4]bool - _, _, _ = yysep2796, yyq2796, yy2arr2796 - const yyr2796 bool = false - yyq2796[0] = x.PodCIDR != "" - yyq2796[1] = x.ExternalID != "" - yyq2796[2] = x.ProviderID != "" - yyq2796[3] = x.Unschedulable != false - var yynn2796 int - if yyr2796 || yy2arr2796 { + yysep2801 := !z.EncBinary() + yy2arr2801 := z.EncBasicHandle().StructToArray + var yyq2801 [4]bool + _, _, _ = yysep2801, yyq2801, yy2arr2801 + const yyr2801 bool = false + yyq2801[0] = x.PodCIDR != "" + yyq2801[1] = x.ExternalID != "" + yyq2801[2] = x.ProviderID != "" + yyq2801[3] = x.Unschedulable != false + var yynn2801 int + if yyr2801 || yy2arr2801 { r.EncodeArrayStart(4) } else { - yynn2796 = 0 - for _, b := range yyq2796 { + yynn2801 = 0 + for _, b := range yyq2801 { if b { - yynn2796++ + yynn2801++ } } - r.EncodeMapStart(yynn2796) - yynn2796 = 0 + r.EncodeMapStart(yynn2801) + yynn2801 = 0 } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2796[0] { - yym2798 := z.EncBinary() - _ = yym2798 + if yyq2801[0] { + yym2803 := z.EncBinary() + _ = yym2803 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -36117,23 +36165,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2796[0] { + if yyq2801[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2799 := z.EncBinary() - _ = yym2799 + yym2804 := z.EncBinary() + _ = yym2804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2796[1] { - yym2801 := z.EncBinary() - _ = yym2801 + if yyq2801[1] { + yym2806 := z.EncBinary() + _ = yym2806 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -36142,23 +36190,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2796[1] { + if yyq2801[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2802 := z.EncBinary() - _ = yym2802 + yym2807 := z.EncBinary() + _ = yym2807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2796[2] { - yym2804 := z.EncBinary() - _ = yym2804 + if yyq2801[2] { + yym2809 := z.EncBinary() + _ = yym2809 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -36167,23 +36215,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2796[2] { + if yyq2801[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2805 := z.EncBinary() - _ = yym2805 + yym2810 := z.EncBinary() + _ = yym2810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2796[3] { - yym2807 := z.EncBinary() - _ = yym2807 + if yyq2801[3] { + yym2812 := z.EncBinary() + _ = yym2812 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -36192,19 +36240,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2796[3] { + if yyq2801[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2808 := z.EncBinary() - _ = yym2808 + yym2813 := z.EncBinary() + _ = yym2813 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2796 || yy2arr2796 { + if yyr2801 || yy2arr2801 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36217,25 +36265,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2809 := z.DecBinary() - _ = yym2809 + yym2814 := z.DecBinary() + _ = yym2814 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2810 := r.ContainerType() - if yyct2810 == codecSelferValueTypeMap1234 { - yyl2810 := r.ReadMapStart() - if yyl2810 == 0 { + yyct2815 := r.ContainerType() + if yyct2815 == codecSelferValueTypeMap1234 { + yyl2815 := r.ReadMapStart() + if yyl2815 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2810, d) + x.codecDecodeSelfFromMap(yyl2815, d) } - } else if yyct2810 == codecSelferValueTypeArray1234 { - yyl2810 := r.ReadArrayStart() - if yyl2810 == 0 { + } else if yyct2815 == codecSelferValueTypeArray1234 { + yyl2815 := r.ReadArrayStart() + if yyl2815 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2810, d) + x.codecDecodeSelfFromArray(yyl2815, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36247,12 +36295,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2811Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2811Slc - var yyhl2811 bool = l >= 0 - for yyj2811 := 0; ; yyj2811++ { - if yyhl2811 { - if yyj2811 >= l { + var yys2816Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2816Slc + var yyhl2816 bool = l >= 0 + for yyj2816 := 0; ; yyj2816++ { + if yyhl2816 { + if yyj2816 >= l { break } } else { @@ -36261,10 +36309,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2811Slc = r.DecodeBytes(yys2811Slc, true, true) - yys2811 := string(yys2811Slc) + yys2816Slc = r.DecodeBytes(yys2816Slc, true, true) + yys2816 := string(yys2816Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2811 { + switch yys2816 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -36290,9 +36338,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2811) - } // end switch yys2811 - } // end for yyj2811 + z.DecStructFieldNotFound(-1, yys2816) + } // end switch yys2816 + } // end for yyj2816 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36300,16 +36348,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2816 int - var yyb2816 bool - var yyhl2816 bool = l >= 0 - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + var yyj2821 int + var yyb2821 bool + var yyhl2821 bool = l >= 0 + yyj2821++ + if yyhl2821 { + yyb2821 = yyj2821 > l } else { - yyb2816 = r.CheckBreak() + yyb2821 = r.CheckBreak() } - if yyb2816 { + if yyb2821 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36319,13 +36367,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2821++ + if yyhl2821 { + yyb2821 = yyj2821 > l } else { - yyb2816 = r.CheckBreak() + yyb2821 = r.CheckBreak() } - if yyb2816 { + if yyb2821 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36335,13 +36383,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2821++ + if yyhl2821 { + yyb2821 = yyj2821 > l } else { - yyb2816 = r.CheckBreak() + yyb2821 = r.CheckBreak() } - if yyb2816 { + if yyb2821 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36351,13 +36399,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2821++ + if yyhl2821 { + yyb2821 = yyj2821 > l } else { - yyb2816 = r.CheckBreak() + yyb2821 = r.CheckBreak() } - if yyb2816 { + if yyb2821 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36368,17 +36416,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2821++ + if yyhl2821 { + yyb2821 = yyj2821 > l } else { - yyb2816 = r.CheckBreak() + yyb2821 = r.CheckBreak() } - if yyb2816 { + if yyb2821 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2816-1, "") + z.DecStructFieldNotFound(yyj2821-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36390,33 +36438,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2821 := z.EncBinary() - _ = yym2821 + yym2826 := z.EncBinary() + _ = yym2826 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2822 := !z.EncBinary() - yy2arr2822 := z.EncBasicHandle().StructToArray - var yyq2822 [1]bool - _, _, _ = yysep2822, yyq2822, yy2arr2822 - const yyr2822 bool = false - var yynn2822 int - if yyr2822 || yy2arr2822 { + yysep2827 := !z.EncBinary() + yy2arr2827 := z.EncBasicHandle().StructToArray + var yyq2827 [1]bool + _, _, _ = yysep2827, yyq2827, yy2arr2827 + const yyr2827 bool = false + var yynn2827 int + if yyr2827 || yy2arr2827 { r.EncodeArrayStart(1) } else { - yynn2822 = 1 - for _, b := range yyq2822 { + yynn2827 = 1 + for _, b := range yyq2827 { if b { - yynn2822++ + yynn2827++ } } - r.EncodeMapStart(yynn2822) - yynn2822 = 0 + r.EncodeMapStart(yynn2827) + yynn2827 = 0 } - if yyr2822 || yy2arr2822 { + if yyr2827 || yy2arr2827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2824 := z.EncBinary() - _ = yym2824 + yym2829 := z.EncBinary() + _ = yym2829 if false { } else { r.EncodeInt(int64(x.Port)) @@ -36425,14 +36473,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2825 := z.EncBinary() - _ = yym2825 + yym2830 := z.EncBinary() + _ = yym2830 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2822 || yy2arr2822 { + if yyr2827 || yy2arr2827 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36445,25 +36493,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2826 := z.DecBinary() - _ = yym2826 + yym2831 := z.DecBinary() + _ = yym2831 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2827 := r.ContainerType() - if yyct2827 == codecSelferValueTypeMap1234 { - yyl2827 := r.ReadMapStart() - if yyl2827 == 0 { + yyct2832 := r.ContainerType() + if yyct2832 == codecSelferValueTypeMap1234 { + yyl2832 := r.ReadMapStart() + if yyl2832 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2827, d) + x.codecDecodeSelfFromMap(yyl2832, d) } - } else if yyct2827 == codecSelferValueTypeArray1234 { - yyl2827 := r.ReadArrayStart() - if yyl2827 == 0 { + } else if yyct2832 == codecSelferValueTypeArray1234 { + yyl2832 := r.ReadArrayStart() + if yyl2832 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2827, d) + x.codecDecodeSelfFromArray(yyl2832, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36475,12 +36523,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2828Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2828Slc - var yyhl2828 bool = l >= 0 - for yyj2828 := 0; ; yyj2828++ { - if yyhl2828 { - if yyj2828 >= l { + var yys2833Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2833Slc + var yyhl2833 bool = l >= 0 + for yyj2833 := 0; ; yyj2833++ { + if yyhl2833 { + if yyj2833 >= l { break } } else { @@ -36489,10 +36537,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2828Slc = r.DecodeBytes(yys2828Slc, true, true) - yys2828 := string(yys2828Slc) + yys2833Slc = r.DecodeBytes(yys2833Slc, true, true) + yys2833 := string(yys2833Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2828 { + switch yys2833 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -36500,9 +36548,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2828) - } // end switch yys2828 - } // end for yyj2828 + z.DecStructFieldNotFound(-1, yys2833) + } // end switch yys2833 + } // end for yyj2833 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36510,16 +36558,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2830 int - var yyb2830 bool - var yyhl2830 bool = l >= 0 - yyj2830++ - if yyhl2830 { - yyb2830 = yyj2830 > l + var yyj2835 int + var yyb2835 bool + var yyhl2835 bool = l >= 0 + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2830 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2830 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36530,17 +36578,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2830++ - if yyhl2830 { - yyb2830 = yyj2830 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2830 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2830 { + if yyb2835 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2830-1, "") + z.DecStructFieldNotFound(yyj2835-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36552,48 +36600,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2832 := z.EncBinary() - _ = yym2832 + yym2837 := z.EncBinary() + _ = yym2837 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2833 := !z.EncBinary() - yy2arr2833 := z.EncBasicHandle().StructToArray - var yyq2833 [1]bool - _, _, _ = yysep2833, yyq2833, yy2arr2833 - const yyr2833 bool = false - yyq2833[0] = true - var yynn2833 int - if yyr2833 || yy2arr2833 { + yysep2838 := !z.EncBinary() + yy2arr2838 := z.EncBasicHandle().StructToArray + var yyq2838 [1]bool + _, _, _ = yysep2838, yyq2838, yy2arr2838 + const yyr2838 bool = false + yyq2838[0] = true + var yynn2838 int + if yyr2838 || yy2arr2838 { r.EncodeArrayStart(1) } else { - yynn2833 = 0 - for _, b := range yyq2833 { + yynn2838 = 0 + for _, b := range yyq2838 { if b { - yynn2833++ + yynn2838++ } } - r.EncodeMapStart(yynn2833) - yynn2833 = 0 + r.EncodeMapStart(yynn2838) + yynn2838 = 0 } - if yyr2833 || yy2arr2833 { + if yyr2838 || yy2arr2838 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2833[0] { - yy2835 := &x.KubeletEndpoint - yy2835.CodecEncodeSelf(e) + if yyq2838[0] { + yy2840 := &x.KubeletEndpoint + yy2840.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2833[0] { + if yyq2838[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2836 := &x.KubeletEndpoint - yy2836.CodecEncodeSelf(e) + yy2841 := &x.KubeletEndpoint + yy2841.CodecEncodeSelf(e) } } - if yyr2833 || yy2arr2833 { + if yyr2838 || yy2arr2838 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36606,25 +36654,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2837 := z.DecBinary() - _ = yym2837 + yym2842 := z.DecBinary() + _ = yym2842 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2838 := r.ContainerType() - if yyct2838 == codecSelferValueTypeMap1234 { - yyl2838 := r.ReadMapStart() - if yyl2838 == 0 { + yyct2843 := r.ContainerType() + if yyct2843 == codecSelferValueTypeMap1234 { + yyl2843 := r.ReadMapStart() + if yyl2843 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2838, d) + x.codecDecodeSelfFromMap(yyl2843, d) } - } else if yyct2838 == codecSelferValueTypeArray1234 { - yyl2838 := r.ReadArrayStart() - if yyl2838 == 0 { + } else if yyct2843 == codecSelferValueTypeArray1234 { + yyl2843 := r.ReadArrayStart() + if yyl2843 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2838, d) + x.codecDecodeSelfFromArray(yyl2843, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36636,12 +36684,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2839Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2839Slc - var yyhl2839 bool = l >= 0 - for yyj2839 := 0; ; yyj2839++ { - if yyhl2839 { - if yyj2839 >= l { + var yys2844Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2844Slc + var yyhl2844 bool = l >= 0 + for yyj2844 := 0; ; yyj2844++ { + if yyhl2844 { + if yyj2844 >= l { break } } else { @@ -36650,21 +36698,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2839Slc = r.DecodeBytes(yys2839Slc, true, true) - yys2839 := string(yys2839Slc) + yys2844Slc = r.DecodeBytes(yys2844Slc, true, true) + yys2844 := string(yys2844Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2839 { + switch yys2844 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2840 := &x.KubeletEndpoint - yyv2840.CodecDecodeSelf(d) + yyv2845 := &x.KubeletEndpoint + yyv2845.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2839) - } // end switch yys2839 - } // end for yyj2839 + z.DecStructFieldNotFound(-1, yys2844) + } // end switch yys2844 + } // end for yyj2844 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36672,16 +36720,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2841 int - var yyb2841 bool - var yyhl2841 bool = l >= 0 - yyj2841++ - if yyhl2841 { - yyb2841 = yyj2841 > l + var yyj2846 int + var yyb2846 bool + var yyhl2846 bool = l >= 0 + yyj2846++ + if yyhl2846 { + yyb2846 = yyj2846 > l } else { - yyb2841 = r.CheckBreak() + yyb2846 = r.CheckBreak() } - if yyb2841 { + if yyb2846 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36689,21 +36737,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2842 := &x.KubeletEndpoint - yyv2842.CodecDecodeSelf(d) + yyv2847 := &x.KubeletEndpoint + yyv2847.CodecDecodeSelf(d) } for { - yyj2841++ - if yyhl2841 { - yyb2841 = yyj2841 > l + yyj2846++ + if yyhl2846 { + yyb2846 = yyj2846 > l } else { - yyb2841 = r.CheckBreak() + yyb2846 = r.CheckBreak() } - if yyb2841 { + if yyb2846 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2841-1, "") + z.DecStructFieldNotFound(yyj2846-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36715,33 +36763,33 @@ func (x *NodeSystemInfo) 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 - var yynn2844 int - if yyr2844 || yy2arr2844 { + yysep2849 := !z.EncBinary() + yy2arr2849 := z.EncBasicHandle().StructToArray + var yyq2849 [10]bool + _, _, _ = yysep2849, yyq2849, yy2arr2849 + const yyr2849 bool = false + var yynn2849 int + if yyr2849 || yy2arr2849 { r.EncodeArrayStart(10) } else { - yynn2844 = 10 - for _, b := range yyq2844 { + yynn2849 = 10 + 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) - yym2846 := z.EncBinary() - _ = yym2846 + yym2851 := z.EncBinary() + _ = yym2851 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -36750,17 +36798,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2847 := z.EncBinary() - _ = yym2847 + yym2852 := z.EncBinary() + _ = yym2852 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2849 := z.EncBinary() - _ = yym2849 + yym2854 := z.EncBinary() + _ = yym2854 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -36769,17 +36817,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2850 := z.EncBinary() - _ = yym2850 + yym2855 := z.EncBinary() + _ = yym2855 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2852 := z.EncBinary() - _ = yym2852 + yym2857 := z.EncBinary() + _ = yym2857 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -36788,17 +36836,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2853 := z.EncBinary() - _ = yym2853 + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2855 := z.EncBinary() - _ = yym2855 + yym2860 := z.EncBinary() + _ = yym2860 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -36807,17 +36855,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2856 := z.EncBinary() - _ = yym2856 + yym2861 := z.EncBinary() + _ = yym2861 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2858 := z.EncBinary() - _ = yym2858 + yym2863 := z.EncBinary() + _ = yym2863 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -36826,17 +36874,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2859 := z.EncBinary() - _ = yym2859 + yym2864 := z.EncBinary() + _ = yym2864 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2861 := z.EncBinary() - _ = yym2861 + yym2866 := z.EncBinary() + _ = yym2866 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -36845,17 +36893,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2862 := z.EncBinary() - _ = yym2862 + yym2867 := z.EncBinary() + _ = yym2867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2864 := z.EncBinary() - _ = yym2864 + yym2869 := z.EncBinary() + _ = yym2869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -36864,17 +36912,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2865 := z.EncBinary() - _ = yym2865 + yym2870 := z.EncBinary() + _ = yym2870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2867 := z.EncBinary() - _ = yym2867 + yym2872 := z.EncBinary() + _ = yym2872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -36883,17 +36931,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2868 := z.EncBinary() - _ = yym2868 + yym2873 := z.EncBinary() + _ = yym2873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2870 := z.EncBinary() - _ = yym2870 + yym2875 := z.EncBinary() + _ = yym2875 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -36902,17 +36950,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2871 := z.EncBinary() - _ = yym2871 + yym2876 := z.EncBinary() + _ = yym2876 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2873 := z.EncBinary() - _ = yym2873 + yym2878 := z.EncBinary() + _ = yym2878 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -36921,14 +36969,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2874 := z.EncBinary() - _ = yym2874 + yym2879 := z.EncBinary() + _ = yym2879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2844 || yy2arr2844 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36941,25 +36989,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2875 := z.DecBinary() - _ = yym2875 + yym2880 := z.DecBinary() + _ = yym2880 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2876 := r.ContainerType() - if yyct2876 == codecSelferValueTypeMap1234 { - yyl2876 := r.ReadMapStart() - if yyl2876 == 0 { + yyct2881 := r.ContainerType() + if yyct2881 == codecSelferValueTypeMap1234 { + yyl2881 := r.ReadMapStart() + if yyl2881 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2876, d) + x.codecDecodeSelfFromMap(yyl2881, d) } - } else if yyct2876 == codecSelferValueTypeArray1234 { - yyl2876 := r.ReadArrayStart() - if yyl2876 == 0 { + } else if yyct2881 == codecSelferValueTypeArray1234 { + yyl2881 := r.ReadArrayStart() + if yyl2881 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2876, d) + x.codecDecodeSelfFromArray(yyl2881, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36971,12 +37019,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2877Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2877Slc - var yyhl2877 bool = l >= 0 - for yyj2877 := 0; ; yyj2877++ { - if yyhl2877 { - if yyj2877 >= l { + var yys2882Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2882Slc + var yyhl2882 bool = l >= 0 + for yyj2882 := 0; ; yyj2882++ { + if yyhl2882 { + if yyj2882 >= l { break } } else { @@ -36985,10 +37033,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2877Slc = r.DecodeBytes(yys2877Slc, true, true) - yys2877 := string(yys2877Slc) + yys2882Slc = r.DecodeBytes(yys2882Slc, true, true) + yys2882 := string(yys2882Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2877 { + switch yys2882 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -37050,9 +37098,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2877) - } // end switch yys2877 - } // end for yyj2877 + z.DecStructFieldNotFound(-1, yys2882) + } // end switch yys2882 + } // end for yyj2882 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37060,16 +37108,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2888 int - var yyb2888 bool - var yyhl2888 bool = l >= 0 - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + var yyj2893 int + var yyb2893 bool + var yyhl2893 bool = l >= 0 + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37079,13 +37127,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37095,13 +37143,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37111,13 +37159,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37127,13 +37175,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37143,13 +37191,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37159,13 +37207,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37175,13 +37223,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37191,13 +37239,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37207,13 +37255,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37224,17 +37272,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2893++ + if yyhl2893 { + yyb2893 = yyj2893 > l } else { - yyb2888 = r.CheckBreak() + yyb2893 = r.CheckBreak() } - if yyb2888 { + if yyb2893 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2888-1, "") + z.DecStructFieldNotFound(yyj2893-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37246,42 +37294,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2899 := z.EncBinary() - _ = yym2899 + yym2904 := z.EncBinary() + _ = yym2904 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2900 := !z.EncBinary() - yy2arr2900 := z.EncBasicHandle().StructToArray - var yyq2900 [10]bool - _, _, _ = yysep2900, yyq2900, yy2arr2900 - const yyr2900 bool = false - yyq2900[0] = len(x.Capacity) != 0 - yyq2900[1] = len(x.Allocatable) != 0 - yyq2900[2] = x.Phase != "" - yyq2900[3] = len(x.Conditions) != 0 - yyq2900[4] = len(x.Addresses) != 0 - yyq2900[5] = true - yyq2900[6] = true - yyq2900[7] = len(x.Images) != 0 - yyq2900[8] = len(x.VolumesInUse) != 0 - yyq2900[9] = len(x.VolumesAttached) != 0 - var yynn2900 int - if yyr2900 || yy2arr2900 { + yysep2905 := !z.EncBinary() + yy2arr2905 := z.EncBasicHandle().StructToArray + var yyq2905 [10]bool + _, _, _ = yysep2905, yyq2905, yy2arr2905 + const yyr2905 bool = false + yyq2905[0] = len(x.Capacity) != 0 + yyq2905[1] = len(x.Allocatable) != 0 + yyq2905[2] = x.Phase != "" + yyq2905[3] = len(x.Conditions) != 0 + yyq2905[4] = len(x.Addresses) != 0 + yyq2905[5] = true + yyq2905[6] = true + yyq2905[7] = len(x.Images) != 0 + yyq2905[8] = len(x.VolumesInUse) != 0 + yyq2905[9] = len(x.VolumesAttached) != 0 + var yynn2905 int + if yyr2905 || yy2arr2905 { r.EncodeArrayStart(10) } else { - yynn2900 = 0 - for _, b := range yyq2900 { + yynn2905 = 0 + for _, b := range yyq2905 { if b { - yynn2900++ + yynn2905++ } } - r.EncodeMapStart(yynn2900) - yynn2900 = 0 + r.EncodeMapStart(yynn2905) + yynn2905 = 0 } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[0] { + if yyq2905[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -37291,7 +37339,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2900[0] { + if yyq2905[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37302,9 +37350,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[1] { + if yyq2905[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -37314,7 +37362,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2900[1] { + if yyq2905[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37325,29 +37373,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[2] { + if yyq2905[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2900[2] { + if yyq2905[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[3] { + if yyq2905[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2905 := z.EncBinary() - _ = yym2905 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37357,15 +37405,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2900[3] { + if yyq2905[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2906 := z.EncBinary() - _ = yym2906 + yym2911 := z.EncBinary() + _ = yym2911 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37373,14 +37421,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[4] { + if yyq2905[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2908 := z.EncBinary() - _ = yym2908 + yym2913 := z.EncBinary() + _ = yym2913 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37390,15 +37438,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2900[4] { + if yyq2905[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2909 := z.EncBinary() - _ = yym2909 + yym2914 := z.EncBinary() + _ = yym2914 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37406,48 +37454,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[5] { - yy2911 := &x.DaemonEndpoints - yy2911.CodecEncodeSelf(e) + if yyq2905[5] { + yy2916 := &x.DaemonEndpoints + yy2916.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2900[5] { + if yyq2905[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2912 := &x.DaemonEndpoints - yy2912.CodecEncodeSelf(e) + yy2917 := &x.DaemonEndpoints + yy2917.CodecEncodeSelf(e) } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[6] { - yy2914 := &x.NodeInfo - yy2914.CodecEncodeSelf(e) + if yyq2905[6] { + yy2919 := &x.NodeInfo + yy2919.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2900[6] { + if yyq2905[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2915 := &x.NodeInfo - yy2915.CodecEncodeSelf(e) + yy2920 := &x.NodeInfo + yy2920.CodecEncodeSelf(e) } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[7] { + if yyq2905[7] { if x.Images == nil { r.EncodeNil() } else { - yym2917 := z.EncBinary() - _ = yym2917 + yym2922 := z.EncBinary() + _ = yym2922 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37457,15 +37505,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2900[7] { + if yyq2905[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2918 := z.EncBinary() - _ = yym2918 + yym2923 := z.EncBinary() + _ = yym2923 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37473,14 +37521,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[8] { + if yyq2905[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2920 := z.EncBinary() - _ = yym2920 + yym2925 := z.EncBinary() + _ = yym2925 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37490,15 +37538,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2900[8] { + if yyq2905[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2921 := z.EncBinary() - _ = yym2921 + yym2926 := z.EncBinary() + _ = yym2926 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37506,14 +37554,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2900[9] { + if yyq2905[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2923 := z.EncBinary() - _ = yym2923 + yym2928 := z.EncBinary() + _ = yym2928 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -37523,15 +37571,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2900[9] { + if yyq2905[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2924 := z.EncBinary() - _ = yym2924 + yym2929 := z.EncBinary() + _ = yym2929 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -37539,7 +37587,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2900 || yy2arr2900 { + if yyr2905 || yy2arr2905 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37552,25 +37600,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2925 := z.DecBinary() - _ = yym2925 + yym2930 := z.DecBinary() + _ = yym2930 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2926 := r.ContainerType() - if yyct2926 == codecSelferValueTypeMap1234 { - yyl2926 := r.ReadMapStart() - if yyl2926 == 0 { + yyct2931 := r.ContainerType() + if yyct2931 == codecSelferValueTypeMap1234 { + yyl2931 := r.ReadMapStart() + if yyl2931 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2926, d) + x.codecDecodeSelfFromMap(yyl2931, d) } - } else if yyct2926 == codecSelferValueTypeArray1234 { - yyl2926 := r.ReadArrayStart() - if yyl2926 == 0 { + } else if yyct2931 == codecSelferValueTypeArray1234 { + yyl2931 := r.ReadArrayStart() + if yyl2931 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2926, d) + x.codecDecodeSelfFromArray(yyl2931, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37582,12 +37630,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2927Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2927Slc - var yyhl2927 bool = l >= 0 - for yyj2927 := 0; ; yyj2927++ { - if yyhl2927 { - if yyj2927 >= l { + var yys2932Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2932Slc + var yyhl2932 bool = l >= 0 + for yyj2932 := 0; ; yyj2932++ { + if yyhl2932 { + if yyj2932 >= l { break } } else { @@ -37596,23 +37644,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2927Slc = r.DecodeBytes(yys2927Slc, true, true) - yys2927 := string(yys2927Slc) + yys2932Slc = r.DecodeBytes(yys2932Slc, true, true) + yys2932 := string(yys2932Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2927 { + switch yys2932 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2928 := &x.Capacity - yyv2928.CodecDecodeSelf(d) + yyv2933 := &x.Capacity + yyv2933.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2929 := &x.Allocatable - yyv2929.CodecDecodeSelf(d) + yyv2934 := &x.Allocatable + yyv2934.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -37624,80 +37672,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2931 := &x.Conditions - yym2932 := z.DecBinary() - _ = yym2932 + yyv2936 := &x.Conditions + yym2937 := z.DecBinary() + _ = yym2937 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2931), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2936), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2933 := &x.Addresses - yym2934 := z.DecBinary() - _ = yym2934 + yyv2938 := &x.Addresses + yym2939 := z.DecBinary() + _ = yym2939 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2933), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2938), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2935 := &x.DaemonEndpoints - yyv2935.CodecDecodeSelf(d) + yyv2940 := &x.DaemonEndpoints + yyv2940.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2936 := &x.NodeInfo - yyv2936.CodecDecodeSelf(d) + yyv2941 := &x.NodeInfo + yyv2941.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2937 := &x.Images - yym2938 := z.DecBinary() - _ = yym2938 + yyv2942 := &x.Images + yym2943 := z.DecBinary() + _ = yym2943 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2937), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2942), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2939 := &x.VolumesInUse - yym2940 := z.DecBinary() - _ = yym2940 + yyv2944 := &x.VolumesInUse + yym2945 := z.DecBinary() + _ = yym2945 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2939), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2944), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2941 := &x.VolumesAttached - yym2942 := z.DecBinary() - _ = yym2942 + yyv2946 := &x.VolumesAttached + yym2947 := z.DecBinary() + _ = yym2947 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2941), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2946), d) } } default: - z.DecStructFieldNotFound(-1, yys2927) - } // end switch yys2927 - } // end for yyj2927 + z.DecStructFieldNotFound(-1, yys2932) + } // end switch yys2932 + } // end for yyj2932 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37705,16 +37753,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2943 int - var yyb2943 bool - var yyhl2943 bool = l >= 0 - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + var yyj2948 int + var yyb2948 bool + var yyhl2948 bool = l >= 0 + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37722,16 +37770,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2944 := &x.Capacity - yyv2944.CodecDecodeSelf(d) + yyv2949 := &x.Capacity + yyv2949.CodecDecodeSelf(d) } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37739,16 +37787,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2945 := &x.Allocatable - yyv2945.CodecDecodeSelf(d) + yyv2950 := &x.Allocatable + yyv2950.CodecDecodeSelf(d) } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37758,13 +37806,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37772,21 +37820,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2947 := &x.Conditions - yym2948 := z.DecBinary() - _ = yym2948 + yyv2952 := &x.Conditions + yym2953 := z.DecBinary() + _ = yym2953 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2947), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2952), d) } } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37794,21 +37842,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2949 := &x.Addresses - yym2950 := z.DecBinary() - _ = yym2950 + yyv2954 := &x.Addresses + yym2955 := z.DecBinary() + _ = yym2955 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2949), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2954), d) } } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37816,16 +37864,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2951 := &x.DaemonEndpoints - yyv2951.CodecDecodeSelf(d) + yyv2956 := &x.DaemonEndpoints + yyv2956.CodecDecodeSelf(d) } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37833,16 +37881,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2952 := &x.NodeInfo - yyv2952.CodecDecodeSelf(d) + yyv2957 := &x.NodeInfo + yyv2957.CodecDecodeSelf(d) } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37850,21 +37898,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2953 := &x.Images - yym2954 := z.DecBinary() - _ = yym2954 + yyv2958 := &x.Images + yym2959 := z.DecBinary() + _ = yym2959 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2953), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2958), d) } } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37872,21 +37920,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2955 := &x.VolumesInUse - yym2956 := z.DecBinary() - _ = yym2956 + yyv2960 := &x.VolumesInUse + yym2961 := z.DecBinary() + _ = yym2961 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2955), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2960), d) } } - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37894,26 +37942,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2957 := &x.VolumesAttached - yym2958 := z.DecBinary() - _ = yym2958 + yyv2962 := &x.VolumesAttached + yym2963 := z.DecBinary() + _ = yym2963 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2957), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2962), d) } } for { - yyj2943++ - if yyhl2943 { - yyb2943 = yyj2943 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2943 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2943 { + if yyb2948 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2943-1, "") + z.DecStructFieldNotFound(yyj2948-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37922,8 +37970,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2959 := z.EncBinary() - _ = yym2959 + yym2964 := z.EncBinary() + _ = yym2964 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37935,8 +37983,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2960 := z.DecBinary() - _ = yym2960 + yym2965 := z.DecBinary() + _ = yym2965 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37951,30 +37999,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2961 := z.EncBinary() - _ = yym2961 + yym2966 := z.EncBinary() + _ = yym2966 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2962 := !z.EncBinary() - yy2arr2962 := z.EncBasicHandle().StructToArray - var yyq2962 [2]bool - _, _, _ = yysep2962, yyq2962, yy2arr2962 - const yyr2962 bool = false - var yynn2962 int - if yyr2962 || yy2arr2962 { + yysep2967 := !z.EncBinary() + yy2arr2967 := z.EncBasicHandle().StructToArray + var yyq2967 [2]bool + _, _, _ = yysep2967, yyq2967, yy2arr2967 + const yyr2967 bool = false + var yynn2967 int + if yyr2967 || yy2arr2967 { r.EncodeArrayStart(2) } else { - yynn2962 = 2 - for _, b := range yyq2962 { + yynn2967 = 2 + for _, b := range yyq2967 { if b { - yynn2962++ + yynn2967++ } } - r.EncodeMapStart(yynn2962) - yynn2962 = 0 + r.EncodeMapStart(yynn2967) + yynn2967 = 0 } - if yyr2962 || yy2arr2962 { + if yyr2967 || yy2arr2967 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -37983,10 +38031,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2962 || yy2arr2962 { + if yyr2967 || yy2arr2967 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2965 := z.EncBinary() - _ = yym2965 + yym2970 := z.EncBinary() + _ = yym2970 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -37995,14 +38043,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2966 := z.EncBinary() - _ = yym2966 + yym2971 := z.EncBinary() + _ = yym2971 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2962 || yy2arr2962 { + if yyr2967 || yy2arr2967 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38015,25 +38063,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2967 := z.DecBinary() - _ = yym2967 + yym2972 := z.DecBinary() + _ = yym2972 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2968 := r.ContainerType() - if yyct2968 == codecSelferValueTypeMap1234 { - yyl2968 := r.ReadMapStart() - if yyl2968 == 0 { + yyct2973 := r.ContainerType() + if yyct2973 == codecSelferValueTypeMap1234 { + yyl2973 := r.ReadMapStart() + if yyl2973 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2968, d) + x.codecDecodeSelfFromMap(yyl2973, d) } - } else if yyct2968 == codecSelferValueTypeArray1234 { - yyl2968 := r.ReadArrayStart() - if yyl2968 == 0 { + } else if yyct2973 == codecSelferValueTypeArray1234 { + yyl2973 := r.ReadArrayStart() + if yyl2973 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2968, d) + x.codecDecodeSelfFromArray(yyl2973, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38045,12 +38093,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2969Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2969Slc - var yyhl2969 bool = l >= 0 - for yyj2969 := 0; ; yyj2969++ { - if yyhl2969 { - if yyj2969 >= l { + var yys2974Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2974Slc + var yyhl2974 bool = l >= 0 + for yyj2974 := 0; ; yyj2974++ { + if yyhl2974 { + if yyj2974 >= l { break } } else { @@ -38059,10 +38107,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2969Slc = r.DecodeBytes(yys2969Slc, true, true) - yys2969 := string(yys2969Slc) + yys2974Slc = r.DecodeBytes(yys2974Slc, true, true) + yys2974 := string(yys2974Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2969 { + switch yys2974 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -38076,9 +38124,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2969) - } // end switch yys2969 - } // end for yyj2969 + z.DecStructFieldNotFound(-1, yys2974) + } // end switch yys2974 + } // end for yyj2974 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38086,16 +38134,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2972 int - var yyb2972 bool - var yyhl2972 bool = l >= 0 - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + var yyj2977 int + var yyb2977 bool + var yyhl2977 bool = l >= 0 + yyj2977++ + if yyhl2977 { + yyb2977 = yyj2977 > l } else { - yyb2972 = r.CheckBreak() + yyb2977 = r.CheckBreak() } - if yyb2972 { + if yyb2977 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38105,13 +38153,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + yyj2977++ + if yyhl2977 { + yyb2977 = yyj2977 > l } else { - yyb2972 = r.CheckBreak() + yyb2977 = r.CheckBreak() } - if yyb2972 { + if yyb2977 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38122,17 +38170,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + yyj2977++ + if yyhl2977 { + yyb2977 = yyj2977 > l } else { - yyb2972 = r.CheckBreak() + yyb2977 = r.CheckBreak() } - if yyb2972 { + if yyb2977 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2972-1, "") + z.DecStructFieldNotFound(yyj2977-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38144,38 +38192,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2975 := z.EncBinary() - _ = yym2975 + yym2980 := z.EncBinary() + _ = yym2980 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2976 := !z.EncBinary() - yy2arr2976 := z.EncBasicHandle().StructToArray - var yyq2976 [1]bool - _, _, _ = yysep2976, yyq2976, yy2arr2976 - const yyr2976 bool = false - yyq2976[0] = len(x.PreferAvoidPods) != 0 - var yynn2976 int - if yyr2976 || yy2arr2976 { + yysep2981 := !z.EncBinary() + yy2arr2981 := z.EncBasicHandle().StructToArray + var yyq2981 [1]bool + _, _, _ = yysep2981, yyq2981, yy2arr2981 + const yyr2981 bool = false + yyq2981[0] = len(x.PreferAvoidPods) != 0 + var yynn2981 int + if yyr2981 || yy2arr2981 { r.EncodeArrayStart(1) } else { - yynn2976 = 0 - for _, b := range yyq2976 { + yynn2981 = 0 + for _, b := range yyq2981 { if b { - yynn2976++ + yynn2981++ } } - r.EncodeMapStart(yynn2976) - yynn2976 = 0 + r.EncodeMapStart(yynn2981) + yynn2981 = 0 } - if yyr2976 || yy2arr2976 { + if yyr2981 || yy2arr2981 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2976[0] { + if yyq2981[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2978 := z.EncBinary() - _ = yym2978 + yym2983 := z.EncBinary() + _ = yym2983 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -38185,15 +38233,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2976[0] { + if yyq2981[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2979 := z.EncBinary() - _ = yym2979 + yym2984 := z.EncBinary() + _ = yym2984 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -38201,7 +38249,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2976 || yy2arr2976 { + if yyr2981 || yy2arr2981 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38214,25 +38262,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2980 := z.DecBinary() - _ = yym2980 + yym2985 := z.DecBinary() + _ = yym2985 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2981 := r.ContainerType() - if yyct2981 == codecSelferValueTypeMap1234 { - yyl2981 := r.ReadMapStart() - if yyl2981 == 0 { + yyct2986 := r.ContainerType() + if yyct2986 == codecSelferValueTypeMap1234 { + yyl2986 := r.ReadMapStart() + if yyl2986 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2981, d) + x.codecDecodeSelfFromMap(yyl2986, d) } - } else if yyct2981 == codecSelferValueTypeArray1234 { - yyl2981 := r.ReadArrayStart() - if yyl2981 == 0 { + } else if yyct2986 == codecSelferValueTypeArray1234 { + yyl2986 := r.ReadArrayStart() + if yyl2986 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2981, d) + x.codecDecodeSelfFromArray(yyl2986, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38244,12 +38292,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2982Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2982Slc - var yyhl2982 bool = l >= 0 - for yyj2982 := 0; ; yyj2982++ { - if yyhl2982 { - if yyj2982 >= l { + var yys2987Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2987Slc + var yyhl2987 bool = l >= 0 + for yyj2987 := 0; ; yyj2987++ { + if yyhl2987 { + if yyj2987 >= l { break } } else { @@ -38258,26 +38306,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2982Slc = r.DecodeBytes(yys2982Slc, true, true) - yys2982 := string(yys2982Slc) + yys2987Slc = r.DecodeBytes(yys2987Slc, true, true) + yys2987 := string(yys2987Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2982 { + switch yys2987 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2983 := &x.PreferAvoidPods - yym2984 := z.DecBinary() - _ = yym2984 + yyv2988 := &x.PreferAvoidPods + yym2989 := z.DecBinary() + _ = yym2989 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2983), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2988), d) } } default: - z.DecStructFieldNotFound(-1, yys2982) - } // end switch yys2982 - } // end for yyj2982 + z.DecStructFieldNotFound(-1, yys2987) + } // end switch yys2987 + } // end for yyj2987 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38285,16 +38333,16 @@ func (x *AvoidPods) 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 } @@ -38302,26 +38350,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2986 := &x.PreferAvoidPods - yym2987 := z.DecBinary() - _ = yym2987 + yyv2991 := &x.PreferAvoidPods + yym2992 := z.DecBinary() + _ = yym2992 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2986), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2991), d) } } 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) } @@ -38333,85 +38381,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2988 := z.EncBinary() - _ = yym2988 + yym2993 := z.EncBinary() + _ = yym2993 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2989 := !z.EncBinary() - yy2arr2989 := z.EncBasicHandle().StructToArray - var yyq2989 [4]bool - _, _, _ = yysep2989, yyq2989, yy2arr2989 - const yyr2989 bool = false - yyq2989[1] = true - yyq2989[2] = x.Reason != "" - yyq2989[3] = x.Message != "" - var yynn2989 int - if yyr2989 || yy2arr2989 { + yysep2994 := !z.EncBinary() + yy2arr2994 := z.EncBasicHandle().StructToArray + var yyq2994 [4]bool + _, _, _ = yysep2994, yyq2994, yy2arr2994 + const yyr2994 bool = false + yyq2994[1] = true + yyq2994[2] = x.Reason != "" + yyq2994[3] = x.Message != "" + var yynn2994 int + if yyr2994 || yy2arr2994 { r.EncodeArrayStart(4) } else { - yynn2989 = 1 - for _, b := range yyq2989 { + yynn2994 = 1 + for _, b := range yyq2994 { if b { - yynn2989++ + yynn2994++ } } - r.EncodeMapStart(yynn2989) - yynn2989 = 0 + r.EncodeMapStart(yynn2994) + yynn2994 = 0 } - if yyr2989 || yy2arr2989 { + if yyr2994 || yy2arr2994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2991 := &x.PodSignature - yy2991.CodecEncodeSelf(e) + yy2996 := &x.PodSignature + yy2996.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2992 := &x.PodSignature - yy2992.CodecEncodeSelf(e) + yy2997 := &x.PodSignature + yy2997.CodecEncodeSelf(e) } - if yyr2989 || yy2arr2989 { + if yyr2994 || yy2arr2994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2989[1] { - yy2994 := &x.EvictionTime - yym2995 := z.EncBinary() - _ = yym2995 + if yyq2994[1] { + yy2999 := &x.EvictionTime + yym3000 := z.EncBinary() + _ = yym3000 if false { - } else if z.HasExtensions() && z.EncExt(yy2994) { - } else if yym2995 { - z.EncBinaryMarshal(yy2994) - } else if !yym2995 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2994) + } else if z.HasExtensions() && z.EncExt(yy2999) { + } else if yym3000 { + z.EncBinaryMarshal(yy2999) + } else if !yym3000 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2999) } else { - z.EncFallback(yy2994) + z.EncFallback(yy2999) } } else { r.EncodeNil() } } else { - if yyq2989[1] { + if yyq2994[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2996 := &x.EvictionTime - yym2997 := z.EncBinary() - _ = yym2997 + yy3001 := &x.EvictionTime + yym3002 := z.EncBinary() + _ = yym3002 if false { - } else if z.HasExtensions() && z.EncExt(yy2996) { - } else if yym2997 { - z.EncBinaryMarshal(yy2996) - } else if !yym2997 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2996) + } else if z.HasExtensions() && z.EncExt(yy3001) { + } else if yym3002 { + z.EncBinaryMarshal(yy3001) + } else if !yym3002 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3001) } else { - z.EncFallback(yy2996) + z.EncFallback(yy3001) } } } - if yyr2989 || yy2arr2989 { + if yyr2994 || yy2arr2994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2989[2] { - yym2999 := z.EncBinary() - _ = yym2999 + if yyq2994[2] { + yym3004 := z.EncBinary() + _ = yym3004 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38420,23 +38468,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2989[2] { + if yyq2994[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3000 := z.EncBinary() - _ = yym3000 + yym3005 := z.EncBinary() + _ = yym3005 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2989 || yy2arr2989 { + if yyr2994 || yy2arr2994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2989[3] { - yym3002 := z.EncBinary() - _ = yym3002 + if yyq2994[3] { + yym3007 := z.EncBinary() + _ = yym3007 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -38445,19 +38493,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2989[3] { + if yyq2994[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3003 := z.EncBinary() - _ = yym3003 + yym3008 := z.EncBinary() + _ = yym3008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2989 || yy2arr2989 { + if yyr2994 || yy2arr2994 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38470,25 +38518,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3004 := z.DecBinary() - _ = yym3004 + yym3009 := z.DecBinary() + _ = yym3009 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3005 := r.ContainerType() - if yyct3005 == codecSelferValueTypeMap1234 { - yyl3005 := r.ReadMapStart() - if yyl3005 == 0 { + yyct3010 := r.ContainerType() + if yyct3010 == codecSelferValueTypeMap1234 { + yyl3010 := r.ReadMapStart() + if yyl3010 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3005, d) + x.codecDecodeSelfFromMap(yyl3010, d) } - } else if yyct3005 == codecSelferValueTypeArray1234 { - yyl3005 := r.ReadArrayStart() - if yyl3005 == 0 { + } else if yyct3010 == codecSelferValueTypeArray1234 { + yyl3010 := r.ReadArrayStart() + if yyl3010 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3005, d) + x.codecDecodeSelfFromArray(yyl3010, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38500,12 +38548,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3006Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3006Slc - var yyhl3006 bool = l >= 0 - for yyj3006 := 0; ; yyj3006++ { - if yyhl3006 { - if yyj3006 >= l { + var yys3011Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3011Slc + var yyhl3011 bool = l >= 0 + for yyj3011 := 0; ; yyj3011++ { + if yyhl3011 { + if yyj3011 >= l { break } } else { @@ -38514,32 +38562,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3006Slc = r.DecodeBytes(yys3006Slc, true, true) - yys3006 := string(yys3006Slc) + yys3011Slc = r.DecodeBytes(yys3011Slc, true, true) + yys3011 := string(yys3011Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3006 { + switch yys3011 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3007 := &x.PodSignature - yyv3007.CodecDecodeSelf(d) + yyv3012 := &x.PodSignature + yyv3012.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3008 := &x.EvictionTime - yym3009 := z.DecBinary() - _ = yym3009 + yyv3013 := &x.EvictionTime + yym3014 := z.DecBinary() + _ = yym3014 if false { - } else if z.HasExtensions() && z.DecExt(yyv3008) { - } else if yym3009 { - z.DecBinaryUnmarshal(yyv3008) - } else if !yym3009 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3008) + } else if z.HasExtensions() && z.DecExt(yyv3013) { + } else if yym3014 { + z.DecBinaryUnmarshal(yyv3013) + } else if !yym3014 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3013) } else { - z.DecFallback(yyv3008, false) + z.DecFallback(yyv3013, false) } } case "reason": @@ -38555,9 +38603,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3006) - } // end switch yys3006 - } // end for yyj3006 + z.DecStructFieldNotFound(-1, yys3011) + } // end switch yys3011 + } // end for yyj3011 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38565,16 +38613,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3012 int - var yyb3012 bool - var yyhl3012 bool = l >= 0 - yyj3012++ - if yyhl3012 { - yyb3012 = yyj3012 > l + var yyj3017 int + var yyb3017 bool + var yyhl3017 bool = l >= 0 + yyj3017++ + if yyhl3017 { + yyb3017 = yyj3017 > l } else { - yyb3012 = r.CheckBreak() + yyb3017 = r.CheckBreak() } - if yyb3012 { + if yyb3017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38582,16 +38630,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3013 := &x.PodSignature - yyv3013.CodecDecodeSelf(d) + yyv3018 := &x.PodSignature + yyv3018.CodecDecodeSelf(d) } - yyj3012++ - if yyhl3012 { - yyb3012 = yyj3012 > l + yyj3017++ + if yyhl3017 { + yyb3017 = yyj3017 > l } else { - yyb3012 = r.CheckBreak() + yyb3017 = r.CheckBreak() } - if yyb3012 { + if yyb3017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38599,26 +38647,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3014 := &x.EvictionTime - yym3015 := z.DecBinary() - _ = yym3015 + yyv3019 := &x.EvictionTime + yym3020 := z.DecBinary() + _ = yym3020 if false { - } else if z.HasExtensions() && z.DecExt(yyv3014) { - } else if yym3015 { - z.DecBinaryUnmarshal(yyv3014) - } else if !yym3015 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3014) + } else if z.HasExtensions() && z.DecExt(yyv3019) { + } else if yym3020 { + z.DecBinaryUnmarshal(yyv3019) + } else if !yym3020 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3019) } else { - z.DecFallback(yyv3014, false) + z.DecFallback(yyv3019, false) } } - yyj3012++ - if yyhl3012 { - yyb3012 = yyj3012 > l + yyj3017++ + if yyhl3017 { + yyb3017 = yyj3017 > l } else { - yyb3012 = r.CheckBreak() + yyb3017 = r.CheckBreak() } - if yyb3012 { + if yyb3017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38628,13 +38676,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj3012++ - if yyhl3012 { - yyb3012 = yyj3012 > l + yyj3017++ + if yyhl3017 { + yyb3017 = yyj3017 > l } else { - yyb3012 = r.CheckBreak() + yyb3017 = r.CheckBreak() } - if yyb3012 { + if yyb3017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38645,17 +38693,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj3012++ - if yyhl3012 { - yyb3012 = yyj3012 > l + yyj3017++ + if yyhl3017 { + yyb3017 = yyj3017 > l } else { - yyb3012 = r.CheckBreak() + yyb3017 = r.CheckBreak() } - if yyb3012 { + if yyb3017 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3012-1, "") + z.DecStructFieldNotFound(yyj3017-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38667,33 +38715,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3018 := z.EncBinary() - _ = yym3018 + yym3023 := z.EncBinary() + _ = yym3023 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3019 := !z.EncBinary() - yy2arr3019 := z.EncBasicHandle().StructToArray - var yyq3019 [1]bool - _, _, _ = yysep3019, yyq3019, yy2arr3019 - const yyr3019 bool = false - yyq3019[0] = x.PodController != nil - var yynn3019 int - if yyr3019 || yy2arr3019 { + yysep3024 := !z.EncBinary() + yy2arr3024 := z.EncBasicHandle().StructToArray + var yyq3024 [1]bool + _, _, _ = yysep3024, yyq3024, yy2arr3024 + const yyr3024 bool = false + yyq3024[0] = x.PodController != nil + var yynn3024 int + if yyr3024 || yy2arr3024 { r.EncodeArrayStart(1) } else { - yynn3019 = 0 - for _, b := range yyq3019 { + yynn3024 = 0 + for _, b := range yyq3024 { if b { - yynn3019++ + yynn3024++ } } - r.EncodeMapStart(yynn3019) - yynn3019 = 0 + r.EncodeMapStart(yynn3024) + yynn3024 = 0 } - if yyr3019 || yy2arr3019 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3019[0] { + if yyq3024[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -38703,7 +38751,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3019[0] { + if yyq3024[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38714,7 +38762,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3019 || yy2arr3019 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38727,25 +38775,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3021 := z.DecBinary() - _ = yym3021 + yym3026 := z.DecBinary() + _ = yym3026 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3022 := r.ContainerType() - if yyct3022 == codecSelferValueTypeMap1234 { - yyl3022 := r.ReadMapStart() - if yyl3022 == 0 { + yyct3027 := r.ContainerType() + if yyct3027 == codecSelferValueTypeMap1234 { + yyl3027 := r.ReadMapStart() + if yyl3027 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3022, d) + x.codecDecodeSelfFromMap(yyl3027, d) } - } else if yyct3022 == codecSelferValueTypeArray1234 { - yyl3022 := r.ReadArrayStart() - if yyl3022 == 0 { + } else if yyct3027 == codecSelferValueTypeArray1234 { + yyl3027 := r.ReadArrayStart() + if yyl3027 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3022, d) + x.codecDecodeSelfFromArray(yyl3027, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38757,12 +38805,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3023Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3023Slc - var yyhl3023 bool = l >= 0 - for yyj3023 := 0; ; yyj3023++ { - if yyhl3023 { - if yyj3023 >= l { + var yys3028Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3028Slc + var yyhl3028 bool = l >= 0 + for yyj3028 := 0; ; yyj3028++ { + if yyhl3028 { + if yyj3028 >= l { break } } else { @@ -38771,10 +38819,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3023Slc = r.DecodeBytes(yys3023Slc, true, true) - yys3023 := string(yys3023Slc) + yys3028Slc = r.DecodeBytes(yys3028Slc, true, true) + yys3028 := string(yys3028Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3023 { + switch yys3028 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -38787,9 +38835,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3023) - } // end switch yys3023 - } // end for yyj3023 + z.DecStructFieldNotFound(-1, yys3028) + } // end switch yys3028 + } // end for yyj3028 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38797,16 +38845,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3025 int - var yyb3025 bool - var yyhl3025 bool = l >= 0 - yyj3025++ - if yyhl3025 { - yyb3025 = yyj3025 > l + var yyj3030 int + var yyb3030 bool + var yyhl3030 bool = l >= 0 + yyj3030++ + if yyhl3030 { + yyb3030 = yyj3030 > l } else { - yyb3025 = r.CheckBreak() + yyb3030 = r.CheckBreak() } - if yyb3025 { + if yyb3030 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38822,17 +38870,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj3025++ - if yyhl3025 { - yyb3025 = yyj3025 > l + yyj3030++ + if yyhl3030 { + yyb3030 = yyj3030 > l } else { - yyb3025 = r.CheckBreak() + yyb3030 = r.CheckBreak() } - if yyb3025 { + if yyb3030 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3025-1, "") + z.DecStructFieldNotFound(yyj3030-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38844,37 +38892,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3027 := z.EncBinary() - _ = yym3027 + yym3032 := z.EncBinary() + _ = yym3032 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3028 := !z.EncBinary() - yy2arr3028 := z.EncBasicHandle().StructToArray - var yyq3028 [2]bool - _, _, _ = yysep3028, yyq3028, yy2arr3028 - const yyr3028 bool = false - yyq3028[1] = x.SizeBytes != 0 - var yynn3028 int - if yyr3028 || yy2arr3028 { + yysep3033 := !z.EncBinary() + yy2arr3033 := z.EncBasicHandle().StructToArray + var yyq3033 [2]bool + _, _, _ = yysep3033, yyq3033, yy2arr3033 + const yyr3033 bool = false + yyq3033[1] = x.SizeBytes != 0 + var yynn3033 int + if yyr3033 || yy2arr3033 { r.EncodeArrayStart(2) } else { - yynn3028 = 1 - for _, b := range yyq3028 { + yynn3033 = 1 + for _, b := range yyq3033 { if b { - yynn3028++ + yynn3033++ } } - r.EncodeMapStart(yynn3028) - yynn3028 = 0 + r.EncodeMapStart(yynn3033) + yynn3033 = 0 } - if yyr3028 || yy2arr3028 { + if yyr3033 || yy2arr3033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3030 := z.EncBinary() - _ = yym3030 + yym3035 := z.EncBinary() + _ = yym3035 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -38887,19 +38935,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3031 := z.EncBinary() - _ = yym3031 + yym3036 := z.EncBinary() + _ = yym3036 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3028 || yy2arr3028 { + if yyr3033 || yy2arr3033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3028[1] { - yym3033 := z.EncBinary() - _ = yym3033 + if yyq3033[1] { + yym3038 := z.EncBinary() + _ = yym3038 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -38908,19 +38956,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3028[1] { + if yyq3033[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3034 := z.EncBinary() - _ = yym3034 + yym3039 := z.EncBinary() + _ = yym3039 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3028 || yy2arr3028 { + if yyr3033 || yy2arr3033 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38933,25 +38981,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3035 := z.DecBinary() - _ = yym3035 + yym3040 := z.DecBinary() + _ = yym3040 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3036 := r.ContainerType() - if yyct3036 == codecSelferValueTypeMap1234 { - yyl3036 := r.ReadMapStart() - if yyl3036 == 0 { + yyct3041 := r.ContainerType() + if yyct3041 == codecSelferValueTypeMap1234 { + yyl3041 := r.ReadMapStart() + if yyl3041 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3036, d) + x.codecDecodeSelfFromMap(yyl3041, d) } - } else if yyct3036 == codecSelferValueTypeArray1234 { - yyl3036 := r.ReadArrayStart() - if yyl3036 == 0 { + } else if yyct3041 == codecSelferValueTypeArray1234 { + yyl3041 := r.ReadArrayStart() + if yyl3041 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3036, d) + x.codecDecodeSelfFromArray(yyl3041, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38963,12 +39011,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3037Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3037Slc - var yyhl3037 bool = l >= 0 - for yyj3037 := 0; ; yyj3037++ { - if yyhl3037 { - if yyj3037 >= l { + var yys3042Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3042Slc + var yyhl3042 bool = l >= 0 + for yyj3042 := 0; ; yyj3042++ { + if yyhl3042 { + if yyj3042 >= l { break } } else { @@ -38977,20 +39025,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3037Slc = r.DecodeBytes(yys3037Slc, true, true) - yys3037 := string(yys3037Slc) + yys3042Slc = r.DecodeBytes(yys3042Slc, true, true) + yys3042 := string(yys3042Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3037 { + switch yys3042 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3038 := &x.Names - yym3039 := z.DecBinary() - _ = yym3039 + yyv3043 := &x.Names + yym3044 := z.DecBinary() + _ = yym3044 if false { } else { - z.F.DecSliceStringX(yyv3038, false, d) + z.F.DecSliceStringX(yyv3043, false, d) } } case "sizeBytes": @@ -39000,9 +39048,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3037) - } // end switch yys3037 - } // end for yyj3037 + z.DecStructFieldNotFound(-1, yys3042) + } // end switch yys3042 + } // end for yyj3042 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39010,16 +39058,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3041 int - var yyb3041 bool - var yyhl3041 bool = l >= 0 - yyj3041++ - if yyhl3041 { - yyb3041 = yyj3041 > l + var yyj3046 int + var yyb3046 bool + var yyhl3046 bool = l >= 0 + yyj3046++ + if yyhl3046 { + yyb3046 = yyj3046 > l } else { - yyb3041 = r.CheckBreak() + yyb3046 = r.CheckBreak() } - if yyb3041 { + if yyb3046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39027,21 +39075,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3042 := &x.Names - yym3043 := z.DecBinary() - _ = yym3043 + yyv3047 := &x.Names + yym3048 := z.DecBinary() + _ = yym3048 if false { } else { - z.F.DecSliceStringX(yyv3042, false, d) + z.F.DecSliceStringX(yyv3047, false, d) } } - yyj3041++ - if yyhl3041 { - yyb3041 = yyj3041 > l + yyj3046++ + if yyhl3046 { + yyb3046 = yyj3046 > l } else { - yyb3041 = r.CheckBreak() + yyb3046 = r.CheckBreak() } - if yyb3041 { + if yyb3046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39052,17 +39100,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3041++ - if yyhl3041 { - yyb3041 = yyj3041 > l + yyj3046++ + if yyhl3046 { + yyb3046 = yyj3046 > l } else { - yyb3041 = r.CheckBreak() + yyb3046 = r.CheckBreak() } - if yyb3041 { + if yyb3046 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3041-1, "") + z.DecStructFieldNotFound(yyj3046-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39071,8 +39119,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3045 := z.EncBinary() - _ = yym3045 + yym3050 := z.EncBinary() + _ = yym3050 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39084,8 +39132,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3046 := z.DecBinary() - _ = yym3046 + yym3051 := z.DecBinary() + _ = yym3051 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39097,8 +39145,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3047 := z.EncBinary() - _ = yym3047 + yym3052 := z.EncBinary() + _ = yym3052 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39110,8 +39158,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3048 := z.DecBinary() - _ = yym3048 + yym3053 := z.DecBinary() + _ = yym3053 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39126,34 +39174,34 @@ func (x *NodeCondition) 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 [6]bool - _, _, _ = yysep3050, yyq3050, yy2arr3050 - const yyr3050 bool = false - yyq3050[2] = true - yyq3050[3] = true - yyq3050[4] = x.Reason != "" - yyq3050[5] = x.Message != "" - var yynn3050 int - if yyr3050 || yy2arr3050 { + yysep3055 := !z.EncBinary() + yy2arr3055 := z.EncBasicHandle().StructToArray + var yyq3055 [6]bool + _, _, _ = yysep3055, yyq3055, yy2arr3055 + const yyr3055 bool = false + yyq3055[2] = true + yyq3055[3] = true + yyq3055[4] = x.Reason != "" + yyq3055[5] = x.Message != "" + var yynn3055 int + if yyr3055 || yy2arr3055 { r.EncodeArrayStart(6) } else { - yynn3050 = 2 - for _, b := range yyq3050 { + yynn3055 = 2 + 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) x.Type.CodecEncodeSelf(e) } else { @@ -39162,7 +39210,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3050 || yy2arr3050 { + if yyr3055 || yy2arr3055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -39171,85 +39219,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3050 || yy2arr3050 { + if yyr3055 || yy2arr3055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3050[2] { - yy3054 := &x.LastHeartbeatTime - yym3055 := z.EncBinary() - _ = yym3055 + if yyq3055[2] { + yy3059 := &x.LastHeartbeatTime + yym3060 := z.EncBinary() + _ = yym3060 if false { - } else if z.HasExtensions() && z.EncExt(yy3054) { - } else if yym3055 { - z.EncBinaryMarshal(yy3054) - } else if !yym3055 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3054) + } else if z.HasExtensions() && z.EncExt(yy3059) { + } else if yym3060 { + z.EncBinaryMarshal(yy3059) + } else if !yym3060 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3059) } else { - z.EncFallback(yy3054) + z.EncFallback(yy3059) } } else { r.EncodeNil() } } else { - if yyq3050[2] { + if yyq3055[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3056 := &x.LastHeartbeatTime - yym3057 := z.EncBinary() - _ = yym3057 + yy3061 := &x.LastHeartbeatTime + yym3062 := z.EncBinary() + _ = yym3062 if false { - } else if z.HasExtensions() && z.EncExt(yy3056) { - } else if yym3057 { - z.EncBinaryMarshal(yy3056) - } else if !yym3057 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3056) + } else if z.HasExtensions() && z.EncExt(yy3061) { + } else if yym3062 { + z.EncBinaryMarshal(yy3061) + } else if !yym3062 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3061) } else { - z.EncFallback(yy3056) + z.EncFallback(yy3061) } } } - if yyr3050 || yy2arr3050 { + if yyr3055 || yy2arr3055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3050[3] { - yy3059 := &x.LastTransitionTime - yym3060 := z.EncBinary() - _ = yym3060 + if yyq3055[3] { + yy3064 := &x.LastTransitionTime + yym3065 := z.EncBinary() + _ = yym3065 if false { - } else if z.HasExtensions() && z.EncExt(yy3059) { - } else if yym3060 { - z.EncBinaryMarshal(yy3059) - } else if !yym3060 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3059) + } else if z.HasExtensions() && z.EncExt(yy3064) { + } else if yym3065 { + z.EncBinaryMarshal(yy3064) + } else if !yym3065 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3064) } else { - z.EncFallback(yy3059) + z.EncFallback(yy3064) } } else { r.EncodeNil() } } else { - if yyq3050[3] { + if yyq3055[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3061 := &x.LastTransitionTime - yym3062 := z.EncBinary() - _ = yym3062 + yy3066 := &x.LastTransitionTime + yym3067 := z.EncBinary() + _ = yym3067 if false { - } else if z.HasExtensions() && z.EncExt(yy3061) { - } else if yym3062 { - z.EncBinaryMarshal(yy3061) - } else if !yym3062 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3061) + } else if z.HasExtensions() && z.EncExt(yy3066) { + } else if yym3067 { + z.EncBinaryMarshal(yy3066) + } else if !yym3067 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3066) } else { - z.EncFallback(yy3061) + z.EncFallback(yy3066) } } } - if yyr3050 || yy2arr3050 { + if yyr3055 || yy2arr3055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3050[4] { - yym3064 := z.EncBinary() - _ = yym3064 + if yyq3055[4] { + yym3069 := z.EncBinary() + _ = yym3069 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -39258,23 +39306,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3050[4] { + if yyq3055[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3065 := z.EncBinary() - _ = yym3065 + yym3070 := z.EncBinary() + _ = yym3070 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3050 || yy2arr3050 { + if yyr3055 || yy2arr3055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3050[5] { - yym3067 := z.EncBinary() - _ = yym3067 + if yyq3055[5] { + yym3072 := z.EncBinary() + _ = yym3072 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39283,19 +39331,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3050[5] { + if yyq3055[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3068 := z.EncBinary() - _ = yym3068 + yym3073 := z.EncBinary() + _ = yym3073 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3050 || yy2arr3050 { + if yyr3055 || yy2arr3055 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39308,25 +39356,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3069 := z.DecBinary() - _ = yym3069 + yym3074 := z.DecBinary() + _ = yym3074 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3070 := r.ContainerType() - if yyct3070 == codecSelferValueTypeMap1234 { - yyl3070 := r.ReadMapStart() - if yyl3070 == 0 { + yyct3075 := r.ContainerType() + if yyct3075 == codecSelferValueTypeMap1234 { + yyl3075 := r.ReadMapStart() + if yyl3075 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3070, d) + x.codecDecodeSelfFromMap(yyl3075, d) } - } else if yyct3070 == codecSelferValueTypeArray1234 { - yyl3070 := r.ReadArrayStart() - if yyl3070 == 0 { + } else if yyct3075 == codecSelferValueTypeArray1234 { + yyl3075 := r.ReadArrayStart() + if yyl3075 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3070, d) + x.codecDecodeSelfFromArray(yyl3075, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39338,12 +39386,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3071Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3071Slc - var yyhl3071 bool = l >= 0 - for yyj3071 := 0; ; yyj3071++ { - if yyhl3071 { - if yyj3071 >= l { + var yys3076Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3076Slc + var yyhl3076 bool = l >= 0 + for yyj3076 := 0; ; yyj3076++ { + if yyhl3076 { + if yyj3076 >= l { break } } else { @@ -39352,10 +39400,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3071Slc = r.DecodeBytes(yys3071Slc, true, true) - yys3071 := string(yys3071Slc) + yys3076Slc = r.DecodeBytes(yys3076Slc, true, true) + yys3076 := string(yys3076Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3071 { + switch yys3076 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39372,34 +39420,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3074 := &x.LastHeartbeatTime - yym3075 := z.DecBinary() - _ = yym3075 + yyv3079 := &x.LastHeartbeatTime + yym3080 := z.DecBinary() + _ = yym3080 if false { - } else if z.HasExtensions() && z.DecExt(yyv3074) { - } else if yym3075 { - z.DecBinaryUnmarshal(yyv3074) - } else if !yym3075 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3074) + } else if z.HasExtensions() && z.DecExt(yyv3079) { + } else if yym3080 { + z.DecBinaryUnmarshal(yyv3079) + } else if !yym3080 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3079) } else { - z.DecFallback(yyv3074, false) + z.DecFallback(yyv3079, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3076 := &x.LastTransitionTime - yym3077 := z.DecBinary() - _ = yym3077 + yyv3081 := &x.LastTransitionTime + yym3082 := z.DecBinary() + _ = yym3082 if false { - } else if z.HasExtensions() && z.DecExt(yyv3076) { - } else if yym3077 { - z.DecBinaryUnmarshal(yyv3076) - } else if !yym3077 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3076) + } else if z.HasExtensions() && z.DecExt(yyv3081) { + } else if yym3082 { + z.DecBinaryUnmarshal(yyv3081) + } else if !yym3082 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3081) } else { - z.DecFallback(yyv3076, false) + z.DecFallback(yyv3081, false) } } case "reason": @@ -39415,9 +39463,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3071) - } // end switch yys3071 - } // end for yyj3071 + z.DecStructFieldNotFound(-1, yys3076) + } // end switch yys3076 + } // end for yyj3076 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39425,16 +39473,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3080 int - var yyb3080 bool - var yyhl3080 bool = l >= 0 - yyj3080++ - if yyhl3080 { - yyb3080 = yyj3080 > l + var yyj3085 int + var yyb3085 bool + var yyhl3085 bool = l >= 0 + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l } else { - yyb3080 = r.CheckBreak() + yyb3085 = r.CheckBreak() } - if yyb3080 { + if yyb3085 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39444,13 +39492,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3080++ - if yyhl3080 { - yyb3080 = yyj3080 > l + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l } else { - yyb3080 = r.CheckBreak() + yyb3085 = r.CheckBreak() } - if yyb3080 { + if yyb3085 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39460,13 +39508,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3080++ - if yyhl3080 { - yyb3080 = yyj3080 > l + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l } else { - yyb3080 = r.CheckBreak() + yyb3085 = r.CheckBreak() } - if yyb3080 { + if yyb3085 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39474,26 +39522,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3083 := &x.LastHeartbeatTime - yym3084 := z.DecBinary() - _ = yym3084 + yyv3088 := &x.LastHeartbeatTime + yym3089 := z.DecBinary() + _ = yym3089 if false { - } else if z.HasExtensions() && z.DecExt(yyv3083) { - } else if yym3084 { - z.DecBinaryUnmarshal(yyv3083) - } else if !yym3084 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3083) + } else if z.HasExtensions() && z.DecExt(yyv3088) { + } else if yym3089 { + z.DecBinaryUnmarshal(yyv3088) + } else if !yym3089 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3088) } else { - z.DecFallback(yyv3083, false) + z.DecFallback(yyv3088, false) } } - yyj3080++ - if yyhl3080 { - yyb3080 = yyj3080 > l + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l } else { - yyb3080 = r.CheckBreak() + yyb3085 = r.CheckBreak() } - if yyb3080 { + if yyb3085 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39501,26 +39549,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3085 := &x.LastTransitionTime - yym3086 := z.DecBinary() - _ = yym3086 + yyv3090 := &x.LastTransitionTime + yym3091 := z.DecBinary() + _ = yym3091 if false { - } else if z.HasExtensions() && z.DecExt(yyv3085) { - } else if yym3086 { - z.DecBinaryUnmarshal(yyv3085) - } else if !yym3086 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3085) + } else if z.HasExtensions() && z.DecExt(yyv3090) { + } else if yym3091 { + z.DecBinaryUnmarshal(yyv3090) + } else if !yym3091 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3090) } else { - z.DecFallback(yyv3085, false) + z.DecFallback(yyv3090, false) } } - yyj3080++ - if yyhl3080 { - yyb3080 = yyj3080 > l + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l } else { - yyb3080 = r.CheckBreak() + yyb3085 = r.CheckBreak() } - if yyb3080 { + if yyb3085 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39530,13 +39578,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3080++ - if yyhl3080 { - yyb3080 = yyj3080 > l + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l } else { - yyb3080 = r.CheckBreak() + yyb3085 = r.CheckBreak() } - if yyb3080 { + if yyb3085 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39547,17 +39595,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3080++ - if yyhl3080 { - yyb3080 = yyj3080 > l + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l } else { - yyb3080 = r.CheckBreak() + yyb3085 = r.CheckBreak() } - if yyb3080 { + if yyb3085 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3080-1, "") + z.DecStructFieldNotFound(yyj3085-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39566,8 +39614,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3089 := z.EncBinary() - _ = yym3089 + yym3094 := z.EncBinary() + _ = yym3094 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39579,8 +39627,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3090 := z.DecBinary() - _ = yym3090 + yym3095 := z.DecBinary() + _ = yym3095 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39595,30 +39643,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3091 := z.EncBinary() - _ = yym3091 + yym3096 := z.EncBinary() + _ = yym3096 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3092 := !z.EncBinary() - yy2arr3092 := z.EncBasicHandle().StructToArray - var yyq3092 [2]bool - _, _, _ = yysep3092, yyq3092, yy2arr3092 - const yyr3092 bool = false - var yynn3092 int - if yyr3092 || yy2arr3092 { + yysep3097 := !z.EncBinary() + yy2arr3097 := z.EncBasicHandle().StructToArray + var yyq3097 [2]bool + _, _, _ = yysep3097, yyq3097, yy2arr3097 + const yyr3097 bool = false + var yynn3097 int + if yyr3097 || yy2arr3097 { r.EncodeArrayStart(2) } else { - yynn3092 = 2 - for _, b := range yyq3092 { + yynn3097 = 2 + for _, b := range yyq3097 { if b { - yynn3092++ + yynn3097++ } } - r.EncodeMapStart(yynn3092) - yynn3092 = 0 + r.EncodeMapStart(yynn3097) + yynn3097 = 0 } - if yyr3092 || yy2arr3092 { + if yyr3097 || yy2arr3097 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -39627,10 +39675,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3092 || yy2arr3092 { + if yyr3097 || yy2arr3097 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3095 := z.EncBinary() - _ = yym3095 + yym3100 := z.EncBinary() + _ = yym3100 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -39639,14 +39687,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3096 := z.EncBinary() - _ = yym3096 + yym3101 := z.EncBinary() + _ = yym3101 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3092 || yy2arr3092 { + if yyr3097 || yy2arr3097 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39659,25 +39707,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3097 := z.DecBinary() - _ = yym3097 + yym3102 := z.DecBinary() + _ = yym3102 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3098 := r.ContainerType() - if yyct3098 == codecSelferValueTypeMap1234 { - yyl3098 := r.ReadMapStart() - if yyl3098 == 0 { + yyct3103 := r.ContainerType() + if yyct3103 == codecSelferValueTypeMap1234 { + yyl3103 := r.ReadMapStart() + if yyl3103 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3098, d) + x.codecDecodeSelfFromMap(yyl3103, d) } - } else if yyct3098 == codecSelferValueTypeArray1234 { - yyl3098 := r.ReadArrayStart() - if yyl3098 == 0 { + } else if yyct3103 == codecSelferValueTypeArray1234 { + yyl3103 := r.ReadArrayStart() + if yyl3103 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3098, d) + x.codecDecodeSelfFromArray(yyl3103, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39689,12 +39737,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3099Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3099Slc - var yyhl3099 bool = l >= 0 - for yyj3099 := 0; ; yyj3099++ { - if yyhl3099 { - if yyj3099 >= l { + var yys3104Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3104Slc + var yyhl3104 bool = l >= 0 + for yyj3104 := 0; ; yyj3104++ { + if yyhl3104 { + if yyj3104 >= l { break } } else { @@ -39703,10 +39751,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3099Slc = r.DecodeBytes(yys3099Slc, true, true) - yys3099 := string(yys3099Slc) + yys3104Slc = r.DecodeBytes(yys3104Slc, true, true) + yys3104 := string(yys3104Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3099 { + switch yys3104 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39720,9 +39768,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3099) - } // end switch yys3099 - } // end for yyj3099 + z.DecStructFieldNotFound(-1, yys3104) + } // end switch yys3104 + } // end for yyj3104 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39730,16 +39778,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3102 int - var yyb3102 bool - var yyhl3102 bool = l >= 0 - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + var yyj3107 int + var yyb3107 bool + var yyhl3107 bool = l >= 0 + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3102 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3102 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39749,13 +39797,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3102 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3102 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39766,17 +39814,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3102 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3102 { + if yyb3107 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3102-1, "") + z.DecStructFieldNotFound(yyj3107-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39785,8 +39833,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3105 := z.EncBinary() - _ = yym3105 + yym3110 := z.EncBinary() + _ = yym3110 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39798,8 +39846,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3106 := z.DecBinary() - _ = yym3106 + yym3111 := z.DecBinary() + _ = yym3111 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39814,8 +39862,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3107 := z.EncBinary() - _ = yym3107 + yym3112 := z.EncBinary() + _ = yym3112 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39828,8 +39876,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3108 := z.DecBinary() - _ = yym3108 + yym3113 := z.DecBinary() + _ = yym3113 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39844,39 +39892,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3109 := z.EncBinary() - _ = yym3109 + yym3114 := z.EncBinary() + _ = yym3114 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3110 := !z.EncBinary() - yy2arr3110 := z.EncBasicHandle().StructToArray - var yyq3110 [5]bool - _, _, _ = yysep3110, yyq3110, yy2arr3110 - const yyr3110 bool = false - yyq3110[0] = x.Kind != "" - yyq3110[1] = x.APIVersion != "" - yyq3110[2] = true - yyq3110[3] = true - yyq3110[4] = true - var yynn3110 int - if yyr3110 || yy2arr3110 { + yysep3115 := !z.EncBinary() + yy2arr3115 := z.EncBasicHandle().StructToArray + var yyq3115 [5]bool + _, _, _ = yysep3115, yyq3115, yy2arr3115 + const yyr3115 bool = false + yyq3115[0] = x.Kind != "" + yyq3115[1] = x.APIVersion != "" + yyq3115[2] = true + yyq3115[3] = true + yyq3115[4] = true + var yynn3115 int + if yyr3115 || yy2arr3115 { r.EncodeArrayStart(5) } else { - yynn3110 = 0 - for _, b := range yyq3110 { + yynn3115 = 0 + for _, b := range yyq3115 { if b { - yynn3110++ + yynn3115++ } } - r.EncodeMapStart(yynn3110) - yynn3110 = 0 + r.EncodeMapStart(yynn3115) + yynn3115 = 0 } - if yyr3110 || yy2arr3110 { + if yyr3115 || yy2arr3115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3110[0] { - yym3112 := z.EncBinary() - _ = yym3112 + if yyq3115[0] { + yym3117 := z.EncBinary() + _ = yym3117 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39885,23 +39933,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3110[0] { + if yyq3115[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3113 := z.EncBinary() - _ = yym3113 + yym3118 := z.EncBinary() + _ = yym3118 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3110 || yy2arr3110 { + if yyr3115 || yy2arr3115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3110[1] { - yym3115 := z.EncBinary() - _ = yym3115 + if yyq3115[1] { + yym3120 := z.EncBinary() + _ = yym3120 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39910,70 +39958,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3110[1] { + if yyq3115[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3116 := z.EncBinary() - _ = yym3116 + yym3121 := z.EncBinary() + _ = yym3121 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3110 || yy2arr3110 { + if yyr3115 || yy2arr3115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3110[2] { - yy3118 := &x.ObjectMeta - yy3118.CodecEncodeSelf(e) + if yyq3115[2] { + yy3123 := &x.ObjectMeta + yy3123.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3110[2] { + if yyq3115[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3119 := &x.ObjectMeta - yy3119.CodecEncodeSelf(e) + yy3124 := &x.ObjectMeta + yy3124.CodecEncodeSelf(e) } } - if yyr3110 || yy2arr3110 { + if yyr3115 || yy2arr3115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3110[3] { - yy3121 := &x.Spec - yy3121.CodecEncodeSelf(e) + if yyq3115[3] { + yy3126 := &x.Spec + yy3126.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3110[3] { + if yyq3115[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3122 := &x.Spec - yy3122.CodecEncodeSelf(e) + yy3127 := &x.Spec + yy3127.CodecEncodeSelf(e) } } - if yyr3110 || yy2arr3110 { + if yyr3115 || yy2arr3115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3110[4] { - yy3124 := &x.Status - yy3124.CodecEncodeSelf(e) + if yyq3115[4] { + yy3129 := &x.Status + yy3129.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3110[4] { + if yyq3115[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3125 := &x.Status - yy3125.CodecEncodeSelf(e) + yy3130 := &x.Status + yy3130.CodecEncodeSelf(e) } } - if yyr3110 || yy2arr3110 { + if yyr3115 || yy2arr3115 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39986,25 +40034,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3126 := z.DecBinary() - _ = yym3126 + yym3131 := z.DecBinary() + _ = yym3131 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3127 := r.ContainerType() - if yyct3127 == codecSelferValueTypeMap1234 { - yyl3127 := r.ReadMapStart() - if yyl3127 == 0 { + yyct3132 := r.ContainerType() + if yyct3132 == codecSelferValueTypeMap1234 { + yyl3132 := r.ReadMapStart() + if yyl3132 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3127, d) + x.codecDecodeSelfFromMap(yyl3132, d) } - } else if yyct3127 == codecSelferValueTypeArray1234 { - yyl3127 := r.ReadArrayStart() - if yyl3127 == 0 { + } else if yyct3132 == codecSelferValueTypeArray1234 { + yyl3132 := r.ReadArrayStart() + if yyl3132 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3127, d) + x.codecDecodeSelfFromArray(yyl3132, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40016,12 +40064,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3128Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3128Slc - var yyhl3128 bool = l >= 0 - for yyj3128 := 0; ; yyj3128++ { - if yyhl3128 { - if yyj3128 >= l { + var yys3133Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3133Slc + var yyhl3133 bool = l >= 0 + for yyj3133 := 0; ; yyj3133++ { + if yyhl3133 { + if yyj3133 >= l { break } } else { @@ -40030,10 +40078,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3128Slc = r.DecodeBytes(yys3128Slc, true, true) - yys3128 := string(yys3128Slc) + yys3133Slc = r.DecodeBytes(yys3133Slc, true, true) + yys3133 := string(yys3133Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3128 { + switch yys3133 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40050,27 +40098,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3131 := &x.ObjectMeta - yyv3131.CodecDecodeSelf(d) + yyv3136 := &x.ObjectMeta + yyv3136.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3132 := &x.Spec - yyv3132.CodecDecodeSelf(d) + yyv3137 := &x.Spec + yyv3137.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3133 := &x.Status - yyv3133.CodecDecodeSelf(d) + yyv3138 := &x.Status + yyv3138.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3128) - } // end switch yys3128 - } // end for yyj3128 + z.DecStructFieldNotFound(-1, yys3133) + } // end switch yys3133 + } // end for yyj3133 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40078,16 +40126,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3134 int - var yyb3134 bool - var yyhl3134 bool = l >= 0 - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + var yyj3139 int + var yyb3139 bool + var yyhl3139 bool = l >= 0 + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40097,13 +40145,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40113,13 +40161,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40127,16 +40175,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3137 := &x.ObjectMeta - yyv3137.CodecDecodeSelf(d) + yyv3142 := &x.ObjectMeta + yyv3142.CodecDecodeSelf(d) } - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40144,16 +40192,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3138 := &x.Spec - yyv3138.CodecDecodeSelf(d) + yyv3143 := &x.Spec + yyv3143.CodecDecodeSelf(d) } - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40161,21 +40209,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3139 := &x.Status - yyv3139.CodecDecodeSelf(d) + yyv3144 := &x.Status + yyv3144.CodecDecodeSelf(d) } for { - yyj3134++ - if yyhl3134 { - yyb3134 = yyj3134 > l + yyj3139++ + if yyhl3139 { + yyb3139 = yyj3139 > l } else { - yyb3134 = r.CheckBreak() + yyb3139 = r.CheckBreak() } - if yyb3134 { + if yyb3139 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3134-1, "") + z.DecStructFieldNotFound(yyj3139-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40187,37 +40235,37 @@ func (x *NodeList) 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 [4]bool - _, _, _ = yysep3141, yyq3141, yy2arr3141 - const yyr3141 bool = false - yyq3141[0] = x.Kind != "" - yyq3141[1] = x.APIVersion != "" - yyq3141[2] = true - var yynn3141 int - if yyr3141 || yy2arr3141 { + yysep3146 := !z.EncBinary() + yy2arr3146 := z.EncBasicHandle().StructToArray + var yyq3146 [4]bool + _, _, _ = yysep3146, yyq3146, yy2arr3146 + const yyr3146 bool = false + yyq3146[0] = x.Kind != "" + yyq3146[1] = x.APIVersion != "" + yyq3146[2] = true + var yynn3146 int + if yyr3146 || yy2arr3146 { r.EncodeArrayStart(4) } else { - yynn3141 = 1 - for _, b := range yyq3141 { + yynn3146 = 1 + 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] { - yym3143 := z.EncBinary() - _ = yym3143 + if yyq3146[0] { + yym3148 := z.EncBinary() + _ = yym3148 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40226,23 +40274,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3141[0] { + if yyq3146[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3144 := z.EncBinary() - _ = yym3144 + yym3149 := z.EncBinary() + _ = yym3149 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3141 || yy2arr3141 { + if yyr3146 || yy2arr3146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[1] { - yym3146 := z.EncBinary() - _ = yym3146 + if yyq3146[1] { + yym3151 := z.EncBinary() + _ = yym3151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40251,54 +40299,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3141[1] { + if yyq3146[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3147 := z.EncBinary() - _ = yym3147 + yym3152 := z.EncBinary() + _ = yym3152 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3141 || yy2arr3141 { + if yyr3146 || yy2arr3146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[2] { - yy3149 := &x.ListMeta - yym3150 := z.EncBinary() - _ = yym3150 + if yyq3146[2] { + yy3154 := &x.ListMeta + yym3155 := z.EncBinary() + _ = yym3155 if false { - } else if z.HasExtensions() && z.EncExt(yy3149) { + } else if z.HasExtensions() && z.EncExt(yy3154) { } else { - z.EncFallback(yy3149) + z.EncFallback(yy3154) } } else { r.EncodeNil() } } else { - if yyq3141[2] { + if yyq3146[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3151 := &x.ListMeta - yym3152 := z.EncBinary() - _ = yym3152 + yy3156 := &x.ListMeta + yym3157 := z.EncBinary() + _ = yym3157 if false { - } else if z.HasExtensions() && z.EncExt(yy3151) { + } else if z.HasExtensions() && z.EncExt(yy3156) { } else { - z.EncFallback(yy3151) + z.EncFallback(yy3156) } } } - if yyr3141 || yy2arr3141 { + if yyr3146 || yy2arr3146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3154 := z.EncBinary() - _ = yym3154 + yym3159 := z.EncBinary() + _ = yym3159 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -40311,15 +40359,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3155 := z.EncBinary() - _ = yym3155 + yym3160 := z.EncBinary() + _ = yym3160 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3141 || yy2arr3141 { + if yyr3146 || yy2arr3146 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40332,25 +40380,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3156 := z.DecBinary() - _ = yym3156 + yym3161 := z.DecBinary() + _ = yym3161 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3157 := r.ContainerType() - if yyct3157 == codecSelferValueTypeMap1234 { - yyl3157 := r.ReadMapStart() - if yyl3157 == 0 { + yyct3162 := r.ContainerType() + if yyct3162 == codecSelferValueTypeMap1234 { + yyl3162 := r.ReadMapStart() + if yyl3162 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3157, d) + x.codecDecodeSelfFromMap(yyl3162, d) } - } else if yyct3157 == codecSelferValueTypeArray1234 { - yyl3157 := r.ReadArrayStart() - if yyl3157 == 0 { + } else if yyct3162 == codecSelferValueTypeArray1234 { + yyl3162 := r.ReadArrayStart() + if yyl3162 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3157, d) + x.codecDecodeSelfFromArray(yyl3162, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40362,12 +40410,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3158Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3158Slc - var yyhl3158 bool = l >= 0 - for yyj3158 := 0; ; yyj3158++ { - if yyhl3158 { - if yyj3158 >= l { + var yys3163Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3163Slc + var yyhl3163 bool = l >= 0 + for yyj3163 := 0; ; yyj3163++ { + if yyhl3163 { + if yyj3163 >= l { break } } else { @@ -40376,10 +40424,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3158Slc = r.DecodeBytes(yys3158Slc, true, true) - yys3158 := string(yys3158Slc) + yys3163Slc = r.DecodeBytes(yys3163Slc, true, true) + yys3163 := string(yys3163Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3158 { + switch yys3163 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40396,31 +40444,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3161 := &x.ListMeta - yym3162 := z.DecBinary() - _ = yym3162 + yyv3166 := &x.ListMeta + yym3167 := z.DecBinary() + _ = yym3167 if false { - } else if z.HasExtensions() && z.DecExt(yyv3161) { + } else if z.HasExtensions() && z.DecExt(yyv3166) { } else { - z.DecFallback(yyv3161, false) + z.DecFallback(yyv3166, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3163 := &x.Items - yym3164 := z.DecBinary() - _ = yym3164 + yyv3168 := &x.Items + yym3169 := z.DecBinary() + _ = yym3169 if false { } else { - h.decSliceNode((*[]Node)(yyv3163), d) + h.decSliceNode((*[]Node)(yyv3168), d) } } default: - z.DecStructFieldNotFound(-1, yys3158) - } // end switch yys3158 - } // end for yyj3158 + z.DecStructFieldNotFound(-1, yys3163) + } // end switch yys3163 + } // end for yyj3163 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40428,16 +40476,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3165 int - var yyb3165 bool - var yyhl3165 bool = l >= 0 - yyj3165++ - if yyhl3165 { - yyb3165 = yyj3165 > l + var yyj3170 int + var yyb3170 bool + var yyhl3170 bool = l >= 0 + yyj3170++ + if yyhl3170 { + yyb3170 = yyj3170 > l } else { - yyb3165 = r.CheckBreak() + yyb3170 = r.CheckBreak() } - if yyb3165 { + if yyb3170 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40447,13 +40495,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3165++ - if yyhl3165 { - yyb3165 = yyj3165 > l + yyj3170++ + if yyhl3170 { + yyb3170 = yyj3170 > l } else { - yyb3165 = r.CheckBreak() + yyb3170 = r.CheckBreak() } - if yyb3165 { + if yyb3170 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40463,13 +40511,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3165++ - if yyhl3165 { - yyb3165 = yyj3165 > l + yyj3170++ + if yyhl3170 { + yyb3170 = yyj3170 > l } else { - yyb3165 = r.CheckBreak() + yyb3170 = r.CheckBreak() } - if yyb3165 { + if yyb3170 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40477,22 +40525,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3168 := &x.ListMeta - yym3169 := z.DecBinary() - _ = yym3169 + yyv3173 := &x.ListMeta + yym3174 := z.DecBinary() + _ = yym3174 if false { - } else if z.HasExtensions() && z.DecExt(yyv3168) { + } else if z.HasExtensions() && z.DecExt(yyv3173) { } else { - z.DecFallback(yyv3168, false) + z.DecFallback(yyv3173, false) } } - yyj3165++ - if yyhl3165 { - yyb3165 = yyj3165 > l + yyj3170++ + if yyhl3170 { + yyb3170 = yyj3170 > l } else { - yyb3165 = r.CheckBreak() + yyb3170 = r.CheckBreak() } - if yyb3165 { + if yyb3170 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40500,26 +40548,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3170 := &x.Items - yym3171 := z.DecBinary() - _ = yym3171 + yyv3175 := &x.Items + yym3176 := z.DecBinary() + _ = yym3176 if false { } else { - h.decSliceNode((*[]Node)(yyv3170), d) + h.decSliceNode((*[]Node)(yyv3175), d) } } for { - yyj3165++ - if yyhl3165 { - yyb3165 = yyj3165 > l + yyj3170++ + if yyhl3170 { + yyb3170 = yyj3170 > l } else { - yyb3165 = r.CheckBreak() + yyb3170 = r.CheckBreak() } - if yyb3165 { + if yyb3170 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3165-1, "") + z.DecStructFieldNotFound(yyj3170-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40528,8 +40576,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3172 := z.EncBinary() - _ = yym3172 + yym3177 := z.EncBinary() + _ = yym3177 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40541,8 +40589,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3173 := z.DecBinary() - _ = yym3173 + yym3178 := z.DecBinary() + _ = yym3178 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40557,38 +40605,38 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3174 := z.EncBinary() - _ = yym3174 + yym3179 := z.EncBinary() + _ = yym3179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3175 := !z.EncBinary() - yy2arr3175 := z.EncBasicHandle().StructToArray - var yyq3175 [1]bool - _, _, _ = yysep3175, yyq3175, yy2arr3175 - const yyr3175 bool = false - yyq3175[0] = len(x.Finalizers) != 0 - var yynn3175 int - if yyr3175 || yy2arr3175 { + yysep3180 := !z.EncBinary() + yy2arr3180 := z.EncBasicHandle().StructToArray + var yyq3180 [1]bool + _, _, _ = yysep3180, yyq3180, yy2arr3180 + const yyr3180 bool = false + yyq3180[0] = len(x.Finalizers) != 0 + var yynn3180 int + if yyr3180 || yy2arr3180 { r.EncodeArrayStart(1) } else { - yynn3175 = 0 - for _, b := range yyq3175 { + yynn3180 = 0 + for _, b := range yyq3180 { if b { - yynn3175++ + yynn3180++ } } - r.EncodeMapStart(yynn3175) - yynn3175 = 0 + r.EncodeMapStart(yynn3180) + yynn3180 = 0 } - if yyr3175 || yy2arr3175 { + if yyr3180 || yy2arr3180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3175[0] { + if yyq3180[0] { if x.Finalizers == nil { r.EncodeNil() } else { - yym3177 := z.EncBinary() - _ = yym3177 + yym3182 := z.EncBinary() + _ = yym3182 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -40598,15 +40646,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3175[0] { + if yyq3180[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3178 := z.EncBinary() - _ = yym3178 + yym3183 := z.EncBinary() + _ = yym3183 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -40614,7 +40662,7 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3175 || yy2arr3175 { + if yyr3180 || yy2arr3180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40627,25 +40675,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3179 := z.DecBinary() - _ = yym3179 + yym3184 := z.DecBinary() + _ = yym3184 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3180 := r.ContainerType() - if yyct3180 == codecSelferValueTypeMap1234 { - yyl3180 := r.ReadMapStart() - if yyl3180 == 0 { + yyct3185 := r.ContainerType() + if yyct3185 == codecSelferValueTypeMap1234 { + yyl3185 := r.ReadMapStart() + if yyl3185 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3180, d) + x.codecDecodeSelfFromMap(yyl3185, d) } - } else if yyct3180 == codecSelferValueTypeArray1234 { - yyl3180 := r.ReadArrayStart() - if yyl3180 == 0 { + } else if yyct3185 == codecSelferValueTypeArray1234 { + yyl3185 := r.ReadArrayStart() + if yyl3185 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3180, d) + x.codecDecodeSelfFromArray(yyl3185, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40657,12 +40705,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3181Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3181Slc - var yyhl3181 bool = l >= 0 - for yyj3181 := 0; ; yyj3181++ { - if yyhl3181 { - if yyj3181 >= l { + var yys3186Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3186Slc + var yyhl3186 bool = l >= 0 + for yyj3186 := 0; ; yyj3186++ { + if yyhl3186 { + if yyj3186 >= l { break } } else { @@ -40671,26 +40719,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3181Slc = r.DecodeBytes(yys3181Slc, true, true) - yys3181 := string(yys3181Slc) + yys3186Slc = r.DecodeBytes(yys3186Slc, true, true) + yys3186 := string(yys3186Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3181 { + switch yys3186 { case "finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3182 := &x.Finalizers - yym3183 := z.DecBinary() - _ = yym3183 + yyv3187 := &x.Finalizers + yym3188 := z.DecBinary() + _ = yym3188 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3182), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3187), d) } } default: - z.DecStructFieldNotFound(-1, yys3181) - } // end switch yys3181 - } // end for yyj3181 + z.DecStructFieldNotFound(-1, yys3186) + } // end switch yys3186 + } // end for yyj3186 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40698,16 +40746,16 @@ func (x *NamespaceSpec) 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 } @@ -40715,26 +40763,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3185 := &x.Finalizers - yym3186 := z.DecBinary() - _ = yym3186 + yyv3190 := &x.Finalizers + yym3191 := z.DecBinary() + _ = yym3191 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3185), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3190), 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) } @@ -40746,46 +40794,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3187 := z.EncBinary() - _ = yym3187 + yym3192 := z.EncBinary() + _ = yym3192 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3188 := !z.EncBinary() - yy2arr3188 := z.EncBasicHandle().StructToArray - var yyq3188 [1]bool - _, _, _ = yysep3188, yyq3188, yy2arr3188 - const yyr3188 bool = false - yyq3188[0] = x.Phase != "" - var yynn3188 int - if yyr3188 || yy2arr3188 { + yysep3193 := !z.EncBinary() + yy2arr3193 := z.EncBasicHandle().StructToArray + var yyq3193 [1]bool + _, _, _ = yysep3193, yyq3193, yy2arr3193 + const yyr3193 bool = false + yyq3193[0] = x.Phase != "" + var yynn3193 int + if yyr3193 || yy2arr3193 { r.EncodeArrayStart(1) } else { - yynn3188 = 0 - for _, b := range yyq3188 { + yynn3193 = 0 + for _, b := range yyq3193 { if b { - yynn3188++ + yynn3193++ } } - r.EncodeMapStart(yynn3188) - yynn3188 = 0 + r.EncodeMapStart(yynn3193) + yynn3193 = 0 } - if yyr3188 || yy2arr3188 { + if yyr3193 || yy2arr3193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3188[0] { + if yyq3193[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3188[0] { + if yyq3193[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3188 || yy2arr3188 { + if yyr3193 || yy2arr3193 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40798,25 +40846,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3190 := z.DecBinary() - _ = yym3190 + yym3195 := z.DecBinary() + _ = yym3195 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3191 := r.ContainerType() - if yyct3191 == codecSelferValueTypeMap1234 { - yyl3191 := r.ReadMapStart() - if yyl3191 == 0 { + yyct3196 := r.ContainerType() + if yyct3196 == codecSelferValueTypeMap1234 { + yyl3196 := r.ReadMapStart() + if yyl3196 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3191, d) + x.codecDecodeSelfFromMap(yyl3196, d) } - } else if yyct3191 == codecSelferValueTypeArray1234 { - yyl3191 := r.ReadArrayStart() - if yyl3191 == 0 { + } else if yyct3196 == codecSelferValueTypeArray1234 { + yyl3196 := r.ReadArrayStart() + if yyl3196 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3191, d) + x.codecDecodeSelfFromArray(yyl3196, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40828,12 +40876,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3192Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3192Slc - var yyhl3192 bool = l >= 0 - for yyj3192 := 0; ; yyj3192++ { - if yyhl3192 { - if yyj3192 >= l { + var yys3197Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3197Slc + var yyhl3197 bool = l >= 0 + for yyj3197 := 0; ; yyj3197++ { + if yyhl3197 { + if yyj3197 >= l { break } } else { @@ -40842,10 +40890,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3192Slc = r.DecodeBytes(yys3192Slc, true, true) - yys3192 := string(yys3192Slc) + yys3197Slc = r.DecodeBytes(yys3197Slc, true, true) + yys3197 := string(yys3197Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3192 { + switch yys3197 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -40853,9 +40901,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3192) - } // end switch yys3192 - } // end for yyj3192 + z.DecStructFieldNotFound(-1, yys3197) + } // end switch yys3197 + } // end for yyj3197 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40863,16 +40911,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3194 int - var yyb3194 bool - var yyhl3194 bool = l >= 0 - yyj3194++ - if yyhl3194 { - yyb3194 = yyj3194 > l + var yyj3199 int + var yyb3199 bool + var yyhl3199 bool = l >= 0 + yyj3199++ + if yyhl3199 { + yyb3199 = yyj3199 > l } else { - yyb3194 = r.CheckBreak() + yyb3199 = r.CheckBreak() } - if yyb3194 { + if yyb3199 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40883,17 +40931,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3194++ - if yyhl3194 { - yyb3194 = yyj3194 > l + yyj3199++ + if yyhl3199 { + yyb3199 = yyj3199 > l } else { - yyb3194 = r.CheckBreak() + yyb3199 = r.CheckBreak() } - if yyb3194 { + if yyb3199 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3194-1, "") + z.DecStructFieldNotFound(yyj3199-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40902,8 +40950,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3196 := z.EncBinary() - _ = yym3196 + yym3201 := z.EncBinary() + _ = yym3201 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40915,8 +40963,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3197 := z.DecBinary() - _ = yym3197 + yym3202 := z.DecBinary() + _ = yym3202 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40931,39 +40979,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3198 := z.EncBinary() - _ = yym3198 + yym3203 := z.EncBinary() + _ = yym3203 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3199 := !z.EncBinary() - yy2arr3199 := z.EncBasicHandle().StructToArray - var yyq3199 [5]bool - _, _, _ = yysep3199, yyq3199, yy2arr3199 - const yyr3199 bool = false - yyq3199[0] = x.Kind != "" - yyq3199[1] = x.APIVersion != "" - yyq3199[2] = true - yyq3199[3] = true - yyq3199[4] = true - var yynn3199 int - if yyr3199 || yy2arr3199 { + yysep3204 := !z.EncBinary() + yy2arr3204 := z.EncBasicHandle().StructToArray + var yyq3204 [5]bool + _, _, _ = yysep3204, yyq3204, yy2arr3204 + const yyr3204 bool = false + yyq3204[0] = x.Kind != "" + yyq3204[1] = x.APIVersion != "" + yyq3204[2] = true + yyq3204[3] = true + yyq3204[4] = true + var yynn3204 int + if yyr3204 || yy2arr3204 { r.EncodeArrayStart(5) } else { - yynn3199 = 0 - for _, b := range yyq3199 { + yynn3204 = 0 + for _, b := range yyq3204 { if b { - yynn3199++ + yynn3204++ } } - r.EncodeMapStart(yynn3199) - yynn3199 = 0 + r.EncodeMapStart(yynn3204) + yynn3204 = 0 } - if yyr3199 || yy2arr3199 { + if yyr3204 || yy2arr3204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3199[0] { - yym3201 := z.EncBinary() - _ = yym3201 + if yyq3204[0] { + yym3206 := z.EncBinary() + _ = yym3206 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40972,23 +41020,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3199[0] { + if yyq3204[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3202 := z.EncBinary() - _ = yym3202 + yym3207 := z.EncBinary() + _ = yym3207 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3199 || yy2arr3199 { + if yyr3204 || yy2arr3204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3199[1] { - yym3204 := z.EncBinary() - _ = yym3204 + if yyq3204[1] { + yym3209 := z.EncBinary() + _ = yym3209 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40997,70 +41045,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3199[1] { + if yyq3204[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3205 := z.EncBinary() - _ = yym3205 + yym3210 := z.EncBinary() + _ = yym3210 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3199 || yy2arr3199 { + if yyr3204 || yy2arr3204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3199[2] { - yy3207 := &x.ObjectMeta - yy3207.CodecEncodeSelf(e) + if yyq3204[2] { + yy3212 := &x.ObjectMeta + yy3212.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3199[2] { + if yyq3204[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3208 := &x.ObjectMeta - yy3208.CodecEncodeSelf(e) + yy3213 := &x.ObjectMeta + yy3213.CodecEncodeSelf(e) } } - if yyr3199 || yy2arr3199 { + if yyr3204 || yy2arr3204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3199[3] { - yy3210 := &x.Spec - yy3210.CodecEncodeSelf(e) + if yyq3204[3] { + yy3215 := &x.Spec + yy3215.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3199[3] { + if yyq3204[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3211 := &x.Spec - yy3211.CodecEncodeSelf(e) + yy3216 := &x.Spec + yy3216.CodecEncodeSelf(e) } } - if yyr3199 || yy2arr3199 { + if yyr3204 || yy2arr3204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3199[4] { - yy3213 := &x.Status - yy3213.CodecEncodeSelf(e) + if yyq3204[4] { + yy3218 := &x.Status + yy3218.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3199[4] { + if yyq3204[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3214 := &x.Status - yy3214.CodecEncodeSelf(e) + yy3219 := &x.Status + yy3219.CodecEncodeSelf(e) } } - if yyr3199 || yy2arr3199 { + if yyr3204 || yy2arr3204 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41073,25 +41121,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3215 := z.DecBinary() - _ = yym3215 + yym3220 := z.DecBinary() + _ = yym3220 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3216 := r.ContainerType() - if yyct3216 == codecSelferValueTypeMap1234 { - yyl3216 := r.ReadMapStart() - if yyl3216 == 0 { + yyct3221 := r.ContainerType() + if yyct3221 == codecSelferValueTypeMap1234 { + yyl3221 := r.ReadMapStart() + if yyl3221 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3216, d) + x.codecDecodeSelfFromMap(yyl3221, d) } - } else if yyct3216 == codecSelferValueTypeArray1234 { - yyl3216 := r.ReadArrayStart() - if yyl3216 == 0 { + } else if yyct3221 == codecSelferValueTypeArray1234 { + yyl3221 := r.ReadArrayStart() + if yyl3221 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3216, d) + x.codecDecodeSelfFromArray(yyl3221, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41103,12 +41151,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3217Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3217Slc - var yyhl3217 bool = l >= 0 - for yyj3217 := 0; ; yyj3217++ { - if yyhl3217 { - if yyj3217 >= l { + var yys3222Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3222Slc + var yyhl3222 bool = l >= 0 + for yyj3222 := 0; ; yyj3222++ { + if yyhl3222 { + if yyj3222 >= l { break } } else { @@ -41117,10 +41165,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3217Slc = r.DecodeBytes(yys3217Slc, true, true) - yys3217 := string(yys3217Slc) + yys3222Slc = r.DecodeBytes(yys3222Slc, true, true) + yys3222 := string(yys3222Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3217 { + switch yys3222 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41137,27 +41185,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3220 := &x.ObjectMeta - yyv3220.CodecDecodeSelf(d) + yyv3225 := &x.ObjectMeta + yyv3225.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3221 := &x.Spec - yyv3221.CodecDecodeSelf(d) + yyv3226 := &x.Spec + yyv3226.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3222 := &x.Status - yyv3222.CodecDecodeSelf(d) + yyv3227 := &x.Status + yyv3227.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3217) - } // end switch yys3217 - } // end for yyj3217 + z.DecStructFieldNotFound(-1, yys3222) + } // end switch yys3222 + } // end for yyj3222 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41165,16 +41213,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3223 int - var yyb3223 bool - var yyhl3223 bool = l >= 0 - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + var yyj3228 int + var yyb3228 bool + var yyhl3228 bool = l >= 0 + yyj3228++ + if yyhl3228 { + yyb3228 = yyj3228 > l } else { - yyb3223 = r.CheckBreak() + yyb3228 = r.CheckBreak() } - if yyb3223 { + if yyb3228 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41184,13 +41232,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3228++ + if yyhl3228 { + yyb3228 = yyj3228 > l } else { - yyb3223 = r.CheckBreak() + yyb3228 = r.CheckBreak() } - if yyb3223 { + if yyb3228 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41200,13 +41248,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3228++ + if yyhl3228 { + yyb3228 = yyj3228 > l } else { - yyb3223 = r.CheckBreak() + yyb3228 = r.CheckBreak() } - if yyb3223 { + if yyb3228 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41214,16 +41262,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3226 := &x.ObjectMeta - yyv3226.CodecDecodeSelf(d) + yyv3231 := &x.ObjectMeta + yyv3231.CodecDecodeSelf(d) } - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3228++ + if yyhl3228 { + yyb3228 = yyj3228 > l } else { - yyb3223 = r.CheckBreak() + yyb3228 = r.CheckBreak() } - if yyb3223 { + if yyb3228 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41231,16 +41279,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3227 := &x.Spec - yyv3227.CodecDecodeSelf(d) + yyv3232 := &x.Spec + yyv3232.CodecDecodeSelf(d) } - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3228++ + if yyhl3228 { + yyb3228 = yyj3228 > l } else { - yyb3223 = r.CheckBreak() + yyb3228 = r.CheckBreak() } - if yyb3223 { + if yyb3228 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41248,21 +41296,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3228 := &x.Status - yyv3228.CodecDecodeSelf(d) + yyv3233 := &x.Status + yyv3233.CodecDecodeSelf(d) } for { - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3228++ + if yyhl3228 { + yyb3228 = yyj3228 > l } else { - yyb3223 = r.CheckBreak() + yyb3228 = r.CheckBreak() } - if yyb3223 { + if yyb3228 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3223-1, "") + z.DecStructFieldNotFound(yyj3228-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41274,37 +41322,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3229 := z.EncBinary() - _ = yym3229 + yym3234 := z.EncBinary() + _ = yym3234 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3230 := !z.EncBinary() - yy2arr3230 := z.EncBasicHandle().StructToArray - var yyq3230 [4]bool - _, _, _ = yysep3230, yyq3230, yy2arr3230 - const yyr3230 bool = false - yyq3230[0] = x.Kind != "" - yyq3230[1] = x.APIVersion != "" - yyq3230[2] = true - var yynn3230 int - if yyr3230 || yy2arr3230 { + yysep3235 := !z.EncBinary() + yy2arr3235 := z.EncBasicHandle().StructToArray + var yyq3235 [4]bool + _, _, _ = yysep3235, yyq3235, yy2arr3235 + const yyr3235 bool = false + yyq3235[0] = x.Kind != "" + yyq3235[1] = x.APIVersion != "" + yyq3235[2] = true + var yynn3235 int + if yyr3235 || yy2arr3235 { r.EncodeArrayStart(4) } else { - yynn3230 = 1 - for _, b := range yyq3230 { + yynn3235 = 1 + for _, b := range yyq3235 { if b { - yynn3230++ + yynn3235++ } } - r.EncodeMapStart(yynn3230) - yynn3230 = 0 + r.EncodeMapStart(yynn3235) + yynn3235 = 0 } - if yyr3230 || yy2arr3230 { + if yyr3235 || yy2arr3235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3230[0] { - yym3232 := z.EncBinary() - _ = yym3232 + if yyq3235[0] { + yym3237 := z.EncBinary() + _ = yym3237 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41313,23 +41361,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3230[0] { + if yyq3235[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3233 := z.EncBinary() - _ = yym3233 + yym3238 := z.EncBinary() + _ = yym3238 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3230 || yy2arr3230 { + if yyr3235 || yy2arr3235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3230[1] { - yym3235 := z.EncBinary() - _ = yym3235 + if yyq3235[1] { + yym3240 := z.EncBinary() + _ = yym3240 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41338,54 +41386,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3230[1] { + if yyq3235[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3236 := z.EncBinary() - _ = yym3236 + yym3241 := z.EncBinary() + _ = yym3241 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3230 || yy2arr3230 { + if yyr3235 || yy2arr3235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3230[2] { - yy3238 := &x.ListMeta - yym3239 := z.EncBinary() - _ = yym3239 + if yyq3235[2] { + yy3243 := &x.ListMeta + yym3244 := z.EncBinary() + _ = yym3244 if false { - } else if z.HasExtensions() && z.EncExt(yy3238) { + } else if z.HasExtensions() && z.EncExt(yy3243) { } else { - z.EncFallback(yy3238) + z.EncFallback(yy3243) } } else { r.EncodeNil() } } else { - if yyq3230[2] { + if yyq3235[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3240 := &x.ListMeta - yym3241 := z.EncBinary() - _ = yym3241 + yy3245 := &x.ListMeta + yym3246 := z.EncBinary() + _ = yym3246 if false { - } else if z.HasExtensions() && z.EncExt(yy3240) { + } else if z.HasExtensions() && z.EncExt(yy3245) { } else { - z.EncFallback(yy3240) + z.EncFallback(yy3245) } } } - if yyr3230 || yy2arr3230 { + if yyr3235 || yy2arr3235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3243 := z.EncBinary() - _ = yym3243 + yym3248 := z.EncBinary() + _ = yym3248 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -41398,15 +41446,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3244 := z.EncBinary() - _ = yym3244 + yym3249 := z.EncBinary() + _ = yym3249 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3230 || yy2arr3230 { + if yyr3235 || yy2arr3235 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41419,25 +41467,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3245 := z.DecBinary() - _ = yym3245 + yym3250 := z.DecBinary() + _ = yym3250 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3246 := r.ContainerType() - if yyct3246 == codecSelferValueTypeMap1234 { - yyl3246 := r.ReadMapStart() - if yyl3246 == 0 { + yyct3251 := r.ContainerType() + if yyct3251 == codecSelferValueTypeMap1234 { + yyl3251 := r.ReadMapStart() + if yyl3251 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3246, d) + x.codecDecodeSelfFromMap(yyl3251, d) } - } else if yyct3246 == codecSelferValueTypeArray1234 { - yyl3246 := r.ReadArrayStart() - if yyl3246 == 0 { + } else if yyct3251 == codecSelferValueTypeArray1234 { + yyl3251 := r.ReadArrayStart() + if yyl3251 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3246, d) + x.codecDecodeSelfFromArray(yyl3251, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41449,12 +41497,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3247Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3247Slc - var yyhl3247 bool = l >= 0 - for yyj3247 := 0; ; yyj3247++ { - if yyhl3247 { - if yyj3247 >= l { + var yys3252Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3252Slc + var yyhl3252 bool = l >= 0 + for yyj3252 := 0; ; yyj3252++ { + if yyhl3252 { + if yyj3252 >= l { break } } else { @@ -41463,10 +41511,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3247Slc = r.DecodeBytes(yys3247Slc, true, true) - yys3247 := string(yys3247Slc) + yys3252Slc = r.DecodeBytes(yys3252Slc, true, true) + yys3252 := string(yys3252Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3247 { + switch yys3252 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41483,31 +41531,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3250 := &x.ListMeta - yym3251 := z.DecBinary() - _ = yym3251 + yyv3255 := &x.ListMeta + yym3256 := z.DecBinary() + _ = yym3256 if false { - } else if z.HasExtensions() && z.DecExt(yyv3250) { + } else if z.HasExtensions() && z.DecExt(yyv3255) { } else { - z.DecFallback(yyv3250, false) + z.DecFallback(yyv3255, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3252 := &x.Items - yym3253 := z.DecBinary() - _ = yym3253 + yyv3257 := &x.Items + yym3258 := z.DecBinary() + _ = yym3258 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3252), d) + h.decSliceNamespace((*[]Namespace)(yyv3257), d) } } default: - z.DecStructFieldNotFound(-1, yys3247) - } // end switch yys3247 - } // end for yyj3247 + z.DecStructFieldNotFound(-1, yys3252) + } // end switch yys3252 + } // end for yyj3252 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41515,16 +41563,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3254 int - var yyb3254 bool - var yyhl3254 bool = l >= 0 - yyj3254++ - if yyhl3254 { - yyb3254 = yyj3254 > l + var yyj3259 int + var yyb3259 bool + var yyhl3259 bool = l >= 0 + yyj3259++ + if yyhl3259 { + yyb3259 = yyj3259 > l } else { - yyb3254 = r.CheckBreak() + yyb3259 = r.CheckBreak() } - if yyb3254 { + if yyb3259 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41534,13 +41582,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3254++ - if yyhl3254 { - yyb3254 = yyj3254 > l + yyj3259++ + if yyhl3259 { + yyb3259 = yyj3259 > l } else { - yyb3254 = r.CheckBreak() + yyb3259 = r.CheckBreak() } - if yyb3254 { + if yyb3259 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41550,13 +41598,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3254++ - if yyhl3254 { - yyb3254 = yyj3254 > l + yyj3259++ + if yyhl3259 { + yyb3259 = yyj3259 > l } else { - yyb3254 = r.CheckBreak() + yyb3259 = r.CheckBreak() } - if yyb3254 { + if yyb3259 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41564,22 +41612,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3257 := &x.ListMeta - yym3258 := z.DecBinary() - _ = yym3258 + yyv3262 := &x.ListMeta + yym3263 := z.DecBinary() + _ = yym3263 if false { - } else if z.HasExtensions() && z.DecExt(yyv3257) { + } else if z.HasExtensions() && z.DecExt(yyv3262) { } else { - z.DecFallback(yyv3257, false) + z.DecFallback(yyv3262, false) } } - yyj3254++ - if yyhl3254 { - yyb3254 = yyj3254 > l + yyj3259++ + if yyhl3259 { + yyb3259 = yyj3259 > l } else { - yyb3254 = r.CheckBreak() + yyb3259 = r.CheckBreak() } - if yyb3254 { + if yyb3259 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41587,26 +41635,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3259 := &x.Items - yym3260 := z.DecBinary() - _ = yym3260 + yyv3264 := &x.Items + yym3265 := z.DecBinary() + _ = yym3265 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3259), d) + h.decSliceNamespace((*[]Namespace)(yyv3264), d) } } for { - yyj3254++ - if yyhl3254 { - yyb3254 = yyj3254 > l + yyj3259++ + if yyhl3259 { + yyb3259 = yyj3259 > l } else { - yyb3254 = r.CheckBreak() + yyb3259 = r.CheckBreak() } - if yyb3254 { + if yyb3259 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3254-1, "") + z.DecStructFieldNotFound(yyj3259-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41618,37 +41666,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3261 := z.EncBinary() - _ = yym3261 + yym3266 := z.EncBinary() + _ = yym3266 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3262 := !z.EncBinary() - yy2arr3262 := z.EncBasicHandle().StructToArray - var yyq3262 [4]bool - _, _, _ = yysep3262, yyq3262, yy2arr3262 - const yyr3262 bool = false - yyq3262[0] = x.Kind != "" - yyq3262[1] = x.APIVersion != "" - yyq3262[2] = true - var yynn3262 int - if yyr3262 || yy2arr3262 { + yysep3267 := !z.EncBinary() + yy2arr3267 := z.EncBasicHandle().StructToArray + var yyq3267 [4]bool + _, _, _ = yysep3267, yyq3267, yy2arr3267 + const yyr3267 bool = false + yyq3267[0] = x.Kind != "" + yyq3267[1] = x.APIVersion != "" + yyq3267[2] = true + var yynn3267 int + if yyr3267 || yy2arr3267 { r.EncodeArrayStart(4) } else { - yynn3262 = 1 - for _, b := range yyq3262 { + yynn3267 = 1 + for _, b := range yyq3267 { if b { - yynn3262++ + yynn3267++ } } - r.EncodeMapStart(yynn3262) - yynn3262 = 0 + r.EncodeMapStart(yynn3267) + yynn3267 = 0 } - if yyr3262 || yy2arr3262 { + if yyr3267 || yy2arr3267 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3262[0] { - yym3264 := z.EncBinary() - _ = yym3264 + if yyq3267[0] { + yym3269 := z.EncBinary() + _ = yym3269 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41657,23 +41705,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3262[0] { + if yyq3267[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3265 := z.EncBinary() - _ = yym3265 + yym3270 := z.EncBinary() + _ = yym3270 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3262 || yy2arr3262 { + if yyr3267 || yy2arr3267 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3262[1] { - yym3267 := z.EncBinary() - _ = yym3267 + if yyq3267[1] { + yym3272 := z.EncBinary() + _ = yym3272 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41682,47 +41730,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3262[1] { + if yyq3267[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3268 := z.EncBinary() - _ = yym3268 + yym3273 := z.EncBinary() + _ = yym3273 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3262 || yy2arr3262 { + if yyr3267 || yy2arr3267 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3262[2] { - yy3270 := &x.ObjectMeta - yy3270.CodecEncodeSelf(e) + if yyq3267[2] { + yy3275 := &x.ObjectMeta + yy3275.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3262[2] { + if yyq3267[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3271 := &x.ObjectMeta - yy3271.CodecEncodeSelf(e) + yy3276 := &x.ObjectMeta + yy3276.CodecEncodeSelf(e) } } - if yyr3262 || yy2arr3262 { + if yyr3267 || yy2arr3267 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3273 := &x.Target - yy3273.CodecEncodeSelf(e) + yy3278 := &x.Target + yy3278.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3274 := &x.Target - yy3274.CodecEncodeSelf(e) + yy3279 := &x.Target + yy3279.CodecEncodeSelf(e) } - if yyr3262 || yy2arr3262 { + if yyr3267 || yy2arr3267 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41735,25 +41783,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3275 := z.DecBinary() - _ = yym3275 + yym3280 := z.DecBinary() + _ = yym3280 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3276 := r.ContainerType() - if yyct3276 == codecSelferValueTypeMap1234 { - yyl3276 := r.ReadMapStart() - if yyl3276 == 0 { + yyct3281 := r.ContainerType() + if yyct3281 == codecSelferValueTypeMap1234 { + yyl3281 := r.ReadMapStart() + if yyl3281 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3276, d) + x.codecDecodeSelfFromMap(yyl3281, d) } - } else if yyct3276 == codecSelferValueTypeArray1234 { - yyl3276 := r.ReadArrayStart() - if yyl3276 == 0 { + } else if yyct3281 == codecSelferValueTypeArray1234 { + yyl3281 := r.ReadArrayStart() + if yyl3281 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3276, d) + x.codecDecodeSelfFromArray(yyl3281, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41765,12 +41813,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3277Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3277Slc - var yyhl3277 bool = l >= 0 - for yyj3277 := 0; ; yyj3277++ { - if yyhl3277 { - if yyj3277 >= l { + var yys3282Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3282Slc + var yyhl3282 bool = l >= 0 + for yyj3282 := 0; ; yyj3282++ { + if yyhl3282 { + if yyj3282 >= l { break } } else { @@ -41779,10 +41827,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3277Slc = r.DecodeBytes(yys3277Slc, true, true) - yys3277 := string(yys3277Slc) + yys3282Slc = r.DecodeBytes(yys3282Slc, true, true) + yys3282 := string(yys3282Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3277 { + switch yys3282 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41799,20 +41847,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3280 := &x.ObjectMeta - yyv3280.CodecDecodeSelf(d) + yyv3285 := &x.ObjectMeta + yyv3285.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3281 := &x.Target - yyv3281.CodecDecodeSelf(d) + yyv3286 := &x.Target + yyv3286.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3277) - } // end switch yys3277 - } // end for yyj3277 + z.DecStructFieldNotFound(-1, yys3282) + } // end switch yys3282 + } // end for yyj3282 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41820,16 +41868,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3282 int - var yyb3282 bool - var yyhl3282 bool = l >= 0 - yyj3282++ - if yyhl3282 { - yyb3282 = yyj3282 > l + var yyj3287 int + var yyb3287 bool + var yyhl3287 bool = l >= 0 + yyj3287++ + if yyhl3287 { + yyb3287 = yyj3287 > l } else { - yyb3282 = r.CheckBreak() + yyb3287 = r.CheckBreak() } - if yyb3282 { + if yyb3287 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41839,13 +41887,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3282++ - if yyhl3282 { - yyb3282 = yyj3282 > l + yyj3287++ + if yyhl3287 { + yyb3287 = yyj3287 > l } else { - yyb3282 = r.CheckBreak() + yyb3287 = r.CheckBreak() } - if yyb3282 { + if yyb3287 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41855,13 +41903,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3282++ - if yyhl3282 { - yyb3282 = yyj3282 > l + yyj3287++ + if yyhl3287 { + yyb3287 = yyj3287 > l } else { - yyb3282 = r.CheckBreak() + yyb3287 = r.CheckBreak() } - if yyb3282 { + if yyb3287 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41869,16 +41917,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3285 := &x.ObjectMeta - yyv3285.CodecDecodeSelf(d) + yyv3290 := &x.ObjectMeta + yyv3290.CodecDecodeSelf(d) } - yyj3282++ - if yyhl3282 { - yyb3282 = yyj3282 > l + yyj3287++ + if yyhl3287 { + yyb3287 = yyj3287 > l } else { - yyb3282 = r.CheckBreak() + yyb3287 = r.CheckBreak() } - if yyb3282 { + if yyb3287 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41886,21 +41934,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3286 := &x.Target - yyv3286.CodecDecodeSelf(d) + yyv3291 := &x.Target + yyv3291.CodecDecodeSelf(d) } for { - yyj3282++ - if yyhl3282 { - yyb3282 = yyj3282 > l + yyj3287++ + if yyhl3287 { + yyb3287 = yyj3287 > l } else { - yyb3282 = r.CheckBreak() + yyb3287 = r.CheckBreak() } - if yyb3282 { + if yyb3287 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3282-1, "") + z.DecStructFieldNotFound(yyj3287-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41912,68 +41960,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3287 := z.EncBinary() - _ = yym3287 + yym3292 := z.EncBinary() + _ = yym3292 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3288 := !z.EncBinary() - yy2arr3288 := z.EncBasicHandle().StructToArray - var yyq3288 [1]bool - _, _, _ = yysep3288, yyq3288, yy2arr3288 - const yyr3288 bool = false - yyq3288[0] = x.UID != nil - var yynn3288 int - if yyr3288 || yy2arr3288 { + yysep3293 := !z.EncBinary() + yy2arr3293 := z.EncBasicHandle().StructToArray + var yyq3293 [1]bool + _, _, _ = yysep3293, yyq3293, yy2arr3293 + const yyr3293 bool = false + yyq3293[0] = x.UID != nil + var yynn3293 int + if yyr3293 || yy2arr3293 { r.EncodeArrayStart(1) } else { - yynn3288 = 0 - for _, b := range yyq3288 { + yynn3293 = 0 + for _, b := range yyq3293 { if b { - yynn3288++ + yynn3293++ } } - r.EncodeMapStart(yynn3288) - yynn3288 = 0 + r.EncodeMapStart(yynn3293) + yynn3293 = 0 } - if yyr3288 || yy2arr3288 { + if yyr3293 || yy2arr3293 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3288[0] { + if yyq3293[0] { if x.UID == nil { r.EncodeNil() } else { - yy3290 := *x.UID - yym3291 := z.EncBinary() - _ = yym3291 + yy3295 := *x.UID + yym3296 := z.EncBinary() + _ = yym3296 if false { - } else if z.HasExtensions() && z.EncExt(yy3290) { + } else if z.HasExtensions() && z.EncExt(yy3295) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3290)) + r.EncodeString(codecSelferC_UTF81234, string(yy3295)) } } } else { r.EncodeNil() } } else { - if yyq3288[0] { + if yyq3293[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3292 := *x.UID - yym3293 := z.EncBinary() - _ = yym3293 + yy3297 := *x.UID + yym3298 := z.EncBinary() + _ = yym3298 if false { - } else if z.HasExtensions() && z.EncExt(yy3292) { + } else if z.HasExtensions() && z.EncExt(yy3297) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3292)) + r.EncodeString(codecSelferC_UTF81234, string(yy3297)) } } } } - if yyr3288 || yy2arr3288 { + if yyr3293 || yy2arr3293 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41986,25 +42034,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3294 := z.DecBinary() - _ = yym3294 + yym3299 := z.DecBinary() + _ = yym3299 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3295 := r.ContainerType() - if yyct3295 == codecSelferValueTypeMap1234 { - yyl3295 := r.ReadMapStart() - if yyl3295 == 0 { + yyct3300 := r.ContainerType() + if yyct3300 == codecSelferValueTypeMap1234 { + yyl3300 := r.ReadMapStart() + if yyl3300 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3295, d) + x.codecDecodeSelfFromMap(yyl3300, d) } - } else if yyct3295 == codecSelferValueTypeArray1234 { - yyl3295 := r.ReadArrayStart() - if yyl3295 == 0 { + } else if yyct3300 == codecSelferValueTypeArray1234 { + yyl3300 := r.ReadArrayStart() + if yyl3300 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3295, d) + x.codecDecodeSelfFromArray(yyl3300, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42016,12 +42064,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3296Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3296Slc - var yyhl3296 bool = l >= 0 - for yyj3296 := 0; ; yyj3296++ { - if yyhl3296 { - if yyj3296 >= l { + var yys3301Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3301Slc + var yyhl3301 bool = l >= 0 + for yyj3301 := 0; ; yyj3301++ { + if yyhl3301 { + if yyj3301 >= l { break } } else { @@ -42030,10 +42078,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3296Slc = r.DecodeBytes(yys3296Slc, true, true) - yys3296 := string(yys3296Slc) + yys3301Slc = r.DecodeBytes(yys3301Slc, true, true) + yys3301 := string(yys3301Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3296 { + switch yys3301 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -42043,8 +42091,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3298 := z.DecBinary() - _ = yym3298 + yym3303 := z.DecBinary() + _ = yym3303 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -42052,9 +42100,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3296) - } // end switch yys3296 - } // end for yyj3296 + z.DecStructFieldNotFound(-1, yys3301) + } // end switch yys3301 + } // end for yyj3301 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42062,16 +42110,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3299 int - var yyb3299 bool - var yyhl3299 bool = l >= 0 - yyj3299++ - if yyhl3299 { - yyb3299 = yyj3299 > l + var yyj3304 int + var yyb3304 bool + var yyhl3304 bool = l >= 0 + yyj3304++ + if yyhl3304 { + yyb3304 = yyj3304 > l } else { - yyb3299 = r.CheckBreak() + yyb3304 = r.CheckBreak() } - if yyb3299 { + if yyb3304 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42084,8 +42132,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3301 := z.DecBinary() - _ = yym3301 + yym3306 := z.DecBinary() + _ = yym3306 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -42093,17 +42141,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3299++ - if yyhl3299 { - yyb3299 = yyj3299 > l + yyj3304++ + if yyhl3304 { + yyb3304 = yyj3304 > l } else { - yyb3299 = r.CheckBreak() + yyb3304 = r.CheckBreak() } - if yyb3299 { + if yyb3304 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3299-1, "") + z.DecStructFieldNotFound(yyj3304-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42115,39 +42163,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3302 := z.EncBinary() - _ = yym3302 + yym3307 := z.EncBinary() + _ = yym3307 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3303 := !z.EncBinary() - yy2arr3303 := z.EncBasicHandle().StructToArray - var yyq3303 [5]bool - _, _, _ = yysep3303, yyq3303, yy2arr3303 - const yyr3303 bool = false - yyq3303[0] = x.Kind != "" - yyq3303[1] = x.APIVersion != "" - yyq3303[2] = x.GracePeriodSeconds != nil - yyq3303[3] = x.Preconditions != nil - yyq3303[4] = x.OrphanDependents != nil - var yynn3303 int - if yyr3303 || yy2arr3303 { + yysep3308 := !z.EncBinary() + yy2arr3308 := z.EncBasicHandle().StructToArray + var yyq3308 [5]bool + _, _, _ = yysep3308, yyq3308, yy2arr3308 + const yyr3308 bool = false + yyq3308[0] = x.Kind != "" + yyq3308[1] = x.APIVersion != "" + yyq3308[2] = x.GracePeriodSeconds != nil + yyq3308[3] = x.Preconditions != nil + yyq3308[4] = x.OrphanDependents != nil + var yynn3308 int + if yyr3308 || yy2arr3308 { r.EncodeArrayStart(5) } else { - yynn3303 = 0 - for _, b := range yyq3303 { + yynn3308 = 0 + for _, b := range yyq3308 { if b { - yynn3303++ + yynn3308++ } } - r.EncodeMapStart(yynn3303) - yynn3303 = 0 + r.EncodeMapStart(yynn3308) + yynn3308 = 0 } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[0] { - yym3305 := z.EncBinary() - _ = yym3305 + if yyq3308[0] { + yym3310 := z.EncBinary() + _ = yym3310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42156,23 +42204,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3303[0] { + if yyq3308[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3306 := z.EncBinary() - _ = yym3306 + yym3311 := z.EncBinary() + _ = yym3311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[1] { - yym3308 := z.EncBinary() - _ = yym3308 + if yyq3308[1] { + yym3313 := z.EncBinary() + _ = yym3313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42181,56 +42229,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3303[1] { + if yyq3308[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3309 := z.EncBinary() - _ = yym3309 + yym3314 := z.EncBinary() + _ = yym3314 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[2] { + if yyq3308[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3311 := *x.GracePeriodSeconds - yym3312 := z.EncBinary() - _ = yym3312 + yy3316 := *x.GracePeriodSeconds + yym3317 := z.EncBinary() + _ = yym3317 if false { } else { - r.EncodeInt(int64(yy3311)) + r.EncodeInt(int64(yy3316)) } } } else { r.EncodeNil() } } else { - if yyq3303[2] { + if yyq3308[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3313 := *x.GracePeriodSeconds - yym3314 := z.EncBinary() - _ = yym3314 + yy3318 := *x.GracePeriodSeconds + yym3319 := z.EncBinary() + _ = yym3319 if false { } else { - r.EncodeInt(int64(yy3313)) + r.EncodeInt(int64(yy3318)) } } } } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[3] { + if yyq3308[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -42240,7 +42288,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3303[3] { + if yyq3308[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42251,42 +42299,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[4] { + if yyq3308[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3317 := *x.OrphanDependents - yym3318 := z.EncBinary() - _ = yym3318 + yy3322 := *x.OrphanDependents + yym3323 := z.EncBinary() + _ = yym3323 if false { } else { - r.EncodeBool(bool(yy3317)) + r.EncodeBool(bool(yy3322)) } } } else { r.EncodeNil() } } else { - if yyq3303[4] { + if yyq3308[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3319 := *x.OrphanDependents - yym3320 := z.EncBinary() - _ = yym3320 + yy3324 := *x.OrphanDependents + yym3325 := z.EncBinary() + _ = yym3325 if false { } else { - r.EncodeBool(bool(yy3319)) + r.EncodeBool(bool(yy3324)) } } } } - if yyr3303 || yy2arr3303 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42299,25 +42347,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3321 := z.DecBinary() - _ = yym3321 + yym3326 := z.DecBinary() + _ = yym3326 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3322 := r.ContainerType() - if yyct3322 == codecSelferValueTypeMap1234 { - yyl3322 := r.ReadMapStart() - if yyl3322 == 0 { + yyct3327 := r.ContainerType() + if yyct3327 == codecSelferValueTypeMap1234 { + yyl3327 := r.ReadMapStart() + if yyl3327 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3322, d) + x.codecDecodeSelfFromMap(yyl3327, d) } - } else if yyct3322 == codecSelferValueTypeArray1234 { - yyl3322 := r.ReadArrayStart() - if yyl3322 == 0 { + } else if yyct3327 == codecSelferValueTypeArray1234 { + yyl3327 := r.ReadArrayStart() + if yyl3327 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3322, d) + x.codecDecodeSelfFromArray(yyl3327, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42329,12 +42377,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3323Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3323Slc - var yyhl3323 bool = l >= 0 - for yyj3323 := 0; ; yyj3323++ { - if yyhl3323 { - if yyj3323 >= l { + var yys3328Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3328Slc + var yyhl3328 bool = l >= 0 + for yyj3328 := 0; ; yyj3328++ { + if yyhl3328 { + if yyj3328 >= l { break } } else { @@ -42343,10 +42391,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3323Slc = r.DecodeBytes(yys3323Slc, true, true) - yys3323 := string(yys3323Slc) + yys3328Slc = r.DecodeBytes(yys3328Slc, true, true) + yys3328 := string(yys3328Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3323 { + switch yys3328 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42368,8 +42416,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3327 := z.DecBinary() - _ = yym3327 + yym3332 := z.DecBinary() + _ = yym3332 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -42395,17 +42443,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3330 := z.DecBinary() - _ = yym3330 + yym3335 := z.DecBinary() + _ = yym3335 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3323) - } // end switch yys3323 - } // end for yyj3323 + z.DecStructFieldNotFound(-1, yys3328) + } // end switch yys3328 + } // end for yyj3328 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42413,16 +42461,16 @@ func (x *DeleteOptions) 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 } @@ -42432,13 +42480,13 @@ func (x *DeleteOptions) 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 } @@ -42448,13 +42496,13 @@ func (x *DeleteOptions) 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 } @@ -42467,20 +42515,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3335 := z.DecBinary() - _ = yym3335 + yym3340 := z.DecBinary() + _ = yym3340 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - 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 } @@ -42495,13 +42543,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - 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 } @@ -42514,25 +42562,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3338 := z.DecBinary() - _ = yym3338 + yym3343 := z.DecBinary() + _ = yym3343 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } 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) } @@ -42544,36 +42592,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3339 := z.EncBinary() - _ = yym3339 + yym3344 := z.EncBinary() + _ = yym3344 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3340 := !z.EncBinary() - yy2arr3340 := z.EncBasicHandle().StructToArray - var yyq3340 [4]bool - _, _, _ = yysep3340, yyq3340, yy2arr3340 - const yyr3340 bool = false - yyq3340[0] = x.Kind != "" - yyq3340[1] = x.APIVersion != "" - var yynn3340 int - if yyr3340 || yy2arr3340 { + yysep3345 := !z.EncBinary() + yy2arr3345 := z.EncBasicHandle().StructToArray + var yyq3345 [4]bool + _, _, _ = yysep3345, yyq3345, yy2arr3345 + const yyr3345 bool = false + yyq3345[0] = x.Kind != "" + yyq3345[1] = x.APIVersion != "" + var yynn3345 int + if yyr3345 || yy2arr3345 { r.EncodeArrayStart(4) } else { - yynn3340 = 2 - for _, b := range yyq3340 { + yynn3345 = 2 + for _, b := range yyq3345 { if b { - yynn3340++ + yynn3345++ } } - r.EncodeMapStart(yynn3340) - yynn3340 = 0 + r.EncodeMapStart(yynn3345) + yynn3345 = 0 } - if yyr3340 || yy2arr3340 { + if yyr3345 || yy2arr3345 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3340[0] { - yym3342 := z.EncBinary() - _ = yym3342 + if yyq3345[0] { + yym3347 := z.EncBinary() + _ = yym3347 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42582,23 +42630,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3340[0] { + if yyq3345[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3343 := z.EncBinary() - _ = yym3343 + yym3348 := z.EncBinary() + _ = yym3348 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3340 || yy2arr3340 { + if yyr3345 || yy2arr3345 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3340[1] { - yym3345 := z.EncBinary() - _ = yym3345 + if yyq3345[1] { + yym3350 := z.EncBinary() + _ = yym3350 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42607,22 +42655,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3340[1] { + if yyq3345[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3346 := z.EncBinary() - _ = yym3346 + yym3351 := z.EncBinary() + _ = yym3351 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3340 || yy2arr3340 { + if yyr3345 || yy2arr3345 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3348 := z.EncBinary() - _ = yym3348 + yym3353 := z.EncBinary() + _ = yym3353 if false { } else { r.EncodeBool(bool(x.Export)) @@ -42631,17 +42679,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3349 := z.EncBinary() - _ = yym3349 + yym3354 := z.EncBinary() + _ = yym3354 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3340 || yy2arr3340 { + if yyr3345 || yy2arr3345 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3351 := z.EncBinary() - _ = yym3351 + yym3356 := z.EncBinary() + _ = yym3356 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -42650,14 +42698,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3352 := z.EncBinary() - _ = yym3352 + yym3357 := z.EncBinary() + _ = yym3357 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3340 || yy2arr3340 { + if yyr3345 || yy2arr3345 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42670,25 +42718,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3353 := z.DecBinary() - _ = yym3353 + yym3358 := z.DecBinary() + _ = yym3358 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3354 := r.ContainerType() - if yyct3354 == codecSelferValueTypeMap1234 { - yyl3354 := r.ReadMapStart() - if yyl3354 == 0 { + yyct3359 := r.ContainerType() + if yyct3359 == codecSelferValueTypeMap1234 { + yyl3359 := r.ReadMapStart() + if yyl3359 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3354, d) + x.codecDecodeSelfFromMap(yyl3359, d) } - } else if yyct3354 == codecSelferValueTypeArray1234 { - yyl3354 := r.ReadArrayStart() - if yyl3354 == 0 { + } else if yyct3359 == codecSelferValueTypeArray1234 { + yyl3359 := r.ReadArrayStart() + if yyl3359 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3354, d) + x.codecDecodeSelfFromArray(yyl3359, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42700,12 +42748,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3355Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3355Slc - var yyhl3355 bool = l >= 0 - for yyj3355 := 0; ; yyj3355++ { - if yyhl3355 { - if yyj3355 >= l { + var yys3360Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3360Slc + var yyhl3360 bool = l >= 0 + for yyj3360 := 0; ; yyj3360++ { + if yyhl3360 { + if yyj3360 >= l { break } } else { @@ -42714,10 +42762,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3355Slc = r.DecodeBytes(yys3355Slc, true, true) - yys3355 := string(yys3355Slc) + yys3360Slc = r.DecodeBytes(yys3360Slc, true, true) + yys3360 := string(yys3360Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3355 { + switch yys3360 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42743,9 +42791,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3355) - } // end switch yys3355 - } // end for yyj3355 + z.DecStructFieldNotFound(-1, yys3360) + } // end switch yys3360 + } // end for yyj3360 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42753,16 +42801,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3360 int - var yyb3360 bool - var yyhl3360 bool = l >= 0 - yyj3360++ - if yyhl3360 { - yyb3360 = yyj3360 > l + var yyj3365 int + var yyb3365 bool + var yyhl3365 bool = l >= 0 + yyj3365++ + if yyhl3365 { + yyb3365 = yyj3365 > l } else { - yyb3360 = r.CheckBreak() + yyb3365 = r.CheckBreak() } - if yyb3360 { + if yyb3365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42772,13 +42820,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3360++ - if yyhl3360 { - yyb3360 = yyj3360 > l + yyj3365++ + if yyhl3365 { + yyb3365 = yyj3365 > l } else { - yyb3360 = r.CheckBreak() + yyb3365 = r.CheckBreak() } - if yyb3360 { + if yyb3365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42788,13 +42836,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3360++ - if yyhl3360 { - yyb3360 = yyj3360 > l + yyj3365++ + if yyhl3365 { + yyb3365 = yyj3365 > l } else { - yyb3360 = r.CheckBreak() + yyb3365 = r.CheckBreak() } - if yyb3360 { + if yyb3365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42804,13 +42852,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3360++ - if yyhl3360 { - yyb3360 = yyj3360 > l + yyj3365++ + if yyhl3365 { + yyb3365 = yyj3365 > l } else { - yyb3360 = r.CheckBreak() + yyb3365 = r.CheckBreak() } - if yyb3360 { + if yyb3365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42821,17 +42869,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3360++ - if yyhl3360 { - yyb3360 = yyj3360 > l + yyj3365++ + if yyhl3365 { + yyb3365 = yyj3365 > l } else { - yyb3360 = r.CheckBreak() + yyb3365 = r.CheckBreak() } - if yyb3360 { + if yyb3365 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3360-1, "") + z.DecStructFieldNotFound(yyj3365-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42843,41 +42891,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3365 := z.EncBinary() - _ = yym3365 + yym3370 := z.EncBinary() + _ = yym3370 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3366 := !z.EncBinary() - yy2arr3366 := z.EncBasicHandle().StructToArray - var yyq3366 [7]bool - _, _, _ = yysep3366, yyq3366, yy2arr3366 - const yyr3366 bool = false - yyq3366[0] = x.Kind != "" - yyq3366[1] = x.APIVersion != "" - yyq3366[2] = x.LabelSelector != "" - yyq3366[3] = x.FieldSelector != "" - yyq3366[4] = x.Watch != false - yyq3366[5] = x.ResourceVersion != "" - yyq3366[6] = x.TimeoutSeconds != nil - var yynn3366 int - if yyr3366 || yy2arr3366 { + yysep3371 := !z.EncBinary() + yy2arr3371 := z.EncBasicHandle().StructToArray + var yyq3371 [7]bool + _, _, _ = yysep3371, yyq3371, yy2arr3371 + const yyr3371 bool = false + yyq3371[0] = x.Kind != "" + yyq3371[1] = x.APIVersion != "" + yyq3371[2] = x.LabelSelector != "" + yyq3371[3] = x.FieldSelector != "" + yyq3371[4] = x.Watch != false + yyq3371[5] = x.ResourceVersion != "" + yyq3371[6] = x.TimeoutSeconds != nil + var yynn3371 int + if yyr3371 || yy2arr3371 { r.EncodeArrayStart(7) } else { - yynn3366 = 0 - for _, b := range yyq3366 { + yynn3371 = 0 + for _, b := range yyq3371 { if b { - yynn3366++ + yynn3371++ } } - r.EncodeMapStart(yynn3366) - yynn3366 = 0 + r.EncodeMapStart(yynn3371) + yynn3371 = 0 } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3366[0] { - yym3368 := z.EncBinary() - _ = yym3368 + if yyq3371[0] { + yym3373 := z.EncBinary() + _ = yym3373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42886,23 +42934,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3366[0] { + if yyq3371[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3369 := z.EncBinary() - _ = yym3369 + yym3374 := z.EncBinary() + _ = yym3374 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3366[1] { - yym3371 := z.EncBinary() - _ = yym3371 + if yyq3371[1] { + yym3376 := z.EncBinary() + _ = yym3376 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42911,23 +42959,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3366[1] { + if yyq3371[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3372 := z.EncBinary() - _ = yym3372 + yym3377 := z.EncBinary() + _ = yym3377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3366[2] { - yym3374 := z.EncBinary() - _ = yym3374 + if yyq3371[2] { + yym3379 := z.EncBinary() + _ = yym3379 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -42936,23 +42984,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3366[2] { + if yyq3371[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3375 := z.EncBinary() - _ = yym3375 + yym3380 := z.EncBinary() + _ = yym3380 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3366[3] { - yym3377 := z.EncBinary() - _ = yym3377 + if yyq3371[3] { + yym3382 := z.EncBinary() + _ = yym3382 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -42961,23 +43009,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3366[3] { + if yyq3371[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3378 := z.EncBinary() - _ = yym3378 + yym3383 := z.EncBinary() + _ = yym3383 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3366[4] { - yym3380 := z.EncBinary() - _ = yym3380 + if yyq3371[4] { + yym3385 := z.EncBinary() + _ = yym3385 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -42986,23 +43034,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3366[4] { + if yyq3371[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3381 := z.EncBinary() - _ = yym3381 + yym3386 := z.EncBinary() + _ = yym3386 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3366[5] { - yym3383 := z.EncBinary() - _ = yym3383 + if yyq3371[5] { + yym3388 := z.EncBinary() + _ = yym3388 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -43011,54 +43059,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3366[5] { + if yyq3371[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3384 := z.EncBinary() - _ = yym3384 + yym3389 := z.EncBinary() + _ = yym3389 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3366[6] { + if yyq3371[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3386 := *x.TimeoutSeconds - yym3387 := z.EncBinary() - _ = yym3387 + yy3391 := *x.TimeoutSeconds + yym3392 := z.EncBinary() + _ = yym3392 if false { } else { - r.EncodeInt(int64(yy3386)) + r.EncodeInt(int64(yy3391)) } } } else { r.EncodeNil() } } else { - if yyq3366[6] { + if yyq3371[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3388 := *x.TimeoutSeconds - yym3389 := z.EncBinary() - _ = yym3389 + yy3393 := *x.TimeoutSeconds + yym3394 := z.EncBinary() + _ = yym3394 if false { } else { - r.EncodeInt(int64(yy3388)) + r.EncodeInt(int64(yy3393)) } } } } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43071,25 +43119,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3390 := z.DecBinary() - _ = yym3390 + yym3395 := z.DecBinary() + _ = yym3395 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3391 := r.ContainerType() - if yyct3391 == codecSelferValueTypeMap1234 { - yyl3391 := r.ReadMapStart() - if yyl3391 == 0 { + yyct3396 := r.ContainerType() + if yyct3396 == codecSelferValueTypeMap1234 { + yyl3396 := r.ReadMapStart() + if yyl3396 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3391, d) + x.codecDecodeSelfFromMap(yyl3396, d) } - } else if yyct3391 == codecSelferValueTypeArray1234 { - yyl3391 := r.ReadArrayStart() - if yyl3391 == 0 { + } else if yyct3396 == codecSelferValueTypeArray1234 { + yyl3396 := r.ReadArrayStart() + if yyl3396 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3391, d) + x.codecDecodeSelfFromArray(yyl3396, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43101,12 +43149,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3392Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3392Slc - var yyhl3392 bool = l >= 0 - for yyj3392 := 0; ; yyj3392++ { - if yyhl3392 { - if yyj3392 >= l { + var yys3397Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3397Slc + var yyhl3397 bool = l >= 0 + for yyj3397 := 0; ; yyj3397++ { + if yyhl3397 { + if yyj3397 >= l { break } } else { @@ -43115,10 +43163,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3392Slc = r.DecodeBytes(yys3392Slc, true, true) - yys3392 := string(yys3392Slc) + yys3397Slc = r.DecodeBytes(yys3397Slc, true, true) + yys3397 := string(yys3397Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3392 { + switch yys3397 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43164,17 +43212,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3400 := z.DecBinary() - _ = yym3400 + yym3405 := z.DecBinary() + _ = yym3405 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3392) - } // end switch yys3392 - } // end for yyj3392 + z.DecStructFieldNotFound(-1, yys3397) + } // end switch yys3397 + } // end for yyj3397 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43182,16 +43230,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3401 int - var yyb3401 bool - var yyhl3401 bool = l >= 0 - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + var yyj3406 int + var yyb3406 bool + var yyhl3406 bool = l >= 0 + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43201,13 +43249,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43217,13 +43265,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43233,13 +43281,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43249,13 +43297,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43265,13 +43313,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43281,13 +43329,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43300,25 +43348,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3409 := z.DecBinary() - _ = yym3409 + yym3414 := z.DecBinary() + _ = yym3414 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3406++ + if yyhl3406 { + yyb3406 = yyj3406 > l } else { - yyb3401 = r.CheckBreak() + yyb3406 = r.CheckBreak() } - if yyb3401 { + if yyb3406 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3401-1, "") + z.DecStructFieldNotFound(yyj3406-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43330,44 +43378,44 @@ func (x *PodLogOptions) 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 [10]bool - _, _, _ = yysep3411, yyq3411, yy2arr3411 - const yyr3411 bool = false - yyq3411[0] = x.Kind != "" - yyq3411[1] = x.APIVersion != "" - yyq3411[2] = x.Container != "" - yyq3411[3] = x.Follow != false - yyq3411[4] = x.Previous != false - yyq3411[5] = x.SinceSeconds != nil - yyq3411[6] = x.SinceTime != nil - yyq3411[7] = x.Timestamps != false - yyq3411[8] = x.TailLines != nil - yyq3411[9] = x.LimitBytes != nil - var yynn3411 int - if yyr3411 || yy2arr3411 { + yysep3416 := !z.EncBinary() + yy2arr3416 := z.EncBasicHandle().StructToArray + var yyq3416 [10]bool + _, _, _ = yysep3416, yyq3416, yy2arr3416 + const yyr3416 bool = false + yyq3416[0] = x.Kind != "" + yyq3416[1] = x.APIVersion != "" + yyq3416[2] = x.Container != "" + yyq3416[3] = x.Follow != false + yyq3416[4] = x.Previous != false + yyq3416[5] = x.SinceSeconds != nil + yyq3416[6] = x.SinceTime != nil + yyq3416[7] = x.Timestamps != false + yyq3416[8] = x.TailLines != nil + yyq3416[9] = x.LimitBytes != nil + var yynn3416 int + if yyr3416 || yy2arr3416 { r.EncodeArrayStart(10) } 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)) @@ -43376,23 +43424,23 @@ func (x *PodLogOptions) 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)) @@ -43401,23 +43449,23 @@ func (x *PodLogOptions) 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.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43426,23 +43474,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3411[2] { + if yyq3416[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3420 := z.EncBinary() - _ = yym3420 + yym3425 := z.EncBinary() + _ = yym3425 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - 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.Follow)) @@ -43451,23 +43499,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3411[3] { + if yyq3416[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3423 := z.EncBinary() - _ = yym3423 + yym3428 := z.EncBinary() + _ = yym3428 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - 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.Previous)) @@ -43476,66 +43524,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3411[4] { + if yyq3416[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3426 := z.EncBinary() - _ = yym3426 + yym3431 := z.EncBinary() + _ = yym3431 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[5] { + if yyq3416[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3428 := *x.SinceSeconds - yym3429 := z.EncBinary() - _ = yym3429 + yy3433 := *x.SinceSeconds + yym3434 := z.EncBinary() + _ = yym3434 if false { } else { - r.EncodeInt(int64(yy3428)) + r.EncodeInt(int64(yy3433)) } } } else { r.EncodeNil() } } else { - if yyq3411[5] { + if yyq3416[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3430 := *x.SinceSeconds - yym3431 := z.EncBinary() - _ = yym3431 + yy3435 := *x.SinceSeconds + yym3436 := z.EncBinary() + _ = yym3436 if false { } else { - r.EncodeInt(int64(yy3430)) + r.EncodeInt(int64(yy3435)) } } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[6] { + if yyq3416[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3433 := z.EncBinary() - _ = yym3433 + yym3438 := z.EncBinary() + _ = yym3438 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3433 { + } else if yym3438 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3433 && z.IsJSONHandle() { + } else if !yym3438 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -43545,20 +43593,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3411[6] { + if yyq3416[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3434 := z.EncBinary() - _ = yym3434 + yym3439 := z.EncBinary() + _ = yym3439 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3434 { + } else if yym3439 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3434 && z.IsJSONHandle() { + } else if !yym3439 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -43566,11 +43614,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[7] { - yym3436 := z.EncBinary() - _ = yym3436 + if yyq3416[7] { + yym3441 := z.EncBinary() + _ = yym3441 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -43579,89 +43627,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3411[7] { + if yyq3416[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3437 := z.EncBinary() - _ = yym3437 + yym3442 := z.EncBinary() + _ = yym3442 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[8] { + if yyq3416[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3439 := *x.TailLines - yym3440 := z.EncBinary() - _ = yym3440 + yy3444 := *x.TailLines + yym3445 := z.EncBinary() + _ = yym3445 if false { } else { - r.EncodeInt(int64(yy3439)) + r.EncodeInt(int64(yy3444)) } } } else { r.EncodeNil() } } else { - if yyq3411[8] { + if yyq3416[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3441 := *x.TailLines - yym3442 := z.EncBinary() - _ = yym3442 + yy3446 := *x.TailLines + yym3447 := z.EncBinary() + _ = yym3447 if false { } else { - r.EncodeInt(int64(yy3441)) + r.EncodeInt(int64(yy3446)) } } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3411[9] { + if yyq3416[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3444 := *x.LimitBytes - yym3445 := z.EncBinary() - _ = yym3445 + yy3449 := *x.LimitBytes + yym3450 := z.EncBinary() + _ = yym3450 if false { } else { - r.EncodeInt(int64(yy3444)) + r.EncodeInt(int64(yy3449)) } } } else { r.EncodeNil() } } else { - if yyq3411[9] { + if yyq3416[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3446 := *x.LimitBytes - yym3447 := z.EncBinary() - _ = yym3447 + yy3451 := *x.LimitBytes + yym3452 := z.EncBinary() + _ = yym3452 if false { } else { - r.EncodeInt(int64(yy3446)) + r.EncodeInt(int64(yy3451)) } } } } - if yyr3411 || yy2arr3411 { + if yyr3416 || yy2arr3416 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43674,25 +43722,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3448 := z.DecBinary() - _ = yym3448 + yym3453 := z.DecBinary() + _ = yym3453 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3449 := r.ContainerType() - if yyct3449 == codecSelferValueTypeMap1234 { - yyl3449 := r.ReadMapStart() - if yyl3449 == 0 { + yyct3454 := r.ContainerType() + if yyct3454 == codecSelferValueTypeMap1234 { + yyl3454 := r.ReadMapStart() + if yyl3454 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3449, d) + x.codecDecodeSelfFromMap(yyl3454, d) } - } else if yyct3449 == codecSelferValueTypeArray1234 { - yyl3449 := r.ReadArrayStart() - if yyl3449 == 0 { + } else if yyct3454 == codecSelferValueTypeArray1234 { + yyl3454 := r.ReadArrayStart() + if yyl3454 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3449, d) + x.codecDecodeSelfFromArray(yyl3454, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43704,12 +43752,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3450Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3450Slc - var yyhl3450 bool = l >= 0 - for yyj3450 := 0; ; yyj3450++ { - if yyhl3450 { - if yyj3450 >= l { + var yys3455Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3455Slc + var yyhl3455 bool = l >= 0 + for yyj3455 := 0; ; yyj3455++ { + if yyhl3455 { + if yyj3455 >= l { break } } else { @@ -43718,10 +43766,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3450Slc = r.DecodeBytes(yys3450Slc, true, true) - yys3450 := string(yys3450Slc) + yys3455Slc = r.DecodeBytes(yys3455Slc, true, true) + yys3455 := string(yys3455Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3450 { + switch yys3455 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43761,8 +43809,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3457 := z.DecBinary() - _ = yym3457 + yym3462 := z.DecBinary() + _ = yym3462 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -43777,13 +43825,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3459 := z.DecBinary() - _ = yym3459 - if false { + yym3464 := z.DecBinary() + _ = yym3464 + if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3459 { + } else if yym3464 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3459 && z.IsJSONHandle() { + } else if !yym3464 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -43804,8 +43852,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3462 := z.DecBinary() - _ = yym3462 + yym3467 := z.DecBinary() + _ = yym3467 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -43820,17 +43868,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3464 := z.DecBinary() - _ = yym3464 + yym3469 := z.DecBinary() + _ = yym3469 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3450) - } // end switch yys3450 - } // end for yyj3450 + z.DecStructFieldNotFound(-1, yys3455) + } // end switch yys3455 + } // end for yyj3455 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43838,16 +43886,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3465 int - var yyb3465 bool - var yyhl3465 bool = l >= 0 - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + var yyj3470 int + var yyb3470 bool + var yyhl3470 bool = l >= 0 + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43857,13 +43905,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43873,13 +43921,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43889,13 +43937,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43905,13 +43953,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43921,13 +43969,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43940,20 +43988,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3472 := z.DecBinary() - _ = yym3472 + yym3477 := z.DecBinary() + _ = yym3477 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43966,25 +44014,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3474 := z.DecBinary() - _ = yym3474 + yym3479 := z.DecBinary() + _ = yym3479 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3474 { + } else if yym3479 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3474 && z.IsJSONHandle() { + } else if !yym3479 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43994,13 +44042,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44013,20 +44061,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3477 := z.DecBinary() - _ = yym3477 + yym3482 := z.DecBinary() + _ = yym3482 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44039,25 +44087,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3479 := z.DecBinary() - _ = yym3479 + yym3484 := z.DecBinary() + _ = yym3484 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3465++ - if yyhl3465 { - yyb3465 = yyj3465 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3465 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3465 { + if yyb3470 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3465-1, "") + z.DecStructFieldNotFound(yyj3470-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44069,41 +44117,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3480 := z.EncBinary() - _ = yym3480 + yym3485 := z.EncBinary() + _ = yym3485 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3481 := !z.EncBinary() - yy2arr3481 := z.EncBasicHandle().StructToArray - var yyq3481 [7]bool - _, _, _ = yysep3481, yyq3481, yy2arr3481 - const yyr3481 bool = false - yyq3481[0] = x.Kind != "" - yyq3481[1] = x.APIVersion != "" - yyq3481[2] = x.Stdin != false - yyq3481[3] = x.Stdout != false - yyq3481[4] = x.Stderr != false - yyq3481[5] = x.TTY != false - yyq3481[6] = x.Container != "" - var yynn3481 int - if yyr3481 || yy2arr3481 { + yysep3486 := !z.EncBinary() + yy2arr3486 := z.EncBasicHandle().StructToArray + var yyq3486 [7]bool + _, _, _ = yysep3486, yyq3486, yy2arr3486 + const yyr3486 bool = false + yyq3486[0] = x.Kind != "" + yyq3486[1] = x.APIVersion != "" + yyq3486[2] = x.Stdin != false + yyq3486[3] = x.Stdout != false + yyq3486[4] = x.Stderr != false + yyq3486[5] = x.TTY != false + yyq3486[6] = x.Container != "" + var yynn3486 int + if yyr3486 || yy2arr3486 { r.EncodeArrayStart(7) } else { - yynn3481 = 0 - for _, b := range yyq3481 { + yynn3486 = 0 + for _, b := range yyq3486 { if b { - yynn3481++ + yynn3486++ } } - r.EncodeMapStart(yynn3481) - yynn3481 = 0 + r.EncodeMapStart(yynn3486) + yynn3486 = 0 } - if yyr3481 || yy2arr3481 { + if yyr3486 || yy2arr3486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[0] { - yym3483 := z.EncBinary() - _ = yym3483 + if yyq3486[0] { + yym3488 := z.EncBinary() + _ = yym3488 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44112,23 +44160,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3481[0] { + if yyq3486[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3484 := z.EncBinary() - _ = yym3484 + yym3489 := z.EncBinary() + _ = yym3489 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3481 || yy2arr3481 { + if yyr3486 || yy2arr3486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[1] { - yym3486 := z.EncBinary() - _ = yym3486 + if yyq3486[1] { + yym3491 := z.EncBinary() + _ = yym3491 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44137,23 +44185,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3481[1] { + if yyq3486[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3487 := z.EncBinary() - _ = yym3487 + yym3492 := z.EncBinary() + _ = yym3492 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3481 || yy2arr3481 { + if yyr3486 || yy2arr3486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[2] { - yym3489 := z.EncBinary() - _ = yym3489 + if yyq3486[2] { + yym3494 := z.EncBinary() + _ = yym3494 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44162,23 +44210,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3481[2] { + if yyq3486[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3490 := z.EncBinary() - _ = yym3490 + yym3495 := z.EncBinary() + _ = yym3495 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3481 || yy2arr3481 { + if yyr3486 || yy2arr3486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[3] { - yym3492 := z.EncBinary() - _ = yym3492 + if yyq3486[3] { + yym3497 := z.EncBinary() + _ = yym3497 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44187,23 +44235,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3481[3] { + if yyq3486[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3493 := z.EncBinary() - _ = yym3493 + yym3498 := z.EncBinary() + _ = yym3498 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3481 || yy2arr3481 { + if yyr3486 || yy2arr3486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[4] { - yym3495 := z.EncBinary() - _ = yym3495 + if yyq3486[4] { + yym3500 := z.EncBinary() + _ = yym3500 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44212,23 +44260,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3481[4] { + if yyq3486[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3496 := z.EncBinary() - _ = yym3496 + yym3501 := z.EncBinary() + _ = yym3501 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3481 || yy2arr3481 { + if yyr3486 || yy2arr3486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[5] { - yym3498 := z.EncBinary() - _ = yym3498 + if yyq3486[5] { + yym3503 := z.EncBinary() + _ = yym3503 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44237,23 +44285,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3481[5] { + if yyq3486[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3499 := z.EncBinary() - _ = yym3499 + yym3504 := z.EncBinary() + _ = yym3504 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3481 || yy2arr3481 { + if yyr3486 || yy2arr3486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[6] { - yym3501 := z.EncBinary() - _ = yym3501 + if yyq3486[6] { + yym3506 := z.EncBinary() + _ = yym3506 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44262,19 +44310,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3481[6] { + if yyq3486[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3502 := z.EncBinary() - _ = yym3502 + yym3507 := z.EncBinary() + _ = yym3507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3481 || yy2arr3481 { + if yyr3486 || yy2arr3486 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44287,25 +44335,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3503 := z.DecBinary() - _ = yym3503 + yym3508 := z.DecBinary() + _ = yym3508 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3504 := r.ContainerType() - if yyct3504 == codecSelferValueTypeMap1234 { - yyl3504 := r.ReadMapStart() - if yyl3504 == 0 { + yyct3509 := r.ContainerType() + if yyct3509 == codecSelferValueTypeMap1234 { + yyl3509 := r.ReadMapStart() + if yyl3509 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3504, d) + x.codecDecodeSelfFromMap(yyl3509, d) } - } else if yyct3504 == codecSelferValueTypeArray1234 { - yyl3504 := r.ReadArrayStart() - if yyl3504 == 0 { + } else if yyct3509 == codecSelferValueTypeArray1234 { + yyl3509 := r.ReadArrayStart() + if yyl3509 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3504, d) + x.codecDecodeSelfFromArray(yyl3509, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44317,12 +44365,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3505Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3505Slc - var yyhl3505 bool = l >= 0 - for yyj3505 := 0; ; yyj3505++ { - if yyhl3505 { - if yyj3505 >= l { + var yys3510Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3510Slc + var yyhl3510 bool = l >= 0 + for yyj3510 := 0; ; yyj3510++ { + if yyhl3510 { + if yyj3510 >= l { break } } else { @@ -44331,10 +44379,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3505Slc = r.DecodeBytes(yys3505Slc, true, true) - yys3505 := string(yys3505Slc) + yys3510Slc = r.DecodeBytes(yys3510Slc, true, true) + yys3510 := string(yys3510Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3505 { + switch yys3510 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44378,9 +44426,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3505) - } // end switch yys3505 - } // end for yyj3505 + z.DecStructFieldNotFound(-1, yys3510) + } // end switch yys3510 + } // end for yyj3510 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44388,16 +44436,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3513 int - var yyb3513 bool - var yyhl3513 bool = l >= 0 - yyj3513++ - if yyhl3513 { - yyb3513 = yyj3513 > l + var yyj3518 int + var yyb3518 bool + var yyhl3518 bool = l >= 0 + yyj3518++ + if yyhl3518 { + yyb3518 = yyj3518 > l } else { - yyb3513 = r.CheckBreak() + yyb3518 = r.CheckBreak() } - if yyb3513 { + if yyb3518 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44407,13 +44455,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3513++ - if yyhl3513 { - yyb3513 = yyj3513 > l + yyj3518++ + if yyhl3518 { + yyb3518 = yyj3518 > l } else { - yyb3513 = r.CheckBreak() + yyb3518 = r.CheckBreak() } - if yyb3513 { + if yyb3518 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44423,13 +44471,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3513++ - if yyhl3513 { - yyb3513 = yyj3513 > l + yyj3518++ + if yyhl3518 { + yyb3518 = yyj3518 > l } else { - yyb3513 = r.CheckBreak() + yyb3518 = r.CheckBreak() } - if yyb3513 { + if yyb3518 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44439,13 +44487,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3513++ - if yyhl3513 { - yyb3513 = yyj3513 > l + yyj3518++ + if yyhl3518 { + yyb3518 = yyj3518 > l } else { - yyb3513 = r.CheckBreak() + yyb3518 = r.CheckBreak() } - if yyb3513 { + if yyb3518 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44455,13 +44503,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3513++ - if yyhl3513 { - yyb3513 = yyj3513 > l + yyj3518++ + if yyhl3518 { + yyb3518 = yyj3518 > l } else { - yyb3513 = r.CheckBreak() + yyb3518 = r.CheckBreak() } - if yyb3513 { + if yyb3518 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44471,13 +44519,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3513++ - if yyhl3513 { - yyb3513 = yyj3513 > l + yyj3518++ + if yyhl3518 { + yyb3518 = yyj3518 > l } else { - yyb3513 = r.CheckBreak() + yyb3518 = r.CheckBreak() } - if yyb3513 { + if yyb3518 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44487,13 +44535,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3513++ - if yyhl3513 { - yyb3513 = yyj3513 > l + yyj3518++ + if yyhl3518 { + yyb3518 = yyj3518 > l } else { - yyb3513 = r.CheckBreak() + yyb3518 = r.CheckBreak() } - if yyb3513 { + if yyb3518 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44504,17 +44552,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3513++ - if yyhl3513 { - yyb3513 = yyj3513 > l + yyj3518++ + if yyhl3518 { + yyb3518 = yyj3518 > l } else { - yyb3513 = r.CheckBreak() + yyb3518 = r.CheckBreak() } - if yyb3513 { + if yyb3518 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3513-1, "") + z.DecStructFieldNotFound(yyj3518-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44526,41 +44574,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3521 := z.EncBinary() - _ = yym3521 + yym3526 := z.EncBinary() + _ = yym3526 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3522 := !z.EncBinary() - yy2arr3522 := z.EncBasicHandle().StructToArray - var yyq3522 [8]bool - _, _, _ = yysep3522, yyq3522, yy2arr3522 - const yyr3522 bool = false - yyq3522[0] = x.Kind != "" - yyq3522[1] = x.APIVersion != "" - yyq3522[2] = x.Stdin != false - yyq3522[3] = x.Stdout != false - yyq3522[4] = x.Stderr != false - yyq3522[5] = x.TTY != false - yyq3522[6] = x.Container != "" - var yynn3522 int - if yyr3522 || yy2arr3522 { + yysep3527 := !z.EncBinary() + yy2arr3527 := z.EncBasicHandle().StructToArray + var yyq3527 [8]bool + _, _, _ = yysep3527, yyq3527, yy2arr3527 + const yyr3527 bool = false + yyq3527[0] = x.Kind != "" + yyq3527[1] = x.APIVersion != "" + yyq3527[2] = x.Stdin != false + yyq3527[3] = x.Stdout != false + yyq3527[4] = x.Stderr != false + yyq3527[5] = x.TTY != false + yyq3527[6] = x.Container != "" + var yynn3527 int + if yyr3527 || yy2arr3527 { r.EncodeArrayStart(8) } else { - yynn3522 = 1 - for _, b := range yyq3522 { + yynn3527 = 1 + for _, b := range yyq3527 { if b { - yynn3522++ + yynn3527++ } } - r.EncodeMapStart(yynn3522) - yynn3522 = 0 + r.EncodeMapStart(yynn3527) + yynn3527 = 0 } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3522[0] { - yym3524 := z.EncBinary() - _ = yym3524 + if yyq3527[0] { + yym3529 := z.EncBinary() + _ = yym3529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44569,23 +44617,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3522[0] { + if yyq3527[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3525 := z.EncBinary() - _ = yym3525 + yym3530 := z.EncBinary() + _ = yym3530 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3522[1] { - yym3527 := z.EncBinary() - _ = yym3527 + if yyq3527[1] { + yym3532 := z.EncBinary() + _ = yym3532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44594,23 +44642,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3522[1] { + if yyq3527[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3528 := z.EncBinary() - _ = yym3528 + yym3533 := z.EncBinary() + _ = yym3533 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3522[2] { - yym3530 := z.EncBinary() - _ = yym3530 + if yyq3527[2] { + yym3535 := z.EncBinary() + _ = yym3535 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44619,23 +44667,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3522[2] { + if yyq3527[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3531 := z.EncBinary() - _ = yym3531 + yym3536 := z.EncBinary() + _ = yym3536 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3522[3] { - yym3533 := z.EncBinary() - _ = yym3533 + if yyq3527[3] { + yym3538 := z.EncBinary() + _ = yym3538 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44644,23 +44692,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3522[3] { + if yyq3527[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3534 := z.EncBinary() - _ = yym3534 + yym3539 := z.EncBinary() + _ = yym3539 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3522[4] { - yym3536 := z.EncBinary() - _ = yym3536 + if yyq3527[4] { + yym3541 := z.EncBinary() + _ = yym3541 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44669,23 +44717,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3522[4] { + if yyq3527[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3537 := z.EncBinary() - _ = yym3537 + yym3542 := z.EncBinary() + _ = yym3542 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3522[5] { - yym3539 := z.EncBinary() - _ = yym3539 + if yyq3527[5] { + yym3544 := z.EncBinary() + _ = yym3544 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44694,23 +44742,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3522[5] { + if yyq3527[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3540 := z.EncBinary() - _ = yym3540 + yym3545 := z.EncBinary() + _ = yym3545 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3522[6] { - yym3542 := z.EncBinary() - _ = yym3542 + if yyq3527[6] { + yym3547 := z.EncBinary() + _ = yym3547 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44719,25 +44767,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3522[6] { + if yyq3527[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3543 := z.EncBinary() - _ = yym3543 + yym3548 := z.EncBinary() + _ = yym3548 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3545 := z.EncBinary() - _ = yym3545 + yym3550 := z.EncBinary() + _ = yym3550 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -44750,15 +44798,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3546 := z.EncBinary() - _ = yym3546 + yym3551 := z.EncBinary() + _ = yym3551 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3522 || yy2arr3522 { + if yyr3527 || yy2arr3527 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44771,25 +44819,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3547 := z.DecBinary() - _ = yym3547 + yym3552 := z.DecBinary() + _ = yym3552 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3548 := r.ContainerType() - if yyct3548 == codecSelferValueTypeMap1234 { - yyl3548 := r.ReadMapStart() - if yyl3548 == 0 { + yyct3553 := r.ContainerType() + if yyct3553 == codecSelferValueTypeMap1234 { + yyl3553 := r.ReadMapStart() + if yyl3553 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3548, d) + x.codecDecodeSelfFromMap(yyl3553, d) } - } else if yyct3548 == codecSelferValueTypeArray1234 { - yyl3548 := r.ReadArrayStart() - if yyl3548 == 0 { + } else if yyct3553 == codecSelferValueTypeArray1234 { + yyl3553 := r.ReadArrayStart() + if yyl3553 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3548, d) + x.codecDecodeSelfFromArray(yyl3553, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44801,12 +44849,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3549Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3549Slc - var yyhl3549 bool = l >= 0 - for yyj3549 := 0; ; yyj3549++ { - if yyhl3549 { - if yyj3549 >= l { + var yys3554Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3554Slc + var yyhl3554 bool = l >= 0 + for yyj3554 := 0; ; yyj3554++ { + if yyhl3554 { + if yyj3554 >= l { break } } else { @@ -44815,10 +44863,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3549Slc = r.DecodeBytes(yys3549Slc, true, true) - yys3549 := string(yys3549Slc) + yys3554Slc = r.DecodeBytes(yys3554Slc, true, true) + yys3554 := string(yys3554Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3549 { + switch yys3554 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44865,18 +44913,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3557 := &x.Command - yym3558 := z.DecBinary() - _ = yym3558 + yyv3562 := &x.Command + yym3563 := z.DecBinary() + _ = yym3563 if false { } else { - z.F.DecSliceStringX(yyv3557, false, d) + z.F.DecSliceStringX(yyv3562, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3549) - } // end switch yys3549 - } // end for yyj3549 + z.DecStructFieldNotFound(-1, yys3554) + } // end switch yys3554 + } // end for yyj3554 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44884,16 +44932,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3559 int - var yyb3559 bool - var yyhl3559 bool = l >= 0 - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + var yyj3564 int + var yyb3564 bool + var yyhl3564 bool = l >= 0 + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44903,13 +44951,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44919,13 +44967,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44935,13 +44983,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44951,13 +44999,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44967,13 +45015,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44983,13 +45031,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44999,13 +45047,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45013,26 +45061,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3567 := &x.Command - yym3568 := z.DecBinary() - _ = yym3568 + yyv3572 := &x.Command + yym3573 := z.DecBinary() + _ = yym3573 if false { } else { - z.F.DecSliceStringX(yyv3567, false, d) + z.F.DecSliceStringX(yyv3572, false, d) } } for { - yyj3559++ - if yyhl3559 { - yyb3559 = yyj3559 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3559 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3559 { + if yyb3564 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3559-1, "") + z.DecStructFieldNotFound(yyj3564-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45044,37 +45092,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3569 := z.EncBinary() - _ = yym3569 + yym3574 := z.EncBinary() + _ = yym3574 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3570 := !z.EncBinary() - yy2arr3570 := z.EncBasicHandle().StructToArray - var yyq3570 [3]bool - _, _, _ = yysep3570, yyq3570, yy2arr3570 - const yyr3570 bool = false - yyq3570[0] = x.Kind != "" - yyq3570[1] = x.APIVersion != "" - yyq3570[2] = x.Path != "" - var yynn3570 int - if yyr3570 || yy2arr3570 { + yysep3575 := !z.EncBinary() + yy2arr3575 := z.EncBasicHandle().StructToArray + var yyq3575 [3]bool + _, _, _ = yysep3575, yyq3575, yy2arr3575 + const yyr3575 bool = false + yyq3575[0] = x.Kind != "" + yyq3575[1] = x.APIVersion != "" + yyq3575[2] = x.Path != "" + var yynn3575 int + if yyr3575 || yy2arr3575 { r.EncodeArrayStart(3) } else { - yynn3570 = 0 - for _, b := range yyq3570 { + yynn3575 = 0 + for _, b := range yyq3575 { if b { - yynn3570++ + yynn3575++ } } - r.EncodeMapStart(yynn3570) - yynn3570 = 0 + r.EncodeMapStart(yynn3575) + yynn3575 = 0 } - if yyr3570 || yy2arr3570 { + if yyr3575 || yy2arr3575 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3570[0] { - yym3572 := z.EncBinary() - _ = yym3572 + if yyq3575[0] { + yym3577 := z.EncBinary() + _ = yym3577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45083,23 +45131,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3570[0] { + if yyq3575[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3573 := z.EncBinary() - _ = yym3573 + yym3578 := z.EncBinary() + _ = yym3578 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3570 || yy2arr3570 { + if yyr3575 || yy2arr3575 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3570[1] { - yym3575 := z.EncBinary() - _ = yym3575 + if yyq3575[1] { + yym3580 := z.EncBinary() + _ = yym3580 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45108,23 +45156,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3570[1] { + if yyq3575[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3576 := z.EncBinary() - _ = yym3576 + yym3581 := z.EncBinary() + _ = yym3581 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3570 || yy2arr3570 { + if yyr3575 || yy2arr3575 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3570[2] { - yym3578 := z.EncBinary() - _ = yym3578 + if yyq3575[2] { + yym3583 := z.EncBinary() + _ = yym3583 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45133,19 +45181,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3570[2] { + if yyq3575[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3579 := z.EncBinary() - _ = yym3579 + yym3584 := z.EncBinary() + _ = yym3584 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3570 || yy2arr3570 { + if yyr3575 || yy2arr3575 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45158,25 +45206,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3580 := z.DecBinary() - _ = yym3580 + yym3585 := z.DecBinary() + _ = yym3585 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3581 := r.ContainerType() - if yyct3581 == codecSelferValueTypeMap1234 { - yyl3581 := r.ReadMapStart() - if yyl3581 == 0 { + yyct3586 := r.ContainerType() + if yyct3586 == codecSelferValueTypeMap1234 { + yyl3586 := r.ReadMapStart() + if yyl3586 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3581, d) + x.codecDecodeSelfFromMap(yyl3586, d) } - } else if yyct3581 == codecSelferValueTypeArray1234 { - yyl3581 := r.ReadArrayStart() - if yyl3581 == 0 { + } else if yyct3586 == codecSelferValueTypeArray1234 { + yyl3586 := r.ReadArrayStart() + if yyl3586 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3581, d) + x.codecDecodeSelfFromArray(yyl3586, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45188,12 +45236,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3582Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3582Slc - var yyhl3582 bool = l >= 0 - for yyj3582 := 0; ; yyj3582++ { - if yyhl3582 { - if yyj3582 >= l { + var yys3587Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3587Slc + var yyhl3587 bool = l >= 0 + for yyj3587 := 0; ; yyj3587++ { + if yyhl3587 { + if yyj3587 >= l { break } } else { @@ -45202,10 +45250,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3582Slc = r.DecodeBytes(yys3582Slc, true, true) - yys3582 := string(yys3582Slc) + yys3587Slc = r.DecodeBytes(yys3587Slc, true, true) + yys3587 := string(yys3587Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3582 { + switch yys3587 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45225,9 +45273,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3582) - } // end switch yys3582 - } // end for yyj3582 + z.DecStructFieldNotFound(-1, yys3587) + } // end switch yys3587 + } // end for yyj3587 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45235,16 +45283,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3586 int - var yyb3586 bool - var yyhl3586 bool = l >= 0 - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + var yyj3591 int + var yyb3591 bool + var yyhl3591 bool = l >= 0 + yyj3591++ + if yyhl3591 { + yyb3591 = yyj3591 > l } else { - yyb3586 = r.CheckBreak() + yyb3591 = r.CheckBreak() } - if yyb3586 { + if yyb3591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45254,13 +45302,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + yyj3591++ + if yyhl3591 { + yyb3591 = yyj3591 > l } else { - yyb3586 = r.CheckBreak() + yyb3591 = r.CheckBreak() } - if yyb3586 { + if yyb3591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45270,13 +45318,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + yyj3591++ + if yyhl3591 { + yyb3591 = yyj3591 > l } else { - yyb3586 = r.CheckBreak() + yyb3591 = r.CheckBreak() } - if yyb3586 { + if yyb3591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45287,17 +45335,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + yyj3591++ + if yyhl3591 { + yyb3591 = yyj3591 > l } else { - yyb3586 = r.CheckBreak() + yyb3591 = r.CheckBreak() } - if yyb3586 { + if yyb3591 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3586-1, "") + z.DecStructFieldNotFound(yyj3591-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45309,37 +45357,37 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3590 := z.EncBinary() - _ = yym3590 + yym3595 := z.EncBinary() + _ = yym3595 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3591 := !z.EncBinary() - yy2arr3591 := z.EncBasicHandle().StructToArray - var yyq3591 [3]bool - _, _, _ = yysep3591, yyq3591, yy2arr3591 - const yyr3591 bool = false - yyq3591[0] = x.Kind != "" - yyq3591[1] = x.APIVersion != "" - yyq3591[2] = x.Path != "" - var yynn3591 int - if yyr3591 || yy2arr3591 { + yysep3596 := !z.EncBinary() + yy2arr3596 := z.EncBasicHandle().StructToArray + var yyq3596 [3]bool + _, _, _ = yysep3596, yyq3596, yy2arr3596 + const yyr3596 bool = false + yyq3596[0] = x.Kind != "" + yyq3596[1] = x.APIVersion != "" + yyq3596[2] = x.Path != "" + var yynn3596 int + if yyr3596 || yy2arr3596 { r.EncodeArrayStart(3) } else { - yynn3591 = 0 - for _, b := range yyq3591 { + yynn3596 = 0 + for _, b := range yyq3596 { if b { - yynn3591++ + yynn3596++ } } - r.EncodeMapStart(yynn3591) - yynn3591 = 0 + r.EncodeMapStart(yynn3596) + yynn3596 = 0 } - if yyr3591 || yy2arr3591 { + if yyr3596 || yy2arr3596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3591[0] { - yym3593 := z.EncBinary() - _ = yym3593 + if yyq3596[0] { + yym3598 := z.EncBinary() + _ = yym3598 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45348,23 +45396,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3591[0] { + if yyq3596[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3594 := z.EncBinary() - _ = yym3594 + yym3599 := z.EncBinary() + _ = yym3599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3591 || yy2arr3591 { + if yyr3596 || yy2arr3596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3591[1] { - yym3596 := z.EncBinary() - _ = yym3596 + if yyq3596[1] { + yym3601 := z.EncBinary() + _ = yym3601 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45373,23 +45421,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3591[1] { + if yyq3596[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3597 := z.EncBinary() - _ = yym3597 + yym3602 := z.EncBinary() + _ = yym3602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3591 || yy2arr3591 { + if yyr3596 || yy2arr3596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3591[2] { - yym3599 := z.EncBinary() - _ = yym3599 + if yyq3596[2] { + yym3604 := z.EncBinary() + _ = yym3604 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45398,19 +45446,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3591[2] { + if yyq3596[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3600 := z.EncBinary() - _ = yym3600 + yym3605 := z.EncBinary() + _ = yym3605 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3591 || yy2arr3591 { + if yyr3596 || yy2arr3596 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45423,25 +45471,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3601 := z.DecBinary() - _ = yym3601 + yym3606 := z.DecBinary() + _ = yym3606 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3602 := r.ContainerType() - if yyct3602 == codecSelferValueTypeMap1234 { - yyl3602 := r.ReadMapStart() - if yyl3602 == 0 { + yyct3607 := r.ContainerType() + if yyct3607 == codecSelferValueTypeMap1234 { + yyl3607 := r.ReadMapStart() + if yyl3607 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3602, d) + x.codecDecodeSelfFromMap(yyl3607, d) } - } else if yyct3602 == codecSelferValueTypeArray1234 { - yyl3602 := r.ReadArrayStart() - if yyl3602 == 0 { + } else if yyct3607 == codecSelferValueTypeArray1234 { + yyl3607 := r.ReadArrayStart() + if yyl3607 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3602, d) + x.codecDecodeSelfFromArray(yyl3607, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45453,12 +45501,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3603Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3603Slc - var yyhl3603 bool = l >= 0 - for yyj3603 := 0; ; yyj3603++ { - if yyhl3603 { - if yyj3603 >= l { + var yys3608Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3608Slc + var yyhl3608 bool = l >= 0 + for yyj3608 := 0; ; yyj3608++ { + if yyhl3608 { + if yyj3608 >= l { break } } else { @@ -45467,10 +45515,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3603Slc = r.DecodeBytes(yys3603Slc, true, true) - yys3603 := string(yys3603Slc) + yys3608Slc = r.DecodeBytes(yys3608Slc, true, true) + yys3608 := string(yys3608Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3603 { + switch yys3608 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45490,9 +45538,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3603) - } // end switch yys3603 - } // end for yyj3603 + z.DecStructFieldNotFound(-1, yys3608) + } // end switch yys3608 + } // end for yyj3608 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45500,16 +45548,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3607 int - var yyb3607 bool - var yyhl3607 bool = l >= 0 - yyj3607++ - if yyhl3607 { - yyb3607 = yyj3607 > l + var yyj3612 int + var yyb3612 bool + var yyhl3612 bool = l >= 0 + yyj3612++ + if yyhl3612 { + yyb3612 = yyj3612 > l } else { - yyb3607 = r.CheckBreak() + yyb3612 = r.CheckBreak() } - if yyb3607 { + if yyb3612 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45519,13 +45567,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3607++ - if yyhl3607 { - yyb3607 = yyj3607 > l + yyj3612++ + if yyhl3612 { + yyb3612 = yyj3612 > l } else { - yyb3607 = r.CheckBreak() + yyb3612 = r.CheckBreak() } - if yyb3607 { + if yyb3612 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45535,13 +45583,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3607++ - if yyhl3607 { - yyb3607 = yyj3607 > l + yyj3612++ + if yyhl3612 { + yyb3612 = yyj3612 > l } else { - yyb3607 = r.CheckBreak() + yyb3612 = r.CheckBreak() } - if yyb3607 { + if yyb3612 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45552,17 +45600,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3607++ - if yyhl3607 { - yyb3607 = yyj3607 > l + yyj3612++ + if yyhl3612 { + yyb3612 = yyj3612 > l } else { - yyb3607 = r.CheckBreak() + yyb3612 = r.CheckBreak() } - if yyb3607 { + if yyb3612 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3607-1, "") + z.DecStructFieldNotFound(yyj3612-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45574,37 +45622,37 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3611 := z.EncBinary() - _ = yym3611 + yym3616 := z.EncBinary() + _ = yym3616 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3612 := !z.EncBinary() - yy2arr3612 := z.EncBasicHandle().StructToArray - var yyq3612 [3]bool - _, _, _ = yysep3612, yyq3612, yy2arr3612 - const yyr3612 bool = false - yyq3612[0] = x.Kind != "" - yyq3612[1] = x.APIVersion != "" - yyq3612[2] = x.Path != "" - var yynn3612 int - if yyr3612 || yy2arr3612 { + yysep3617 := !z.EncBinary() + yy2arr3617 := z.EncBasicHandle().StructToArray + var yyq3617 [3]bool + _, _, _ = yysep3617, yyq3617, yy2arr3617 + const yyr3617 bool = false + yyq3617[0] = x.Kind != "" + yyq3617[1] = x.APIVersion != "" + yyq3617[2] = x.Path != "" + var yynn3617 int + if yyr3617 || yy2arr3617 { r.EncodeArrayStart(3) } else { - yynn3612 = 0 - for _, b := range yyq3612 { + yynn3617 = 0 + for _, b := range yyq3617 { if b { - yynn3612++ + yynn3617++ } } - r.EncodeMapStart(yynn3612) - yynn3612 = 0 + r.EncodeMapStart(yynn3617) + yynn3617 = 0 } - if yyr3612 || yy2arr3612 { + if yyr3617 || yy2arr3617 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3612[0] { - yym3614 := z.EncBinary() - _ = yym3614 + if yyq3617[0] { + yym3619 := z.EncBinary() + _ = yym3619 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45613,23 +45661,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3612[0] { + if yyq3617[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3615 := z.EncBinary() - _ = yym3615 + yym3620 := z.EncBinary() + _ = yym3620 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3612 || yy2arr3612 { + if yyr3617 || yy2arr3617 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3612[1] { - yym3617 := z.EncBinary() - _ = yym3617 + if yyq3617[1] { + yym3622 := z.EncBinary() + _ = yym3622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45638,23 +45686,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3612[1] { + if yyq3617[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3618 := z.EncBinary() - _ = yym3618 + yym3623 := z.EncBinary() + _ = yym3623 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3612 || yy2arr3612 { + if yyr3617 || yy2arr3617 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3612[2] { - yym3620 := z.EncBinary() - _ = yym3620 + if yyq3617[2] { + yym3625 := z.EncBinary() + _ = yym3625 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45663,19 +45711,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3612[2] { + if yyq3617[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3621 := z.EncBinary() - _ = yym3621 + yym3626 := z.EncBinary() + _ = yym3626 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3612 || yy2arr3612 { + if yyr3617 || yy2arr3617 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45688,25 +45736,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3622 := z.DecBinary() - _ = yym3622 + yym3627 := z.DecBinary() + _ = yym3627 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3623 := r.ContainerType() - if yyct3623 == codecSelferValueTypeMap1234 { - yyl3623 := r.ReadMapStart() - if yyl3623 == 0 { + yyct3628 := r.ContainerType() + if yyct3628 == codecSelferValueTypeMap1234 { + yyl3628 := r.ReadMapStart() + if yyl3628 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3623, d) + x.codecDecodeSelfFromMap(yyl3628, d) } - } else if yyct3623 == codecSelferValueTypeArray1234 { - yyl3623 := r.ReadArrayStart() - if yyl3623 == 0 { + } else if yyct3628 == codecSelferValueTypeArray1234 { + yyl3628 := r.ReadArrayStart() + if yyl3628 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3623, d) + x.codecDecodeSelfFromArray(yyl3628, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45718,12 +45766,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3624Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3624Slc - var yyhl3624 bool = l >= 0 - for yyj3624 := 0; ; yyj3624++ { - if yyhl3624 { - if yyj3624 >= l { + var yys3629Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3629Slc + var yyhl3629 bool = l >= 0 + for yyj3629 := 0; ; yyj3629++ { + if yyhl3629 { + if yyj3629 >= l { break } } else { @@ -45732,10 +45780,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3624Slc = r.DecodeBytes(yys3624Slc, true, true) - yys3624 := string(yys3624Slc) + yys3629Slc = r.DecodeBytes(yys3629Slc, true, true) + yys3629 := string(yys3629Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3624 { + switch yys3629 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45755,9 +45803,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3624) - } // end switch yys3624 - } // end for yyj3624 + z.DecStructFieldNotFound(-1, yys3629) + } // end switch yys3629 + } // end for yyj3629 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45765,16 +45813,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3628 int - var yyb3628 bool - var yyhl3628 bool = l >= 0 - yyj3628++ - if yyhl3628 { - yyb3628 = yyj3628 > l + var yyj3633 int + var yyb3633 bool + var yyhl3633 bool = l >= 0 + yyj3633++ + if yyhl3633 { + yyb3633 = yyj3633 > l } else { - yyb3628 = r.CheckBreak() + yyb3633 = r.CheckBreak() } - if yyb3628 { + if yyb3633 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45784,13 +45832,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3628++ - if yyhl3628 { - yyb3628 = yyj3628 > l + yyj3633++ + if yyhl3633 { + yyb3633 = yyj3633 > l } else { - yyb3628 = r.CheckBreak() + yyb3633 = r.CheckBreak() } - if yyb3628 { + if yyb3633 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45800,13 +45848,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3628++ - if yyhl3628 { - yyb3628 = yyj3628 > l + yyj3633++ + if yyhl3633 { + yyb3633 = yyj3633 > l } else { - yyb3628 = r.CheckBreak() + yyb3633 = r.CheckBreak() } - if yyb3628 { + if yyb3633 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45817,17 +45865,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3628++ - if yyhl3628 { - yyb3628 = yyj3628 > l + yyj3633++ + if yyhl3633 { + yyb3633 = yyj3633 > l } else { - yyb3628 = r.CheckBreak() + yyb3633 = r.CheckBreak() } - if yyb3628 { + if yyb3633 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3628-1, "") + z.DecStructFieldNotFound(yyj3633-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45839,34 +45887,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3632 := z.EncBinary() - _ = yym3632 + yym3637 := z.EncBinary() + _ = yym3637 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3633 := !z.EncBinary() - yy2arr3633 := z.EncBasicHandle().StructToArray - var yyq3633 [5]bool - _, _, _ = yysep3633, yyq3633, yy2arr3633 - const yyr3633 bool = false - yyq3633[4] = x.Controller != nil - var yynn3633 int - if yyr3633 || yy2arr3633 { + yysep3638 := !z.EncBinary() + yy2arr3638 := z.EncBasicHandle().StructToArray + var yyq3638 [5]bool + _, _, _ = yysep3638, yyq3638, yy2arr3638 + const yyr3638 bool = false + yyq3638[4] = x.Controller != nil + var yynn3638 int + if yyr3638 || yy2arr3638 { r.EncodeArrayStart(5) } else { - yynn3633 = 4 - for _, b := range yyq3633 { + yynn3638 = 4 + for _, b := range yyq3638 { if b { - yynn3633++ + yynn3638++ } } - r.EncodeMapStart(yynn3633) - yynn3633 = 0 + r.EncodeMapStart(yynn3638) + yynn3638 = 0 } - if yyr3633 || yy2arr3633 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3635 := z.EncBinary() - _ = yym3635 + yym3640 := z.EncBinary() + _ = yym3640 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45875,17 +45923,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3636 := z.EncBinary() - _ = yym3636 + yym3641 := z.EncBinary() + _ = yym3641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3633 || yy2arr3633 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3638 := z.EncBinary() - _ = yym3638 + yym3643 := z.EncBinary() + _ = yym3643 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45894,17 +45942,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3639 := z.EncBinary() - _ = yym3639 + yym3644 := z.EncBinary() + _ = yym3644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3633 || yy2arr3633 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3641 := z.EncBinary() - _ = yym3641 + yym3646 := z.EncBinary() + _ = yym3646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45913,17 +45961,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { 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 yyr3633 || yy2arr3633 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3644 := z.EncBinary() - _ = yym3644 + yym3649 := z.EncBinary() + _ = yym3649 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45933,50 +45981,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3645 := z.EncBinary() - _ = yym3645 + yym3650 := z.EncBinary() + _ = yym3650 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3633 || yy2arr3633 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3633[4] { + if yyq3638[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3647 := *x.Controller - yym3648 := z.EncBinary() - _ = yym3648 + yy3652 := *x.Controller + yym3653 := z.EncBinary() + _ = yym3653 if false { } else { - r.EncodeBool(bool(yy3647)) + r.EncodeBool(bool(yy3652)) } } } else { r.EncodeNil() } } else { - if yyq3633[4] { + if yyq3638[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3649 := *x.Controller - yym3650 := z.EncBinary() - _ = yym3650 + yy3654 := *x.Controller + yym3655 := z.EncBinary() + _ = yym3655 if false { } else { - r.EncodeBool(bool(yy3649)) + r.EncodeBool(bool(yy3654)) } } } } - if yyr3633 || yy2arr3633 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45989,25 +46037,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3651 := z.DecBinary() - _ = yym3651 + yym3656 := z.DecBinary() + _ = yym3656 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3652 := r.ContainerType() - if yyct3652 == codecSelferValueTypeMap1234 { - yyl3652 := r.ReadMapStart() - if yyl3652 == 0 { + yyct3657 := r.ContainerType() + if yyct3657 == codecSelferValueTypeMap1234 { + yyl3657 := r.ReadMapStart() + if yyl3657 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3652, d) + x.codecDecodeSelfFromMap(yyl3657, d) } - } else if yyct3652 == codecSelferValueTypeArray1234 { - yyl3652 := r.ReadArrayStart() - if yyl3652 == 0 { + } else if yyct3657 == codecSelferValueTypeArray1234 { + yyl3657 := r.ReadArrayStart() + if yyl3657 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3652, d) + x.codecDecodeSelfFromArray(yyl3657, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46019,12 +46067,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3653Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3653Slc - var yyhl3653 bool = l >= 0 - for yyj3653 := 0; ; yyj3653++ { - if yyhl3653 { - if yyj3653 >= l { + var yys3658Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3658Slc + var yyhl3658 bool = l >= 0 + for yyj3658 := 0; ; yyj3658++ { + if yyhl3658 { + if yyj3658 >= l { break } } else { @@ -46033,10 +46081,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3653Slc = r.DecodeBytes(yys3653Slc, true, true) - yys3653 := string(yys3653Slc) + yys3658Slc = r.DecodeBytes(yys3658Slc, true, true) + yys3658 := string(yys3658Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3653 { + switch yys3658 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -46070,17 +46118,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3659 := z.DecBinary() - _ = yym3659 + yym3664 := z.DecBinary() + _ = yym3664 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3653) - } // end switch yys3653 - } // end for yyj3653 + z.DecStructFieldNotFound(-1, yys3658) + } // end switch yys3658 + } // end for yyj3658 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46088,16 +46136,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3660 int - var yyb3660 bool - var yyhl3660 bool = l >= 0 - yyj3660++ - if yyhl3660 { - yyb3660 = yyj3660 > l + var yyj3665 int + var yyb3665 bool + var yyhl3665 bool = l >= 0 + yyj3665++ + if yyhl3665 { + yyb3665 = yyj3665 > l } else { - yyb3660 = r.CheckBreak() + yyb3665 = r.CheckBreak() } - if yyb3660 { + if yyb3665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46107,13 +46155,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3660++ - if yyhl3660 { - yyb3660 = yyj3660 > l + yyj3665++ + if yyhl3665 { + yyb3665 = yyj3665 > l } else { - yyb3660 = r.CheckBreak() + yyb3665 = r.CheckBreak() } - if yyb3660 { + if yyb3665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46123,13 +46171,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3660++ - if yyhl3660 { - yyb3660 = yyj3660 > l + yyj3665++ + if yyhl3665 { + yyb3665 = yyj3665 > l } else { - yyb3660 = r.CheckBreak() + yyb3665 = r.CheckBreak() } - if yyb3660 { + if yyb3665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46139,13 +46187,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3660++ - if yyhl3660 { - yyb3660 = yyj3660 > l + yyj3665++ + if yyhl3665 { + yyb3665 = yyj3665 > l } else { - yyb3660 = r.CheckBreak() + yyb3665 = r.CheckBreak() } - if yyb3660 { + if yyb3665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46155,13 +46203,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3660++ - if yyhl3660 { - yyb3660 = yyj3660 > l + yyj3665++ + if yyhl3665 { + yyb3665 = yyj3665 > l } else { - yyb3660 = r.CheckBreak() + yyb3665 = r.CheckBreak() } - if yyb3660 { + if yyb3665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46174,25 +46222,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3666 := z.DecBinary() - _ = yym3666 + yym3671 := z.DecBinary() + _ = yym3671 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3660++ - if yyhl3660 { - yyb3660 = yyj3660 > l + yyj3665++ + if yyhl3665 { + yyb3665 = yyj3665 > l } else { - yyb3660 = r.CheckBreak() + yyb3665 = r.CheckBreak() } - if yyb3660 { + if yyb3665 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3660-1, "") + z.DecStructFieldNotFound(yyj3665-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46204,41 +46252,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3667 := z.EncBinary() - _ = yym3667 + yym3672 := z.EncBinary() + _ = yym3672 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3668 := !z.EncBinary() - yy2arr3668 := z.EncBasicHandle().StructToArray - var yyq3668 [7]bool - _, _, _ = yysep3668, yyq3668, yy2arr3668 - const yyr3668 bool = false - yyq3668[0] = x.Kind != "" - yyq3668[1] = x.Namespace != "" - yyq3668[2] = x.Name != "" - yyq3668[3] = x.UID != "" - yyq3668[4] = x.APIVersion != "" - yyq3668[5] = x.ResourceVersion != "" - yyq3668[6] = x.FieldPath != "" - var yynn3668 int - if yyr3668 || yy2arr3668 { + yysep3673 := !z.EncBinary() + yy2arr3673 := z.EncBasicHandle().StructToArray + var yyq3673 [7]bool + _, _, _ = yysep3673, yyq3673, yy2arr3673 + const yyr3673 bool = false + yyq3673[0] = x.Kind != "" + yyq3673[1] = x.Namespace != "" + yyq3673[2] = x.Name != "" + yyq3673[3] = x.UID != "" + yyq3673[4] = x.APIVersion != "" + yyq3673[5] = x.ResourceVersion != "" + yyq3673[6] = x.FieldPath != "" + var yynn3673 int + if yyr3673 || yy2arr3673 { r.EncodeArrayStart(7) } else { - yynn3668 = 0 - for _, b := range yyq3668 { + yynn3673 = 0 + for _, b := range yyq3673 { if b { - yynn3668++ + yynn3673++ } } - r.EncodeMapStart(yynn3668) - yynn3668 = 0 + r.EncodeMapStart(yynn3673) + yynn3673 = 0 } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[0] { - yym3670 := z.EncBinary() - _ = yym3670 + if yyq3673[0] { + yym3675 := z.EncBinary() + _ = yym3675 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46247,23 +46295,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[0] { + if yyq3673[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3671 := z.EncBinary() - _ = yym3671 + yym3676 := z.EncBinary() + _ = yym3676 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[1] { - yym3673 := z.EncBinary() - _ = yym3673 + if yyq3673[1] { + yym3678 := z.EncBinary() + _ = yym3678 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -46272,23 +46320,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[1] { + if yyq3673[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3674 := z.EncBinary() - _ = yym3674 + yym3679 := z.EncBinary() + _ = yym3679 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[2] { - yym3676 := z.EncBinary() - _ = yym3676 + if yyq3673[2] { + yym3681 := z.EncBinary() + _ = yym3681 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46297,23 +46345,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[2] { + if yyq3673[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3677 := z.EncBinary() - _ = yym3677 + yym3682 := z.EncBinary() + _ = yym3682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[3] { - yym3679 := z.EncBinary() - _ = yym3679 + if yyq3673[3] { + yym3684 := z.EncBinary() + _ = yym3684 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46323,12 +46371,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[3] { + if yyq3673[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3685 := z.EncBinary() + _ = yym3685 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46336,11 +46384,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[4] { - yym3682 := z.EncBinary() - _ = yym3682 + if yyq3673[4] { + yym3687 := z.EncBinary() + _ = yym3687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46349,23 +46397,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[4] { + if yyq3673[4] { 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 yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[5] { - yym3685 := z.EncBinary() - _ = yym3685 + if yyq3673[5] { + yym3690 := z.EncBinary() + _ = yym3690 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -46374,23 +46422,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[5] { + if yyq3673[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3686 := z.EncBinary() - _ = yym3686 + yym3691 := z.EncBinary() + _ = yym3691 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[6] { - yym3688 := z.EncBinary() - _ = yym3688 + if yyq3673[6] { + yym3693 := z.EncBinary() + _ = yym3693 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -46399,19 +46447,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[6] { + if yyq3673[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3689 := z.EncBinary() - _ = yym3689 + yym3694 := z.EncBinary() + _ = yym3694 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46424,25 +46472,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3690 := z.DecBinary() - _ = yym3690 + yym3695 := z.DecBinary() + _ = yym3695 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3691 := r.ContainerType() - if yyct3691 == codecSelferValueTypeMap1234 { - yyl3691 := r.ReadMapStart() - if yyl3691 == 0 { + yyct3696 := r.ContainerType() + if yyct3696 == codecSelferValueTypeMap1234 { + yyl3696 := r.ReadMapStart() + if yyl3696 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3691, d) + x.codecDecodeSelfFromMap(yyl3696, d) } - } else if yyct3691 == codecSelferValueTypeArray1234 { - yyl3691 := r.ReadArrayStart() - if yyl3691 == 0 { + } else if yyct3696 == codecSelferValueTypeArray1234 { + yyl3696 := r.ReadArrayStart() + if yyl3696 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3691, d) + x.codecDecodeSelfFromArray(yyl3696, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46454,12 +46502,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3692Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3692Slc - var yyhl3692 bool = l >= 0 - for yyj3692 := 0; ; yyj3692++ { - if yyhl3692 { - if yyj3692 >= l { + var yys3697Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3697Slc + var yyhl3697 bool = l >= 0 + for yyj3697 := 0; ; yyj3697++ { + if yyhl3697 { + if yyj3697 >= l { break } } else { @@ -46468,10 +46516,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3692Slc = r.DecodeBytes(yys3692Slc, true, true) - yys3692 := string(yys3692Slc) + yys3697Slc = r.DecodeBytes(yys3697Slc, true, true) + yys3697 := string(yys3697Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3692 { + switch yys3697 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46515,9 +46563,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3692) - } // end switch yys3692 - } // end for yyj3692 + z.DecStructFieldNotFound(-1, yys3697) + } // end switch yys3697 + } // end for yyj3697 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46525,16 +46573,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3700 int - var yyb3700 bool - var yyhl3700 bool = l >= 0 - yyj3700++ - if yyhl3700 { - yyb3700 = yyj3700 > l + var yyj3705 int + var yyb3705 bool + var yyhl3705 bool = l >= 0 + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3700 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3700 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46544,13 +46592,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3700++ - if yyhl3700 { - yyb3700 = yyj3700 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3700 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3700 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46560,13 +46608,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3700++ - if yyhl3700 { - yyb3700 = yyj3700 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3700 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3700 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46576,13 +46624,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3700++ - if yyhl3700 { - yyb3700 = yyj3700 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3700 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3700 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46592,13 +46640,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3700++ - if yyhl3700 { - yyb3700 = yyj3700 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3700 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3700 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46608,13 +46656,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3700++ - if yyhl3700 { - yyb3700 = yyj3700 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3700 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3700 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46624,13 +46672,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3700++ - if yyhl3700 { - yyb3700 = yyj3700 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3700 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3700 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46641,17 +46689,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3700++ - if yyhl3700 { - yyb3700 = yyj3700 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3700 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3700 { + if yyb3705 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3700-1, "") + z.DecStructFieldNotFound(yyj3705-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46663,35 +46711,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3708 := z.EncBinary() - _ = yym3708 + yym3713 := z.EncBinary() + _ = yym3713 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3709 := !z.EncBinary() - yy2arr3709 := z.EncBasicHandle().StructToArray - var yyq3709 [1]bool - _, _, _ = yysep3709, yyq3709, yy2arr3709 - const yyr3709 bool = false - yyq3709[0] = x.Name != "" - var yynn3709 int - if yyr3709 || yy2arr3709 { + yysep3714 := !z.EncBinary() + yy2arr3714 := z.EncBasicHandle().StructToArray + var yyq3714 [1]bool + _, _, _ = yysep3714, yyq3714, yy2arr3714 + const yyr3714 bool = false + yyq3714[0] = x.Name != "" + var yynn3714 int + if yyr3714 || yy2arr3714 { r.EncodeArrayStart(1) } else { - yynn3709 = 0 - for _, b := range yyq3709 { + yynn3714 = 0 + for _, b := range yyq3714 { if b { - yynn3709++ + yynn3714++ } } - r.EncodeMapStart(yynn3709) - yynn3709 = 0 + r.EncodeMapStart(yynn3714) + yynn3714 = 0 } - if yyr3709 || yy2arr3709 { + if yyr3714 || yy2arr3714 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3709[0] { - yym3711 := z.EncBinary() - _ = yym3711 + if yyq3714[0] { + yym3716 := z.EncBinary() + _ = yym3716 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46700,19 +46748,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3709[0] { + if yyq3714[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3712 := z.EncBinary() - _ = yym3712 + yym3717 := z.EncBinary() + _ = yym3717 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3709 || yy2arr3709 { + if yyr3714 || yy2arr3714 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46725,25 +46773,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3713 := z.DecBinary() - _ = yym3713 + yym3718 := z.DecBinary() + _ = yym3718 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3714 := r.ContainerType() - if yyct3714 == codecSelferValueTypeMap1234 { - yyl3714 := r.ReadMapStart() - if yyl3714 == 0 { + yyct3719 := r.ContainerType() + if yyct3719 == codecSelferValueTypeMap1234 { + yyl3719 := r.ReadMapStart() + if yyl3719 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3714, d) + x.codecDecodeSelfFromMap(yyl3719, d) } - } else if yyct3714 == codecSelferValueTypeArray1234 { - yyl3714 := r.ReadArrayStart() - if yyl3714 == 0 { + } else if yyct3719 == codecSelferValueTypeArray1234 { + yyl3719 := r.ReadArrayStart() + if yyl3719 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3714, d) + x.codecDecodeSelfFromArray(yyl3719, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46755,12 +46803,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3715Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3715Slc - var yyhl3715 bool = l >= 0 - for yyj3715 := 0; ; yyj3715++ { - if yyhl3715 { - if yyj3715 >= l { + var yys3720Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3720Slc + var yyhl3720 bool = l >= 0 + for yyj3720 := 0; ; yyj3720++ { + if yyhl3720 { + if yyj3720 >= l { break } } else { @@ -46769,10 +46817,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3715Slc = r.DecodeBytes(yys3715Slc, true, true) - yys3715 := string(yys3715Slc) + yys3720Slc = r.DecodeBytes(yys3720Slc, true, true) + yys3720 := string(yys3720Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3715 { + switch yys3720 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -46780,9 +46828,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3715) - } // end switch yys3715 - } // end for yyj3715 + z.DecStructFieldNotFound(-1, yys3720) + } // end switch yys3720 + } // end for yyj3720 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46790,16 +46838,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3717 int - var yyb3717 bool - var yyhl3717 bool = l >= 0 - yyj3717++ - if yyhl3717 { - yyb3717 = yyj3717 > l + var yyj3722 int + var yyb3722 bool + var yyhl3722 bool = l >= 0 + yyj3722++ + if yyhl3722 { + yyb3722 = yyj3722 > l } else { - yyb3717 = r.CheckBreak() + yyb3722 = r.CheckBreak() } - if yyb3717 { + if yyb3722 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46810,17 +46858,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3717++ - if yyhl3717 { - yyb3717 = yyj3717 > l + yyj3722++ + if yyhl3722 { + yyb3722 = yyj3722 > l } else { - yyb3717 = r.CheckBreak() + yyb3722 = r.CheckBreak() } - if yyb3717 { + if yyb3722 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3717-1, "") + z.DecStructFieldNotFound(yyj3722-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46832,37 +46880,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3719 := z.EncBinary() - _ = yym3719 + yym3724 := z.EncBinary() + _ = yym3724 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3720 := !z.EncBinary() - yy2arr3720 := z.EncBasicHandle().StructToArray - var yyq3720 [3]bool - _, _, _ = yysep3720, yyq3720, yy2arr3720 - const yyr3720 bool = false - yyq3720[0] = x.Kind != "" - yyq3720[1] = x.APIVersion != "" - yyq3720[2] = true - var yynn3720 int - if yyr3720 || yy2arr3720 { + yysep3725 := !z.EncBinary() + yy2arr3725 := z.EncBasicHandle().StructToArray + var yyq3725 [3]bool + _, _, _ = yysep3725, yyq3725, yy2arr3725 + const yyr3725 bool = false + yyq3725[0] = x.Kind != "" + yyq3725[1] = x.APIVersion != "" + yyq3725[2] = true + var yynn3725 int + if yyr3725 || yy2arr3725 { r.EncodeArrayStart(3) } else { - yynn3720 = 0 - for _, b := range yyq3720 { + yynn3725 = 0 + for _, b := range yyq3725 { if b { - yynn3720++ + yynn3725++ } } - r.EncodeMapStart(yynn3720) - yynn3720 = 0 + r.EncodeMapStart(yynn3725) + yynn3725 = 0 } - if yyr3720 || yy2arr3720 { + if yyr3725 || yy2arr3725 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3720[0] { - yym3722 := z.EncBinary() - _ = yym3722 + if yyq3725[0] { + yym3727 := z.EncBinary() + _ = yym3727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46871,23 +46919,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3720[0] { + if yyq3725[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3723 := z.EncBinary() - _ = yym3723 + yym3728 := z.EncBinary() + _ = yym3728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3720 || yy2arr3720 { + if yyr3725 || yy2arr3725 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3720[1] { - yym3725 := z.EncBinary() - _ = yym3725 + if yyq3725[1] { + yym3730 := z.EncBinary() + _ = yym3730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46896,36 +46944,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3720[1] { + if yyq3725[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3726 := z.EncBinary() - _ = yym3726 + yym3731 := z.EncBinary() + _ = yym3731 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3720 || yy2arr3720 { + if yyr3725 || yy2arr3725 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3720[2] { - yy3728 := &x.Reference - yy3728.CodecEncodeSelf(e) + if yyq3725[2] { + yy3733 := &x.Reference + yy3733.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3720[2] { + if yyq3725[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3729 := &x.Reference - yy3729.CodecEncodeSelf(e) + yy3734 := &x.Reference + yy3734.CodecEncodeSelf(e) } } - if yyr3720 || yy2arr3720 { + if yyr3725 || yy2arr3725 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46938,25 +46986,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3730 := z.DecBinary() - _ = yym3730 + yym3735 := z.DecBinary() + _ = yym3735 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3731 := r.ContainerType() - if yyct3731 == codecSelferValueTypeMap1234 { - yyl3731 := r.ReadMapStart() - if yyl3731 == 0 { + yyct3736 := r.ContainerType() + if yyct3736 == codecSelferValueTypeMap1234 { + yyl3736 := r.ReadMapStart() + if yyl3736 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3731, d) + x.codecDecodeSelfFromMap(yyl3736, d) } - } else if yyct3731 == codecSelferValueTypeArray1234 { - yyl3731 := r.ReadArrayStart() - if yyl3731 == 0 { + } else if yyct3736 == codecSelferValueTypeArray1234 { + yyl3736 := r.ReadArrayStart() + if yyl3736 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3731, d) + x.codecDecodeSelfFromArray(yyl3736, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46968,12 +47016,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3732Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3732Slc - var yyhl3732 bool = l >= 0 - for yyj3732 := 0; ; yyj3732++ { - if yyhl3732 { - if yyj3732 >= l { + var yys3737Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3737Slc + var yyhl3737 bool = l >= 0 + for yyj3737 := 0; ; yyj3737++ { + if yyhl3737 { + if yyj3737 >= l { break } } else { @@ -46982,10 +47030,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3732Slc = r.DecodeBytes(yys3732Slc, true, true) - yys3732 := string(yys3732Slc) + yys3737Slc = r.DecodeBytes(yys3737Slc, true, true) + yys3737 := string(yys3737Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3732 { + switch yys3737 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47002,13 +47050,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3735 := &x.Reference - yyv3735.CodecDecodeSelf(d) + yyv3740 := &x.Reference + yyv3740.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3732) - } // end switch yys3732 - } // end for yyj3732 + z.DecStructFieldNotFound(-1, yys3737) + } // end switch yys3737 + } // end for yyj3737 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47016,16 +47064,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3736 int - var yyb3736 bool - var yyhl3736 bool = l >= 0 - yyj3736++ - if yyhl3736 { - yyb3736 = yyj3736 > l + var yyj3741 int + var yyb3741 bool + var yyhl3741 bool = l >= 0 + yyj3741++ + if yyhl3741 { + yyb3741 = yyj3741 > l } else { - yyb3736 = r.CheckBreak() + yyb3741 = r.CheckBreak() } - if yyb3736 { + if yyb3741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47035,13 +47083,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3736++ - if yyhl3736 { - yyb3736 = yyj3736 > l + yyj3741++ + if yyhl3741 { + yyb3741 = yyj3741 > l } else { - yyb3736 = r.CheckBreak() + yyb3741 = r.CheckBreak() } - if yyb3736 { + if yyb3741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47051,13 +47099,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3736++ - if yyhl3736 { - yyb3736 = yyj3736 > l + yyj3741++ + if yyhl3741 { + yyb3741 = yyj3741 > l } else { - yyb3736 = r.CheckBreak() + yyb3741 = r.CheckBreak() } - if yyb3736 { + if yyb3741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47065,21 +47113,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3739 := &x.Reference - yyv3739.CodecDecodeSelf(d) + yyv3744 := &x.Reference + yyv3744.CodecDecodeSelf(d) } for { - yyj3736++ - if yyhl3736 { - yyb3736 = yyj3736 > l + yyj3741++ + if yyhl3741 { + yyb3741 = yyj3741 > l } else { - yyb3736 = r.CheckBreak() + yyb3741 = r.CheckBreak() } - if yyb3736 { + if yyb3741 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3736-1, "") + z.DecStructFieldNotFound(yyj3741-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47091,36 +47139,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3740 := z.EncBinary() - _ = yym3740 + yym3745 := z.EncBinary() + _ = yym3745 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3741 := !z.EncBinary() - yy2arr3741 := z.EncBasicHandle().StructToArray - var yyq3741 [2]bool - _, _, _ = yysep3741, yyq3741, yy2arr3741 - const yyr3741 bool = false - yyq3741[0] = x.Component != "" - yyq3741[1] = x.Host != "" - var yynn3741 int - if yyr3741 || yy2arr3741 { + yysep3746 := !z.EncBinary() + yy2arr3746 := z.EncBasicHandle().StructToArray + var yyq3746 [2]bool + _, _, _ = yysep3746, yyq3746, yy2arr3746 + const yyr3746 bool = false + yyq3746[0] = x.Component != "" + yyq3746[1] = x.Host != "" + var yynn3746 int + if yyr3746 || yy2arr3746 { r.EncodeArrayStart(2) } else { - yynn3741 = 0 - for _, b := range yyq3741 { + yynn3746 = 0 + for _, b := range yyq3746 { if b { - yynn3741++ + yynn3746++ } } - r.EncodeMapStart(yynn3741) - yynn3741 = 0 + r.EncodeMapStart(yynn3746) + yynn3746 = 0 } - if yyr3741 || yy2arr3741 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3741[0] { - yym3743 := z.EncBinary() - _ = yym3743 + if yyq3746[0] { + yym3748 := z.EncBinary() + _ = yym3748 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -47129,23 +47177,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3741[0] { + if yyq3746[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3744 := z.EncBinary() - _ = yym3744 + yym3749 := z.EncBinary() + _ = yym3749 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3741 || yy2arr3741 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3741[1] { - yym3746 := z.EncBinary() - _ = yym3746 + if yyq3746[1] { + yym3751 := z.EncBinary() + _ = yym3751 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -47154,19 +47202,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3741[1] { + if yyq3746[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3747 := z.EncBinary() - _ = yym3747 + yym3752 := z.EncBinary() + _ = yym3752 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3741 || yy2arr3741 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47179,25 +47227,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3748 := z.DecBinary() - _ = yym3748 + yym3753 := z.DecBinary() + _ = yym3753 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3749 := r.ContainerType() - if yyct3749 == codecSelferValueTypeMap1234 { - yyl3749 := r.ReadMapStart() - if yyl3749 == 0 { + yyct3754 := r.ContainerType() + if yyct3754 == codecSelferValueTypeMap1234 { + yyl3754 := r.ReadMapStart() + if yyl3754 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3749, d) + x.codecDecodeSelfFromMap(yyl3754, d) } - } else if yyct3749 == codecSelferValueTypeArray1234 { - yyl3749 := r.ReadArrayStart() - if yyl3749 == 0 { + } else if yyct3754 == codecSelferValueTypeArray1234 { + yyl3754 := r.ReadArrayStart() + if yyl3754 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3749, d) + x.codecDecodeSelfFromArray(yyl3754, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47209,12 +47257,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3750Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3750Slc - var yyhl3750 bool = l >= 0 - for yyj3750 := 0; ; yyj3750++ { - if yyhl3750 { - if yyj3750 >= l { + var yys3755Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3755Slc + var yyhl3755 bool = l >= 0 + for yyj3755 := 0; ; yyj3755++ { + if yyhl3755 { + if yyj3755 >= l { break } } else { @@ -47223,10 +47271,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3750Slc = r.DecodeBytes(yys3750Slc, true, true) - yys3750 := string(yys3750Slc) + yys3755Slc = r.DecodeBytes(yys3755Slc, true, true) + yys3755 := string(yys3755Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3750 { + switch yys3755 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -47240,9 +47288,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3750) - } // end switch yys3750 - } // end for yyj3750 + z.DecStructFieldNotFound(-1, yys3755) + } // end switch yys3755 + } // end for yyj3755 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47250,16 +47298,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3753 int - var yyb3753 bool - var yyhl3753 bool = l >= 0 - yyj3753++ - if yyhl3753 { - yyb3753 = yyj3753 > l + var yyj3758 int + var yyb3758 bool + var yyhl3758 bool = l >= 0 + yyj3758++ + if yyhl3758 { + yyb3758 = yyj3758 > l } else { - yyb3753 = r.CheckBreak() + yyb3758 = r.CheckBreak() } - if yyb3753 { + if yyb3758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47269,13 +47317,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3753++ - if yyhl3753 { - yyb3753 = yyj3753 > l + yyj3758++ + if yyhl3758 { + yyb3758 = yyj3758 > l } else { - yyb3753 = r.CheckBreak() + yyb3758 = r.CheckBreak() } - if yyb3753 { + if yyb3758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47286,17 +47334,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3753++ - if yyhl3753 { - yyb3753 = yyj3753 > l + yyj3758++ + if yyhl3758 { + yyb3758 = yyj3758 > l } else { - yyb3753 = r.CheckBreak() + yyb3758 = r.CheckBreak() } - if yyb3753 { + if yyb3758 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3753-1, "") + z.DecStructFieldNotFound(yyj3758-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47308,43 +47356,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3756 := z.EncBinary() - _ = yym3756 + yym3761 := z.EncBinary() + _ = yym3761 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3757 := !z.EncBinary() - yy2arr3757 := z.EncBasicHandle().StructToArray - var yyq3757 [11]bool - _, _, _ = yysep3757, yyq3757, yy2arr3757 - const yyr3757 bool = false - yyq3757[0] = x.Kind != "" - yyq3757[1] = x.APIVersion != "" - yyq3757[4] = x.Reason != "" - yyq3757[5] = x.Message != "" - yyq3757[6] = true - yyq3757[7] = true - yyq3757[8] = true - yyq3757[9] = x.Count != 0 - yyq3757[10] = x.Type != "" - var yynn3757 int - if yyr3757 || yy2arr3757 { + yysep3762 := !z.EncBinary() + yy2arr3762 := z.EncBasicHandle().StructToArray + var yyq3762 [11]bool + _, _, _ = yysep3762, yyq3762, yy2arr3762 + const yyr3762 bool = false + yyq3762[0] = x.Kind != "" + yyq3762[1] = x.APIVersion != "" + yyq3762[4] = x.Reason != "" + yyq3762[5] = x.Message != "" + yyq3762[6] = true + yyq3762[7] = true + yyq3762[8] = true + yyq3762[9] = x.Count != 0 + yyq3762[10] = x.Type != "" + var yynn3762 int + if yyr3762 || yy2arr3762 { r.EncodeArrayStart(11) } else { - yynn3757 = 2 - for _, b := range yyq3757 { + yynn3762 = 2 + for _, b := range yyq3762 { if b { - yynn3757++ + yynn3762++ } } - r.EncodeMapStart(yynn3757) - yynn3757 = 0 + r.EncodeMapStart(yynn3762) + yynn3762 = 0 } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[0] { - yym3759 := z.EncBinary() - _ = yym3759 + if yyq3762[0] { + yym3764 := z.EncBinary() + _ = yym3764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47353,23 +47401,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3757[0] { + if yyq3762[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3760 := z.EncBinary() - _ = yym3760 + yym3765 := z.EncBinary() + _ = yym3765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[1] { - yym3762 := z.EncBinary() - _ = yym3762 + if yyq3762[1] { + yym3767 := z.EncBinary() + _ = yym3767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47378,45 +47426,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3757[1] { + if yyq3762[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3763 := z.EncBinary() - _ = yym3763 + yym3768 := z.EncBinary() + _ = yym3768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3765 := &x.ObjectMeta - yy3765.CodecEncodeSelf(e) + yy3770 := &x.ObjectMeta + yy3770.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3766 := &x.ObjectMeta - yy3766.CodecEncodeSelf(e) + yy3771 := &x.ObjectMeta + yy3771.CodecEncodeSelf(e) } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3768 := &x.InvolvedObject - yy3768.CodecEncodeSelf(e) + yy3773 := &x.InvolvedObject + yy3773.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3769 := &x.InvolvedObject - yy3769.CodecEncodeSelf(e) + yy3774 := &x.InvolvedObject + yy3774.CodecEncodeSelf(e) } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[4] { - yym3771 := z.EncBinary() - _ = yym3771 + if yyq3762[4] { + yym3776 := z.EncBinary() + _ = yym3776 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -47425,23 +47473,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3757[4] { + if yyq3762[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3772 := z.EncBinary() - _ = yym3772 + yym3777 := z.EncBinary() + _ = yym3777 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[5] { - yym3774 := z.EncBinary() - _ = yym3774 + if yyq3762[5] { + yym3779 := z.EncBinary() + _ = yym3779 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -47450,114 +47498,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3757[5] { + if yyq3762[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3775 := z.EncBinary() - _ = yym3775 + yym3780 := z.EncBinary() + _ = yym3780 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[6] { - yy3777 := &x.Source - yy3777.CodecEncodeSelf(e) + if yyq3762[6] { + yy3782 := &x.Source + yy3782.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3757[6] { + if yyq3762[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3778 := &x.Source - yy3778.CodecEncodeSelf(e) + yy3783 := &x.Source + yy3783.CodecEncodeSelf(e) } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[7] { - yy3780 := &x.FirstTimestamp - yym3781 := z.EncBinary() - _ = yym3781 + if yyq3762[7] { + yy3785 := &x.FirstTimestamp + yym3786 := z.EncBinary() + _ = yym3786 if false { - } else if z.HasExtensions() && z.EncExt(yy3780) { - } else if yym3781 { - z.EncBinaryMarshal(yy3780) - } else if !yym3781 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3780) + } else if z.HasExtensions() && z.EncExt(yy3785) { + } else if yym3786 { + z.EncBinaryMarshal(yy3785) + } else if !yym3786 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3785) } else { - z.EncFallback(yy3780) + z.EncFallback(yy3785) } } else { r.EncodeNil() } } else { - if yyq3757[7] { + if yyq3762[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3782 := &x.FirstTimestamp - yym3783 := z.EncBinary() - _ = yym3783 + yy3787 := &x.FirstTimestamp + yym3788 := z.EncBinary() + _ = yym3788 if false { - } else if z.HasExtensions() && z.EncExt(yy3782) { - } else if yym3783 { - z.EncBinaryMarshal(yy3782) - } else if !yym3783 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3782) + } else if z.HasExtensions() && z.EncExt(yy3787) { + } else if yym3788 { + z.EncBinaryMarshal(yy3787) + } else if !yym3788 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3787) } else { - z.EncFallback(yy3782) + z.EncFallback(yy3787) } } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[8] { - yy3785 := &x.LastTimestamp - yym3786 := z.EncBinary() - _ = yym3786 + if yyq3762[8] { + yy3790 := &x.LastTimestamp + yym3791 := z.EncBinary() + _ = yym3791 if false { - } else if z.HasExtensions() && z.EncExt(yy3785) { - } else if yym3786 { - z.EncBinaryMarshal(yy3785) - } else if !yym3786 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3785) + } else if z.HasExtensions() && z.EncExt(yy3790) { + } else if yym3791 { + z.EncBinaryMarshal(yy3790) + } else if !yym3791 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3790) } else { - z.EncFallback(yy3785) + z.EncFallback(yy3790) } } else { r.EncodeNil() } } else { - if yyq3757[8] { + if yyq3762[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3787 := &x.LastTimestamp - yym3788 := z.EncBinary() - _ = yym3788 + yy3792 := &x.LastTimestamp + yym3793 := z.EncBinary() + _ = yym3793 if false { - } else if z.HasExtensions() && z.EncExt(yy3787) { - } else if yym3788 { - z.EncBinaryMarshal(yy3787) - } else if !yym3788 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3787) + } else if z.HasExtensions() && z.EncExt(yy3792) { + } else if yym3793 { + z.EncBinaryMarshal(yy3792) + } else if !yym3793 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3792) } else { - z.EncFallback(yy3787) + z.EncFallback(yy3792) } } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[9] { - yym3790 := z.EncBinary() - _ = yym3790 + if yyq3762[9] { + yym3795 := z.EncBinary() + _ = yym3795 if false { } else { r.EncodeInt(int64(x.Count)) @@ -47566,23 +47614,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3757[9] { + if yyq3762[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3791 := z.EncBinary() - _ = yym3791 + yym3796 := z.EncBinary() + _ = yym3796 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[10] { - yym3793 := z.EncBinary() - _ = yym3793 + if yyq3762[10] { + yym3798 := z.EncBinary() + _ = yym3798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -47591,19 +47639,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3757[10] { + if yyq3762[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3794 := z.EncBinary() - _ = yym3794 + yym3799 := z.EncBinary() + _ = yym3799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3757 || yy2arr3757 { + if yyr3762 || yy2arr3762 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47616,25 +47664,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3795 := z.DecBinary() - _ = yym3795 + yym3800 := z.DecBinary() + _ = yym3800 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3796 := r.ContainerType() - if yyct3796 == codecSelferValueTypeMap1234 { - yyl3796 := r.ReadMapStart() - if yyl3796 == 0 { + yyct3801 := r.ContainerType() + if yyct3801 == codecSelferValueTypeMap1234 { + yyl3801 := r.ReadMapStart() + if yyl3801 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3796, d) + x.codecDecodeSelfFromMap(yyl3801, d) } - } else if yyct3796 == codecSelferValueTypeArray1234 { - yyl3796 := r.ReadArrayStart() - if yyl3796 == 0 { + } else if yyct3801 == codecSelferValueTypeArray1234 { + yyl3801 := r.ReadArrayStart() + if yyl3801 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3796, d) + x.codecDecodeSelfFromArray(yyl3801, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47646,12 +47694,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3797Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3797Slc - var yyhl3797 bool = l >= 0 - for yyj3797 := 0; ; yyj3797++ { - if yyhl3797 { - if yyj3797 >= l { + var yys3802Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3802Slc + var yyhl3802 bool = l >= 0 + for yyj3802 := 0; ; yyj3802++ { + if yyhl3802 { + if yyj3802 >= l { break } } else { @@ -47660,10 +47708,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3797Slc = r.DecodeBytes(yys3797Slc, true, true) - yys3797 := string(yys3797Slc) + yys3802Slc = r.DecodeBytes(yys3802Slc, true, true) + yys3802 := string(yys3802Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3797 { + switch yys3802 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47680,15 +47728,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3800 := &x.ObjectMeta - yyv3800.CodecDecodeSelf(d) + yyv3805 := &x.ObjectMeta + yyv3805.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3801 := &x.InvolvedObject - yyv3801.CodecDecodeSelf(d) + yyv3806 := &x.InvolvedObject + yyv3806.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -47706,41 +47754,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3804 := &x.Source - yyv3804.CodecDecodeSelf(d) + yyv3809 := &x.Source + yyv3809.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3805 := &x.FirstTimestamp - yym3806 := z.DecBinary() - _ = yym3806 + yyv3810 := &x.FirstTimestamp + yym3811 := z.DecBinary() + _ = yym3811 if false { - } else if z.HasExtensions() && z.DecExt(yyv3805) { - } else if yym3806 { - z.DecBinaryUnmarshal(yyv3805) - } else if !yym3806 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3805) + } else if z.HasExtensions() && z.DecExt(yyv3810) { + } else if yym3811 { + z.DecBinaryUnmarshal(yyv3810) + } else if !yym3811 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3810) } else { - z.DecFallback(yyv3805, false) + z.DecFallback(yyv3810, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3807 := &x.LastTimestamp - yym3808 := z.DecBinary() - _ = yym3808 + yyv3812 := &x.LastTimestamp + yym3813 := z.DecBinary() + _ = yym3813 if false { - } else if z.HasExtensions() && z.DecExt(yyv3807) { - } else if yym3808 { - z.DecBinaryUnmarshal(yyv3807) - } else if !yym3808 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3807) + } else if z.HasExtensions() && z.DecExt(yyv3812) { + } else if yym3813 { + z.DecBinaryUnmarshal(yyv3812) + } else if !yym3813 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3812) } else { - z.DecFallback(yyv3807, false) + z.DecFallback(yyv3812, false) } } case "count": @@ -47756,9 +47804,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3797) - } // end switch yys3797 - } // end for yyj3797 + z.DecStructFieldNotFound(-1, yys3802) + } // end switch yys3802 + } // end for yyj3802 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47766,16 +47814,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3811 int - var yyb3811 bool - var yyhl3811 bool = l >= 0 - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + var yyj3816 int + var yyb3816 bool + var yyhl3816 bool = l >= 0 + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47785,13 +47833,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47801,13 +47849,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47815,16 +47863,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3814 := &x.ObjectMeta - yyv3814.CodecDecodeSelf(d) + yyv3819 := &x.ObjectMeta + yyv3819.CodecDecodeSelf(d) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47832,16 +47880,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3815 := &x.InvolvedObject - yyv3815.CodecDecodeSelf(d) + yyv3820 := &x.InvolvedObject + yyv3820.CodecDecodeSelf(d) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47851,13 +47899,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47867,13 +47915,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47881,16 +47929,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3818 := &x.Source - yyv3818.CodecDecodeSelf(d) + yyv3823 := &x.Source + yyv3823.CodecDecodeSelf(d) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47898,26 +47946,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3819 := &x.FirstTimestamp - yym3820 := z.DecBinary() - _ = yym3820 + yyv3824 := &x.FirstTimestamp + yym3825 := z.DecBinary() + _ = yym3825 if false { - } else if z.HasExtensions() && z.DecExt(yyv3819) { - } else if yym3820 { - z.DecBinaryUnmarshal(yyv3819) - } else if !yym3820 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3819) + } else if z.HasExtensions() && z.DecExt(yyv3824) { + } else if yym3825 { + z.DecBinaryUnmarshal(yyv3824) + } else if !yym3825 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3824) } else { - z.DecFallback(yyv3819, false) + z.DecFallback(yyv3824, false) } } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47925,26 +47973,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3821 := &x.LastTimestamp - yym3822 := z.DecBinary() - _ = yym3822 + yyv3826 := &x.LastTimestamp + yym3827 := z.DecBinary() + _ = yym3827 if false { - } else if z.HasExtensions() && z.DecExt(yyv3821) { - } else if yym3822 { - z.DecBinaryUnmarshal(yyv3821) - } else if !yym3822 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3821) + } else if z.HasExtensions() && z.DecExt(yyv3826) { + } else if yym3827 { + z.DecBinaryUnmarshal(yyv3826) + } else if !yym3827 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3826) } else { - z.DecFallback(yyv3821, false) + z.DecFallback(yyv3826, false) } } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47954,13 +48002,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47971,17 +48019,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3816++ + if yyhl3816 { + yyb3816 = yyj3816 > l } else { - yyb3811 = r.CheckBreak() + yyb3816 = r.CheckBreak() } - if yyb3811 { + if yyb3816 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3811-1, "") + z.DecStructFieldNotFound(yyj3816-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47993,37 +48041,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3825 := z.EncBinary() - _ = yym3825 + yym3830 := z.EncBinary() + _ = yym3830 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3826 := !z.EncBinary() - yy2arr3826 := z.EncBasicHandle().StructToArray - var yyq3826 [4]bool - _, _, _ = yysep3826, yyq3826, yy2arr3826 - const yyr3826 bool = false - yyq3826[0] = x.Kind != "" - yyq3826[1] = x.APIVersion != "" - yyq3826[2] = true - var yynn3826 int - if yyr3826 || yy2arr3826 { + yysep3831 := !z.EncBinary() + yy2arr3831 := z.EncBasicHandle().StructToArray + var yyq3831 [4]bool + _, _, _ = yysep3831, yyq3831, yy2arr3831 + const yyr3831 bool = false + yyq3831[0] = x.Kind != "" + yyq3831[1] = x.APIVersion != "" + yyq3831[2] = true + var yynn3831 int + if yyr3831 || yy2arr3831 { r.EncodeArrayStart(4) } else { - yynn3826 = 1 - for _, b := range yyq3826 { + yynn3831 = 1 + for _, b := range yyq3831 { if b { - yynn3826++ + yynn3831++ } } - r.EncodeMapStart(yynn3826) - yynn3826 = 0 + r.EncodeMapStart(yynn3831) + yynn3831 = 0 } - if yyr3826 || yy2arr3826 { + if yyr3831 || yy2arr3831 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3826[0] { - yym3828 := z.EncBinary() - _ = yym3828 + if yyq3831[0] { + yym3833 := z.EncBinary() + _ = yym3833 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48032,23 +48080,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3826[0] { + if yyq3831[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3829 := z.EncBinary() - _ = yym3829 + yym3834 := z.EncBinary() + _ = yym3834 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3826 || yy2arr3826 { + if yyr3831 || yy2arr3831 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3826[1] { - yym3831 := z.EncBinary() - _ = yym3831 + if yyq3831[1] { + yym3836 := z.EncBinary() + _ = yym3836 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48057,54 +48105,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3826[1] { + if yyq3831[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3832 := z.EncBinary() - _ = yym3832 + yym3837 := z.EncBinary() + _ = yym3837 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3826 || yy2arr3826 { + if yyr3831 || yy2arr3831 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3826[2] { - yy3834 := &x.ListMeta - yym3835 := z.EncBinary() - _ = yym3835 + if yyq3831[2] { + yy3839 := &x.ListMeta + yym3840 := z.EncBinary() + _ = yym3840 if false { - } else if z.HasExtensions() && z.EncExt(yy3834) { + } else if z.HasExtensions() && z.EncExt(yy3839) { } else { - z.EncFallback(yy3834) + z.EncFallback(yy3839) } } else { r.EncodeNil() } } else { - if yyq3826[2] { + if yyq3831[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3836 := &x.ListMeta - yym3837 := z.EncBinary() - _ = yym3837 + yy3841 := &x.ListMeta + yym3842 := z.EncBinary() + _ = yym3842 if false { - } else if z.HasExtensions() && z.EncExt(yy3836) { + } else if z.HasExtensions() && z.EncExt(yy3841) { } else { - z.EncFallback(yy3836) + z.EncFallback(yy3841) } } } - if yyr3826 || yy2arr3826 { + if yyr3831 || yy2arr3831 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3839 := z.EncBinary() - _ = yym3839 + yym3844 := z.EncBinary() + _ = yym3844 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -48117,15 +48165,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3840 := z.EncBinary() - _ = yym3840 + yym3845 := z.EncBinary() + _ = yym3845 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3826 || yy2arr3826 { + if yyr3831 || yy2arr3831 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48138,25 +48186,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3841 := z.DecBinary() - _ = yym3841 + yym3846 := z.DecBinary() + _ = yym3846 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3842 := r.ContainerType() - if yyct3842 == codecSelferValueTypeMap1234 { - yyl3842 := r.ReadMapStart() - if yyl3842 == 0 { + yyct3847 := r.ContainerType() + if yyct3847 == codecSelferValueTypeMap1234 { + yyl3847 := r.ReadMapStart() + if yyl3847 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3842, d) + x.codecDecodeSelfFromMap(yyl3847, d) } - } else if yyct3842 == codecSelferValueTypeArray1234 { - yyl3842 := r.ReadArrayStart() - if yyl3842 == 0 { + } else if yyct3847 == codecSelferValueTypeArray1234 { + yyl3847 := r.ReadArrayStart() + if yyl3847 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3842, d) + x.codecDecodeSelfFromArray(yyl3847, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48168,12 +48216,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3843Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3843Slc - var yyhl3843 bool = l >= 0 - for yyj3843 := 0; ; yyj3843++ { - if yyhl3843 { - if yyj3843 >= l { + var yys3848Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3848Slc + var yyhl3848 bool = l >= 0 + for yyj3848 := 0; ; yyj3848++ { + if yyhl3848 { + if yyj3848 >= l { break } } else { @@ -48182,10 +48230,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3843Slc = r.DecodeBytes(yys3843Slc, true, true) - yys3843 := string(yys3843Slc) + yys3848Slc = r.DecodeBytes(yys3848Slc, true, true) + yys3848 := string(yys3848Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3843 { + switch yys3848 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48202,31 +48250,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3846 := &x.ListMeta - yym3847 := z.DecBinary() - _ = yym3847 + yyv3851 := &x.ListMeta + yym3852 := z.DecBinary() + _ = yym3852 if false { - } else if z.HasExtensions() && z.DecExt(yyv3846) { + } else if z.HasExtensions() && z.DecExt(yyv3851) { } else { - z.DecFallback(yyv3846, false) + z.DecFallback(yyv3851, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3848 := &x.Items - yym3849 := z.DecBinary() - _ = yym3849 + yyv3853 := &x.Items + yym3854 := z.DecBinary() + _ = yym3854 if false { } else { - h.decSliceEvent((*[]Event)(yyv3848), d) + h.decSliceEvent((*[]Event)(yyv3853), d) } } default: - z.DecStructFieldNotFound(-1, yys3843) - } // end switch yys3843 - } // end for yyj3843 + z.DecStructFieldNotFound(-1, yys3848) + } // end switch yys3848 + } // end for yyj3848 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48234,16 +48282,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3850 int - var yyb3850 bool - var yyhl3850 bool = l >= 0 - yyj3850++ - if yyhl3850 { - yyb3850 = yyj3850 > l + var yyj3855 int + var yyb3855 bool + var yyhl3855 bool = l >= 0 + yyj3855++ + if yyhl3855 { + yyb3855 = yyj3855 > l } else { - yyb3850 = r.CheckBreak() + yyb3855 = r.CheckBreak() } - if yyb3850 { + if yyb3855 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48253,13 +48301,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3850++ - if yyhl3850 { - yyb3850 = yyj3850 > l + yyj3855++ + if yyhl3855 { + yyb3855 = yyj3855 > l } else { - yyb3850 = r.CheckBreak() + yyb3855 = r.CheckBreak() } - if yyb3850 { + if yyb3855 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48269,13 +48317,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3850++ - if yyhl3850 { - yyb3850 = yyj3850 > l + yyj3855++ + if yyhl3855 { + yyb3855 = yyj3855 > l } else { - yyb3850 = r.CheckBreak() + yyb3855 = r.CheckBreak() } - if yyb3850 { + if yyb3855 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48283,22 +48331,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3853 := &x.ListMeta - yym3854 := z.DecBinary() - _ = yym3854 + yyv3858 := &x.ListMeta + yym3859 := z.DecBinary() + _ = yym3859 if false { - } else if z.HasExtensions() && z.DecExt(yyv3853) { + } else if z.HasExtensions() && z.DecExt(yyv3858) { } else { - z.DecFallback(yyv3853, false) + z.DecFallback(yyv3858, false) } } - yyj3850++ - if yyhl3850 { - yyb3850 = yyj3850 > l + yyj3855++ + if yyhl3855 { + yyb3855 = yyj3855 > l } else { - yyb3850 = r.CheckBreak() + yyb3855 = r.CheckBreak() } - if yyb3850 { + if yyb3855 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48306,26 +48354,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3855 := &x.Items - yym3856 := z.DecBinary() - _ = yym3856 + yyv3860 := &x.Items + yym3861 := z.DecBinary() + _ = yym3861 if false { } else { - h.decSliceEvent((*[]Event)(yyv3855), d) + h.decSliceEvent((*[]Event)(yyv3860), d) } } for { - yyj3850++ - if yyhl3850 { - yyb3850 = yyj3850 > l + yyj3855++ + if yyhl3855 { + yyb3855 = yyj3855 > l } else { - yyb3850 = r.CheckBreak() + yyb3855 = r.CheckBreak() } - if yyb3850 { + if yyb3855 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3850-1, "") + z.DecStructFieldNotFound(yyj3855-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48337,37 +48385,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3857 := z.EncBinary() - _ = yym3857 + yym3862 := z.EncBinary() + _ = yym3862 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3858 := !z.EncBinary() - yy2arr3858 := z.EncBasicHandle().StructToArray - var yyq3858 [4]bool - _, _, _ = yysep3858, yyq3858, yy2arr3858 - const yyr3858 bool = false - yyq3858[0] = x.Kind != "" - yyq3858[1] = x.APIVersion != "" - yyq3858[2] = true - var yynn3858 int - if yyr3858 || yy2arr3858 { + yysep3863 := !z.EncBinary() + yy2arr3863 := z.EncBasicHandle().StructToArray + var yyq3863 [4]bool + _, _, _ = yysep3863, yyq3863, yy2arr3863 + const yyr3863 bool = false + yyq3863[0] = x.Kind != "" + yyq3863[1] = x.APIVersion != "" + yyq3863[2] = true + var yynn3863 int + if yyr3863 || yy2arr3863 { r.EncodeArrayStart(4) } else { - yynn3858 = 1 - for _, b := range yyq3858 { + yynn3863 = 1 + for _, b := range yyq3863 { if b { - yynn3858++ + yynn3863++ } } - r.EncodeMapStart(yynn3858) - yynn3858 = 0 + r.EncodeMapStart(yynn3863) + yynn3863 = 0 } - if yyr3858 || yy2arr3858 { + if yyr3863 || yy2arr3863 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3858[0] { - yym3860 := z.EncBinary() - _ = yym3860 + if yyq3863[0] { + yym3865 := z.EncBinary() + _ = yym3865 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48376,23 +48424,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3858[0] { + if yyq3863[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3861 := z.EncBinary() - _ = yym3861 + yym3866 := z.EncBinary() + _ = yym3866 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3858 || yy2arr3858 { + if yyr3863 || yy2arr3863 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3858[1] { - yym3863 := z.EncBinary() - _ = yym3863 + if yyq3863[1] { + yym3868 := z.EncBinary() + _ = yym3868 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48401,54 +48449,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3858[1] { + if yyq3863[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3864 := z.EncBinary() - _ = yym3864 + yym3869 := z.EncBinary() + _ = yym3869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3858 || yy2arr3858 { + if yyr3863 || yy2arr3863 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3858[2] { - yy3866 := &x.ListMeta - yym3867 := z.EncBinary() - _ = yym3867 + if yyq3863[2] { + yy3871 := &x.ListMeta + yym3872 := z.EncBinary() + _ = yym3872 if false { - } else if z.HasExtensions() && z.EncExt(yy3866) { + } else if z.HasExtensions() && z.EncExt(yy3871) { } else { - z.EncFallback(yy3866) + z.EncFallback(yy3871) } } else { r.EncodeNil() } } else { - if yyq3858[2] { + if yyq3863[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3868 := &x.ListMeta - yym3869 := z.EncBinary() - _ = yym3869 + yy3873 := &x.ListMeta + yym3874 := z.EncBinary() + _ = yym3874 if false { - } else if z.HasExtensions() && z.EncExt(yy3868) { + } else if z.HasExtensions() && z.EncExt(yy3873) { } else { - z.EncFallback(yy3868) + z.EncFallback(yy3873) } } } - if yyr3858 || yy2arr3858 { + if yyr3863 || yy2arr3863 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3871 := z.EncBinary() - _ = yym3871 + yym3876 := z.EncBinary() + _ = yym3876 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) @@ -48461,15 +48509,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3872 := z.EncBinary() - _ = yym3872 + yym3877 := z.EncBinary() + _ = yym3877 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) } } } - if yyr3858 || yy2arr3858 { + if yyr3863 || yy2arr3863 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48482,25 +48530,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3873 := z.DecBinary() - _ = yym3873 + yym3878 := z.DecBinary() + _ = yym3878 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3874 := r.ContainerType() - if yyct3874 == codecSelferValueTypeMap1234 { - yyl3874 := r.ReadMapStart() - if yyl3874 == 0 { + yyct3879 := r.ContainerType() + if yyct3879 == codecSelferValueTypeMap1234 { + yyl3879 := r.ReadMapStart() + if yyl3879 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3874, d) + x.codecDecodeSelfFromMap(yyl3879, d) } - } else if yyct3874 == codecSelferValueTypeArray1234 { - yyl3874 := r.ReadArrayStart() - if yyl3874 == 0 { + } else if yyct3879 == codecSelferValueTypeArray1234 { + yyl3879 := r.ReadArrayStart() + if yyl3879 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3874, d) + x.codecDecodeSelfFromArray(yyl3879, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48512,12 +48560,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3875Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3875Slc - var yyhl3875 bool = l >= 0 - for yyj3875 := 0; ; yyj3875++ { - if yyhl3875 { - if yyj3875 >= l { + var yys3880Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3880Slc + var yyhl3880 bool = l >= 0 + for yyj3880 := 0; ; yyj3880++ { + if yyhl3880 { + if yyj3880 >= l { break } } else { @@ -48526,10 +48574,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3875Slc = r.DecodeBytes(yys3875Slc, true, true) - yys3875 := string(yys3875Slc) + yys3880Slc = r.DecodeBytes(yys3880Slc, true, true) + yys3880 := string(yys3880Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3875 { + switch yys3880 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48546,31 +48594,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3878 := &x.ListMeta - yym3879 := z.DecBinary() - _ = yym3879 + yyv3883 := &x.ListMeta + yym3884 := z.DecBinary() + _ = yym3884 if false { - } else if z.HasExtensions() && z.DecExt(yyv3878) { + } else if z.HasExtensions() && z.DecExt(yyv3883) { } else { - z.DecFallback(yyv3878, false) + z.DecFallback(yyv3883, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3880 := &x.Items - yym3881 := z.DecBinary() - _ = yym3881 + yyv3885 := &x.Items + yym3886 := z.DecBinary() + _ = yym3886 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3880), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3885), d) } } default: - z.DecStructFieldNotFound(-1, yys3875) - } // end switch yys3875 - } // end for yyj3875 + z.DecStructFieldNotFound(-1, yys3880) + } // end switch yys3880 + } // end for yyj3880 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48578,16 +48626,16 @@ func (x *List) 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 } @@ -48597,13 +48645,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3882++ - if yyhl3882 { - yyb3882 = yyj3882 > l + yyj3887++ + if yyhl3887 { + yyb3887 = yyj3887 > l } else { - yyb3882 = r.CheckBreak() + yyb3887 = r.CheckBreak() } - if yyb3882 { + if yyb3887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48613,13 +48661,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3882++ - if yyhl3882 { - yyb3882 = yyj3882 > l + yyj3887++ + if yyhl3887 { + yyb3887 = yyj3887 > l } else { - yyb3882 = r.CheckBreak() + yyb3887 = r.CheckBreak() } - if yyb3882 { + if yyb3887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48627,22 +48675,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3885 := &x.ListMeta - yym3886 := z.DecBinary() - _ = yym3886 + yyv3890 := &x.ListMeta + yym3891 := z.DecBinary() + _ = yym3891 if false { - } else if z.HasExtensions() && z.DecExt(yyv3885) { + } else if z.HasExtensions() && z.DecExt(yyv3890) { } else { - z.DecFallback(yyv3885, false) + z.DecFallback(yyv3890, false) } } - yyj3882++ - if yyhl3882 { - yyb3882 = yyj3882 > l + yyj3887++ + if yyhl3887 { + yyb3887 = yyj3887 > l } else { - yyb3882 = r.CheckBreak() + yyb3887 = r.CheckBreak() } - if yyb3882 { + if yyb3887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48650,26 +48698,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3887 := &x.Items - yym3888 := z.DecBinary() - _ = yym3888 + yyv3892 := &x.Items + yym3893 := z.DecBinary() + _ = yym3893 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3887), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3892), 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) } @@ -48678,8 +48726,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3889 := z.EncBinary() - _ = yym3889 + yym3894 := z.EncBinary() + _ = yym3894 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -48691,8 +48739,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3890 := z.DecBinary() - _ = yym3890 + yym3895 := z.DecBinary() + _ = yym3895 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -48707,53 +48755,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3891 := z.EncBinary() - _ = yym3891 + yym3896 := z.EncBinary() + _ = yym3896 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3892 := !z.EncBinary() - yy2arr3892 := z.EncBasicHandle().StructToArray - var yyq3892 [6]bool - _, _, _ = yysep3892, yyq3892, yy2arr3892 - const yyr3892 bool = false - yyq3892[0] = x.Type != "" - yyq3892[1] = len(x.Max) != 0 - yyq3892[2] = len(x.Min) != 0 - yyq3892[3] = len(x.Default) != 0 - yyq3892[4] = len(x.DefaultRequest) != 0 - yyq3892[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3892 int - if yyr3892 || yy2arr3892 { + yysep3897 := !z.EncBinary() + yy2arr3897 := z.EncBasicHandle().StructToArray + var yyq3897 [6]bool + _, _, _ = yysep3897, yyq3897, yy2arr3897 + const yyr3897 bool = false + yyq3897[0] = x.Type != "" + yyq3897[1] = len(x.Max) != 0 + yyq3897[2] = len(x.Min) != 0 + yyq3897[3] = len(x.Default) != 0 + yyq3897[4] = len(x.DefaultRequest) != 0 + yyq3897[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3897 int + if yyr3897 || yy2arr3897 { r.EncodeArrayStart(6) } else { - yynn3892 = 0 - for _, b := range yyq3892 { + yynn3897 = 0 + for _, b := range yyq3897 { if b { - yynn3892++ + yynn3897++ } } - r.EncodeMapStart(yynn3892) - yynn3892 = 0 + r.EncodeMapStart(yynn3897) + yynn3897 = 0 } - if yyr3892 || yy2arr3892 { + if yyr3897 || yy2arr3897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3892[0] { + if yyq3897[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3892[0] { + if yyq3897[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3892 || yy2arr3892 { + if yyr3897 || yy2arr3897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3892[1] { + if yyq3897[1] { if x.Max == nil { r.EncodeNil() } else { @@ -48763,7 +48811,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3892[1] { + if yyq3897[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48774,9 +48822,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3892 || yy2arr3892 { + if yyr3897 || yy2arr3897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3892[2] { + if yyq3897[2] { if x.Min == nil { r.EncodeNil() } else { @@ -48786,7 +48834,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3892[2] { + if yyq3897[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48797,9 +48845,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3892 || yy2arr3892 { + if yyr3897 || yy2arr3897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3892[3] { + if yyq3897[3] { if x.Default == nil { r.EncodeNil() } else { @@ -48809,7 +48857,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3892[3] { + if yyq3897[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48820,9 +48868,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3892 || yy2arr3892 { + if yyr3897 || yy2arr3897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3892[4] { + if yyq3897[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -48832,7 +48880,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3892[4] { + if yyq3897[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48843,9 +48891,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3892 || yy2arr3892 { + if yyr3897 || yy2arr3897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3892[5] { + if yyq3897[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -48855,7 +48903,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3892[5] { + if yyq3897[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48866,7 +48914,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3892 || yy2arr3892 { + if yyr3897 || yy2arr3897 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48879,25 +48927,25 @@ func (x *LimitRangeItem) 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) @@ -48909,12 +48957,12 @@ func (x *LimitRangeItem) 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 { @@ -48923,10 +48971,10 @@ func (x *LimitRangeItem) 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 "type": if r.TryDecodeAsNil() { x.Type = "" @@ -48937,41 +48985,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3903 := &x.Max - yyv3903.CodecDecodeSelf(d) + yyv3908 := &x.Max + yyv3908.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3904 := &x.Min - yyv3904.CodecDecodeSelf(d) + yyv3909 := &x.Min + yyv3909.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3905 := &x.Default - yyv3905.CodecDecodeSelf(d) + yyv3910 := &x.Default + yyv3910.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3906 := &x.DefaultRequest - yyv3906.CodecDecodeSelf(d) + yyv3911 := &x.DefaultRequest + yyv3911.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3907 := &x.MaxLimitRequestRatio - yyv3907.CodecDecodeSelf(d) + yyv3912 := &x.MaxLimitRequestRatio + yyv3912.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) } @@ -48979,16 +49027,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3908 int - var yyb3908 bool - var yyhl3908 bool = l >= 0 - yyj3908++ - if yyhl3908 { - yyb3908 = yyj3908 > l + var yyj3913 int + var yyb3913 bool + var yyhl3913 bool = l >= 0 + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3908 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3908 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48998,13 +49046,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3908++ - if yyhl3908 { - yyb3908 = yyj3908 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3908 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3908 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49012,16 +49060,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3910 := &x.Max - yyv3910.CodecDecodeSelf(d) + yyv3915 := &x.Max + yyv3915.CodecDecodeSelf(d) } - yyj3908++ - if yyhl3908 { - yyb3908 = yyj3908 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3908 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3908 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49029,16 +49077,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3911 := &x.Min - yyv3911.CodecDecodeSelf(d) + yyv3916 := &x.Min + yyv3916.CodecDecodeSelf(d) } - yyj3908++ - if yyhl3908 { - yyb3908 = yyj3908 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3908 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3908 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49046,16 +49094,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3912 := &x.Default - yyv3912.CodecDecodeSelf(d) + yyv3917 := &x.Default + yyv3917.CodecDecodeSelf(d) } - yyj3908++ - if yyhl3908 { - yyb3908 = yyj3908 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3908 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3908 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49063,16 +49111,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3913 := &x.DefaultRequest - yyv3913.CodecDecodeSelf(d) + yyv3918 := &x.DefaultRequest + yyv3918.CodecDecodeSelf(d) } - yyj3908++ - if yyhl3908 { - yyb3908 = yyj3908 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3908 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3908 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49080,21 +49128,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3914 := &x.MaxLimitRequestRatio - yyv3914.CodecDecodeSelf(d) + yyv3919 := &x.MaxLimitRequestRatio + yyv3919.CodecDecodeSelf(d) } for { - yyj3908++ - if yyhl3908 { - yyb3908 = yyj3908 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3908 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3908 { + if yyb3913 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3908-1, "") + z.DecStructFieldNotFound(yyj3913-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49106,36 +49154,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3915 := z.EncBinary() - _ = yym3915 + yym3920 := z.EncBinary() + _ = yym3920 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3916 := !z.EncBinary() - yy2arr3916 := z.EncBasicHandle().StructToArray - var yyq3916 [1]bool - _, _, _ = yysep3916, yyq3916, yy2arr3916 - const yyr3916 bool = false - var yynn3916 int - if yyr3916 || yy2arr3916 { + yysep3921 := !z.EncBinary() + yy2arr3921 := z.EncBasicHandle().StructToArray + var yyq3921 [1]bool + _, _, _ = yysep3921, yyq3921, yy2arr3921 + const yyr3921 bool = false + var yynn3921 int + if yyr3921 || yy2arr3921 { r.EncodeArrayStart(1) } else { - yynn3916 = 1 - for _, b := range yyq3916 { + yynn3921 = 1 + for _, b := range yyq3921 { if b { - yynn3916++ + yynn3921++ } } - r.EncodeMapStart(yynn3916) - yynn3916 = 0 + r.EncodeMapStart(yynn3921) + yynn3921 = 0 } - if yyr3916 || yy2arr3916 { + if yyr3921 || yy2arr3921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3918 := z.EncBinary() - _ = yym3918 + yym3923 := z.EncBinary() + _ = yym3923 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -49148,15 +49196,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3919 := z.EncBinary() - _ = yym3919 + yym3924 := z.EncBinary() + _ = yym3924 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3916 || yy2arr3916 { + if yyr3921 || yy2arr3921 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49169,25 +49217,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3920 := z.DecBinary() - _ = yym3920 + yym3925 := z.DecBinary() + _ = yym3925 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3921 := r.ContainerType() - if yyct3921 == codecSelferValueTypeMap1234 { - yyl3921 := r.ReadMapStart() - if yyl3921 == 0 { + yyct3926 := r.ContainerType() + if yyct3926 == codecSelferValueTypeMap1234 { + yyl3926 := r.ReadMapStart() + if yyl3926 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3921, d) + x.codecDecodeSelfFromMap(yyl3926, d) } - } else if yyct3921 == codecSelferValueTypeArray1234 { - yyl3921 := r.ReadArrayStart() - if yyl3921 == 0 { + } else if yyct3926 == codecSelferValueTypeArray1234 { + yyl3926 := r.ReadArrayStart() + if yyl3926 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3921, d) + x.codecDecodeSelfFromArray(yyl3926, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49199,12 +49247,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3922Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3922Slc - var yyhl3922 bool = l >= 0 - for yyj3922 := 0; ; yyj3922++ { - if yyhl3922 { - if yyj3922 >= l { + var yys3927Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3927Slc + var yyhl3927 bool = l >= 0 + for yyj3927 := 0; ; yyj3927++ { + if yyhl3927 { + if yyj3927 >= l { break } } else { @@ -49213,26 +49261,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3922Slc = r.DecodeBytes(yys3922Slc, true, true) - yys3922 := string(yys3922Slc) + yys3927Slc = r.DecodeBytes(yys3927Slc, true, true) + yys3927 := string(yys3927Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3922 { + switch yys3927 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3923 := &x.Limits - yym3924 := z.DecBinary() - _ = yym3924 + yyv3928 := &x.Limits + yym3929 := z.DecBinary() + _ = yym3929 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3923), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3928), d) } } default: - z.DecStructFieldNotFound(-1, yys3922) - } // end switch yys3922 - } // end for yyj3922 + z.DecStructFieldNotFound(-1, yys3927) + } // end switch yys3927 + } // end for yyj3927 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49240,16 +49288,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3925 int - var yyb3925 bool - var yyhl3925 bool = l >= 0 - yyj3925++ - if yyhl3925 { - yyb3925 = yyj3925 > l + var yyj3930 int + var yyb3930 bool + var yyhl3930 bool = l >= 0 + yyj3930++ + if yyhl3930 { + yyb3930 = yyj3930 > l } else { - yyb3925 = r.CheckBreak() + yyb3930 = r.CheckBreak() } - if yyb3925 { + if yyb3930 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49257,26 +49305,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3926 := &x.Limits - yym3927 := z.DecBinary() - _ = yym3927 + yyv3931 := &x.Limits + yym3932 := z.DecBinary() + _ = yym3932 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3926), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3931), d) } } for { - yyj3925++ - if yyhl3925 { - yyb3925 = yyj3925 > l + yyj3930++ + if yyhl3930 { + yyb3930 = yyj3930 > l } else { - yyb3925 = r.CheckBreak() + yyb3930 = r.CheckBreak() } - if yyb3925 { + if yyb3930 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3925-1, "") + z.DecStructFieldNotFound(yyj3930-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49288,38 +49336,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3928 := z.EncBinary() - _ = yym3928 + yym3933 := z.EncBinary() + _ = yym3933 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3929 := !z.EncBinary() - yy2arr3929 := z.EncBasicHandle().StructToArray - var yyq3929 [4]bool - _, _, _ = yysep3929, yyq3929, yy2arr3929 - const yyr3929 bool = false - yyq3929[0] = x.Kind != "" - yyq3929[1] = x.APIVersion != "" - yyq3929[2] = true - yyq3929[3] = true - var yynn3929 int - if yyr3929 || yy2arr3929 { + yysep3934 := !z.EncBinary() + yy2arr3934 := z.EncBasicHandle().StructToArray + var yyq3934 [4]bool + _, _, _ = yysep3934, yyq3934, yy2arr3934 + const yyr3934 bool = false + yyq3934[0] = x.Kind != "" + yyq3934[1] = x.APIVersion != "" + yyq3934[2] = true + yyq3934[3] = true + var yynn3934 int + if yyr3934 || yy2arr3934 { r.EncodeArrayStart(4) } else { - yynn3929 = 0 - for _, b := range yyq3929 { + yynn3934 = 0 + for _, b := range yyq3934 { if b { - yynn3929++ + yynn3934++ } } - r.EncodeMapStart(yynn3929) - yynn3929 = 0 + r.EncodeMapStart(yynn3934) + yynn3934 = 0 } - if yyr3929 || yy2arr3929 { + if yyr3934 || yy2arr3934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3929[0] { - yym3931 := z.EncBinary() - _ = yym3931 + if yyq3934[0] { + yym3936 := z.EncBinary() + _ = yym3936 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49328,23 +49376,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3929[0] { + if yyq3934[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3932 := z.EncBinary() - _ = yym3932 + yym3937 := z.EncBinary() + _ = yym3937 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3929 || yy2arr3929 { + if yyr3934 || yy2arr3934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3929[1] { - yym3934 := z.EncBinary() - _ = yym3934 + if yyq3934[1] { + yym3939 := z.EncBinary() + _ = yym3939 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49353,53 +49401,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3929[1] { + if yyq3934[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3935 := z.EncBinary() - _ = yym3935 + yym3940 := z.EncBinary() + _ = yym3940 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3929 || yy2arr3929 { + if yyr3934 || yy2arr3934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3929[2] { - yy3937 := &x.ObjectMeta - yy3937.CodecEncodeSelf(e) + if yyq3934[2] { + yy3942 := &x.ObjectMeta + yy3942.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3929[2] { + if yyq3934[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3938 := &x.ObjectMeta - yy3938.CodecEncodeSelf(e) + yy3943 := &x.ObjectMeta + yy3943.CodecEncodeSelf(e) } } - if yyr3929 || yy2arr3929 { + if yyr3934 || yy2arr3934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3929[3] { - yy3940 := &x.Spec - yy3940.CodecEncodeSelf(e) + if yyq3934[3] { + yy3945 := &x.Spec + yy3945.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3929[3] { + if yyq3934[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3941 := &x.Spec - yy3941.CodecEncodeSelf(e) + yy3946 := &x.Spec + yy3946.CodecEncodeSelf(e) } } - if yyr3929 || yy2arr3929 { + if yyr3934 || yy2arr3934 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49412,25 +49460,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3942 := z.DecBinary() - _ = yym3942 + yym3947 := z.DecBinary() + _ = yym3947 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3943 := r.ContainerType() - if yyct3943 == codecSelferValueTypeMap1234 { - yyl3943 := r.ReadMapStart() - if yyl3943 == 0 { + yyct3948 := r.ContainerType() + if yyct3948 == codecSelferValueTypeMap1234 { + yyl3948 := r.ReadMapStart() + if yyl3948 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3943, d) + x.codecDecodeSelfFromMap(yyl3948, d) } - } else if yyct3943 == codecSelferValueTypeArray1234 { - yyl3943 := r.ReadArrayStart() - if yyl3943 == 0 { + } else if yyct3948 == codecSelferValueTypeArray1234 { + yyl3948 := r.ReadArrayStart() + if yyl3948 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3943, d) + x.codecDecodeSelfFromArray(yyl3948, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49442,12 +49490,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3944Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3944Slc - var yyhl3944 bool = l >= 0 - for yyj3944 := 0; ; yyj3944++ { - if yyhl3944 { - if yyj3944 >= l { + var yys3949Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3949Slc + var yyhl3949 bool = l >= 0 + for yyj3949 := 0; ; yyj3949++ { + if yyhl3949 { + if yyj3949 >= l { break } } else { @@ -49456,10 +49504,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3944Slc = r.DecodeBytes(yys3944Slc, true, true) - yys3944 := string(yys3944Slc) + yys3949Slc = r.DecodeBytes(yys3949Slc, true, true) + yys3949 := string(yys3949Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3944 { + switch yys3949 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49476,20 +49524,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3947 := &x.ObjectMeta - yyv3947.CodecDecodeSelf(d) + yyv3952 := &x.ObjectMeta + yyv3952.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3948 := &x.Spec - yyv3948.CodecDecodeSelf(d) + yyv3953 := &x.Spec + yyv3953.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3944) - } // end switch yys3944 - } // end for yyj3944 + z.DecStructFieldNotFound(-1, yys3949) + } // end switch yys3949 + } // end for yyj3949 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49497,16 +49545,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3949 int - var yyb3949 bool - var yyhl3949 bool = l >= 0 - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + var yyj3954 int + var yyb3954 bool + var yyhl3954 bool = l >= 0 + yyj3954++ + if yyhl3954 { + yyb3954 = yyj3954 > l } else { - yyb3949 = r.CheckBreak() + yyb3954 = r.CheckBreak() } - if yyb3949 { + if yyb3954 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49516,13 +49564,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + yyj3954++ + if yyhl3954 { + yyb3954 = yyj3954 > l } else { - yyb3949 = r.CheckBreak() + yyb3954 = r.CheckBreak() } - if yyb3949 { + if yyb3954 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49532,13 +49580,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + yyj3954++ + if yyhl3954 { + yyb3954 = yyj3954 > l } else { - yyb3949 = r.CheckBreak() + yyb3954 = r.CheckBreak() } - if yyb3949 { + if yyb3954 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49546,16 +49594,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3952 := &x.ObjectMeta - yyv3952.CodecDecodeSelf(d) + yyv3957 := &x.ObjectMeta + yyv3957.CodecDecodeSelf(d) } - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + yyj3954++ + if yyhl3954 { + yyb3954 = yyj3954 > l } else { - yyb3949 = r.CheckBreak() + yyb3954 = r.CheckBreak() } - if yyb3949 { + if yyb3954 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49563,21 +49611,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3953 := &x.Spec - yyv3953.CodecDecodeSelf(d) + yyv3958 := &x.Spec + yyv3958.CodecDecodeSelf(d) } for { - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + yyj3954++ + if yyhl3954 { + yyb3954 = yyj3954 > l } else { - yyb3949 = r.CheckBreak() + yyb3954 = r.CheckBreak() } - if yyb3949 { + if yyb3954 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3949-1, "") + z.DecStructFieldNotFound(yyj3954-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49589,37 +49637,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3954 := z.EncBinary() - _ = yym3954 + yym3959 := z.EncBinary() + _ = yym3959 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3955 := !z.EncBinary() - yy2arr3955 := z.EncBasicHandle().StructToArray - var yyq3955 [4]bool - _, _, _ = yysep3955, yyq3955, yy2arr3955 - const yyr3955 bool = false - yyq3955[0] = x.Kind != "" - yyq3955[1] = x.APIVersion != "" - yyq3955[2] = true - var yynn3955 int - if yyr3955 || yy2arr3955 { + yysep3960 := !z.EncBinary() + yy2arr3960 := z.EncBasicHandle().StructToArray + var yyq3960 [4]bool + _, _, _ = yysep3960, yyq3960, yy2arr3960 + const yyr3960 bool = false + yyq3960[0] = x.Kind != "" + yyq3960[1] = x.APIVersion != "" + yyq3960[2] = true + var yynn3960 int + if yyr3960 || yy2arr3960 { r.EncodeArrayStart(4) } else { - yynn3955 = 1 - for _, b := range yyq3955 { + yynn3960 = 1 + for _, b := range yyq3960 { if b { - yynn3955++ + yynn3960++ } } - r.EncodeMapStart(yynn3955) - yynn3955 = 0 + r.EncodeMapStart(yynn3960) + yynn3960 = 0 } - if yyr3955 || yy2arr3955 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3955[0] { - yym3957 := z.EncBinary() - _ = yym3957 + if yyq3960[0] { + yym3962 := z.EncBinary() + _ = yym3962 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49628,23 +49676,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3955[0] { + if yyq3960[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3958 := z.EncBinary() - _ = yym3958 + yym3963 := z.EncBinary() + _ = yym3963 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3955 || yy2arr3955 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3955[1] { - yym3960 := z.EncBinary() - _ = yym3960 + if yyq3960[1] { + yym3965 := z.EncBinary() + _ = yym3965 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49653,54 +49701,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3955[1] { + if yyq3960[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3961 := z.EncBinary() - _ = yym3961 + yym3966 := z.EncBinary() + _ = yym3966 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3955 || yy2arr3955 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3955[2] { - yy3963 := &x.ListMeta - yym3964 := z.EncBinary() - _ = yym3964 + if yyq3960[2] { + yy3968 := &x.ListMeta + yym3969 := z.EncBinary() + _ = yym3969 if false { - } else if z.HasExtensions() && z.EncExt(yy3963) { + } else if z.HasExtensions() && z.EncExt(yy3968) { } else { - z.EncFallback(yy3963) + z.EncFallback(yy3968) } } else { r.EncodeNil() } } else { - if yyq3955[2] { + if yyq3960[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3965 := &x.ListMeta - yym3966 := z.EncBinary() - _ = yym3966 + yy3970 := &x.ListMeta + yym3971 := z.EncBinary() + _ = yym3971 if false { - } else if z.HasExtensions() && z.EncExt(yy3965) { + } else if z.HasExtensions() && z.EncExt(yy3970) { } else { - z.EncFallback(yy3965) + z.EncFallback(yy3970) } } } - if yyr3955 || yy2arr3955 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3968 := z.EncBinary() - _ = yym3968 + yym3973 := z.EncBinary() + _ = yym3973 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -49713,15 +49761,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3969 := z.EncBinary() - _ = yym3969 + yym3974 := z.EncBinary() + _ = yym3974 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3955 || yy2arr3955 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49734,25 +49782,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3970 := z.DecBinary() - _ = yym3970 + yym3975 := z.DecBinary() + _ = yym3975 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3971 := r.ContainerType() - if yyct3971 == codecSelferValueTypeMap1234 { - yyl3971 := r.ReadMapStart() - if yyl3971 == 0 { + yyct3976 := r.ContainerType() + if yyct3976 == codecSelferValueTypeMap1234 { + yyl3976 := r.ReadMapStart() + if yyl3976 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3971, d) + x.codecDecodeSelfFromMap(yyl3976, d) } - } else if yyct3971 == codecSelferValueTypeArray1234 { - yyl3971 := r.ReadArrayStart() - if yyl3971 == 0 { + } else if yyct3976 == codecSelferValueTypeArray1234 { + yyl3976 := r.ReadArrayStart() + if yyl3976 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3971, d) + x.codecDecodeSelfFromArray(yyl3976, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49764,12 +49812,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3972Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3972Slc - var yyhl3972 bool = l >= 0 - for yyj3972 := 0; ; yyj3972++ { - if yyhl3972 { - if yyj3972 >= l { + var yys3977Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3977Slc + var yyhl3977 bool = l >= 0 + for yyj3977 := 0; ; yyj3977++ { + if yyhl3977 { + if yyj3977 >= l { break } } else { @@ -49778,10 +49826,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3972Slc = r.DecodeBytes(yys3972Slc, true, true) - yys3972 := string(yys3972Slc) + yys3977Slc = r.DecodeBytes(yys3977Slc, true, true) + yys3977 := string(yys3977Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3972 { + switch yys3977 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49798,31 +49846,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3975 := &x.ListMeta - yym3976 := z.DecBinary() - _ = yym3976 + yyv3980 := &x.ListMeta + yym3981 := z.DecBinary() + _ = yym3981 if false { - } else if z.HasExtensions() && z.DecExt(yyv3975) { + } else if z.HasExtensions() && z.DecExt(yyv3980) { } else { - z.DecFallback(yyv3975, false) + z.DecFallback(yyv3980, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3977 := &x.Items - yym3978 := z.DecBinary() - _ = yym3978 + yyv3982 := &x.Items + yym3983 := z.DecBinary() + _ = yym3983 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3977), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3982), d) } } default: - z.DecStructFieldNotFound(-1, yys3972) - } // end switch yys3972 - } // end for yyj3972 + z.DecStructFieldNotFound(-1, yys3977) + } // end switch yys3977 + } // end for yyj3977 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49830,16 +49878,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3979 int - var yyb3979 bool - var yyhl3979 bool = l >= 0 - yyj3979++ - if yyhl3979 { - yyb3979 = yyj3979 > l + var yyj3984 int + var yyb3984 bool + var yyhl3984 bool = l >= 0 + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3979 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3979 { + if yyb3984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49849,13 +49897,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3979++ - if yyhl3979 { - yyb3979 = yyj3979 > l + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3979 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3979 { + if yyb3984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49865,13 +49913,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3979++ - if yyhl3979 { - yyb3979 = yyj3979 > l + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3979 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3979 { + if yyb3984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49879,22 +49927,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3982 := &x.ListMeta - yym3983 := z.DecBinary() - _ = yym3983 + yyv3987 := &x.ListMeta + yym3988 := z.DecBinary() + _ = yym3988 if false { - } else if z.HasExtensions() && z.DecExt(yyv3982) { + } else if z.HasExtensions() && z.DecExt(yyv3987) { } else { - z.DecFallback(yyv3982, false) + z.DecFallback(yyv3987, false) } } - yyj3979++ - if yyhl3979 { - yyb3979 = yyj3979 > l + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3979 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3979 { + if yyb3984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49902,26 +49950,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3984 := &x.Items - yym3985 := z.DecBinary() - _ = yym3985 + yyv3989 := &x.Items + yym3990 := z.DecBinary() + _ = yym3990 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3984), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3989), d) } } for { - yyj3979++ - if yyhl3979 { - yyb3979 = yyj3979 > l + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3979 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3979 { + if yyb3984 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3979-1, "") + z.DecStructFieldNotFound(yyj3984-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49930,8 +49978,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3986 := z.EncBinary() - _ = yym3986 + yym3991 := z.EncBinary() + _ = yym3991 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49943,8 +49991,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3987 := z.DecBinary() - _ = yym3987 + yym3992 := z.DecBinary() + _ = yym3992 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49959,34 +50007,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3988 := z.EncBinary() - _ = yym3988 + yym3993 := z.EncBinary() + _ = yym3993 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3989 := !z.EncBinary() - yy2arr3989 := z.EncBasicHandle().StructToArray - var yyq3989 [2]bool - _, _, _ = yysep3989, yyq3989, yy2arr3989 - const yyr3989 bool = false - yyq3989[0] = len(x.Hard) != 0 - yyq3989[1] = len(x.Scopes) != 0 - var yynn3989 int - if yyr3989 || yy2arr3989 { + yysep3994 := !z.EncBinary() + yy2arr3994 := z.EncBasicHandle().StructToArray + var yyq3994 [2]bool + _, _, _ = yysep3994, yyq3994, yy2arr3994 + const yyr3994 bool = false + yyq3994[0] = len(x.Hard) != 0 + yyq3994[1] = len(x.Scopes) != 0 + var yynn3994 int + if yyr3994 || yy2arr3994 { r.EncodeArrayStart(2) } else { - yynn3989 = 0 - for _, b := range yyq3989 { + yynn3994 = 0 + for _, b := range yyq3994 { if b { - yynn3989++ + yynn3994++ } } - r.EncodeMapStart(yynn3989) - yynn3989 = 0 + r.EncodeMapStart(yynn3994) + yynn3994 = 0 } - if yyr3989 || yy2arr3989 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3989[0] { + if yyq3994[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49996,7 +50044,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3989[0] { + if yyq3994[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50007,14 +50055,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3989 || yy2arr3989 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3989[1] { + if yyq3994[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym3992 := z.EncBinary() - _ = yym3992 + yym3997 := z.EncBinary() + _ = yym3997 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -50024,15 +50072,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3989[1] { + if yyq3994[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym3993 := z.EncBinary() - _ = yym3993 + yym3998 := z.EncBinary() + _ = yym3998 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -50040,7 +50088,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3989 || yy2arr3989 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50053,25 +50101,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3994 := z.DecBinary() - _ = yym3994 + yym3999 := z.DecBinary() + _ = yym3999 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3995 := r.ContainerType() - if yyct3995 == codecSelferValueTypeMap1234 { - yyl3995 := r.ReadMapStart() - if yyl3995 == 0 { + yyct4000 := r.ContainerType() + if yyct4000 == codecSelferValueTypeMap1234 { + yyl4000 := r.ReadMapStart() + if yyl4000 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3995, d) + x.codecDecodeSelfFromMap(yyl4000, d) } - } else if yyct3995 == codecSelferValueTypeArray1234 { - yyl3995 := r.ReadArrayStart() - if yyl3995 == 0 { + } else if yyct4000 == codecSelferValueTypeArray1234 { + yyl4000 := r.ReadArrayStart() + if yyl4000 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3995, d) + x.codecDecodeSelfFromArray(yyl4000, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50083,12 +50131,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3996Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3996Slc - var yyhl3996 bool = l >= 0 - for yyj3996 := 0; ; yyj3996++ { - if yyhl3996 { - if yyj3996 >= l { + var yys4001Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4001Slc + var yyhl4001 bool = l >= 0 + for yyj4001 := 0; ; yyj4001++ { + if yyhl4001 { + if yyj4001 >= l { break } } else { @@ -50097,33 +50145,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3996Slc = r.DecodeBytes(yys3996Slc, true, true) - yys3996 := string(yys3996Slc) + yys4001Slc = r.DecodeBytes(yys4001Slc, true, true) + yys4001 := string(yys4001Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3996 { + switch yys4001 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3997 := &x.Hard - yyv3997.CodecDecodeSelf(d) + yyv4002 := &x.Hard + yyv4002.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3998 := &x.Scopes - yym3999 := z.DecBinary() - _ = yym3999 + yyv4003 := &x.Scopes + yym4004 := z.DecBinary() + _ = yym4004 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3998), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4003), d) } } default: - z.DecStructFieldNotFound(-1, yys3996) - } // end switch yys3996 - } // end for yyj3996 + z.DecStructFieldNotFound(-1, yys4001) + } // end switch yys4001 + } // end for yyj4001 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50131,16 +50179,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4000 int - var yyb4000 bool - var yyhl4000 bool = l >= 0 - yyj4000++ - if yyhl4000 { - yyb4000 = yyj4000 > l + var yyj4005 int + var yyb4005 bool + var yyhl4005 bool = l >= 0 + yyj4005++ + if yyhl4005 { + yyb4005 = yyj4005 > l } else { - yyb4000 = r.CheckBreak() + yyb4005 = r.CheckBreak() } - if yyb4000 { + if yyb4005 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50148,16 +50196,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4001 := &x.Hard - yyv4001.CodecDecodeSelf(d) + yyv4006 := &x.Hard + yyv4006.CodecDecodeSelf(d) } - yyj4000++ - if yyhl4000 { - yyb4000 = yyj4000 > l + yyj4005++ + if yyhl4005 { + yyb4005 = yyj4005 > l } else { - yyb4000 = r.CheckBreak() + yyb4005 = r.CheckBreak() } - if yyb4000 { + if yyb4005 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50165,26 +50213,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4002 := &x.Scopes - yym4003 := z.DecBinary() - _ = yym4003 + yyv4007 := &x.Scopes + yym4008 := z.DecBinary() + _ = yym4008 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4002), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4007), d) } } for { - yyj4000++ - if yyhl4000 { - yyb4000 = yyj4000 > l + yyj4005++ + if yyhl4005 { + yyb4005 = yyj4005 > l } else { - yyb4000 = r.CheckBreak() + yyb4005 = r.CheckBreak() } - if yyb4000 { + if yyb4005 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4000-1, "") + z.DecStructFieldNotFound(yyj4005-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50196,34 +50244,34 @@ func (x *ResourceQuotaStatus) 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 [2]bool - _, _, _ = yysep4005, yyq4005, yy2arr4005 - const yyr4005 bool = false - yyq4005[0] = len(x.Hard) != 0 - yyq4005[1] = len(x.Used) != 0 - var yynn4005 int - if yyr4005 || yy2arr4005 { + yysep4010 := !z.EncBinary() + yy2arr4010 := z.EncBasicHandle().StructToArray + var yyq4010 [2]bool + _, _, _ = yysep4010, yyq4010, yy2arr4010 + const yyr4010 bool = false + yyq4010[0] = len(x.Hard) != 0 + yyq4010[1] = len(x.Used) != 0 + var yynn4010 int + if yyr4010 || yy2arr4010 { r.EncodeArrayStart(2) } else { - yynn4005 = 0 - for _, b := range yyq4005 { + yynn4010 = 0 + 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] { + if yyq4010[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50233,7 +50281,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4005[0] { + if yyq4010[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50244,9 +50292,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4005 || yy2arr4005 { + if yyr4010 || yy2arr4010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4005[1] { + if yyq4010[1] { if x.Used == nil { r.EncodeNil() } else { @@ -50256,7 +50304,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4005[1] { + if yyq4010[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50267,7 +50315,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4005 || yy2arr4005 { + if yyr4010 || yy2arr4010 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50280,25 +50328,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4008 := z.DecBinary() - _ = yym4008 + yym4013 := z.DecBinary() + _ = yym4013 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4009 := r.ContainerType() - if yyct4009 == codecSelferValueTypeMap1234 { - yyl4009 := r.ReadMapStart() - if yyl4009 == 0 { + yyct4014 := r.ContainerType() + if yyct4014 == codecSelferValueTypeMap1234 { + yyl4014 := r.ReadMapStart() + if yyl4014 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4009, d) + x.codecDecodeSelfFromMap(yyl4014, d) } - } else if yyct4009 == codecSelferValueTypeArray1234 { - yyl4009 := r.ReadArrayStart() - if yyl4009 == 0 { + } else if yyct4014 == codecSelferValueTypeArray1234 { + yyl4014 := r.ReadArrayStart() + if yyl4014 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4009, d) + x.codecDecodeSelfFromArray(yyl4014, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50310,12 +50358,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4010Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4010Slc - var yyhl4010 bool = l >= 0 - for yyj4010 := 0; ; yyj4010++ { - if yyhl4010 { - if yyj4010 >= l { + var yys4015Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4015Slc + var yyhl4015 bool = l >= 0 + for yyj4015 := 0; ; yyj4015++ { + if yyhl4015 { + if yyj4015 >= l { break } } else { @@ -50324,28 +50372,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4010Slc = r.DecodeBytes(yys4010Slc, true, true) - yys4010 := string(yys4010Slc) + yys4015Slc = r.DecodeBytes(yys4015Slc, true, true) + yys4015 := string(yys4015Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4010 { + switch yys4015 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4011 := &x.Hard - yyv4011.CodecDecodeSelf(d) + yyv4016 := &x.Hard + yyv4016.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4012 := &x.Used - yyv4012.CodecDecodeSelf(d) + yyv4017 := &x.Used + yyv4017.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4010) - } // end switch yys4010 - } // end for yyj4010 + z.DecStructFieldNotFound(-1, yys4015) + } // end switch yys4015 + } // end for yyj4015 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50353,16 +50401,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4013 int - var yyb4013 bool - var yyhl4013 bool = l >= 0 - yyj4013++ - if yyhl4013 { - yyb4013 = yyj4013 > l + var yyj4018 int + var yyb4018 bool + var yyhl4018 bool = l >= 0 + yyj4018++ + if yyhl4018 { + yyb4018 = yyj4018 > l } else { - yyb4013 = r.CheckBreak() + yyb4018 = r.CheckBreak() } - if yyb4013 { + if yyb4018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50370,16 +50418,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4014 := &x.Hard - yyv4014.CodecDecodeSelf(d) + yyv4019 := &x.Hard + yyv4019.CodecDecodeSelf(d) } - yyj4013++ - if yyhl4013 { - yyb4013 = yyj4013 > l + yyj4018++ + if yyhl4018 { + yyb4018 = yyj4018 > l } else { - yyb4013 = r.CheckBreak() + yyb4018 = r.CheckBreak() } - if yyb4013 { + if yyb4018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50387,21 +50435,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4015 := &x.Used - yyv4015.CodecDecodeSelf(d) + yyv4020 := &x.Used + yyv4020.CodecDecodeSelf(d) } for { - yyj4013++ - if yyhl4013 { - yyb4013 = yyj4013 > l + yyj4018++ + if yyhl4018 { + yyb4018 = yyj4018 > l } else { - yyb4013 = r.CheckBreak() + yyb4018 = r.CheckBreak() } - if yyb4013 { + if yyb4018 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4013-1, "") + z.DecStructFieldNotFound(yyj4018-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50413,39 +50461,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4016 := z.EncBinary() - _ = yym4016 + yym4021 := z.EncBinary() + _ = yym4021 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4017 := !z.EncBinary() - yy2arr4017 := z.EncBasicHandle().StructToArray - var yyq4017 [5]bool - _, _, _ = yysep4017, yyq4017, yy2arr4017 - const yyr4017 bool = false - yyq4017[0] = x.Kind != "" - yyq4017[1] = x.APIVersion != "" - yyq4017[2] = true - yyq4017[3] = true - yyq4017[4] = true - var yynn4017 int - if yyr4017 || yy2arr4017 { + yysep4022 := !z.EncBinary() + yy2arr4022 := z.EncBasicHandle().StructToArray + var yyq4022 [5]bool + _, _, _ = yysep4022, yyq4022, yy2arr4022 + const yyr4022 bool = false + yyq4022[0] = x.Kind != "" + yyq4022[1] = x.APIVersion != "" + yyq4022[2] = true + yyq4022[3] = true + yyq4022[4] = true + var yynn4022 int + if yyr4022 || yy2arr4022 { r.EncodeArrayStart(5) } else { - yynn4017 = 0 - for _, b := range yyq4017 { + yynn4022 = 0 + for _, b := range yyq4022 { if b { - yynn4017++ + yynn4022++ } } - r.EncodeMapStart(yynn4017) - yynn4017 = 0 + r.EncodeMapStart(yynn4022) + yynn4022 = 0 } - if yyr4017 || yy2arr4017 { + if yyr4022 || yy2arr4022 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4017[0] { - yym4019 := z.EncBinary() - _ = yym4019 + if yyq4022[0] { + yym4024 := z.EncBinary() + _ = yym4024 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50454,23 +50502,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4017[0] { + if yyq4022[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4020 := z.EncBinary() - _ = yym4020 + yym4025 := z.EncBinary() + _ = yym4025 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4017 || yy2arr4017 { + if yyr4022 || yy2arr4022 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4017[1] { - yym4022 := z.EncBinary() - _ = yym4022 + if yyq4022[1] { + yym4027 := z.EncBinary() + _ = yym4027 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50479,70 +50527,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4017[1] { + if yyq4022[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4023 := z.EncBinary() - _ = yym4023 + yym4028 := z.EncBinary() + _ = yym4028 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4017 || yy2arr4017 { + if yyr4022 || yy2arr4022 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4017[2] { - yy4025 := &x.ObjectMeta - yy4025.CodecEncodeSelf(e) + if yyq4022[2] { + yy4030 := &x.ObjectMeta + yy4030.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4017[2] { + if yyq4022[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4026 := &x.ObjectMeta - yy4026.CodecEncodeSelf(e) + yy4031 := &x.ObjectMeta + yy4031.CodecEncodeSelf(e) } } - if yyr4017 || yy2arr4017 { + if yyr4022 || yy2arr4022 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4017[3] { - yy4028 := &x.Spec - yy4028.CodecEncodeSelf(e) + if yyq4022[3] { + yy4033 := &x.Spec + yy4033.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4017[3] { + if yyq4022[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4029 := &x.Spec - yy4029.CodecEncodeSelf(e) + yy4034 := &x.Spec + yy4034.CodecEncodeSelf(e) } } - if yyr4017 || yy2arr4017 { + if yyr4022 || yy2arr4022 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4017[4] { - yy4031 := &x.Status - yy4031.CodecEncodeSelf(e) + if yyq4022[4] { + yy4036 := &x.Status + yy4036.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4017[4] { + if yyq4022[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4032 := &x.Status - yy4032.CodecEncodeSelf(e) + yy4037 := &x.Status + yy4037.CodecEncodeSelf(e) } } - if yyr4017 || yy2arr4017 { + if yyr4022 || yy2arr4022 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50555,25 +50603,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4033 := z.DecBinary() - _ = yym4033 + yym4038 := z.DecBinary() + _ = yym4038 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4034 := r.ContainerType() - if yyct4034 == codecSelferValueTypeMap1234 { - yyl4034 := r.ReadMapStart() - if yyl4034 == 0 { + yyct4039 := r.ContainerType() + if yyct4039 == codecSelferValueTypeMap1234 { + yyl4039 := r.ReadMapStart() + if yyl4039 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4034, d) + x.codecDecodeSelfFromMap(yyl4039, d) } - } else if yyct4034 == codecSelferValueTypeArray1234 { - yyl4034 := r.ReadArrayStart() - if yyl4034 == 0 { + } else if yyct4039 == codecSelferValueTypeArray1234 { + yyl4039 := r.ReadArrayStart() + if yyl4039 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4034, d) + x.codecDecodeSelfFromArray(yyl4039, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50585,12 +50633,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4035Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4035Slc - var yyhl4035 bool = l >= 0 - for yyj4035 := 0; ; yyj4035++ { - if yyhl4035 { - if yyj4035 >= l { + var yys4040Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4040Slc + var yyhl4040 bool = l >= 0 + for yyj4040 := 0; ; yyj4040++ { + if yyhl4040 { + if yyj4040 >= l { break } } else { @@ -50599,10 +50647,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4035Slc = r.DecodeBytes(yys4035Slc, true, true) - yys4035 := string(yys4035Slc) + yys4040Slc = r.DecodeBytes(yys4040Slc, true, true) + yys4040 := string(yys4040Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4035 { + switch yys4040 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50619,27 +50667,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4038 := &x.ObjectMeta - yyv4038.CodecDecodeSelf(d) + yyv4043 := &x.ObjectMeta + yyv4043.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4039 := &x.Spec - yyv4039.CodecDecodeSelf(d) + yyv4044 := &x.Spec + yyv4044.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4040 := &x.Status - yyv4040.CodecDecodeSelf(d) + yyv4045 := &x.Status + yyv4045.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4035) - } // end switch yys4035 - } // end for yyj4035 + z.DecStructFieldNotFound(-1, yys4040) + } // end switch yys4040 + } // end for yyj4040 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50647,16 +50695,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4041 int - var yyb4041 bool - var yyhl4041 bool = l >= 0 - yyj4041++ - if yyhl4041 { - yyb4041 = yyj4041 > l + var yyj4046 int + var yyb4046 bool + var yyhl4046 bool = l >= 0 + yyj4046++ + if yyhl4046 { + yyb4046 = yyj4046 > l } else { - yyb4041 = r.CheckBreak() + yyb4046 = r.CheckBreak() } - if yyb4041 { + if yyb4046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50666,13 +50714,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4041++ - if yyhl4041 { - yyb4041 = yyj4041 > l + yyj4046++ + if yyhl4046 { + yyb4046 = yyj4046 > l } else { - yyb4041 = r.CheckBreak() + yyb4046 = r.CheckBreak() } - if yyb4041 { + if yyb4046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50682,13 +50730,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4041++ - if yyhl4041 { - yyb4041 = yyj4041 > l + yyj4046++ + if yyhl4046 { + yyb4046 = yyj4046 > l } else { - yyb4041 = r.CheckBreak() + yyb4046 = r.CheckBreak() } - if yyb4041 { + if yyb4046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50696,16 +50744,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4044 := &x.ObjectMeta - yyv4044.CodecDecodeSelf(d) + yyv4049 := &x.ObjectMeta + yyv4049.CodecDecodeSelf(d) } - yyj4041++ - if yyhl4041 { - yyb4041 = yyj4041 > l + yyj4046++ + if yyhl4046 { + yyb4046 = yyj4046 > l } else { - yyb4041 = r.CheckBreak() + yyb4046 = r.CheckBreak() } - if yyb4041 { + if yyb4046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50713,16 +50761,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4045 := &x.Spec - yyv4045.CodecDecodeSelf(d) + yyv4050 := &x.Spec + yyv4050.CodecDecodeSelf(d) } - yyj4041++ - if yyhl4041 { - yyb4041 = yyj4041 > l + yyj4046++ + if yyhl4046 { + yyb4046 = yyj4046 > l } else { - yyb4041 = r.CheckBreak() + yyb4046 = r.CheckBreak() } - if yyb4041 { + if yyb4046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50730,21 +50778,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4046 := &x.Status - yyv4046.CodecDecodeSelf(d) + yyv4051 := &x.Status + yyv4051.CodecDecodeSelf(d) } for { - yyj4041++ - if yyhl4041 { - yyb4041 = yyj4041 > l + yyj4046++ + if yyhl4046 { + yyb4046 = yyj4046 > l } else { - yyb4041 = r.CheckBreak() + yyb4046 = r.CheckBreak() } - if yyb4041 { + if yyb4046 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4041-1, "") + z.DecStructFieldNotFound(yyj4046-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50756,37 +50804,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4047 := z.EncBinary() - _ = yym4047 + yym4052 := z.EncBinary() + _ = yym4052 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4048 := !z.EncBinary() - yy2arr4048 := z.EncBasicHandle().StructToArray - var yyq4048 [4]bool - _, _, _ = yysep4048, yyq4048, yy2arr4048 - const yyr4048 bool = false - yyq4048[0] = x.Kind != "" - yyq4048[1] = x.APIVersion != "" - yyq4048[2] = true - var yynn4048 int - if yyr4048 || yy2arr4048 { + yysep4053 := !z.EncBinary() + yy2arr4053 := z.EncBasicHandle().StructToArray + var yyq4053 [4]bool + _, _, _ = yysep4053, yyq4053, yy2arr4053 + const yyr4053 bool = false + yyq4053[0] = x.Kind != "" + yyq4053[1] = x.APIVersion != "" + yyq4053[2] = true + var yynn4053 int + if yyr4053 || yy2arr4053 { r.EncodeArrayStart(4) } else { - yynn4048 = 1 - for _, b := range yyq4048 { + yynn4053 = 1 + for _, b := range yyq4053 { if b { - yynn4048++ + yynn4053++ } } - r.EncodeMapStart(yynn4048) - yynn4048 = 0 + r.EncodeMapStart(yynn4053) + yynn4053 = 0 } - if yyr4048 || yy2arr4048 { + if yyr4053 || yy2arr4053 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4048[0] { - yym4050 := z.EncBinary() - _ = yym4050 + if yyq4053[0] { + yym4055 := z.EncBinary() + _ = yym4055 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50795,23 +50843,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4048[0] { + if yyq4053[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4051 := z.EncBinary() - _ = yym4051 + yym4056 := z.EncBinary() + _ = yym4056 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4048 || yy2arr4048 { + if yyr4053 || yy2arr4053 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4048[1] { - yym4053 := z.EncBinary() - _ = yym4053 + if yyq4053[1] { + yym4058 := z.EncBinary() + _ = yym4058 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50820,54 +50868,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4048[1] { + if yyq4053[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4054 := z.EncBinary() - _ = yym4054 + yym4059 := z.EncBinary() + _ = yym4059 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4048 || yy2arr4048 { + if yyr4053 || yy2arr4053 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4048[2] { - yy4056 := &x.ListMeta - yym4057 := z.EncBinary() - _ = yym4057 + if yyq4053[2] { + yy4061 := &x.ListMeta + yym4062 := z.EncBinary() + _ = yym4062 if false { - } else if z.HasExtensions() && z.EncExt(yy4056) { + } else if z.HasExtensions() && z.EncExt(yy4061) { } else { - z.EncFallback(yy4056) + z.EncFallback(yy4061) } } else { r.EncodeNil() } } else { - if yyq4048[2] { + if yyq4053[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4058 := &x.ListMeta - yym4059 := z.EncBinary() - _ = yym4059 + 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) } } } - if yyr4048 || yy2arr4048 { + if yyr4053 || yy2arr4053 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4061 := z.EncBinary() - _ = yym4061 + yym4066 := z.EncBinary() + _ = yym4066 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -50880,15 +50928,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4062 := z.EncBinary() - _ = yym4062 + yym4067 := z.EncBinary() + _ = yym4067 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4048 || yy2arr4048 { + if yyr4053 || yy2arr4053 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50901,25 +50949,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4063 := z.DecBinary() - _ = yym4063 + yym4068 := z.DecBinary() + _ = yym4068 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4064 := r.ContainerType() - if yyct4064 == codecSelferValueTypeMap1234 { - yyl4064 := r.ReadMapStart() - if yyl4064 == 0 { + yyct4069 := r.ContainerType() + if yyct4069 == codecSelferValueTypeMap1234 { + yyl4069 := r.ReadMapStart() + if yyl4069 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4064, d) + x.codecDecodeSelfFromMap(yyl4069, d) } - } else if yyct4064 == codecSelferValueTypeArray1234 { - yyl4064 := r.ReadArrayStart() - if yyl4064 == 0 { + } else if yyct4069 == codecSelferValueTypeArray1234 { + yyl4069 := r.ReadArrayStart() + if yyl4069 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4064, d) + x.codecDecodeSelfFromArray(yyl4069, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50931,12 +50979,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4065Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4065Slc - var yyhl4065 bool = l >= 0 - for yyj4065 := 0; ; yyj4065++ { - if yyhl4065 { - if yyj4065 >= l { + var yys4070Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4070Slc + var yyhl4070 bool = l >= 0 + for yyj4070 := 0; ; yyj4070++ { + if yyhl4070 { + if yyj4070 >= l { break } } else { @@ -50945,10 +50993,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4065Slc = r.DecodeBytes(yys4065Slc, true, true) - yys4065 := string(yys4065Slc) + yys4070Slc = r.DecodeBytes(yys4070Slc, true, true) + yys4070 := string(yys4070Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4065 { + switch yys4070 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50965,31 +51013,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4068 := &x.ListMeta - yym4069 := z.DecBinary() - _ = yym4069 + yyv4073 := &x.ListMeta + yym4074 := z.DecBinary() + _ = yym4074 if false { - } else if z.HasExtensions() && z.DecExt(yyv4068) { + } else if z.HasExtensions() && z.DecExt(yyv4073) { } else { - z.DecFallback(yyv4068, false) + z.DecFallback(yyv4073, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4070 := &x.Items - yym4071 := z.DecBinary() - _ = yym4071 + yyv4075 := &x.Items + yym4076 := z.DecBinary() + _ = yym4076 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4070), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4075), d) } } default: - z.DecStructFieldNotFound(-1, yys4065) - } // end switch yys4065 - } // end for yyj4065 + z.DecStructFieldNotFound(-1, yys4070) + } // end switch yys4070 + } // end for yyj4070 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50997,16 +51045,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4072 int - var yyb4072 bool - var yyhl4072 bool = l >= 0 - yyj4072++ - if yyhl4072 { - yyb4072 = yyj4072 > l + var yyj4077 int + var yyb4077 bool + var yyhl4077 bool = l >= 0 + yyj4077++ + if yyhl4077 { + yyb4077 = yyj4077 > l } else { - yyb4072 = r.CheckBreak() + yyb4077 = r.CheckBreak() } - if yyb4072 { + if yyb4077 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51016,13 +51064,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4072++ - if yyhl4072 { - yyb4072 = yyj4072 > l + yyj4077++ + if yyhl4077 { + yyb4077 = yyj4077 > l } else { - yyb4072 = r.CheckBreak() + yyb4077 = r.CheckBreak() } - if yyb4072 { + if yyb4077 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51032,13 +51080,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4072++ - if yyhl4072 { - yyb4072 = yyj4072 > l + yyj4077++ + if yyhl4077 { + yyb4077 = yyj4077 > l } else { - yyb4072 = r.CheckBreak() + yyb4077 = r.CheckBreak() } - if yyb4072 { + if yyb4077 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51046,22 +51094,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4075 := &x.ListMeta - yym4076 := z.DecBinary() - _ = yym4076 + yyv4080 := &x.ListMeta + yym4081 := z.DecBinary() + _ = yym4081 if false { - } else if z.HasExtensions() && z.DecExt(yyv4075) { + } else if z.HasExtensions() && z.DecExt(yyv4080) { } else { - z.DecFallback(yyv4075, false) + z.DecFallback(yyv4080, false) } } - yyj4072++ - if yyhl4072 { - yyb4072 = yyj4072 > l + yyj4077++ + if yyhl4077 { + yyb4077 = yyj4077 > l } else { - yyb4072 = r.CheckBreak() + yyb4077 = r.CheckBreak() } - if yyb4072 { + if yyb4077 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51069,26 +51117,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4077 := &x.Items - yym4078 := z.DecBinary() - _ = yym4078 + yyv4082 := &x.Items + yym4083 := z.DecBinary() + _ = yym4083 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4077), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4082), d) } } for { - yyj4072++ - if yyhl4072 { - yyb4072 = yyj4072 > l + yyj4077++ + if yyhl4077 { + yyb4077 = yyj4077 > l } else { - yyb4072 = r.CheckBreak() + yyb4077 = r.CheckBreak() } - if yyb4072 { + if yyb4077 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4072-1, "") + z.DecStructFieldNotFound(yyj4077-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51100,40 +51148,40 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4079 := z.EncBinary() - _ = yym4079 + yym4084 := z.EncBinary() + _ = yym4084 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4080 := !z.EncBinary() - yy2arr4080 := z.EncBasicHandle().StructToArray - var yyq4080 [6]bool - _, _, _ = yysep4080, yyq4080, yy2arr4080 - const yyr4080 bool = false - yyq4080[0] = x.Kind != "" - yyq4080[1] = x.APIVersion != "" - yyq4080[2] = true - yyq4080[3] = len(x.Data) != 0 - yyq4080[4] = len(x.StringData) != 0 - yyq4080[5] = x.Type != "" - var yynn4080 int - if yyr4080 || yy2arr4080 { + yysep4085 := !z.EncBinary() + yy2arr4085 := z.EncBasicHandle().StructToArray + var yyq4085 [6]bool + _, _, _ = yysep4085, yyq4085, yy2arr4085 + const yyr4085 bool = false + yyq4085[0] = x.Kind != "" + yyq4085[1] = x.APIVersion != "" + yyq4085[2] = true + yyq4085[3] = len(x.Data) != 0 + yyq4085[4] = len(x.StringData) != 0 + yyq4085[5] = x.Type != "" + var yynn4085 int + if yyr4085 || yy2arr4085 { r.EncodeArrayStart(6) } else { - yynn4080 = 0 - for _, b := range yyq4080 { + yynn4085 = 0 + for _, b := range yyq4085 { if b { - yynn4080++ + yynn4085++ } } - r.EncodeMapStart(yynn4080) - yynn4080 = 0 + r.EncodeMapStart(yynn4085) + yynn4085 = 0 } - if yyr4080 || yy2arr4080 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4080[0] { - yym4082 := z.EncBinary() - _ = yym4082 + if yyq4085[0] { + yym4087 := z.EncBinary() + _ = yym4087 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51142,23 +51190,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4080[0] { + if yyq4085[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4083 := z.EncBinary() - _ = yym4083 + yym4088 := z.EncBinary() + _ = yym4088 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4080 || yy2arr4080 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4080[1] { - yym4085 := z.EncBinary() - _ = yym4085 + if yyq4085[1] { + yym4090 := z.EncBinary() + _ = yym4090 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51167,43 +51215,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4080[1] { + if yyq4085[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4086 := z.EncBinary() - _ = yym4086 + yym4091 := z.EncBinary() + _ = yym4091 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4080 || yy2arr4080 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4080[2] { - yy4088 := &x.ObjectMeta - yy4088.CodecEncodeSelf(e) + if yyq4085[2] { + yy4093 := &x.ObjectMeta + yy4093.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4080[2] { + if yyq4085[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4089 := &x.ObjectMeta - yy4089.CodecEncodeSelf(e) + yy4094 := &x.ObjectMeta + yy4094.CodecEncodeSelf(e) } } - if yyr4080 || yy2arr4080 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4080[3] { + if yyq4085[3] { if x.Data == nil { r.EncodeNil() } else { - yym4091 := z.EncBinary() - _ = yym4091 + yym4096 := z.EncBinary() + _ = yym4096 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51213,15 +51261,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4080[3] { + if yyq4085[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4092 := z.EncBinary() - _ = yym4092 + yym4097 := z.EncBinary() + _ = yym4097 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51229,14 +51277,14 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4080 || yy2arr4080 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4080[4] { + if yyq4085[4] { if x.StringData == nil { r.EncodeNil() } else { - yym4094 := z.EncBinary() - _ = yym4094 + yym4099 := z.EncBinary() + _ = yym4099 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -51246,15 +51294,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4080[4] { + if yyq4085[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stringData")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StringData == nil { r.EncodeNil() } else { - yym4095 := z.EncBinary() - _ = yym4095 + yym4100 := z.EncBinary() + _ = yym4100 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -51262,22 +51310,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4080 || yy2arr4080 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4080[5] { + if yyq4085[5] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4080[5] { + if yyq4085[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4080 || yy2arr4080 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51290,25 +51338,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4097 := z.DecBinary() - _ = yym4097 + yym4102 := z.DecBinary() + _ = yym4102 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4098 := r.ContainerType() - if yyct4098 == codecSelferValueTypeMap1234 { - yyl4098 := r.ReadMapStart() - if yyl4098 == 0 { + yyct4103 := r.ContainerType() + if yyct4103 == codecSelferValueTypeMap1234 { + yyl4103 := r.ReadMapStart() + if yyl4103 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4098, d) + x.codecDecodeSelfFromMap(yyl4103, d) } - } else if yyct4098 == codecSelferValueTypeArray1234 { - yyl4098 := r.ReadArrayStart() - if yyl4098 == 0 { + } else if yyct4103 == codecSelferValueTypeArray1234 { + yyl4103 := r.ReadArrayStart() + if yyl4103 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4098, d) + x.codecDecodeSelfFromArray(yyl4103, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51320,12 +51368,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4099Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4099Slc - var yyhl4099 bool = l >= 0 - for yyj4099 := 0; ; yyj4099++ { - if yyhl4099 { - if yyj4099 >= l { + var yys4104Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4104Slc + var yyhl4104 bool = l >= 0 + for yyj4104 := 0; ; yyj4104++ { + if yyhl4104 { + if yyj4104 >= l { break } } else { @@ -51334,10 +51382,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4099Slc = r.DecodeBytes(yys4099Slc, true, true) - yys4099 := string(yys4099Slc) + yys4104Slc = r.DecodeBytes(yys4104Slc, true, true) + yys4104 := string(yys4104Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4099 { + switch yys4104 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51354,31 +51402,31 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4102 := &x.ObjectMeta - yyv4102.CodecDecodeSelf(d) + yyv4107 := &x.ObjectMeta + yyv4107.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4103 := &x.Data - yym4104 := z.DecBinary() - _ = yym4104 + yyv4108 := &x.Data + yym4109 := z.DecBinary() + _ = yym4109 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4103), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4108), d) } } case "stringData": if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4105 := &x.StringData - yym4106 := z.DecBinary() - _ = yym4106 + yyv4110 := &x.StringData + yym4111 := z.DecBinary() + _ = yym4111 if false { } else { - z.F.DecMapStringStringX(yyv4105, false, d) + z.F.DecMapStringStringX(yyv4110, false, d) } } case "type": @@ -51388,9 +51436,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4099) - } // end switch yys4099 - } // end for yyj4099 + z.DecStructFieldNotFound(-1, yys4104) + } // end switch yys4104 + } // end for yyj4104 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51398,16 +51446,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4108 int - var yyb4108 bool - var yyhl4108 bool = l >= 0 - yyj4108++ - if yyhl4108 { - yyb4108 = yyj4108 > l + var yyj4113 int + var yyb4113 bool + var yyhl4113 bool = l >= 0 + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4108 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4108 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51417,13 +51465,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4108++ - if yyhl4108 { - yyb4108 = yyj4108 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4108 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4108 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51433,13 +51481,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4108++ - if yyhl4108 { - yyb4108 = yyj4108 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4108 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4108 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51447,16 +51495,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4111 := &x.ObjectMeta - yyv4111.CodecDecodeSelf(d) + yyv4116 := &x.ObjectMeta + yyv4116.CodecDecodeSelf(d) } - yyj4108++ - if yyhl4108 { - yyb4108 = yyj4108 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4108 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4108 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51464,21 +51512,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4112 := &x.Data - yym4113 := z.DecBinary() - _ = yym4113 + yyv4117 := &x.Data + yym4118 := z.DecBinary() + _ = yym4118 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4112), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4117), d) } } - yyj4108++ - if yyhl4108 { - yyb4108 = yyj4108 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4108 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4108 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51486,21 +51534,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4114 := &x.StringData - yym4115 := z.DecBinary() - _ = yym4115 + yyv4119 := &x.StringData + yym4120 := z.DecBinary() + _ = yym4120 if false { } else { - z.F.DecMapStringStringX(yyv4114, false, d) + z.F.DecMapStringStringX(yyv4119, false, d) } } - yyj4108++ - if yyhl4108 { - yyb4108 = yyj4108 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4108 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4108 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51511,17 +51559,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4108++ - if yyhl4108 { - yyb4108 = yyj4108 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4108 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4108 { + if yyb4113 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4108-1, "") + z.DecStructFieldNotFound(yyj4113-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51530,8 +51578,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4117 := z.EncBinary() - _ = yym4117 + yym4122 := z.EncBinary() + _ = yym4122 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51543,8 +51591,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4118 := z.DecBinary() - _ = yym4118 + yym4123 := z.DecBinary() + _ = yym4123 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51559,37 +51607,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4119 := z.EncBinary() - _ = yym4119 + yym4124 := z.EncBinary() + _ = yym4124 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4120 := !z.EncBinary() - yy2arr4120 := z.EncBasicHandle().StructToArray - var yyq4120 [4]bool - _, _, _ = yysep4120, yyq4120, yy2arr4120 - const yyr4120 bool = false - yyq4120[0] = x.Kind != "" - yyq4120[1] = x.APIVersion != "" - yyq4120[2] = true - var yynn4120 int - if yyr4120 || yy2arr4120 { + yysep4125 := !z.EncBinary() + yy2arr4125 := z.EncBasicHandle().StructToArray + var yyq4125 [4]bool + _, _, _ = yysep4125, yyq4125, yy2arr4125 + const yyr4125 bool = false + yyq4125[0] = x.Kind != "" + yyq4125[1] = x.APIVersion != "" + yyq4125[2] = true + var yynn4125 int + if yyr4125 || yy2arr4125 { r.EncodeArrayStart(4) } else { - yynn4120 = 1 - for _, b := range yyq4120 { + yynn4125 = 1 + for _, b := range yyq4125 { if b { - yynn4120++ + yynn4125++ } } - r.EncodeMapStart(yynn4120) - yynn4120 = 0 + r.EncodeMapStart(yynn4125) + yynn4125 = 0 } - if yyr4120 || yy2arr4120 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4120[0] { - yym4122 := z.EncBinary() - _ = yym4122 + if yyq4125[0] { + yym4127 := z.EncBinary() + _ = yym4127 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51598,23 +51646,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4120[0] { + if yyq4125[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4123 := z.EncBinary() - _ = yym4123 + yym4128 := z.EncBinary() + _ = yym4128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4120 || yy2arr4120 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4120[1] { - yym4125 := z.EncBinary() - _ = yym4125 + if yyq4125[1] { + yym4130 := z.EncBinary() + _ = yym4130 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51623,54 +51671,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4120[1] { + if yyq4125[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4126 := z.EncBinary() - _ = yym4126 + yym4131 := z.EncBinary() + _ = yym4131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4120 || yy2arr4120 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4120[2] { - yy4128 := &x.ListMeta - yym4129 := z.EncBinary() - _ = yym4129 + if yyq4125[2] { + yy4133 := &x.ListMeta + yym4134 := z.EncBinary() + _ = yym4134 if false { - } else if z.HasExtensions() && z.EncExt(yy4128) { + } else if z.HasExtensions() && z.EncExt(yy4133) { } else { - z.EncFallback(yy4128) + z.EncFallback(yy4133) } } else { r.EncodeNil() } } else { - if yyq4120[2] { + if yyq4125[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4130 := &x.ListMeta - yym4131 := z.EncBinary() - _ = yym4131 + yy4135 := &x.ListMeta + yym4136 := z.EncBinary() + _ = yym4136 if false { - } else if z.HasExtensions() && z.EncExt(yy4130) { + } else if z.HasExtensions() && z.EncExt(yy4135) { } else { - z.EncFallback(yy4130) + z.EncFallback(yy4135) } } } - if yyr4120 || yy2arr4120 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4133 := z.EncBinary() - _ = yym4133 + yym4138 := z.EncBinary() + _ = yym4138 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -51683,15 +51731,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4134 := z.EncBinary() - _ = yym4134 + yym4139 := z.EncBinary() + _ = yym4139 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4120 || yy2arr4120 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51704,25 +51752,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4135 := z.DecBinary() - _ = yym4135 + yym4140 := z.DecBinary() + _ = yym4140 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4136 := r.ContainerType() - if yyct4136 == codecSelferValueTypeMap1234 { - yyl4136 := r.ReadMapStart() - if yyl4136 == 0 { + yyct4141 := r.ContainerType() + if yyct4141 == codecSelferValueTypeMap1234 { + yyl4141 := r.ReadMapStart() + if yyl4141 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4136, d) + x.codecDecodeSelfFromMap(yyl4141, d) } - } else if yyct4136 == codecSelferValueTypeArray1234 { - yyl4136 := r.ReadArrayStart() - if yyl4136 == 0 { + } else if yyct4141 == codecSelferValueTypeArray1234 { + yyl4141 := r.ReadArrayStart() + if yyl4141 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4136, d) + x.codecDecodeSelfFromArray(yyl4141, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51734,12 +51782,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4137Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4137Slc - var yyhl4137 bool = l >= 0 - for yyj4137 := 0; ; yyj4137++ { - if yyhl4137 { - if yyj4137 >= l { + var yys4142Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4142Slc + var yyhl4142 bool = l >= 0 + for yyj4142 := 0; ; yyj4142++ { + if yyhl4142 { + if yyj4142 >= l { break } } else { @@ -51748,10 +51796,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4137Slc = r.DecodeBytes(yys4137Slc, true, true) - yys4137 := string(yys4137Slc) + yys4142Slc = r.DecodeBytes(yys4142Slc, true, true) + yys4142 := string(yys4142Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4137 { + switch yys4142 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51768,31 +51816,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4140 := &x.ListMeta - yym4141 := z.DecBinary() - _ = yym4141 + yyv4145 := &x.ListMeta + yym4146 := z.DecBinary() + _ = yym4146 if false { - } else if z.HasExtensions() && z.DecExt(yyv4140) { + } else if z.HasExtensions() && z.DecExt(yyv4145) { } else { - z.DecFallback(yyv4140, false) + z.DecFallback(yyv4145, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4142 := &x.Items - yym4143 := z.DecBinary() - _ = yym4143 + yyv4147 := &x.Items + yym4148 := z.DecBinary() + _ = yym4148 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4142), d) + h.decSliceSecret((*[]Secret)(yyv4147), d) } } default: - z.DecStructFieldNotFound(-1, yys4137) - } // end switch yys4137 - } // end for yyj4137 + z.DecStructFieldNotFound(-1, yys4142) + } // end switch yys4142 + } // end for yyj4142 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51800,16 +51848,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4144 int - var yyb4144 bool - var yyhl4144 bool = l >= 0 - yyj4144++ - if yyhl4144 { - yyb4144 = yyj4144 > l + var yyj4149 int + var yyb4149 bool + var yyhl4149 bool = l >= 0 + yyj4149++ + if yyhl4149 { + yyb4149 = yyj4149 > l } else { - yyb4144 = r.CheckBreak() + yyb4149 = r.CheckBreak() } - if yyb4144 { + if yyb4149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51819,13 +51867,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4144++ - if yyhl4144 { - yyb4144 = yyj4144 > l + yyj4149++ + if yyhl4149 { + yyb4149 = yyj4149 > l } else { - yyb4144 = r.CheckBreak() + yyb4149 = r.CheckBreak() } - if yyb4144 { + if yyb4149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51835,13 +51883,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4144++ - if yyhl4144 { - yyb4144 = yyj4144 > l + yyj4149++ + if yyhl4149 { + yyb4149 = yyj4149 > l } else { - yyb4144 = r.CheckBreak() + yyb4149 = r.CheckBreak() } - if yyb4144 { + if yyb4149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51849,22 +51897,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4147 := &x.ListMeta - yym4148 := z.DecBinary() - _ = yym4148 + yyv4152 := &x.ListMeta + yym4153 := z.DecBinary() + _ = yym4153 if false { - } else if z.HasExtensions() && z.DecExt(yyv4147) { + } else if z.HasExtensions() && z.DecExt(yyv4152) { } else { - z.DecFallback(yyv4147, false) + z.DecFallback(yyv4152, false) } } - yyj4144++ - if yyhl4144 { - yyb4144 = yyj4144 > l + yyj4149++ + if yyhl4149 { + yyb4149 = yyj4149 > l } else { - yyb4144 = r.CheckBreak() + yyb4149 = r.CheckBreak() } - if yyb4144 { + if yyb4149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51872,26 +51920,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4149 := &x.Items - yym4150 := z.DecBinary() - _ = yym4150 + yyv4154 := &x.Items + yym4155 := z.DecBinary() + _ = yym4155 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4149), d) + h.decSliceSecret((*[]Secret)(yyv4154), d) } } for { - yyj4144++ - if yyhl4144 { - yyb4144 = yyj4144 > l + yyj4149++ + if yyhl4149 { + yyb4149 = yyj4149 > l } else { - yyb4144 = r.CheckBreak() + yyb4149 = r.CheckBreak() } - if yyb4144 { + if yyb4149 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4144-1, "") + z.DecStructFieldNotFound(yyj4149-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51903,38 +51951,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4151 := z.EncBinary() - _ = yym4151 + yym4156 := z.EncBinary() + _ = yym4156 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4152 := !z.EncBinary() - yy2arr4152 := z.EncBasicHandle().StructToArray - var yyq4152 [4]bool - _, _, _ = yysep4152, yyq4152, yy2arr4152 - const yyr4152 bool = false - yyq4152[0] = x.Kind != "" - yyq4152[1] = x.APIVersion != "" - yyq4152[2] = true - yyq4152[3] = len(x.Data) != 0 - var yynn4152 int - if yyr4152 || yy2arr4152 { + yysep4157 := !z.EncBinary() + yy2arr4157 := z.EncBasicHandle().StructToArray + var yyq4157 [4]bool + _, _, _ = yysep4157, yyq4157, yy2arr4157 + const yyr4157 bool = false + yyq4157[0] = x.Kind != "" + yyq4157[1] = x.APIVersion != "" + yyq4157[2] = true + yyq4157[3] = len(x.Data) != 0 + var yynn4157 int + if yyr4157 || yy2arr4157 { r.EncodeArrayStart(4) } else { - yynn4152 = 0 - for _, b := range yyq4152 { + yynn4157 = 0 + for _, b := range yyq4157 { if b { - yynn4152++ + yynn4157++ } } - r.EncodeMapStart(yynn4152) - yynn4152 = 0 + r.EncodeMapStart(yynn4157) + yynn4157 = 0 } - if yyr4152 || yy2arr4152 { + if yyr4157 || yy2arr4157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4152[0] { - yym4154 := z.EncBinary() - _ = yym4154 + if yyq4157[0] { + yym4159 := z.EncBinary() + _ = yym4159 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51943,23 +51991,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4152[0] { + if yyq4157[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4155 := z.EncBinary() - _ = yym4155 + yym4160 := z.EncBinary() + _ = yym4160 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4152 || yy2arr4152 { + if yyr4157 || yy2arr4157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4152[1] { - yym4157 := z.EncBinary() - _ = yym4157 + if yyq4157[1] { + yym4162 := z.EncBinary() + _ = yym4162 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51968,43 +52016,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4152[1] { + if yyq4157[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4158 := z.EncBinary() - _ = yym4158 + yym4163 := z.EncBinary() + _ = yym4163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4152 || yy2arr4152 { + if yyr4157 || yy2arr4157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4152[2] { - yy4160 := &x.ObjectMeta - yy4160.CodecEncodeSelf(e) + if yyq4157[2] { + yy4165 := &x.ObjectMeta + yy4165.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4152[2] { + if yyq4157[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4161 := &x.ObjectMeta - yy4161.CodecEncodeSelf(e) + yy4166 := &x.ObjectMeta + yy4166.CodecEncodeSelf(e) } } - if yyr4152 || yy2arr4152 { + if yyr4157 || yy2arr4157 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4152[3] { + if yyq4157[3] { if x.Data == nil { r.EncodeNil() } else { - yym4163 := z.EncBinary() - _ = yym4163 + yym4168 := z.EncBinary() + _ = yym4168 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -52014,15 +52062,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4152[3] { + if yyq4157[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4164 := z.EncBinary() - _ = yym4164 + yym4169 := z.EncBinary() + _ = yym4169 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -52030,7 +52078,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4152 || yy2arr4152 { + if yyr4157 || yy2arr4157 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52043,25 +52091,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4165 := z.DecBinary() - _ = yym4165 + yym4170 := z.DecBinary() + _ = yym4170 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4166 := r.ContainerType() - if yyct4166 == codecSelferValueTypeMap1234 { - yyl4166 := r.ReadMapStart() - if yyl4166 == 0 { + yyct4171 := r.ContainerType() + if yyct4171 == codecSelferValueTypeMap1234 { + yyl4171 := r.ReadMapStart() + if yyl4171 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4166, d) + x.codecDecodeSelfFromMap(yyl4171, d) } - } else if yyct4166 == codecSelferValueTypeArray1234 { - yyl4166 := r.ReadArrayStart() - if yyl4166 == 0 { + } else if yyct4171 == codecSelferValueTypeArray1234 { + yyl4171 := r.ReadArrayStart() + if yyl4171 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4166, d) + x.codecDecodeSelfFromArray(yyl4171, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52073,12 +52121,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4167Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4167Slc - var yyhl4167 bool = l >= 0 - for yyj4167 := 0; ; yyj4167++ { - if yyhl4167 { - if yyj4167 >= l { + var yys4172Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4172Slc + var yyhl4172 bool = l >= 0 + for yyj4172 := 0; ; yyj4172++ { + if yyhl4172 { + if yyj4172 >= l { break } } else { @@ -52087,10 +52135,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4167Slc = r.DecodeBytes(yys4167Slc, true, true) - yys4167 := string(yys4167Slc) + yys4172Slc = r.DecodeBytes(yys4172Slc, true, true) + yys4172 := string(yys4172Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4167 { + switch yys4172 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52107,25 +52155,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4170 := &x.ObjectMeta - yyv4170.CodecDecodeSelf(d) + yyv4175 := &x.ObjectMeta + yyv4175.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4171 := &x.Data - yym4172 := z.DecBinary() - _ = yym4172 + yyv4176 := &x.Data + yym4177 := z.DecBinary() + _ = yym4177 if false { } else { - z.F.DecMapStringStringX(yyv4171, false, d) + z.F.DecMapStringStringX(yyv4176, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4167) - } // end switch yys4167 - } // end for yyj4167 + z.DecStructFieldNotFound(-1, yys4172) + } // end switch yys4172 + } // end for yyj4172 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52133,16 +52181,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4173 int - var yyb4173 bool - var yyhl4173 bool = l >= 0 - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + var yyj4178 int + var yyb4178 bool + var yyhl4178 bool = l >= 0 + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52152,13 +52200,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52168,13 +52216,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52182,16 +52230,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4176 := &x.ObjectMeta - yyv4176.CodecDecodeSelf(d) + yyv4181 := &x.ObjectMeta + yyv4181.CodecDecodeSelf(d) } - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52199,26 +52247,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4177 := &x.Data - yym4178 := z.DecBinary() - _ = yym4178 + yyv4182 := &x.Data + yym4183 := z.DecBinary() + _ = yym4183 if false { } else { - z.F.DecMapStringStringX(yyv4177, false, d) + z.F.DecMapStringStringX(yyv4182, false, d) } } for { - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4173-1, "") + z.DecStructFieldNotFound(yyj4178-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52230,37 +52278,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4179 := z.EncBinary() - _ = yym4179 + yym4184 := z.EncBinary() + _ = yym4184 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4180 := !z.EncBinary() - yy2arr4180 := z.EncBasicHandle().StructToArray - var yyq4180 [4]bool - _, _, _ = yysep4180, yyq4180, yy2arr4180 - const yyr4180 bool = false - yyq4180[0] = x.Kind != "" - yyq4180[1] = x.APIVersion != "" - yyq4180[2] = true - var yynn4180 int - if yyr4180 || yy2arr4180 { + yysep4185 := !z.EncBinary() + yy2arr4185 := z.EncBasicHandle().StructToArray + var yyq4185 [4]bool + _, _, _ = yysep4185, yyq4185, yy2arr4185 + const yyr4185 bool = false + yyq4185[0] = x.Kind != "" + yyq4185[1] = x.APIVersion != "" + yyq4185[2] = true + var yynn4185 int + if yyr4185 || yy2arr4185 { r.EncodeArrayStart(4) } else { - yynn4180 = 1 - for _, b := range yyq4180 { + yynn4185 = 1 + for _, b := range yyq4185 { if b { - yynn4180++ + yynn4185++ } } - r.EncodeMapStart(yynn4180) - yynn4180 = 0 + r.EncodeMapStart(yynn4185) + yynn4185 = 0 } - if yyr4180 || yy2arr4180 { + if yyr4185 || yy2arr4185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4180[0] { - yym4182 := z.EncBinary() - _ = yym4182 + if yyq4185[0] { + yym4187 := z.EncBinary() + _ = yym4187 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52269,23 +52317,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4180[0] { + if yyq4185[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4183 := z.EncBinary() - _ = yym4183 + yym4188 := z.EncBinary() + _ = yym4188 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4180 || yy2arr4180 { + if yyr4185 || yy2arr4185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4180[1] { - yym4185 := z.EncBinary() - _ = yym4185 + if yyq4185[1] { + yym4190 := z.EncBinary() + _ = yym4190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52294,54 +52342,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4180[1] { + if yyq4185[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4186 := z.EncBinary() - _ = yym4186 + yym4191 := z.EncBinary() + _ = yym4191 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4180 || yy2arr4180 { + if yyr4185 || yy2arr4185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4180[2] { - yy4188 := &x.ListMeta - yym4189 := z.EncBinary() - _ = yym4189 + if yyq4185[2] { + yy4193 := &x.ListMeta + yym4194 := z.EncBinary() + _ = yym4194 if false { - } else if z.HasExtensions() && z.EncExt(yy4188) { + } else if z.HasExtensions() && z.EncExt(yy4193) { } else { - z.EncFallback(yy4188) + z.EncFallback(yy4193) } } else { r.EncodeNil() } } else { - if yyq4180[2] { + if yyq4185[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4190 := &x.ListMeta - yym4191 := z.EncBinary() - _ = yym4191 + yy4195 := &x.ListMeta + yym4196 := z.EncBinary() + _ = yym4196 if false { - } else if z.HasExtensions() && z.EncExt(yy4190) { + } else if z.HasExtensions() && z.EncExt(yy4195) { } else { - z.EncFallback(yy4190) + z.EncFallback(yy4195) } } } - if yyr4180 || yy2arr4180 { + if yyr4185 || yy2arr4185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4193 := z.EncBinary() - _ = yym4193 + yym4198 := z.EncBinary() + _ = yym4198 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -52354,15 +52402,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4194 := z.EncBinary() - _ = yym4194 + yym4199 := z.EncBinary() + _ = yym4199 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4180 || yy2arr4180 { + if yyr4185 || yy2arr4185 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52375,25 +52423,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4195 := z.DecBinary() - _ = yym4195 + yym4200 := z.DecBinary() + _ = yym4200 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4196 := r.ContainerType() - if yyct4196 == codecSelferValueTypeMap1234 { - yyl4196 := r.ReadMapStart() - if yyl4196 == 0 { + yyct4201 := r.ContainerType() + if yyct4201 == codecSelferValueTypeMap1234 { + yyl4201 := r.ReadMapStart() + if yyl4201 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4196, d) + x.codecDecodeSelfFromMap(yyl4201, d) } - } else if yyct4196 == codecSelferValueTypeArray1234 { - yyl4196 := r.ReadArrayStart() - if yyl4196 == 0 { + } else if yyct4201 == codecSelferValueTypeArray1234 { + yyl4201 := r.ReadArrayStart() + if yyl4201 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4196, d) + x.codecDecodeSelfFromArray(yyl4201, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52405,12 +52453,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4197Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4197Slc - var yyhl4197 bool = l >= 0 - for yyj4197 := 0; ; yyj4197++ { - if yyhl4197 { - if yyj4197 >= l { + var yys4202Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4202Slc + var yyhl4202 bool = l >= 0 + for yyj4202 := 0; ; yyj4202++ { + if yyhl4202 { + if yyj4202 >= l { break } } else { @@ -52419,10 +52467,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4197Slc = r.DecodeBytes(yys4197Slc, true, true) - yys4197 := string(yys4197Slc) + yys4202Slc = r.DecodeBytes(yys4202Slc, true, true) + yys4202 := string(yys4202Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4197 { + switch yys4202 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52439,31 +52487,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4200 := &x.ListMeta - yym4201 := z.DecBinary() - _ = yym4201 + yyv4205 := &x.ListMeta + yym4206 := z.DecBinary() + _ = yym4206 if false { - } else if z.HasExtensions() && z.DecExt(yyv4200) { + } else if z.HasExtensions() && z.DecExt(yyv4205) { } else { - z.DecFallback(yyv4200, false) + z.DecFallback(yyv4205, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4202 := &x.Items - yym4203 := z.DecBinary() - _ = yym4203 + yyv4207 := &x.Items + yym4208 := z.DecBinary() + _ = yym4208 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4202), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4207), d) } } default: - z.DecStructFieldNotFound(-1, yys4197) - } // end switch yys4197 - } // end for yyj4197 + z.DecStructFieldNotFound(-1, yys4202) + } // end switch yys4202 + } // end for yyj4202 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52471,16 +52519,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4204 int - var yyb4204 bool - var yyhl4204 bool = l >= 0 - yyj4204++ - if yyhl4204 { - yyb4204 = yyj4204 > l + var yyj4209 int + var yyb4209 bool + var yyhl4209 bool = l >= 0 + yyj4209++ + if yyhl4209 { + yyb4209 = yyj4209 > l } else { - yyb4204 = r.CheckBreak() + yyb4209 = r.CheckBreak() } - if yyb4204 { + if yyb4209 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52490,13 +52538,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4204++ - if yyhl4204 { - yyb4204 = yyj4204 > l + yyj4209++ + if yyhl4209 { + yyb4209 = yyj4209 > l } else { - yyb4204 = r.CheckBreak() + yyb4209 = r.CheckBreak() } - if yyb4204 { + if yyb4209 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52506,13 +52554,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4204++ - if yyhl4204 { - yyb4204 = yyj4204 > l + yyj4209++ + if yyhl4209 { + yyb4209 = yyj4209 > l } else { - yyb4204 = r.CheckBreak() + yyb4209 = r.CheckBreak() } - if yyb4204 { + if yyb4209 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52520,22 +52568,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4207 := &x.ListMeta - yym4208 := z.DecBinary() - _ = yym4208 + yyv4212 := &x.ListMeta + yym4213 := z.DecBinary() + _ = yym4213 if false { - } else if z.HasExtensions() && z.DecExt(yyv4207) { + } else if z.HasExtensions() && z.DecExt(yyv4212) { } else { - z.DecFallback(yyv4207, false) + z.DecFallback(yyv4212, false) } } - yyj4204++ - if yyhl4204 { - yyb4204 = yyj4204 > l + yyj4209++ + if yyhl4209 { + yyb4209 = yyj4209 > l } else { - yyb4204 = r.CheckBreak() + yyb4209 = r.CheckBreak() } - if yyb4204 { + if yyb4209 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52543,26 +52591,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4209 := &x.Items - yym4210 := z.DecBinary() - _ = yym4210 + yyv4214 := &x.Items + yym4215 := z.DecBinary() + _ = yym4215 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4209), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4214), d) } } for { - yyj4204++ - if yyhl4204 { - yyb4204 = yyj4204 > l + yyj4209++ + if yyhl4209 { + yyb4209 = yyj4209 > l } else { - yyb4204 = r.CheckBreak() + yyb4209 = r.CheckBreak() } - if yyb4204 { + if yyb4209 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4204-1, "") + z.DecStructFieldNotFound(yyj4209-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52571,8 +52619,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4211 := z.EncBinary() - _ = yym4211 + yym4216 := z.EncBinary() + _ = yym4216 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52584,8 +52632,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4212 := z.DecBinary() - _ = yym4212 + yym4217 := z.DecBinary() + _ = yym4217 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52600,32 +52648,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4213 := z.EncBinary() - _ = yym4213 + yym4218 := z.EncBinary() + _ = yym4218 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4214 := !z.EncBinary() - yy2arr4214 := z.EncBasicHandle().StructToArray - var yyq4214 [4]bool - _, _, _ = yysep4214, yyq4214, yy2arr4214 - const yyr4214 bool = false - yyq4214[2] = x.Message != "" - yyq4214[3] = x.Error != "" - var yynn4214 int - if yyr4214 || yy2arr4214 { + yysep4219 := !z.EncBinary() + yy2arr4219 := z.EncBasicHandle().StructToArray + var yyq4219 [4]bool + _, _, _ = yysep4219, yyq4219, yy2arr4219 + const yyr4219 bool = false + yyq4219[2] = x.Message != "" + yyq4219[3] = x.Error != "" + var yynn4219 int + if yyr4219 || yy2arr4219 { r.EncodeArrayStart(4) } else { - yynn4214 = 2 - for _, b := range yyq4214 { + yynn4219 = 2 + for _, b := range yyq4219 { if b { - yynn4214++ + yynn4219++ } } - r.EncodeMapStart(yynn4214) - yynn4214 = 0 + r.EncodeMapStart(yynn4219) + yynn4219 = 0 } - if yyr4214 || yy2arr4214 { + if yyr4219 || yy2arr4219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -52634,7 +52682,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4214 || yy2arr4214 { + if yyr4219 || yy2arr4219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -52643,11 +52691,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4214 || yy2arr4214 { + if yyr4219 || yy2arr4219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4214[2] { - yym4218 := z.EncBinary() - _ = yym4218 + if yyq4219[2] { + yym4223 := z.EncBinary() + _ = yym4223 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -52656,23 +52704,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4214[2] { + if yyq4219[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4219 := z.EncBinary() - _ = yym4219 + yym4224 := z.EncBinary() + _ = yym4224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4214 || yy2arr4214 { + if yyr4219 || yy2arr4219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4214[3] { - yym4221 := z.EncBinary() - _ = yym4221 + if yyq4219[3] { + yym4226 := z.EncBinary() + _ = yym4226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -52681,19 +52729,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4214[3] { + if yyq4219[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4222 := z.EncBinary() - _ = yym4222 + yym4227 := z.EncBinary() + _ = yym4227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4214 || yy2arr4214 { + if yyr4219 || yy2arr4219 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52706,25 +52754,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4223 := z.DecBinary() - _ = yym4223 + yym4228 := z.DecBinary() + _ = yym4228 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4224 := r.ContainerType() - if yyct4224 == codecSelferValueTypeMap1234 { - yyl4224 := r.ReadMapStart() - if yyl4224 == 0 { + yyct4229 := r.ContainerType() + if yyct4229 == codecSelferValueTypeMap1234 { + yyl4229 := r.ReadMapStart() + if yyl4229 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4224, d) + x.codecDecodeSelfFromMap(yyl4229, d) } - } else if yyct4224 == codecSelferValueTypeArray1234 { - yyl4224 := r.ReadArrayStart() - if yyl4224 == 0 { + } else if yyct4229 == codecSelferValueTypeArray1234 { + yyl4229 := r.ReadArrayStart() + if yyl4229 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4224, d) + x.codecDecodeSelfFromArray(yyl4229, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52736,12 +52784,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4225Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4225Slc - var yyhl4225 bool = l >= 0 - for yyj4225 := 0; ; yyj4225++ { - if yyhl4225 { - if yyj4225 >= l { + var yys4230Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4230Slc + var yyhl4230 bool = l >= 0 + for yyj4230 := 0; ; yyj4230++ { + if yyhl4230 { + if yyj4230 >= l { break } } else { @@ -52750,10 +52798,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4225Slc = r.DecodeBytes(yys4225Slc, true, true) - yys4225 := string(yys4225Slc) + yys4230Slc = r.DecodeBytes(yys4230Slc, true, true) + yys4230 := string(yys4230Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4225 { + switch yys4230 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -52779,9 +52827,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4225) - } // end switch yys4225 - } // end for yyj4225 + z.DecStructFieldNotFound(-1, yys4230) + } // end switch yys4230 + } // end for yyj4230 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52789,16 +52837,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4230 int - var yyb4230 bool - var yyhl4230 bool = l >= 0 - yyj4230++ - if yyhl4230 { - yyb4230 = yyj4230 > l + var yyj4235 int + var yyb4235 bool + var yyhl4235 bool = l >= 0 + yyj4235++ + if yyhl4235 { + yyb4235 = yyj4235 > l } else { - yyb4230 = r.CheckBreak() + yyb4235 = r.CheckBreak() } - if yyb4230 { + if yyb4235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52808,13 +52856,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4230++ - if yyhl4230 { - yyb4230 = yyj4230 > l + yyj4235++ + if yyhl4235 { + yyb4235 = yyj4235 > l } else { - yyb4230 = r.CheckBreak() + yyb4235 = r.CheckBreak() } - if yyb4230 { + if yyb4235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52824,13 +52872,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4230++ - if yyhl4230 { - yyb4230 = yyj4230 > l + yyj4235++ + if yyhl4235 { + yyb4235 = yyj4235 > l } else { - yyb4230 = r.CheckBreak() + yyb4235 = r.CheckBreak() } - if yyb4230 { + if yyb4235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52840,13 +52888,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4230++ - if yyhl4230 { - yyb4230 = yyj4230 > l + yyj4235++ + if yyhl4235 { + yyb4235 = yyj4235 > l } else { - yyb4230 = r.CheckBreak() + yyb4235 = r.CheckBreak() } - if yyb4230 { + if yyb4235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52857,17 +52905,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4230++ - if yyhl4230 { - yyb4230 = yyj4230 > l + yyj4235++ + if yyhl4235 { + yyb4235 = yyj4235 > l } else { - yyb4230 = r.CheckBreak() + yyb4235 = r.CheckBreak() } - if yyb4230 { + if yyb4235 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4230-1, "") + z.DecStructFieldNotFound(yyj4235-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52879,38 +52927,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4235 := z.EncBinary() - _ = yym4235 + yym4240 := z.EncBinary() + _ = yym4240 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4236 := !z.EncBinary() - yy2arr4236 := z.EncBasicHandle().StructToArray - var yyq4236 [4]bool - _, _, _ = yysep4236, yyq4236, yy2arr4236 - const yyr4236 bool = false - yyq4236[0] = x.Kind != "" - yyq4236[1] = x.APIVersion != "" - yyq4236[2] = true - yyq4236[3] = len(x.Conditions) != 0 - var yynn4236 int - if yyr4236 || yy2arr4236 { + yysep4241 := !z.EncBinary() + yy2arr4241 := z.EncBasicHandle().StructToArray + var yyq4241 [4]bool + _, _, _ = yysep4241, yyq4241, yy2arr4241 + const yyr4241 bool = false + yyq4241[0] = x.Kind != "" + yyq4241[1] = x.APIVersion != "" + yyq4241[2] = true + yyq4241[3] = len(x.Conditions) != 0 + var yynn4241 int + if yyr4241 || yy2arr4241 { r.EncodeArrayStart(4) } else { - yynn4236 = 0 - for _, b := range yyq4236 { + yynn4241 = 0 + for _, b := range yyq4241 { if b { - yynn4236++ + yynn4241++ } } - r.EncodeMapStart(yynn4236) - yynn4236 = 0 + r.EncodeMapStart(yynn4241) + yynn4241 = 0 } - if yyr4236 || yy2arr4236 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4236[0] { - yym4238 := z.EncBinary() - _ = yym4238 + if yyq4241[0] { + yym4243 := z.EncBinary() + _ = yym4243 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52919,23 +52967,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4236[0] { + if yyq4241[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4239 := z.EncBinary() - _ = yym4239 + yym4244 := z.EncBinary() + _ = yym4244 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4236 || yy2arr4236 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4236[1] { - yym4241 := z.EncBinary() - _ = yym4241 + if yyq4241[1] { + yym4246 := z.EncBinary() + _ = yym4246 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52944,43 +52992,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4236[1] { + if yyq4241[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4242 := z.EncBinary() - _ = yym4242 + yym4247 := z.EncBinary() + _ = yym4247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4236 || yy2arr4236 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4236[2] { - yy4244 := &x.ObjectMeta - yy4244.CodecEncodeSelf(e) + if yyq4241[2] { + yy4249 := &x.ObjectMeta + yy4249.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4236[2] { + if yyq4241[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4245 := &x.ObjectMeta - yy4245.CodecEncodeSelf(e) + yy4250 := &x.ObjectMeta + yy4250.CodecEncodeSelf(e) } } - if yyr4236 || yy2arr4236 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4236[3] { + if yyq4241[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4247 := z.EncBinary() - _ = yym4247 + yym4252 := z.EncBinary() + _ = yym4252 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52990,15 +53038,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4236[3] { + if yyq4241[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4248 := z.EncBinary() - _ = yym4248 + yym4253 := z.EncBinary() + _ = yym4253 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -53006,7 +53054,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4236 || yy2arr4236 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53019,25 +53067,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4249 := z.DecBinary() - _ = yym4249 + yym4254 := z.DecBinary() + _ = yym4254 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4250 := r.ContainerType() - if yyct4250 == codecSelferValueTypeMap1234 { - yyl4250 := r.ReadMapStart() - if yyl4250 == 0 { + yyct4255 := r.ContainerType() + if yyct4255 == codecSelferValueTypeMap1234 { + yyl4255 := r.ReadMapStart() + if yyl4255 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4250, d) + x.codecDecodeSelfFromMap(yyl4255, d) } - } else if yyct4250 == codecSelferValueTypeArray1234 { - yyl4250 := r.ReadArrayStart() - if yyl4250 == 0 { + } else if yyct4255 == codecSelferValueTypeArray1234 { + yyl4255 := r.ReadArrayStart() + if yyl4255 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4250, d) + x.codecDecodeSelfFromArray(yyl4255, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53049,12 +53097,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4251Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4251Slc - var yyhl4251 bool = l >= 0 - for yyj4251 := 0; ; yyj4251++ { - if yyhl4251 { - if yyj4251 >= l { + var yys4256Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4256Slc + var yyhl4256 bool = l >= 0 + for yyj4256 := 0; ; yyj4256++ { + if yyhl4256 { + if yyj4256 >= l { break } } else { @@ -53063,10 +53111,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4251Slc = r.DecodeBytes(yys4251Slc, true, true) - yys4251 := string(yys4251Slc) + yys4256Slc = r.DecodeBytes(yys4256Slc, true, true) + yys4256 := string(yys4256Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4251 { + switch yys4256 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53083,25 +53131,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4254 := &x.ObjectMeta - yyv4254.CodecDecodeSelf(d) + yyv4259 := &x.ObjectMeta + yyv4259.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4255 := &x.Conditions - yym4256 := z.DecBinary() - _ = yym4256 + yyv4260 := &x.Conditions + yym4261 := z.DecBinary() + _ = yym4261 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4255), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4260), d) } } default: - z.DecStructFieldNotFound(-1, yys4251) - } // end switch yys4251 - } // end for yyj4251 + z.DecStructFieldNotFound(-1, yys4256) + } // end switch yys4256 + } // end for yyj4256 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53109,16 +53157,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4257 int - var yyb4257 bool - var yyhl4257 bool = l >= 0 - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + var yyj4262 int + var yyb4262 bool + var yyhl4262 bool = l >= 0 + yyj4262++ + if yyhl4262 { + yyb4262 = yyj4262 > l } else { - yyb4257 = r.CheckBreak() + yyb4262 = r.CheckBreak() } - if yyb4257 { + if yyb4262 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53128,13 +53176,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + yyj4262++ + if yyhl4262 { + yyb4262 = yyj4262 > l } else { - yyb4257 = r.CheckBreak() + yyb4262 = r.CheckBreak() } - if yyb4257 { + if yyb4262 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53144,13 +53192,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + yyj4262++ + if yyhl4262 { + yyb4262 = yyj4262 > l } else { - yyb4257 = r.CheckBreak() + yyb4262 = r.CheckBreak() } - if yyb4257 { + if yyb4262 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53158,16 +53206,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4260 := &x.ObjectMeta - yyv4260.CodecDecodeSelf(d) + yyv4265 := &x.ObjectMeta + yyv4265.CodecDecodeSelf(d) } - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + yyj4262++ + if yyhl4262 { + yyb4262 = yyj4262 > l } else { - yyb4257 = r.CheckBreak() + yyb4262 = r.CheckBreak() } - if yyb4257 { + if yyb4262 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53175,26 +53223,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4261 := &x.Conditions - yym4262 := z.DecBinary() - _ = yym4262 + yyv4266 := &x.Conditions + yym4267 := z.DecBinary() + _ = yym4267 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4261), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4266), d) } } for { - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + yyj4262++ + if yyhl4262 { + yyb4262 = yyj4262 > l } else { - yyb4257 = r.CheckBreak() + yyb4262 = r.CheckBreak() } - if yyb4257 { + if yyb4262 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4257-1, "") + z.DecStructFieldNotFound(yyj4262-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53206,37 +53254,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4263 := z.EncBinary() - _ = yym4263 + yym4268 := z.EncBinary() + _ = yym4268 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4264 := !z.EncBinary() - yy2arr4264 := z.EncBasicHandle().StructToArray - var yyq4264 [4]bool - _, _, _ = yysep4264, yyq4264, yy2arr4264 - const yyr4264 bool = false - yyq4264[0] = x.Kind != "" - yyq4264[1] = x.APIVersion != "" - yyq4264[2] = true - var yynn4264 int - if yyr4264 || yy2arr4264 { + yysep4269 := !z.EncBinary() + yy2arr4269 := z.EncBasicHandle().StructToArray + var yyq4269 [4]bool + _, _, _ = yysep4269, yyq4269, yy2arr4269 + const yyr4269 bool = false + yyq4269[0] = x.Kind != "" + yyq4269[1] = x.APIVersion != "" + yyq4269[2] = true + var yynn4269 int + if yyr4269 || yy2arr4269 { r.EncodeArrayStart(4) } else { - yynn4264 = 1 - for _, b := range yyq4264 { + yynn4269 = 1 + for _, b := range yyq4269 { if b { - yynn4264++ + yynn4269++ } } - r.EncodeMapStart(yynn4264) - yynn4264 = 0 + r.EncodeMapStart(yynn4269) + yynn4269 = 0 } - if yyr4264 || yy2arr4264 { + if yyr4269 || yy2arr4269 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4264[0] { - yym4266 := z.EncBinary() - _ = yym4266 + if yyq4269[0] { + yym4271 := z.EncBinary() + _ = yym4271 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53245,23 +53293,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4264[0] { + if yyq4269[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4267 := z.EncBinary() - _ = yym4267 + yym4272 := z.EncBinary() + _ = yym4272 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4264 || yy2arr4264 { + if yyr4269 || yy2arr4269 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4264[1] { - yym4269 := z.EncBinary() - _ = yym4269 + if yyq4269[1] { + yym4274 := z.EncBinary() + _ = yym4274 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53270,54 +53318,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4264[1] { + if yyq4269[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4270 := z.EncBinary() - _ = yym4270 + yym4275 := z.EncBinary() + _ = yym4275 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4264 || yy2arr4264 { + if yyr4269 || yy2arr4269 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4264[2] { - yy4272 := &x.ListMeta - yym4273 := z.EncBinary() - _ = yym4273 + if yyq4269[2] { + yy4277 := &x.ListMeta + yym4278 := z.EncBinary() + _ = yym4278 if false { - } else if z.HasExtensions() && z.EncExt(yy4272) { + } else if z.HasExtensions() && z.EncExt(yy4277) { } else { - z.EncFallback(yy4272) + z.EncFallback(yy4277) } } else { r.EncodeNil() } } else { - if yyq4264[2] { + if yyq4269[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4274 := &x.ListMeta - yym4275 := z.EncBinary() - _ = yym4275 + yy4279 := &x.ListMeta + yym4280 := z.EncBinary() + _ = yym4280 if false { - } else if z.HasExtensions() && z.EncExt(yy4274) { + } else if z.HasExtensions() && z.EncExt(yy4279) { } else { - z.EncFallback(yy4274) + z.EncFallback(yy4279) } } } - if yyr4264 || yy2arr4264 { + if yyr4269 || yy2arr4269 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4277 := z.EncBinary() - _ = yym4277 + yym4282 := z.EncBinary() + _ = yym4282 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -53330,15 +53378,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4278 := z.EncBinary() - _ = yym4278 + yym4283 := z.EncBinary() + _ = yym4283 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4264 || yy2arr4264 { + if yyr4269 || yy2arr4269 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53351,25 +53399,25 @@ func (x *ComponentStatusList) 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) @@ -53381,12 +53429,12 @@ func (x *ComponentStatusList) 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 { @@ -53395,10 +53443,10 @@ func (x *ComponentStatusList) 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 "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53415,31 +53463,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4284 := &x.ListMeta - yym4285 := z.DecBinary() - _ = yym4285 + yyv4289 := &x.ListMeta + yym4290 := z.DecBinary() + _ = yym4290 if false { - } else if z.HasExtensions() && z.DecExt(yyv4284) { + } else if z.HasExtensions() && z.DecExt(yyv4289) { } else { - z.DecFallback(yyv4284, false) + z.DecFallback(yyv4289, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4286 := &x.Items - yym4287 := z.DecBinary() - _ = yym4287 + yyv4291 := &x.Items + yym4292 := z.DecBinary() + _ = yym4292 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4286), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4291), d) } } 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) } @@ -53447,16 +53495,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4288 int - var yyb4288 bool - var yyhl4288 bool = l >= 0 - yyj4288++ - if yyhl4288 { - yyb4288 = yyj4288 > l + var yyj4293 int + var yyb4293 bool + var yyhl4293 bool = l >= 0 + yyj4293++ + if yyhl4293 { + yyb4293 = yyj4293 > l } else { - yyb4288 = r.CheckBreak() + yyb4293 = r.CheckBreak() } - if yyb4288 { + if yyb4293 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53466,13 +53514,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4288++ - if yyhl4288 { - yyb4288 = yyj4288 > l + yyj4293++ + if yyhl4293 { + yyb4293 = yyj4293 > l } else { - yyb4288 = r.CheckBreak() + yyb4293 = r.CheckBreak() } - if yyb4288 { + if yyb4293 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53482,13 +53530,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4288++ - if yyhl4288 { - yyb4288 = yyj4288 > l + yyj4293++ + if yyhl4293 { + yyb4293 = yyj4293 > l } else { - yyb4288 = r.CheckBreak() + yyb4293 = r.CheckBreak() } - if yyb4288 { + if yyb4293 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53496,22 +53544,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4291 := &x.ListMeta - yym4292 := z.DecBinary() - _ = yym4292 + yyv4296 := &x.ListMeta + yym4297 := z.DecBinary() + _ = yym4297 if false { - } else if z.HasExtensions() && z.DecExt(yyv4291) { + } else if z.HasExtensions() && z.DecExt(yyv4296) { } else { - z.DecFallback(yyv4291, false) + z.DecFallback(yyv4296, false) } } - yyj4288++ - if yyhl4288 { - yyb4288 = yyj4288 > l + yyj4293++ + if yyhl4293 { + yyb4293 = yyj4293 > l } else { - yyb4288 = r.CheckBreak() + yyb4293 = r.CheckBreak() } - if yyb4288 { + if yyb4293 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53519,26 +53567,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4293 := &x.Items - yym4294 := z.DecBinary() - _ = yym4294 + yyv4298 := &x.Items + yym4299 := z.DecBinary() + _ = yym4299 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4293), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4298), d) } } for { - yyj4288++ - if yyhl4288 { - yyb4288 = yyj4288 > l + yyj4293++ + if yyhl4293 { + yyb4293 = yyj4293 > l } else { - yyb4288 = r.CheckBreak() + yyb4293 = r.CheckBreak() } - if yyb4288 { + if yyb4293 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4288-1, "") + z.DecStructFieldNotFound(yyj4293-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53550,39 +53598,39 @@ func (x *DownwardAPIVolumeSource) 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 [2]bool - _, _, _ = yysep4296, yyq4296, yy2arr4296 - const yyr4296 bool = false - yyq4296[0] = len(x.Items) != 0 - yyq4296[1] = x.DefaultMode != nil - var yynn4296 int - if yyr4296 || yy2arr4296 { + yysep4301 := !z.EncBinary() + yy2arr4301 := z.EncBasicHandle().StructToArray + var yyq4301 [2]bool + _, _, _ = yysep4301, yyq4301, yy2arr4301 + const yyr4301 bool = false + yyq4301[0] = len(x.Items) != 0 + yyq4301[1] = x.DefaultMode != nil + var yynn4301 int + if yyr4301 || yy2arr4301 { r.EncodeArrayStart(2) } 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] { + if yyq4301[0] { if x.Items == nil { r.EncodeNil() } else { - yym4298 := z.EncBinary() - _ = yym4298 + yym4303 := z.EncBinary() + _ = yym4303 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -53592,15 +53640,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4296[0] { + if yyq4301[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym4299 := z.EncBinary() - _ = yym4299 + yym4304 := z.EncBinary() + _ = yym4304 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -53608,42 +53656,42 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4296 || yy2arr4296 { + if yyr4301 || yy2arr4301 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4296[1] { + if yyq4301[1] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy4301 := *x.DefaultMode - yym4302 := z.EncBinary() - _ = yym4302 + yy4306 := *x.DefaultMode + yym4307 := z.EncBinary() + _ = yym4307 if false { } else { - r.EncodeInt(int64(yy4301)) + r.EncodeInt(int64(yy4306)) } } } else { r.EncodeNil() } } else { - if yyq4296[1] { + if yyq4301[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy4303 := *x.DefaultMode - yym4304 := z.EncBinary() - _ = yym4304 + yy4308 := *x.DefaultMode + yym4309 := z.EncBinary() + _ = yym4309 if false { } else { - r.EncodeInt(int64(yy4303)) + r.EncodeInt(int64(yy4308)) } } } } - if yyr4296 || yy2arr4296 { + if yyr4301 || yy2arr4301 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53656,25 +53704,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4305 := z.DecBinary() - _ = yym4305 + yym4310 := z.DecBinary() + _ = yym4310 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4306 := r.ContainerType() - if yyct4306 == codecSelferValueTypeMap1234 { - yyl4306 := r.ReadMapStart() - if yyl4306 == 0 { + yyct4311 := r.ContainerType() + if yyct4311 == codecSelferValueTypeMap1234 { + yyl4311 := r.ReadMapStart() + if yyl4311 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4306, d) + x.codecDecodeSelfFromMap(yyl4311, d) } - } else if yyct4306 == codecSelferValueTypeArray1234 { - yyl4306 := r.ReadArrayStart() - if yyl4306 == 0 { + } else if yyct4311 == codecSelferValueTypeArray1234 { + yyl4311 := r.ReadArrayStart() + if yyl4311 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4306, d) + x.codecDecodeSelfFromArray(yyl4311, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53686,12 +53734,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4307Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4307Slc - var yyhl4307 bool = l >= 0 - for yyj4307 := 0; ; yyj4307++ { - if yyhl4307 { - if yyj4307 >= l { + var yys4312Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4312Slc + var yyhl4312 bool = l >= 0 + for yyj4312 := 0; ; yyj4312++ { + if yyhl4312 { + if yyj4312 >= l { break } } else { @@ -53700,20 +53748,20 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4307Slc = r.DecodeBytes(yys4307Slc, true, true) - yys4307 := string(yys4307Slc) + yys4312Slc = r.DecodeBytes(yys4312Slc, true, true) + yys4312 := string(yys4312Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4307 { + switch yys4312 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4308 := &x.Items - yym4309 := z.DecBinary() - _ = yym4309 + yyv4313 := &x.Items + yym4314 := z.DecBinary() + _ = yym4314 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4308), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4313), d) } } case "defaultMode": @@ -53725,17 +53773,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4311 := z.DecBinary() - _ = yym4311 + yym4316 := z.DecBinary() + _ = yym4316 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4307) - } // end switch yys4307 - } // end for yyj4307 + z.DecStructFieldNotFound(-1, yys4312) + } // end switch yys4312 + } // end for yyj4312 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53743,16 +53791,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4312 int - var yyb4312 bool - var yyhl4312 bool = l >= 0 - yyj4312++ - if yyhl4312 { - yyb4312 = yyj4312 > l + var yyj4317 int + var yyb4317 bool + var yyhl4317 bool = l >= 0 + yyj4317++ + if yyhl4317 { + yyb4317 = yyj4317 > l } else { - yyb4312 = r.CheckBreak() + yyb4317 = r.CheckBreak() } - if yyb4312 { + if yyb4317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53760,21 +53808,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4313 := &x.Items - yym4314 := z.DecBinary() - _ = yym4314 + yyv4318 := &x.Items + yym4319 := z.DecBinary() + _ = yym4319 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4313), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4318), d) } } - yyj4312++ - if yyhl4312 { - yyb4312 = yyj4312 > l + yyj4317++ + if yyhl4317 { + yyb4317 = yyj4317 > l } else { - yyb4312 = r.CheckBreak() + yyb4317 = r.CheckBreak() } - if yyb4312 { + if yyb4317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53787,25 +53835,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4316 := z.DecBinary() - _ = yym4316 + yym4321 := z.DecBinary() + _ = yym4321 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj4312++ - if yyhl4312 { - yyb4312 = yyj4312 > l + yyj4317++ + if yyhl4317 { + yyb4317 = yyj4317 > l } else { - yyb4312 = r.CheckBreak() + yyb4317 = r.CheckBreak() } - if yyb4312 { + if yyb4317 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4312-1, "") + z.DecStructFieldNotFound(yyj4317-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53817,36 +53865,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4317 := z.EncBinary() - _ = yym4317 + yym4322 := z.EncBinary() + _ = yym4322 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4318 := !z.EncBinary() - yy2arr4318 := z.EncBasicHandle().StructToArray - var yyq4318 [4]bool - _, _, _ = yysep4318, yyq4318, yy2arr4318 - const yyr4318 bool = false - yyq4318[1] = x.FieldRef != nil - yyq4318[2] = x.ResourceFieldRef != nil - yyq4318[3] = x.Mode != nil - var yynn4318 int - if yyr4318 || yy2arr4318 { + yysep4323 := !z.EncBinary() + yy2arr4323 := z.EncBasicHandle().StructToArray + var yyq4323 [4]bool + _, _, _ = yysep4323, yyq4323, yy2arr4323 + const yyr4323 bool = false + yyq4323[1] = x.FieldRef != nil + yyq4323[2] = x.ResourceFieldRef != nil + yyq4323[3] = x.Mode != nil + var yynn4323 int + if yyr4323 || yy2arr4323 { r.EncodeArrayStart(4) } else { - yynn4318 = 1 - for _, b := range yyq4318 { + yynn4323 = 1 + for _, b := range yyq4323 { if b { - yynn4318++ + yynn4323++ } } - r.EncodeMapStart(yynn4318) - yynn4318 = 0 + r.EncodeMapStart(yynn4323) + yynn4323 = 0 } - if yyr4318 || yy2arr4318 { + if yyr4323 || yy2arr4323 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4320 := z.EncBinary() - _ = yym4320 + yym4325 := z.EncBinary() + _ = yym4325 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -53855,16 +53903,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4321 := z.EncBinary() - _ = yym4321 + yym4326 := z.EncBinary() + _ = yym4326 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4318 || yy2arr4318 { + if yyr4323 || yy2arr4323 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4318[1] { + if yyq4323[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -53874,7 +53922,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4318[1] { + if yyq4323[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53885,9 +53933,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4318 || yy2arr4318 { + if yyr4323 || yy2arr4323 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4318[2] { + if yyq4323[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -53897,7 +53945,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4318[2] { + if yyq4323[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53908,42 +53956,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4318 || yy2arr4318 { + if yyr4323 || yy2arr4323 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4318[3] { + if yyq4323[3] { if x.Mode == nil { r.EncodeNil() } else { - yy4325 := *x.Mode - yym4326 := z.EncBinary() - _ = yym4326 + yy4330 := *x.Mode + yym4331 := z.EncBinary() + _ = yym4331 if false { } else { - r.EncodeInt(int64(yy4325)) + r.EncodeInt(int64(yy4330)) } } } else { r.EncodeNil() } } else { - if yyq4318[3] { + if yyq4323[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy4327 := *x.Mode - yym4328 := z.EncBinary() - _ = yym4328 + yy4332 := *x.Mode + yym4333 := z.EncBinary() + _ = yym4333 if false { } else { - r.EncodeInt(int64(yy4327)) + r.EncodeInt(int64(yy4332)) } } } } - if yyr4318 || yy2arr4318 { + if yyr4323 || yy2arr4323 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53956,25 +54004,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4329 := z.DecBinary() - _ = yym4329 + yym4334 := z.DecBinary() + _ = yym4334 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4330 := r.ContainerType() - if yyct4330 == codecSelferValueTypeMap1234 { - yyl4330 := r.ReadMapStart() - if yyl4330 == 0 { + yyct4335 := r.ContainerType() + if yyct4335 == codecSelferValueTypeMap1234 { + yyl4335 := r.ReadMapStart() + if yyl4335 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4330, d) + x.codecDecodeSelfFromMap(yyl4335, d) } - } else if yyct4330 == codecSelferValueTypeArray1234 { - yyl4330 := r.ReadArrayStart() - if yyl4330 == 0 { + } else if yyct4335 == codecSelferValueTypeArray1234 { + yyl4335 := r.ReadArrayStart() + if yyl4335 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4330, d) + x.codecDecodeSelfFromArray(yyl4335, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53986,12 +54034,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4331Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4331Slc - var yyhl4331 bool = l >= 0 - for yyj4331 := 0; ; yyj4331++ { - if yyhl4331 { - if yyj4331 >= l { + var yys4336Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4336Slc + var yyhl4336 bool = l >= 0 + for yyj4336 := 0; ; yyj4336++ { + if yyhl4336 { + if yyj4336 >= l { break } } else { @@ -54000,10 +54048,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4331Slc = r.DecodeBytes(yys4331Slc, true, true) - yys4331 := string(yys4331Slc) + yys4336Slc = r.DecodeBytes(yys4336Slc, true, true) + yys4336 := string(yys4336Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4331 { + switch yys4336 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -54041,17 +54089,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym4336 := z.DecBinary() - _ = yym4336 + yym4341 := z.DecBinary() + _ = yym4341 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4331) - } // end switch yys4331 - } // end for yyj4331 + z.DecStructFieldNotFound(-1, yys4336) + } // end switch yys4336 + } // end for yyj4336 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54059,16 +54107,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4337 int - var yyb4337 bool - var yyhl4337 bool = l >= 0 - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + var yyj4342 int + var yyb4342 bool + var yyhl4342 bool = l >= 0 + yyj4342++ + if yyhl4342 { + yyb4342 = yyj4342 > l } else { - yyb4337 = r.CheckBreak() + yyb4342 = r.CheckBreak() } - if yyb4337 { + if yyb4342 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54078,13 +54126,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4342++ + if yyhl4342 { + yyb4342 = yyj4342 > l } else { - yyb4337 = r.CheckBreak() + yyb4342 = r.CheckBreak() } - if yyb4337 { + if yyb4342 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54099,13 +54147,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4342++ + if yyhl4342 { + yyb4342 = yyj4342 > l } else { - yyb4337 = r.CheckBreak() + yyb4342 = r.CheckBreak() } - if yyb4337 { + if yyb4342 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54120,13 +54168,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4342++ + if yyhl4342 { + yyb4342 = yyj4342 > l } else { - yyb4337 = r.CheckBreak() + yyb4342 = r.CheckBreak() } - if yyb4337 { + if yyb4342 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54139,25 +54187,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym4342 := z.DecBinary() - _ = yym4342 + yym4347 := z.DecBinary() + _ = yym4347 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4342++ + if yyhl4342 { + yyb4342 = yyj4342 > l } else { - yyb4337 = r.CheckBreak() + yyb4342 = r.CheckBreak() } - if yyb4337 { + if yyb4342 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4337-1, "") + z.DecStructFieldNotFound(yyj4342-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54169,38 +54217,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4343 := z.EncBinary() - _ = yym4343 + yym4348 := z.EncBinary() + _ = yym4348 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4344 := !z.EncBinary() - yy2arr4344 := z.EncBasicHandle().StructToArray - var yyq4344 [6]bool - _, _, _ = yysep4344, yyq4344, yy2arr4344 - const yyr4344 bool = false - yyq4344[0] = x.Capabilities != nil - yyq4344[1] = x.Privileged != nil - yyq4344[2] = x.SELinuxOptions != nil - yyq4344[3] = x.RunAsUser != nil - yyq4344[4] = x.RunAsNonRoot != nil - yyq4344[5] = x.ReadOnlyRootFilesystem != nil - var yynn4344 int - if yyr4344 || yy2arr4344 { + yysep4349 := !z.EncBinary() + yy2arr4349 := z.EncBasicHandle().StructToArray + var yyq4349 [6]bool + _, _, _ = yysep4349, yyq4349, yy2arr4349 + const yyr4349 bool = false + yyq4349[0] = x.Capabilities != nil + yyq4349[1] = x.Privileged != nil + yyq4349[2] = x.SELinuxOptions != nil + yyq4349[3] = x.RunAsUser != nil + yyq4349[4] = x.RunAsNonRoot != nil + yyq4349[5] = x.ReadOnlyRootFilesystem != nil + var yynn4349 int + if yyr4349 || yy2arr4349 { r.EncodeArrayStart(6) } else { - yynn4344 = 0 - for _, b := range yyq4344 { + yynn4349 = 0 + for _, b := range yyq4349 { if b { - yynn4344++ + yynn4349++ } } - r.EncodeMapStart(yynn4344) - yynn4344 = 0 + r.EncodeMapStart(yynn4349) + yynn4349 = 0 } - if yyr4344 || yy2arr4344 { + if yyr4349 || yy2arr4349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4344[0] { + if yyq4349[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -54210,7 +54258,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4344[0] { + if yyq4349[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54221,44 +54269,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4344 || yy2arr4344 { + if yyr4349 || yy2arr4349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4344[1] { + if yyq4349[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4347 := *x.Privileged - yym4348 := z.EncBinary() - _ = yym4348 + yy4352 := *x.Privileged + yym4353 := z.EncBinary() + _ = yym4353 if false { } else { - r.EncodeBool(bool(yy4347)) + r.EncodeBool(bool(yy4352)) } } } else { r.EncodeNil() } } else { - if yyq4344[1] { + if yyq4349[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4349 := *x.Privileged - yym4350 := z.EncBinary() - _ = yym4350 + yy4354 := *x.Privileged + yym4355 := z.EncBinary() + _ = yym4355 if false { } else { - r.EncodeBool(bool(yy4349)) + r.EncodeBool(bool(yy4354)) } } } } - if yyr4344 || yy2arr4344 { + if yyr4349 || yy2arr4349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4344[2] { + if yyq4349[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -54268,7 +54316,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4344[2] { + if yyq4349[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54279,112 +54327,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4344 || yy2arr4344 { + if yyr4349 || yy2arr4349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4344[3] { + if yyq4349[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4353 := *x.RunAsUser - yym4354 := z.EncBinary() - _ = yym4354 + yy4358 := *x.RunAsUser + yym4359 := z.EncBinary() + _ = yym4359 if false { } else { - r.EncodeInt(int64(yy4353)) + r.EncodeInt(int64(yy4358)) } } } else { r.EncodeNil() } } else { - if yyq4344[3] { + if yyq4349[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4355 := *x.RunAsUser - yym4356 := z.EncBinary() - _ = yym4356 + yy4360 := *x.RunAsUser + yym4361 := z.EncBinary() + _ = yym4361 if false { } else { - r.EncodeInt(int64(yy4355)) + r.EncodeInt(int64(yy4360)) } } } } - if yyr4344 || yy2arr4344 { + if yyr4349 || yy2arr4349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4344[4] { + if yyq4349[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4358 := *x.RunAsNonRoot - yym4359 := z.EncBinary() - _ = yym4359 + yy4363 := *x.RunAsNonRoot + yym4364 := z.EncBinary() + _ = yym4364 if false { } else { - r.EncodeBool(bool(yy4358)) + r.EncodeBool(bool(yy4363)) } } } else { r.EncodeNil() } } else { - if yyq4344[4] { + if yyq4349[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4360 := *x.RunAsNonRoot - yym4361 := z.EncBinary() - _ = yym4361 + yy4365 := *x.RunAsNonRoot + yym4366 := z.EncBinary() + _ = yym4366 if false { } else { - r.EncodeBool(bool(yy4360)) + r.EncodeBool(bool(yy4365)) } } } } - if yyr4344 || yy2arr4344 { + if yyr4349 || yy2arr4349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4344[5] { + if yyq4349[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4363 := *x.ReadOnlyRootFilesystem - yym4364 := z.EncBinary() - _ = yym4364 + yy4368 := *x.ReadOnlyRootFilesystem + yym4369 := z.EncBinary() + _ = yym4369 if false { } else { - r.EncodeBool(bool(yy4363)) + r.EncodeBool(bool(yy4368)) } } } else { r.EncodeNil() } } else { - if yyq4344[5] { + if yyq4349[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4365 := *x.ReadOnlyRootFilesystem - yym4366 := z.EncBinary() - _ = yym4366 + yy4370 := *x.ReadOnlyRootFilesystem + yym4371 := z.EncBinary() + _ = yym4371 if false { } else { - r.EncodeBool(bool(yy4365)) + r.EncodeBool(bool(yy4370)) } } } } - if yyr4344 || yy2arr4344 { + if yyr4349 || yy2arr4349 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54397,25 +54445,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4367 := z.DecBinary() - _ = yym4367 + yym4372 := z.DecBinary() + _ = yym4372 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4368 := r.ContainerType() - if yyct4368 == codecSelferValueTypeMap1234 { - yyl4368 := r.ReadMapStart() - if yyl4368 == 0 { + yyct4373 := r.ContainerType() + if yyct4373 == codecSelferValueTypeMap1234 { + yyl4373 := r.ReadMapStart() + if yyl4373 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4368, d) + x.codecDecodeSelfFromMap(yyl4373, d) } - } else if yyct4368 == codecSelferValueTypeArray1234 { - yyl4368 := r.ReadArrayStart() - if yyl4368 == 0 { + } else if yyct4373 == codecSelferValueTypeArray1234 { + yyl4373 := r.ReadArrayStart() + if yyl4373 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4368, d) + x.codecDecodeSelfFromArray(yyl4373, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54427,12 +54475,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4369Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4369Slc - var yyhl4369 bool = l >= 0 - for yyj4369 := 0; ; yyj4369++ { - if yyhl4369 { - if yyj4369 >= l { + var yys4374Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4374Slc + var yyhl4374 bool = l >= 0 + for yyj4374 := 0; ; yyj4374++ { + if yyhl4374 { + if yyj4374 >= l { break } } else { @@ -54441,10 +54489,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4369Slc = r.DecodeBytes(yys4369Slc, true, true) - yys4369 := string(yys4369Slc) + yys4374Slc = r.DecodeBytes(yys4374Slc, true, true) + yys4374 := string(yys4374Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4369 { + switch yys4374 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -54465,8 +54513,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4372 := z.DecBinary() - _ = yym4372 + yym4377 := z.DecBinary() + _ = yym4377 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -54492,8 +54540,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4375 := z.DecBinary() - _ = yym4375 + yym4380 := z.DecBinary() + _ = yym4380 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -54508,8 +54556,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4377 := z.DecBinary() - _ = yym4377 + yym4382 := z.DecBinary() + _ = yym4382 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -54524,17 +54572,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4379 := z.DecBinary() - _ = yym4379 + yym4384 := z.DecBinary() + _ = yym4384 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4369) - } // end switch yys4369 - } // end for yyj4369 + z.DecStructFieldNotFound(-1, yys4374) + } // end switch yys4374 + } // end for yyj4374 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54542,16 +54590,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4380 int - var yyb4380 bool - var yyhl4380 bool = l >= 0 - yyj4380++ - if yyhl4380 { - yyb4380 = yyj4380 > l + var yyj4385 int + var yyb4385 bool + var yyhl4385 bool = l >= 0 + yyj4385++ + if yyhl4385 { + yyb4385 = yyj4385 > l } else { - yyb4380 = r.CheckBreak() + yyb4385 = r.CheckBreak() } - if yyb4380 { + if yyb4385 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54566,13 +54614,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4380++ - if yyhl4380 { - yyb4380 = yyj4380 > l + yyj4385++ + if yyhl4385 { + yyb4385 = yyj4385 > l } else { - yyb4380 = r.CheckBreak() + yyb4385 = r.CheckBreak() } - if yyb4380 { + if yyb4385 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54585,20 +54633,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4383 := z.DecBinary() - _ = yym4383 + yym4388 := z.DecBinary() + _ = yym4388 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4380++ - if yyhl4380 { - yyb4380 = yyj4380 > l + yyj4385++ + if yyhl4385 { + yyb4385 = yyj4385 > l } else { - yyb4380 = r.CheckBreak() + yyb4385 = r.CheckBreak() } - if yyb4380 { + if yyb4385 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54613,13 +54661,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4380++ - if yyhl4380 { - yyb4380 = yyj4380 > l + yyj4385++ + if yyhl4385 { + yyb4385 = yyj4385 > l } else { - yyb4380 = r.CheckBreak() + yyb4385 = r.CheckBreak() } - if yyb4380 { + if yyb4385 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54632,20 +54680,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4386 := z.DecBinary() - _ = yym4386 + yym4391 := z.DecBinary() + _ = yym4391 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4380++ - if yyhl4380 { - yyb4380 = yyj4380 > l + yyj4385++ + if yyhl4385 { + yyb4385 = yyj4385 > l } else { - yyb4380 = r.CheckBreak() + yyb4385 = r.CheckBreak() } - if yyb4380 { + if yyb4385 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54658,20 +54706,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4388 := z.DecBinary() - _ = yym4388 + yym4393 := z.DecBinary() + _ = yym4393 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4380++ - if yyhl4380 { - yyb4380 = yyj4380 > l + yyj4385++ + if yyhl4385 { + yyb4385 = yyj4385 > l } else { - yyb4380 = r.CheckBreak() + yyb4385 = r.CheckBreak() } - if yyb4380 { + if yyb4385 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54684,25 +54732,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4390 := z.DecBinary() - _ = yym4390 + yym4395 := z.DecBinary() + _ = yym4395 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4380++ - if yyhl4380 { - yyb4380 = yyj4380 > l + yyj4385++ + if yyhl4385 { + yyb4385 = yyj4385 > l } else { - yyb4380 = r.CheckBreak() + yyb4385 = r.CheckBreak() } - if yyb4380 { + if yyb4385 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4380-1, "") + z.DecStructFieldNotFound(yyj4385-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54714,38 +54762,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4391 := z.EncBinary() - _ = yym4391 + yym4396 := z.EncBinary() + _ = yym4396 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4392 := !z.EncBinary() - yy2arr4392 := z.EncBasicHandle().StructToArray - var yyq4392 [4]bool - _, _, _ = yysep4392, yyq4392, yy2arr4392 - const yyr4392 bool = false - yyq4392[0] = x.User != "" - yyq4392[1] = x.Role != "" - yyq4392[2] = x.Type != "" - yyq4392[3] = x.Level != "" - var yynn4392 int - if yyr4392 || yy2arr4392 { + yysep4397 := !z.EncBinary() + yy2arr4397 := z.EncBasicHandle().StructToArray + var yyq4397 [4]bool + _, _, _ = yysep4397, yyq4397, yy2arr4397 + const yyr4397 bool = false + yyq4397[0] = x.User != "" + yyq4397[1] = x.Role != "" + yyq4397[2] = x.Type != "" + yyq4397[3] = x.Level != "" + var yynn4397 int + if yyr4397 || yy2arr4397 { r.EncodeArrayStart(4) } else { - yynn4392 = 0 - for _, b := range yyq4392 { + yynn4397 = 0 + for _, b := range yyq4397 { if b { - yynn4392++ + yynn4397++ } } - r.EncodeMapStart(yynn4392) - yynn4392 = 0 + r.EncodeMapStart(yynn4397) + yynn4397 = 0 } - if yyr4392 || yy2arr4392 { + if yyr4397 || yy2arr4397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4392[0] { - yym4394 := z.EncBinary() - _ = yym4394 + if yyq4397[0] { + yym4399 := z.EncBinary() + _ = yym4399 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -54754,23 +54802,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4392[0] { + if yyq4397[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4395 := z.EncBinary() - _ = yym4395 + yym4400 := z.EncBinary() + _ = yym4400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4392 || yy2arr4392 { + if yyr4397 || yy2arr4397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4392[1] { - yym4397 := z.EncBinary() - _ = yym4397 + if yyq4397[1] { + yym4402 := z.EncBinary() + _ = yym4402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -54779,23 +54827,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4392[1] { + if yyq4397[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4398 := z.EncBinary() - _ = yym4398 + yym4403 := z.EncBinary() + _ = yym4403 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4392 || yy2arr4392 { + if yyr4397 || yy2arr4397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4392[2] { - yym4400 := z.EncBinary() - _ = yym4400 + if yyq4397[2] { + yym4405 := z.EncBinary() + _ = yym4405 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -54804,23 +54852,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4392[2] { + if yyq4397[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4401 := z.EncBinary() - _ = yym4401 + yym4406 := z.EncBinary() + _ = yym4406 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4392 || yy2arr4392 { + if yyr4397 || yy2arr4397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4392[3] { - yym4403 := z.EncBinary() - _ = yym4403 + if yyq4397[3] { + yym4408 := z.EncBinary() + _ = yym4408 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -54829,19 +54877,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4392[3] { + if yyq4397[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4404 := z.EncBinary() - _ = yym4404 + yym4409 := z.EncBinary() + _ = yym4409 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4392 || yy2arr4392 { + if yyr4397 || yy2arr4397 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54854,25 +54902,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4405 := z.DecBinary() - _ = yym4405 + yym4410 := z.DecBinary() + _ = yym4410 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4406 := r.ContainerType() - if yyct4406 == codecSelferValueTypeMap1234 { - yyl4406 := r.ReadMapStart() - if yyl4406 == 0 { + yyct4411 := r.ContainerType() + if yyct4411 == codecSelferValueTypeMap1234 { + yyl4411 := r.ReadMapStart() + if yyl4411 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4406, d) + x.codecDecodeSelfFromMap(yyl4411, d) } - } else if yyct4406 == codecSelferValueTypeArray1234 { - yyl4406 := r.ReadArrayStart() - if yyl4406 == 0 { + } else if yyct4411 == codecSelferValueTypeArray1234 { + yyl4411 := r.ReadArrayStart() + if yyl4411 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4406, d) + x.codecDecodeSelfFromArray(yyl4411, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54884,12 +54932,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4407Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4407Slc - var yyhl4407 bool = l >= 0 - for yyj4407 := 0; ; yyj4407++ { - if yyhl4407 { - if yyj4407 >= l { + var yys4412Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4412Slc + var yyhl4412 bool = l >= 0 + for yyj4412 := 0; ; yyj4412++ { + if yyhl4412 { + if yyj4412 >= l { break } } else { @@ -54898,10 +54946,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4407Slc = r.DecodeBytes(yys4407Slc, true, true) - yys4407 := string(yys4407Slc) + yys4412Slc = r.DecodeBytes(yys4412Slc, true, true) + yys4412 := string(yys4412Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4407 { + switch yys4412 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -54927,9 +54975,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4407) - } // end switch yys4407 - } // end for yyj4407 + z.DecStructFieldNotFound(-1, yys4412) + } // end switch yys4412 + } // end for yyj4412 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54937,16 +54985,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4412 int - var yyb4412 bool - var yyhl4412 bool = l >= 0 - yyj4412++ - if yyhl4412 { - yyb4412 = yyj4412 > l + var yyj4417 int + var yyb4417 bool + var yyhl4417 bool = l >= 0 + yyj4417++ + if yyhl4417 { + yyb4417 = yyj4417 > l } else { - yyb4412 = r.CheckBreak() + yyb4417 = r.CheckBreak() } - if yyb4412 { + if yyb4417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54956,13 +55004,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4412++ - if yyhl4412 { - yyb4412 = yyj4412 > l + yyj4417++ + if yyhl4417 { + yyb4417 = yyj4417 > l } else { - yyb4412 = r.CheckBreak() + yyb4417 = r.CheckBreak() } - if yyb4412 { + if yyb4417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54972,13 +55020,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4412++ - if yyhl4412 { - yyb4412 = yyj4412 > l + yyj4417++ + if yyhl4417 { + yyb4417 = yyj4417 > l } else { - yyb4412 = r.CheckBreak() + yyb4417 = r.CheckBreak() } - if yyb4412 { + if yyb4417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54988,13 +55036,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4412++ - if yyhl4412 { - yyb4412 = yyj4412 > l + yyj4417++ + if yyhl4417 { + yyb4417 = yyj4417 > l } else { - yyb4412 = r.CheckBreak() + yyb4417 = r.CheckBreak() } - if yyb4412 { + if yyb4417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55005,17 +55053,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4412++ - if yyhl4412 { - yyb4412 = yyj4412 > l + yyj4417++ + if yyhl4417 { + yyb4417 = yyj4417 > l } else { - yyb4412 = r.CheckBreak() + yyb4417 = r.CheckBreak() } - if yyb4412 { + if yyb4417 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4412-1, "") + z.DecStructFieldNotFound(yyj4417-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55027,37 +55075,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4417 := z.EncBinary() - _ = yym4417 + yym4422 := z.EncBinary() + _ = yym4422 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4418 := !z.EncBinary() - yy2arr4418 := z.EncBasicHandle().StructToArray - var yyq4418 [5]bool - _, _, _ = yysep4418, yyq4418, yy2arr4418 - const yyr4418 bool = false - yyq4418[0] = x.Kind != "" - yyq4418[1] = x.APIVersion != "" - yyq4418[2] = true - var yynn4418 int - if yyr4418 || yy2arr4418 { + yysep4423 := !z.EncBinary() + yy2arr4423 := z.EncBasicHandle().StructToArray + var yyq4423 [5]bool + _, _, _ = yysep4423, yyq4423, yy2arr4423 + const yyr4423 bool = false + yyq4423[0] = x.Kind != "" + yyq4423[1] = x.APIVersion != "" + yyq4423[2] = true + var yynn4423 int + if yyr4423 || yy2arr4423 { r.EncodeArrayStart(5) } else { - yynn4418 = 2 - for _, b := range yyq4418 { + yynn4423 = 2 + for _, b := range yyq4423 { if b { - yynn4418++ + yynn4423++ } } - r.EncodeMapStart(yynn4418) - yynn4418 = 0 + r.EncodeMapStart(yynn4423) + yynn4423 = 0 } - if yyr4418 || yy2arr4418 { + if yyr4423 || yy2arr4423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4418[0] { - yym4420 := z.EncBinary() - _ = yym4420 + if yyq4423[0] { + yym4425 := z.EncBinary() + _ = yym4425 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -55066,23 +55114,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4418[0] { + if yyq4423[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4421 := z.EncBinary() - _ = yym4421 + yym4426 := z.EncBinary() + _ = yym4426 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4418 || yy2arr4418 { + if yyr4423 || yy2arr4423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4418[1] { - yym4423 := z.EncBinary() - _ = yym4423 + if yyq4423[1] { + yym4428 := z.EncBinary() + _ = yym4428 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -55091,39 +55139,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4418[1] { + if yyq4423[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4424 := z.EncBinary() - _ = yym4424 + yym4429 := z.EncBinary() + _ = yym4429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4418 || yy2arr4418 { + if yyr4423 || yy2arr4423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4418[2] { - yy4426 := &x.ObjectMeta - yy4426.CodecEncodeSelf(e) + if yyq4423[2] { + yy4431 := &x.ObjectMeta + yy4431.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4418[2] { + if yyq4423[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4427 := &x.ObjectMeta - yy4427.CodecEncodeSelf(e) + yy4432 := &x.ObjectMeta + yy4432.CodecEncodeSelf(e) } } - if yyr4418 || yy2arr4418 { + if yyr4423 || yy2arr4423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4429 := z.EncBinary() - _ = yym4429 + yym4434 := z.EncBinary() + _ = yym4434 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -55132,20 +55180,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4430 := z.EncBinary() - _ = yym4430 + yym4435 := z.EncBinary() + _ = yym4435 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4418 || yy2arr4418 { + if yyr4423 || yy2arr4423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4432 := z.EncBinary() - _ = yym4432 + yym4437 := z.EncBinary() + _ = yym4437 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -55158,15 +55206,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4433 := z.EncBinary() - _ = yym4433 + yym4438 := z.EncBinary() + _ = yym4438 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4418 || yy2arr4418 { + if yyr4423 || yy2arr4423 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55179,25 +55227,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4434 := z.DecBinary() - _ = yym4434 + yym4439 := z.DecBinary() + _ = yym4439 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4435 := r.ContainerType() - if yyct4435 == codecSelferValueTypeMap1234 { - yyl4435 := r.ReadMapStart() - if yyl4435 == 0 { + yyct4440 := r.ContainerType() + if yyct4440 == codecSelferValueTypeMap1234 { + yyl4440 := r.ReadMapStart() + if yyl4440 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4435, d) + x.codecDecodeSelfFromMap(yyl4440, d) } - } else if yyct4435 == codecSelferValueTypeArray1234 { - yyl4435 := r.ReadArrayStart() - if yyl4435 == 0 { + } else if yyct4440 == codecSelferValueTypeArray1234 { + yyl4440 := r.ReadArrayStart() + if yyl4440 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4435, d) + x.codecDecodeSelfFromArray(yyl4440, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55209,12 +55257,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4436Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4436Slc - var yyhl4436 bool = l >= 0 - for yyj4436 := 0; ; yyj4436++ { - if yyhl4436 { - if yyj4436 >= l { + var yys4441Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4441Slc + var yyhl4441 bool = l >= 0 + for yyj4441 := 0; ; yyj4441++ { + if yyhl4441 { + if yyj4441 >= l { break } } else { @@ -55223,10 +55271,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4436Slc = r.DecodeBytes(yys4436Slc, true, true) - yys4436 := string(yys4436Slc) + yys4441Slc = r.DecodeBytes(yys4441Slc, true, true) + yys4441 := string(yys4441Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4436 { + switch yys4441 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -55243,8 +55291,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4439 := &x.ObjectMeta - yyv4439.CodecDecodeSelf(d) + yyv4444 := &x.ObjectMeta + yyv4444.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -55256,18 +55304,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4441 := &x.Data - yym4442 := z.DecBinary() - _ = yym4442 + yyv4446 := &x.Data + yym4447 := z.DecBinary() + _ = yym4447 if false { } else { - *yyv4441 = r.DecodeBytes(*(*[]byte)(yyv4441), false, false) + *yyv4446 = r.DecodeBytes(*(*[]byte)(yyv4446), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4436) - } // end switch yys4436 - } // end for yyj4436 + z.DecStructFieldNotFound(-1, yys4441) + } // end switch yys4441 + } // end for yyj4441 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55275,16 +55323,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4443 int - var yyb4443 bool - var yyhl4443 bool = l >= 0 - yyj4443++ - if yyhl4443 { - yyb4443 = yyj4443 > l + var yyj4448 int + var yyb4448 bool + var yyhl4448 bool = l >= 0 + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4443 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4443 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55294,13 +55342,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4443++ - if yyhl4443 { - yyb4443 = yyj4443 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4443 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4443 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55310,13 +55358,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4443++ - if yyhl4443 { - yyb4443 = yyj4443 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4443 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4443 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55324,16 +55372,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4446 := &x.ObjectMeta - yyv4446.CodecDecodeSelf(d) + yyv4451 := &x.ObjectMeta + yyv4451.CodecDecodeSelf(d) } - yyj4443++ - if yyhl4443 { - yyb4443 = yyj4443 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4443 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4443 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55343,13 +55391,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4443++ - if yyhl4443 { - yyb4443 = yyj4443 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4443 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4443 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55357,26 +55405,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4448 := &x.Data - yym4449 := z.DecBinary() - _ = yym4449 + yyv4453 := &x.Data + yym4454 := z.DecBinary() + _ = yym4454 if false { } else { - *yyv4448 = r.DecodeBytes(*(*[]byte)(yyv4448), false, false) + *yyv4453 = r.DecodeBytes(*(*[]byte)(yyv4453), false, false) } } for { - yyj4443++ - if yyhl4443 { - yyb4443 = yyj4443 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4443 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4443 { + if yyb4448 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4443-1, "") + z.DecStructFieldNotFound(yyj4448-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55386,10 +55434,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 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) } @@ -55399,127 +55447,12 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4452 := *v - yyh4452, yyl4452 := z.DecSliceHelperStart() - var yyc4452 bool - if yyl4452 == 0 { - if yyv4452 == nil { - yyv4452 = []OwnerReference{} - yyc4452 = true - } else if len(yyv4452) != 0 { - yyv4452 = yyv4452[:0] - yyc4452 = true - } - } else if yyl4452 > 0 { - var yyrr4452, yyrl4452 int - var yyrt4452 bool - if yyl4452 > cap(yyv4452) { - - yyrg4452 := len(yyv4452) > 0 - yyv24452 := yyv4452 - yyrl4452, yyrt4452 = z.DecInferLen(yyl4452, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4452 { - if yyrl4452 <= cap(yyv4452) { - yyv4452 = yyv4452[:yyrl4452] - } else { - yyv4452 = make([]OwnerReference, yyrl4452) - } - } else { - yyv4452 = make([]OwnerReference, yyrl4452) - } - yyc4452 = true - yyrr4452 = len(yyv4452) - if yyrg4452 { - copy(yyv4452, yyv24452) - } - } else if yyl4452 != len(yyv4452) { - yyv4452 = yyv4452[:yyl4452] - yyc4452 = true - } - yyj4452 := 0 - for ; yyj4452 < yyrr4452; yyj4452++ { - yyh4452.ElemContainerState(yyj4452) - if r.TryDecodeAsNil() { - yyv4452[yyj4452] = OwnerReference{} - } else { - yyv4453 := &yyv4452[yyj4452] - yyv4453.CodecDecodeSelf(d) - } - - } - if yyrt4452 { - for ; yyj4452 < yyl4452; yyj4452++ { - yyv4452 = append(yyv4452, OwnerReference{}) - yyh4452.ElemContainerState(yyj4452) - if r.TryDecodeAsNil() { - yyv4452[yyj4452] = OwnerReference{} - } else { - yyv4454 := &yyv4452[yyj4452] - yyv4454.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4452 := 0 - for ; !r.CheckBreak(); yyj4452++ { - - if yyj4452 >= len(yyv4452) { - yyv4452 = append(yyv4452, OwnerReference{}) // var yyz4452 OwnerReference - yyc4452 = true - } - yyh4452.ElemContainerState(yyj4452) - if yyj4452 < len(yyv4452) { - if r.TryDecodeAsNil() { - yyv4452[yyj4452] = OwnerReference{} - } else { - yyv4455 := &yyv4452[yyj4452] - yyv4455.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4452 < len(yyv4452) { - yyv4452 = yyv4452[:yyj4452] - yyc4452 = true - } else if yyj4452 == 0 && yyv4452 == nil { - yyv4452 = []OwnerReference{} - yyc4452 = true - } - } - yyh4452.End() - if yyc4452 { - *v = yyv4452 - } -} - -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 _, yyv4456 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4456.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 - yyv4457 := *v yyh4457, yyl4457 := z.DecSliceHelperStart() var yyc4457 bool if yyl4457 == 0 { if yyv4457 == nil { - yyv4457 = []PersistentVolumeAccessMode{} + yyv4457 = []OwnerReference{} yyc4457 = true } else if len(yyv4457) != 0 { yyv4457 = yyv4457[:0] @@ -55530,18 +55463,23 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum var yyrt4457 bool if yyl4457 > cap(yyv4457) { - yyrl4457, yyrt4457 = z.DecInferLen(yyl4457, z.DecBasicHandle().MaxInitLen, 16) + yyrg4457 := len(yyv4457) > 0 + yyv24457 := yyv4457 + yyrl4457, yyrt4457 = z.DecInferLen(yyl4457, z.DecBasicHandle().MaxInitLen, 72) if yyrt4457 { if yyrl4457 <= cap(yyv4457) { yyv4457 = yyv4457[:yyrl4457] } else { - yyv4457 = make([]PersistentVolumeAccessMode, yyrl4457) + yyv4457 = make([]OwnerReference, yyrl4457) } } else { - yyv4457 = make([]PersistentVolumeAccessMode, yyrl4457) + yyv4457 = make([]OwnerReference, yyrl4457) } yyc4457 = true yyrr4457 = len(yyv4457) + if yyrg4457 { + copy(yyv4457, yyv24457) + } } else if yyl4457 != len(yyv4457) { yyv4457 = yyv4457[:yyl4457] yyc4457 = true @@ -55550,20 +55488,22 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum for ; yyj4457 < yyrr4457; yyj4457++ { yyh4457.ElemContainerState(yyj4457) if r.TryDecodeAsNil() { - yyv4457[yyj4457] = "" + yyv4457[yyj4457] = OwnerReference{} } else { - yyv4457[yyj4457] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4458 := &yyv4457[yyj4457] + yyv4458.CodecDecodeSelf(d) } } if yyrt4457 { for ; yyj4457 < yyl4457; yyj4457++ { - yyv4457 = append(yyv4457, "") + yyv4457 = append(yyv4457, OwnerReference{}) yyh4457.ElemContainerState(yyj4457) if r.TryDecodeAsNil() { - yyv4457[yyj4457] = "" + yyv4457[yyj4457] = OwnerReference{} } else { - yyv4457[yyj4457] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4459 := &yyv4457[yyj4457] + yyv4459.CodecDecodeSelf(d) } } @@ -55574,15 +55514,16 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum for ; !r.CheckBreak(); yyj4457++ { if yyj4457 >= len(yyv4457) { - yyv4457 = append(yyv4457, "") // var yyz4457 PersistentVolumeAccessMode + yyv4457 = append(yyv4457, OwnerReference{}) // var yyz4457 OwnerReference yyc4457 = true } yyh4457.ElemContainerState(yyj4457) if yyj4457 < len(yyv4457) { if r.TryDecodeAsNil() { - yyv4457[yyj4457] = "" + yyv4457[yyj4457] = OwnerReference{} } else { - yyv4457[yyj4457] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4460 := &yyv4457[yyj4457] + yyv4460.CodecDecodeSelf(d) } } else { @@ -55594,7 +55535,7 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum yyv4457 = yyv4457[:yyj4457] yyc4457 = true } else if yyj4457 == 0 && yyv4457 == nil { - yyv4457 = []PersistentVolumeAccessMode{} + yyv4457 = []OwnerReference{} yyc4457 = true } } @@ -55604,101 +55545,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 _, yyv4461 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4462 := &yyv4461 - yy4462.CodecEncodeSelf(e) + yyv4461.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 - yyv4463 := *v - yyh4463, yyl4463 := z.DecSliceHelperStart() - var yyc4463 bool - if yyl4463 == 0 { - if yyv4463 == nil { - yyv4463 = []PersistentVolume{} - yyc4463 = true - } else if len(yyv4463) != 0 { - yyv4463 = yyv4463[:0] - yyc4463 = true + yyv4462 := *v + yyh4462, yyl4462 := z.DecSliceHelperStart() + var yyc4462 bool + if yyl4462 == 0 { + if yyv4462 == nil { + yyv4462 = []PersistentVolumeAccessMode{} + yyc4462 = true + } else if len(yyv4462) != 0 { + yyv4462 = yyv4462[:0] + yyc4462 = true } - } else if yyl4463 > 0 { - var yyrr4463, yyrl4463 int - var yyrt4463 bool - if yyl4463 > cap(yyv4463) { + } else if yyl4462 > 0 { + var yyrr4462, yyrl4462 int + var yyrt4462 bool + if yyl4462 > cap(yyv4462) { - yyrg4463 := len(yyv4463) > 0 - yyv24463 := yyv4463 - yyrl4463, yyrt4463 = z.DecInferLen(yyl4463, z.DecBasicHandle().MaxInitLen, 464) - if yyrt4463 { - if yyrl4463 <= cap(yyv4463) { - yyv4463 = yyv4463[:yyrl4463] + yyrl4462, yyrt4462 = z.DecInferLen(yyl4462, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4462 { + if yyrl4462 <= cap(yyv4462) { + yyv4462 = yyv4462[:yyrl4462] } else { - yyv4463 = make([]PersistentVolume, yyrl4463) + yyv4462 = make([]PersistentVolumeAccessMode, yyrl4462) } } else { - yyv4463 = make([]PersistentVolume, yyrl4463) + yyv4462 = make([]PersistentVolumeAccessMode, yyrl4462) } - yyc4463 = true - yyrr4463 = len(yyv4463) - if yyrg4463 { - copy(yyv4463, yyv24463) - } - } else if yyl4463 != len(yyv4463) { - yyv4463 = yyv4463[:yyl4463] - yyc4463 = true + yyc4462 = true + yyrr4462 = len(yyv4462) + } else if yyl4462 != len(yyv4462) { + yyv4462 = yyv4462[:yyl4462] + yyc4462 = true } - yyj4463 := 0 - for ; yyj4463 < yyrr4463; yyj4463++ { - yyh4463.ElemContainerState(yyj4463) + yyj4462 := 0 + for ; yyj4462 < yyrr4462; yyj4462++ { + yyh4462.ElemContainerState(yyj4462) if r.TryDecodeAsNil() { - yyv4463[yyj4463] = PersistentVolume{} + yyv4462[yyj4462] = "" } else { - yyv4464 := &yyv4463[yyj4463] - yyv4464.CodecDecodeSelf(d) + yyv4462[yyj4462] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4463 { - for ; yyj4463 < yyl4463; yyj4463++ { - yyv4463 = append(yyv4463, PersistentVolume{}) - yyh4463.ElemContainerState(yyj4463) + if yyrt4462 { + for ; yyj4462 < yyl4462; yyj4462++ { + yyv4462 = append(yyv4462, "") + yyh4462.ElemContainerState(yyj4462) if r.TryDecodeAsNil() { - yyv4463[yyj4463] = PersistentVolume{} + yyv4462[yyj4462] = "" } else { - yyv4465 := &yyv4463[yyj4463] - yyv4465.CodecDecodeSelf(d) + yyv4462[yyj4462] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4463 := 0 - for ; !r.CheckBreak(); yyj4463++ { + yyj4462 := 0 + for ; !r.CheckBreak(); yyj4462++ { - if yyj4463 >= len(yyv4463) { - yyv4463 = append(yyv4463, PersistentVolume{}) // var yyz4463 PersistentVolume - yyc4463 = true + if yyj4462 >= len(yyv4462) { + yyv4462 = append(yyv4462, "") // var yyz4462 PersistentVolumeAccessMode + yyc4462 = true } - yyh4463.ElemContainerState(yyj4463) - if yyj4463 < len(yyv4463) { + yyh4462.ElemContainerState(yyj4462) + if yyj4462 < len(yyv4462) { if r.TryDecodeAsNil() { - yyv4463[yyj4463] = PersistentVolume{} + yyv4462[yyj4462] = "" } else { - yyv4466 := &yyv4463[yyj4463] - yyv4466.CodecDecodeSelf(d) + yyv4462[yyj4462] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -55706,115 +55638,115 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4463 < len(yyv4463) { - yyv4463 = yyv4463[:yyj4463] - yyc4463 = true - } else if yyj4463 == 0 && yyv4463 == nil { - yyv4463 = []PersistentVolume{} - yyc4463 = true + if yyj4462 < len(yyv4462) { + yyv4462 = yyv4462[:yyj4462] + yyc4462 = true + } else if yyj4462 == 0 && yyv4462 == nil { + yyv4462 = []PersistentVolumeAccessMode{} + yyc4462 = true } } - yyh4463.End() - if yyc4463 { - *v = yyv4463 + yyh4462.End() + if yyc4462 { + *v = yyv4462 } } -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 _, yyv4467 := range v { + for _, yyv4466 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4468 := &yyv4467 - yy4468.CodecEncodeSelf(e) + yy4467 := &yyv4466 + yy4467.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 - yyv4469 := *v - yyh4469, yyl4469 := z.DecSliceHelperStart() - var yyc4469 bool - if yyl4469 == 0 { - if yyv4469 == nil { - yyv4469 = []PersistentVolumeClaim{} - yyc4469 = true - } else if len(yyv4469) != 0 { - yyv4469 = yyv4469[:0] - yyc4469 = true + yyv4468 := *v + yyh4468, yyl4468 := z.DecSliceHelperStart() + var yyc4468 bool + if yyl4468 == 0 { + if yyv4468 == nil { + yyv4468 = []PersistentVolume{} + yyc4468 = true + } else if len(yyv4468) != 0 { + yyv4468 = yyv4468[:0] + yyc4468 = true } - } else if yyl4469 > 0 { - var yyrr4469, yyrl4469 int - var yyrt4469 bool - if yyl4469 > cap(yyv4469) { + } else if yyl4468 > 0 { + var yyrr4468, yyrl4468 int + var yyrt4468 bool + if yyl4468 > cap(yyv4468) { - yyrg4469 := len(yyv4469) > 0 - yyv24469 := yyv4469 - yyrl4469, yyrt4469 = z.DecInferLen(yyl4469, z.DecBasicHandle().MaxInitLen, 352) - if yyrt4469 { - if yyrl4469 <= cap(yyv4469) { - yyv4469 = yyv4469[:yyrl4469] + yyrg4468 := len(yyv4468) > 0 + yyv24468 := yyv4468 + yyrl4468, yyrt4468 = z.DecInferLen(yyl4468, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4468 { + if yyrl4468 <= cap(yyv4468) { + yyv4468 = yyv4468[:yyrl4468] } else { - yyv4469 = make([]PersistentVolumeClaim, yyrl4469) + yyv4468 = make([]PersistentVolume, yyrl4468) } } else { - yyv4469 = make([]PersistentVolumeClaim, yyrl4469) + yyv4468 = make([]PersistentVolume, yyrl4468) } - yyc4469 = true - yyrr4469 = len(yyv4469) - if yyrg4469 { - copy(yyv4469, yyv24469) + yyc4468 = true + yyrr4468 = len(yyv4468) + if yyrg4468 { + copy(yyv4468, yyv24468) } - } else if yyl4469 != len(yyv4469) { - yyv4469 = yyv4469[:yyl4469] - yyc4469 = true + } else if yyl4468 != len(yyv4468) { + yyv4468 = yyv4468[:yyl4468] + yyc4468 = true } - yyj4469 := 0 - for ; yyj4469 < yyrr4469; yyj4469++ { - yyh4469.ElemContainerState(yyj4469) + yyj4468 := 0 + for ; yyj4468 < yyrr4468; yyj4468++ { + yyh4468.ElemContainerState(yyj4468) if r.TryDecodeAsNil() { - yyv4469[yyj4469] = PersistentVolumeClaim{} + yyv4468[yyj4468] = PersistentVolume{} } else { - yyv4470 := &yyv4469[yyj4469] - yyv4470.CodecDecodeSelf(d) + yyv4469 := &yyv4468[yyj4468] + yyv4469.CodecDecodeSelf(d) } } - if yyrt4469 { - for ; yyj4469 < yyl4469; yyj4469++ { - yyv4469 = append(yyv4469, PersistentVolumeClaim{}) - yyh4469.ElemContainerState(yyj4469) + if yyrt4468 { + for ; yyj4468 < yyl4468; yyj4468++ { + yyv4468 = append(yyv4468, PersistentVolume{}) + yyh4468.ElemContainerState(yyj4468) if r.TryDecodeAsNil() { - yyv4469[yyj4469] = PersistentVolumeClaim{} + yyv4468[yyj4468] = PersistentVolume{} } else { - yyv4471 := &yyv4469[yyj4469] - yyv4471.CodecDecodeSelf(d) + yyv4470 := &yyv4468[yyj4468] + yyv4470.CodecDecodeSelf(d) } } } } else { - yyj4469 := 0 - for ; !r.CheckBreak(); yyj4469++ { + yyj4468 := 0 + for ; !r.CheckBreak(); yyj4468++ { - if yyj4469 >= len(yyv4469) { - yyv4469 = append(yyv4469, PersistentVolumeClaim{}) // var yyz4469 PersistentVolumeClaim - yyc4469 = true + if yyj4468 >= len(yyv4468) { + yyv4468 = append(yyv4468, PersistentVolume{}) // var yyz4468 PersistentVolume + yyc4468 = true } - yyh4469.ElemContainerState(yyj4469) - if yyj4469 < len(yyv4469) { + yyh4468.ElemContainerState(yyj4468) + if yyj4468 < len(yyv4468) { if r.TryDecodeAsNil() { - yyv4469[yyj4469] = PersistentVolumeClaim{} + yyv4468[yyj4468] = PersistentVolume{} } else { - yyv4472 := &yyv4469[yyj4469] - yyv4472.CodecDecodeSelf(d) + yyv4471 := &yyv4468[yyj4468] + yyv4471.CodecDecodeSelf(d) } } else { @@ -55822,115 +55754,115 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4469 < len(yyv4469) { - yyv4469 = yyv4469[:yyj4469] - yyc4469 = true - } else if yyj4469 == 0 && yyv4469 == nil { - yyv4469 = []PersistentVolumeClaim{} - yyc4469 = true + if yyj4468 < len(yyv4468) { + yyv4468 = yyv4468[:yyj4468] + yyc4468 = true + } else if yyj4468 == 0 && yyv4468 == nil { + yyv4468 = []PersistentVolume{} + yyc4468 = true } } - yyh4469.End() - if yyc4469 { - *v = yyv4469 + yyh4468.End() + if yyc4468 { + *v = yyv4468 } } -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 _, yyv4473 := range v { + for _, yyv4472 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4474 := &yyv4473 - yy4474.CodecEncodeSelf(e) + yy4473 := &yyv4472 + yy4473.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 - yyv4475 := *v - yyh4475, yyl4475 := z.DecSliceHelperStart() - var yyc4475 bool - if yyl4475 == 0 { - if yyv4475 == nil { - yyv4475 = []KeyToPath{} - yyc4475 = true - } else if len(yyv4475) != 0 { - yyv4475 = yyv4475[:0] - yyc4475 = true + yyv4474 := *v + yyh4474, yyl4474 := z.DecSliceHelperStart() + var yyc4474 bool + if yyl4474 == 0 { + if yyv4474 == nil { + yyv4474 = []PersistentVolumeClaim{} + yyc4474 = true + } else if len(yyv4474) != 0 { + yyv4474 = yyv4474[:0] + yyc4474 = true } - } else if yyl4475 > 0 { - var yyrr4475, yyrl4475 int - var yyrt4475 bool - if yyl4475 > cap(yyv4475) { + } else if yyl4474 > 0 { + var yyrr4474, yyrl4474 int + var yyrt4474 bool + if yyl4474 > cap(yyv4474) { - yyrg4475 := len(yyv4475) > 0 - yyv24475 := yyv4475 - yyrl4475, yyrt4475 = z.DecInferLen(yyl4475, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4475 { - if yyrl4475 <= cap(yyv4475) { - yyv4475 = yyv4475[:yyrl4475] + yyrg4474 := len(yyv4474) > 0 + yyv24474 := yyv4474 + yyrl4474, yyrt4474 = z.DecInferLen(yyl4474, z.DecBasicHandle().MaxInitLen, 352) + if yyrt4474 { + if yyrl4474 <= cap(yyv4474) { + yyv4474 = yyv4474[:yyrl4474] } else { - yyv4475 = make([]KeyToPath, yyrl4475) + yyv4474 = make([]PersistentVolumeClaim, yyrl4474) } } else { - yyv4475 = make([]KeyToPath, yyrl4475) + yyv4474 = make([]PersistentVolumeClaim, yyrl4474) } - yyc4475 = true - yyrr4475 = len(yyv4475) - if yyrg4475 { - copy(yyv4475, yyv24475) + yyc4474 = true + yyrr4474 = len(yyv4474) + if yyrg4474 { + copy(yyv4474, yyv24474) } - } else if yyl4475 != len(yyv4475) { - yyv4475 = yyv4475[:yyl4475] - yyc4475 = true + } else if yyl4474 != len(yyv4474) { + yyv4474 = yyv4474[:yyl4474] + yyc4474 = true } - yyj4475 := 0 - for ; yyj4475 < yyrr4475; yyj4475++ { - yyh4475.ElemContainerState(yyj4475) + yyj4474 := 0 + for ; yyj4474 < yyrr4474; yyj4474++ { + yyh4474.ElemContainerState(yyj4474) if r.TryDecodeAsNil() { - yyv4475[yyj4475] = KeyToPath{} + yyv4474[yyj4474] = PersistentVolumeClaim{} } else { - yyv4476 := &yyv4475[yyj4475] - yyv4476.CodecDecodeSelf(d) + yyv4475 := &yyv4474[yyj4474] + yyv4475.CodecDecodeSelf(d) } } - if yyrt4475 { - for ; yyj4475 < yyl4475; yyj4475++ { - yyv4475 = append(yyv4475, KeyToPath{}) - yyh4475.ElemContainerState(yyj4475) + if yyrt4474 { + for ; yyj4474 < yyl4474; yyj4474++ { + yyv4474 = append(yyv4474, PersistentVolumeClaim{}) + yyh4474.ElemContainerState(yyj4474) if r.TryDecodeAsNil() { - yyv4475[yyj4475] = KeyToPath{} + yyv4474[yyj4474] = PersistentVolumeClaim{} } else { - yyv4477 := &yyv4475[yyj4475] - yyv4477.CodecDecodeSelf(d) + yyv4476 := &yyv4474[yyj4474] + yyv4476.CodecDecodeSelf(d) } } } } else { - yyj4475 := 0 - for ; !r.CheckBreak(); yyj4475++ { + yyj4474 := 0 + for ; !r.CheckBreak(); yyj4474++ { - if yyj4475 >= len(yyv4475) { - yyv4475 = append(yyv4475, KeyToPath{}) // var yyz4475 KeyToPath - yyc4475 = true + if yyj4474 >= len(yyv4474) { + yyv4474 = append(yyv4474, PersistentVolumeClaim{}) // var yyz4474 PersistentVolumeClaim + yyc4474 = true } - yyh4475.ElemContainerState(yyj4475) - if yyj4475 < len(yyv4475) { + yyh4474.ElemContainerState(yyj4474) + if yyj4474 < len(yyv4474) { if r.TryDecodeAsNil() { - yyv4475[yyj4475] = KeyToPath{} + yyv4474[yyj4474] = PersistentVolumeClaim{} } else { - yyv4478 := &yyv4475[yyj4475] - yyv4478.CodecDecodeSelf(d) + yyv4477 := &yyv4474[yyj4474] + yyv4477.CodecDecodeSelf(d) } } else { @@ -55938,115 +55870,115 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4475 < len(yyv4475) { - yyv4475 = yyv4475[:yyj4475] - yyc4475 = true - } else if yyj4475 == 0 && yyv4475 == nil { - yyv4475 = []KeyToPath{} - yyc4475 = true + if yyj4474 < len(yyv4474) { + yyv4474 = yyv4474[:yyj4474] + yyc4474 = true + } else if yyj4474 == 0 && yyv4474 == nil { + yyv4474 = []PersistentVolumeClaim{} + yyc4474 = true } } - yyh4475.End() - if yyc4475 { - *v = yyv4475 + yyh4474.End() + if yyc4474 { + *v = yyv4474 } } -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 _, yyv4479 := range v { + for _, yyv4478 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4480 := &yyv4479 - yy4480.CodecEncodeSelf(e) + yy4479 := &yyv4478 + yy4479.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 - yyv4481 := *v - yyh4481, yyl4481 := z.DecSliceHelperStart() - var yyc4481 bool - if yyl4481 == 0 { - if yyv4481 == nil { - yyv4481 = []HTTPHeader{} - yyc4481 = true - } else if len(yyv4481) != 0 { - yyv4481 = yyv4481[:0] - yyc4481 = true + yyv4480 := *v + yyh4480, yyl4480 := z.DecSliceHelperStart() + var yyc4480 bool + if yyl4480 == 0 { + if yyv4480 == nil { + yyv4480 = []KeyToPath{} + yyc4480 = true + } else if len(yyv4480) != 0 { + yyv4480 = yyv4480[:0] + yyc4480 = true } - } else if yyl4481 > 0 { - var yyrr4481, yyrl4481 int - var yyrt4481 bool - if yyl4481 > cap(yyv4481) { + } else if yyl4480 > 0 { + var yyrr4480, yyrl4480 int + var yyrt4480 bool + if yyl4480 > cap(yyv4480) { - yyrg4481 := len(yyv4481) > 0 - yyv24481 := yyv4481 - yyrl4481, yyrt4481 = z.DecInferLen(yyl4481, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4481 { - if yyrl4481 <= cap(yyv4481) { - yyv4481 = yyv4481[:yyrl4481] + yyrg4480 := len(yyv4480) > 0 + yyv24480 := yyv4480 + yyrl4480, yyrt4480 = z.DecInferLen(yyl4480, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4480 { + if yyrl4480 <= cap(yyv4480) { + yyv4480 = yyv4480[:yyrl4480] } else { - yyv4481 = make([]HTTPHeader, yyrl4481) + yyv4480 = make([]KeyToPath, yyrl4480) } } else { - yyv4481 = make([]HTTPHeader, yyrl4481) + yyv4480 = make([]KeyToPath, yyrl4480) } - yyc4481 = true - yyrr4481 = len(yyv4481) - if yyrg4481 { - copy(yyv4481, yyv24481) + yyc4480 = true + yyrr4480 = len(yyv4480) + if yyrg4480 { + copy(yyv4480, yyv24480) } - } else if yyl4481 != len(yyv4481) { - yyv4481 = yyv4481[:yyl4481] - yyc4481 = true + } else if yyl4480 != len(yyv4480) { + yyv4480 = yyv4480[:yyl4480] + yyc4480 = true } - yyj4481 := 0 - for ; yyj4481 < yyrr4481; yyj4481++ { - yyh4481.ElemContainerState(yyj4481) + yyj4480 := 0 + for ; yyj4480 < yyrr4480; yyj4480++ { + yyh4480.ElemContainerState(yyj4480) if r.TryDecodeAsNil() { - yyv4481[yyj4481] = HTTPHeader{} + yyv4480[yyj4480] = KeyToPath{} } else { - yyv4482 := &yyv4481[yyj4481] - yyv4482.CodecDecodeSelf(d) + yyv4481 := &yyv4480[yyj4480] + yyv4481.CodecDecodeSelf(d) } } - if yyrt4481 { - for ; yyj4481 < yyl4481; yyj4481++ { - yyv4481 = append(yyv4481, HTTPHeader{}) - yyh4481.ElemContainerState(yyj4481) + if yyrt4480 { + for ; yyj4480 < yyl4480; yyj4480++ { + yyv4480 = append(yyv4480, KeyToPath{}) + yyh4480.ElemContainerState(yyj4480) if r.TryDecodeAsNil() { - yyv4481[yyj4481] = HTTPHeader{} + yyv4480[yyj4480] = KeyToPath{} } else { - yyv4483 := &yyv4481[yyj4481] - yyv4483.CodecDecodeSelf(d) + yyv4482 := &yyv4480[yyj4480] + yyv4482.CodecDecodeSelf(d) } } } } else { - yyj4481 := 0 - for ; !r.CheckBreak(); yyj4481++ { + yyj4480 := 0 + for ; !r.CheckBreak(); yyj4480++ { - if yyj4481 >= len(yyv4481) { - yyv4481 = append(yyv4481, HTTPHeader{}) // var yyz4481 HTTPHeader - yyc4481 = true + if yyj4480 >= len(yyv4480) { + yyv4480 = append(yyv4480, KeyToPath{}) // var yyz4480 KeyToPath + yyc4480 = true } - yyh4481.ElemContainerState(yyj4481) - if yyj4481 < len(yyv4481) { + yyh4480.ElemContainerState(yyj4480) + if yyj4480 < len(yyv4480) { if r.TryDecodeAsNil() { - yyv4481[yyj4481] = HTTPHeader{} + yyv4480[yyj4480] = KeyToPath{} } else { - yyv4484 := &yyv4481[yyj4481] - yyv4484.CodecDecodeSelf(d) + yyv4483 := &yyv4480[yyj4480] + yyv4483.CodecDecodeSelf(d) } } else { @@ -56054,33 +55986,34 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4481 < len(yyv4481) { - yyv4481 = yyv4481[:yyj4481] - yyc4481 = true - } else if yyj4481 == 0 && yyv4481 == nil { - yyv4481 = []HTTPHeader{} - yyc4481 = true + if yyj4480 < len(yyv4480) { + yyv4480 = yyv4480[:yyj4480] + yyc4480 = true + } else if yyj4480 == 0 && yyv4480 == nil { + yyv4480 = []KeyToPath{} + yyc4480 = true } } - yyh4481.End() - if yyc4481 { - *v = yyv4481 + yyh4480.End() + if yyc4480 { + *v = yyv4480 } } -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 _, yyv4485 := range v { + for _, yyv4484 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4485.CodecEncodeSelf(e) + yy4485 := &yyv4484 + yy4485.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 @@ -56090,7 +56023,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode var yyc4486 bool if yyl4486 == 0 { if yyv4486 == nil { - yyv4486 = []Capability{} + yyv4486 = []HTTPHeader{} yyc4486 = true } else if len(yyv4486) != 0 { yyv4486 = yyv4486[:0] @@ -56101,18 +56034,23 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode var yyrt4486 bool if yyl4486 > cap(yyv4486) { - yyrl4486, yyrt4486 = z.DecInferLen(yyl4486, z.DecBasicHandle().MaxInitLen, 16) + yyrg4486 := len(yyv4486) > 0 + yyv24486 := yyv4486 + yyrl4486, yyrt4486 = z.DecInferLen(yyl4486, z.DecBasicHandle().MaxInitLen, 32) if yyrt4486 { if yyrl4486 <= cap(yyv4486) { yyv4486 = yyv4486[:yyrl4486] } else { - yyv4486 = make([]Capability, yyrl4486) + yyv4486 = make([]HTTPHeader, yyrl4486) } } else { - yyv4486 = make([]Capability, yyrl4486) + yyv4486 = make([]HTTPHeader, yyrl4486) } yyc4486 = true yyrr4486 = len(yyv4486) + if yyrg4486 { + copy(yyv4486, yyv24486) + } } else if yyl4486 != len(yyv4486) { yyv4486 = yyv4486[:yyl4486] yyc4486 = true @@ -56121,20 +56059,22 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode for ; yyj4486 < yyrr4486; yyj4486++ { yyh4486.ElemContainerState(yyj4486) if r.TryDecodeAsNil() { - yyv4486[yyj4486] = "" + yyv4486[yyj4486] = HTTPHeader{} } else { - yyv4486[yyj4486] = Capability(r.DecodeString()) + yyv4487 := &yyv4486[yyj4486] + yyv4487.CodecDecodeSelf(d) } } if yyrt4486 { for ; yyj4486 < yyl4486; yyj4486++ { - yyv4486 = append(yyv4486, "") + yyv4486 = append(yyv4486, HTTPHeader{}) yyh4486.ElemContainerState(yyj4486) if r.TryDecodeAsNil() { - yyv4486[yyj4486] = "" + yyv4486[yyj4486] = HTTPHeader{} } else { - yyv4486[yyj4486] = Capability(r.DecodeString()) + yyv4488 := &yyv4486[yyj4486] + yyv4488.CodecDecodeSelf(d) } } @@ -56145,15 +56085,16 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode for ; !r.CheckBreak(); yyj4486++ { if yyj4486 >= len(yyv4486) { - yyv4486 = append(yyv4486, "") // var yyz4486 Capability + yyv4486 = append(yyv4486, HTTPHeader{}) // var yyz4486 HTTPHeader yyc4486 = true } yyh4486.ElemContainerState(yyj4486) if yyj4486 < len(yyv4486) { if r.TryDecodeAsNil() { - yyv4486[yyj4486] = "" + yyv4486[yyj4486] = HTTPHeader{} } else { - yyv4486[yyj4486] = Capability(r.DecodeString()) + yyv4489 := &yyv4486[yyj4486] + yyv4489.CodecDecodeSelf(d) } } else { @@ -56165,7 +56106,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode yyv4486 = yyv4486[:yyj4486] yyc4486 = true } else if yyj4486 == 0 && yyv4486 == nil { - yyv4486 = []Capability{} + yyv4486 = []HTTPHeader{} yyc4486 = true } } @@ -56175,15 +56116,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 _, yyv4490 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4491 := &yyv4490 - yy4491.CodecEncodeSelf(e) + yyv4490.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 + + yyv4491 := *v + yyh4491, yyl4491 := z.DecSliceHelperStart() + var yyc4491 bool + if yyl4491 == 0 { + if yyv4491 == nil { + yyv4491 = []Capability{} + yyc4491 = true + } else if len(yyv4491) != 0 { + yyv4491 = yyv4491[:0] + yyc4491 = true + } + } else if yyl4491 > 0 { + var yyrr4491, yyrl4491 int + var yyrt4491 bool + if yyl4491 > cap(yyv4491) { + + yyrl4491, yyrt4491 = z.DecInferLen(yyl4491, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4491 { + if yyrl4491 <= cap(yyv4491) { + yyv4491 = yyv4491[:yyrl4491] + } else { + yyv4491 = make([]Capability, yyrl4491) + } + } else { + yyv4491 = make([]Capability, yyrl4491) + } + yyc4491 = true + yyrr4491 = len(yyv4491) + } else if yyl4491 != len(yyv4491) { + yyv4491 = yyv4491[:yyl4491] + yyc4491 = true + } + yyj4491 := 0 + for ; yyj4491 < yyrr4491; yyj4491++ { + yyh4491.ElemContainerState(yyj4491) + if r.TryDecodeAsNil() { + yyv4491[yyj4491] = "" + } else { + yyv4491[yyj4491] = Capability(r.DecodeString()) + } + + } + if yyrt4491 { + for ; yyj4491 < yyl4491; yyj4491++ { + yyv4491 = append(yyv4491, "") + yyh4491.ElemContainerState(yyj4491) + if r.TryDecodeAsNil() { + yyv4491[yyj4491] = "" + } else { + yyv4491[yyj4491] = Capability(r.DecodeString()) + } + + } + } + + } else { + yyj4491 := 0 + for ; !r.CheckBreak(); yyj4491++ { + + if yyj4491 >= len(yyv4491) { + yyv4491 = append(yyv4491, "") // var yyz4491 Capability + yyc4491 = true + } + yyh4491.ElemContainerState(yyj4491) + if yyj4491 < len(yyv4491) { + if r.TryDecodeAsNil() { + yyv4491[yyj4491] = "" + } else { + yyv4491[yyj4491] = Capability(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4491 < len(yyv4491) { + yyv4491 = yyv4491[:yyj4491] + yyc4491 = true + } else if yyj4491 == 0 && yyv4491 == nil { + yyv4491 = []Capability{} + yyc4491 = true + } + } + yyh4491.End() + if yyc4491 { + *v = yyv4491 + } +} + +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 _, yyv4495 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4496 := &yyv4495 + yy4496.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56193,83 +56241,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4492 := *v - yyh4492, yyl4492 := z.DecSliceHelperStart() - var yyc4492 bool - if yyl4492 == 0 { - if yyv4492 == nil { - yyv4492 = []ContainerPort{} - 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 = []ContainerPort{} + 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, 56) - if yyrt4492 { - if yyrl4492 <= cap(yyv4492) { - yyv4492 = yyv4492[:yyrl4492] + yyrg4497 := len(yyv4497) > 0 + yyv24497 := yyv4497 + yyrl4497, yyrt4497 = z.DecInferLen(yyl4497, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4497 { + if yyrl4497 <= cap(yyv4497) { + yyv4497 = yyv4497[:yyrl4497] } else { - yyv4492 = make([]ContainerPort, yyrl4492) + yyv4497 = make([]ContainerPort, yyrl4497) } } else { - yyv4492 = make([]ContainerPort, yyrl4492) + yyv4497 = make([]ContainerPort, 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] = ContainerPort{} + yyv4497[yyj4497] = ContainerPort{} } else { - yyv4493 := &yyv4492[yyj4492] - yyv4493.CodecDecodeSelf(d) + yyv4498 := &yyv4497[yyj4497] + yyv4498.CodecDecodeSelf(d) } } - if yyrt4492 { - for ; yyj4492 < yyl4492; yyj4492++ { - yyv4492 = append(yyv4492, ContainerPort{}) - yyh4492.ElemContainerState(yyj4492) + if yyrt4497 { + for ; yyj4497 < yyl4497; yyj4497++ { + yyv4497 = append(yyv4497, ContainerPort{}) + yyh4497.ElemContainerState(yyj4497) if r.TryDecodeAsNil() { - yyv4492[yyj4492] = ContainerPort{} + yyv4497[yyj4497] = ContainerPort{} } 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, ContainerPort{}) // var yyz4492 ContainerPort - yyc4492 = true + if yyj4497 >= len(yyv4497) { + yyv4497 = append(yyv4497, ContainerPort{}) // var yyz4497 ContainerPort + yyc4497 = true } - yyh4492.ElemContainerState(yyj4492) - if yyj4492 < len(yyv4492) { + yyh4497.ElemContainerState(yyj4497) + if yyj4497 < len(yyv4497) { if r.TryDecodeAsNil() { - yyv4492[yyj4492] = ContainerPort{} + yyv4497[yyj4497] = ContainerPort{} } else { - yyv4495 := &yyv4492[yyj4492] - yyv4495.CodecDecodeSelf(d) + yyv4500 := &yyv4497[yyj4497] + yyv4500.CodecDecodeSelf(d) } } else { @@ -56277,17 +56325,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4492 < len(yyv4492) { - yyv4492 = yyv4492[:yyj4492] - yyc4492 = true - } else if yyj4492 == 0 && yyv4492 == nil { - yyv4492 = []ContainerPort{} - yyc4492 = true + if yyj4497 < len(yyv4497) { + yyv4497 = yyv4497[:yyj4497] + yyc4497 = true + } else if yyj4497 == 0 && yyv4497 == nil { + yyv4497 = []ContainerPort{} + yyc4497 = true } } - yyh4492.End() - if yyc4492 { - *v = yyv4492 + yyh4497.End() + if yyc4497 { + *v = yyv4497 } } @@ -56296,10 +56344,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, 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) } @@ -56309,83 +56357,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, 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 = []EnvVar{} - 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 = []EnvVar{} + 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, 40) - if yyrt4498 { - if yyrl4498 <= cap(yyv4498) { - yyv4498 = yyv4498[:yyrl4498] + yyrg4503 := len(yyv4503) > 0 + yyv24503 := yyv4503 + yyrl4503, yyrt4503 = z.DecInferLen(yyl4503, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4503 { + if yyrl4503 <= cap(yyv4503) { + yyv4503 = yyv4503[:yyrl4503] } else { - yyv4498 = make([]EnvVar, yyrl4498) + yyv4503 = make([]EnvVar, yyrl4503) } } else { - yyv4498 = make([]EnvVar, yyrl4498) + yyv4503 = make([]EnvVar, 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] = EnvVar{} + yyv4503[yyj4503] = EnvVar{} } else { - yyv4499 := &yyv4498[yyj4498] - yyv4499.CodecDecodeSelf(d) + yyv4504 := &yyv4503[yyj4503] + yyv4504.CodecDecodeSelf(d) } } - if yyrt4498 { - for ; yyj4498 < yyl4498; yyj4498++ { - yyv4498 = append(yyv4498, EnvVar{}) - yyh4498.ElemContainerState(yyj4498) + if yyrt4503 { + for ; yyj4503 < yyl4503; yyj4503++ { + yyv4503 = append(yyv4503, EnvVar{}) + yyh4503.ElemContainerState(yyj4503) if r.TryDecodeAsNil() { - yyv4498[yyj4498] = EnvVar{} + yyv4503[yyj4503] = EnvVar{} } 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, EnvVar{}) // var yyz4498 EnvVar - yyc4498 = true + if yyj4503 >= len(yyv4503) { + yyv4503 = append(yyv4503, EnvVar{}) // var yyz4503 EnvVar + yyc4503 = true } - yyh4498.ElemContainerState(yyj4498) - if yyj4498 < len(yyv4498) { + yyh4503.ElemContainerState(yyj4503) + if yyj4503 < len(yyv4503) { if r.TryDecodeAsNil() { - yyv4498[yyj4498] = EnvVar{} + yyv4503[yyj4503] = EnvVar{} } else { - yyv4501 := &yyv4498[yyj4498] - yyv4501.CodecDecodeSelf(d) + yyv4506 := &yyv4503[yyj4503] + yyv4506.CodecDecodeSelf(d) } } else { @@ -56393,17 +56441,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4498 < len(yyv4498) { - yyv4498 = yyv4498[:yyj4498] - yyc4498 = true - } else if yyj4498 == 0 && yyv4498 == nil { - yyv4498 = []EnvVar{} - yyc4498 = true + if yyj4503 < len(yyv4503) { + yyv4503 = yyv4503[:yyj4503] + yyc4503 = true + } else if yyj4503 == 0 && yyv4503 == nil { + yyv4503 = []EnvVar{} + yyc4503 = true } } - yyh4498.End() - if yyc4498 { - *v = yyv4498 + yyh4503.End() + if yyc4503 { + *v = yyv4503 } } @@ -56412,10 +56460,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod 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) } @@ -56425,83 +56473,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4504 := *v - yyh4504, yyl4504 := z.DecSliceHelperStart() - var yyc4504 bool - if yyl4504 == 0 { - if yyv4504 == nil { - yyv4504 = []VolumeMount{} - 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 = []VolumeMount{} + 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, 56) - if yyrt4504 { - if yyrl4504 <= cap(yyv4504) { - yyv4504 = yyv4504[:yyrl4504] + yyrg4509 := len(yyv4509) > 0 + yyv24509 := yyv4509 + yyrl4509, yyrt4509 = z.DecInferLen(yyl4509, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4509 { + if yyrl4509 <= cap(yyv4509) { + yyv4509 = yyv4509[:yyrl4509] } else { - yyv4504 = make([]VolumeMount, yyrl4504) + yyv4509 = make([]VolumeMount, yyrl4509) } } else { - yyv4504 = make([]VolumeMount, yyrl4504) + yyv4509 = make([]VolumeMount, 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] = VolumeMount{} + yyv4509[yyj4509] = VolumeMount{} } else { - yyv4505 := &yyv4504[yyj4504] - yyv4505.CodecDecodeSelf(d) + yyv4510 := &yyv4509[yyj4509] + yyv4510.CodecDecodeSelf(d) } } - if yyrt4504 { - for ; yyj4504 < yyl4504; yyj4504++ { - yyv4504 = append(yyv4504, VolumeMount{}) - yyh4504.ElemContainerState(yyj4504) + if yyrt4509 { + for ; yyj4509 < yyl4509; yyj4509++ { + yyv4509 = append(yyv4509, VolumeMount{}) + yyh4509.ElemContainerState(yyj4509) if r.TryDecodeAsNil() { - yyv4504[yyj4504] = VolumeMount{} + yyv4509[yyj4509] = VolumeMount{} } 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, VolumeMount{}) // var yyz4504 VolumeMount - yyc4504 = true + if yyj4509 >= len(yyv4509) { + yyv4509 = append(yyv4509, VolumeMount{}) // var yyz4509 VolumeMount + yyc4509 = true } - yyh4504.ElemContainerState(yyj4504) - if yyj4504 < len(yyv4504) { + yyh4509.ElemContainerState(yyj4509) + if yyj4509 < len(yyv4509) { if r.TryDecodeAsNil() { - yyv4504[yyj4504] = VolumeMount{} + yyv4509[yyj4509] = VolumeMount{} } else { - yyv4507 := &yyv4504[yyj4504] - yyv4507.CodecDecodeSelf(d) + yyv4512 := &yyv4509[yyj4509] + yyv4512.CodecDecodeSelf(d) } } else { @@ -56509,17 +56557,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4504 < len(yyv4504) { - yyv4504 = yyv4504[:yyj4504] - yyc4504 = true - } else if yyj4504 == 0 && yyv4504 == nil { - yyv4504 = []VolumeMount{} - yyc4504 = true + if yyj4509 < len(yyv4509) { + yyv4509 = yyv4509[:yyj4509] + yyc4509 = true + } else if yyj4509 == 0 && yyv4509 == nil { + yyv4509 = []VolumeMount{} + yyc4509 = true } } - yyh4504.End() - if yyc4504 { - *v = yyv4504 + yyh4509.End() + if yyc4509 { + *v = yyv4509 } } @@ -56528,10 +56576,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec 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) } @@ -56541,83 +56589,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4510 := *v - yyh4510, yyl4510 := z.DecSliceHelperStart() - var yyc4510 bool - if yyl4510 == 0 { - if yyv4510 == nil { - yyv4510 = []NodeSelectorTerm{} - 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 = []NodeSelectorTerm{} + 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, 24) - if yyrt4510 { - if yyrl4510 <= cap(yyv4510) { - yyv4510 = yyv4510[:yyrl4510] + yyrg4515 := len(yyv4515) > 0 + yyv24515 := yyv4515 + yyrl4515, yyrt4515 = z.DecInferLen(yyl4515, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4515 { + if yyrl4515 <= cap(yyv4515) { + yyv4515 = yyv4515[:yyrl4515] } else { - yyv4510 = make([]NodeSelectorTerm, yyrl4510) + yyv4515 = make([]NodeSelectorTerm, yyrl4515) } } else { - yyv4510 = make([]NodeSelectorTerm, yyrl4510) + yyv4515 = make([]NodeSelectorTerm, 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] = NodeSelectorTerm{} + yyv4515[yyj4515] = NodeSelectorTerm{} } else { - yyv4511 := &yyv4510[yyj4510] - yyv4511.CodecDecodeSelf(d) + yyv4516 := &yyv4515[yyj4515] + yyv4516.CodecDecodeSelf(d) } } - if yyrt4510 { - for ; yyj4510 < yyl4510; yyj4510++ { - yyv4510 = append(yyv4510, NodeSelectorTerm{}) - yyh4510.ElemContainerState(yyj4510) + if yyrt4515 { + for ; yyj4515 < yyl4515; yyj4515++ { + yyv4515 = append(yyv4515, NodeSelectorTerm{}) + yyh4515.ElemContainerState(yyj4515) if r.TryDecodeAsNil() { - yyv4510[yyj4510] = NodeSelectorTerm{} + yyv4515[yyj4515] = NodeSelectorTerm{} } 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, NodeSelectorTerm{}) // var yyz4510 NodeSelectorTerm - yyc4510 = true + if yyj4515 >= len(yyv4515) { + yyv4515 = append(yyv4515, NodeSelectorTerm{}) // var yyz4515 NodeSelectorTerm + yyc4515 = true } - yyh4510.ElemContainerState(yyj4510) - if yyj4510 < len(yyv4510) { + yyh4515.ElemContainerState(yyj4515) + if yyj4515 < len(yyv4515) { if r.TryDecodeAsNil() { - yyv4510[yyj4510] = NodeSelectorTerm{} + yyv4515[yyj4515] = NodeSelectorTerm{} } else { - yyv4513 := &yyv4510[yyj4510] - yyv4513.CodecDecodeSelf(d) + yyv4518 := &yyv4515[yyj4515] + yyv4518.CodecDecodeSelf(d) } } else { @@ -56625,17 +56673,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4510 < len(yyv4510) { - yyv4510 = yyv4510[:yyj4510] - yyc4510 = true - } else if yyj4510 == 0 && yyv4510 == nil { - yyv4510 = []NodeSelectorTerm{} - yyc4510 = true + if yyj4515 < len(yyv4515) { + yyv4515 = yyv4515[:yyj4515] + yyc4515 = true + } else if yyj4515 == 0 && yyv4515 == nil { + yyv4515 = []NodeSelectorTerm{} + yyc4515 = true } } - yyh4510.End() - if yyc4510 { - *v = yyv4510 + yyh4515.End() + if yyc4515 { + *v = yyv4515 } } @@ -56644,10 +56692,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire 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) } @@ -56657,83 +56705,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4516 := *v - yyh4516, yyl4516 := z.DecSliceHelperStart() - var yyc4516 bool - if yyl4516 == 0 { - if yyv4516 == nil { - yyv4516 = []NodeSelectorRequirement{} - 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 = []NodeSelectorRequirement{} + 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, 56) - if yyrt4516 { - if yyrl4516 <= cap(yyv4516) { - yyv4516 = yyv4516[:yyrl4516] + yyrg4521 := len(yyv4521) > 0 + yyv24521 := yyv4521 + yyrl4521, yyrt4521 = z.DecInferLen(yyl4521, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4521 { + if yyrl4521 <= cap(yyv4521) { + yyv4521 = yyv4521[:yyrl4521] } else { - yyv4516 = make([]NodeSelectorRequirement, yyrl4516) + yyv4521 = make([]NodeSelectorRequirement, yyrl4521) } } else { - yyv4516 = make([]NodeSelectorRequirement, yyrl4516) + yyv4521 = make([]NodeSelectorRequirement, 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] = NodeSelectorRequirement{} + yyv4521[yyj4521] = NodeSelectorRequirement{} } else { - yyv4517 := &yyv4516[yyj4516] - yyv4517.CodecDecodeSelf(d) + yyv4522 := &yyv4521[yyj4521] + yyv4522.CodecDecodeSelf(d) } } - if yyrt4516 { - for ; yyj4516 < yyl4516; yyj4516++ { - yyv4516 = append(yyv4516, NodeSelectorRequirement{}) - yyh4516.ElemContainerState(yyj4516) + if yyrt4521 { + for ; yyj4521 < yyl4521; yyj4521++ { + yyv4521 = append(yyv4521, NodeSelectorRequirement{}) + yyh4521.ElemContainerState(yyj4521) if r.TryDecodeAsNil() { - yyv4516[yyj4516] = NodeSelectorRequirement{} + yyv4521[yyj4521] = NodeSelectorRequirement{} } 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, NodeSelectorRequirement{}) // var yyz4516 NodeSelectorRequirement - yyc4516 = true + if yyj4521 >= len(yyv4521) { + yyv4521 = append(yyv4521, NodeSelectorRequirement{}) // var yyz4521 NodeSelectorRequirement + yyc4521 = true } - yyh4516.ElemContainerState(yyj4516) - if yyj4516 < len(yyv4516) { + yyh4521.ElemContainerState(yyj4521) + if yyj4521 < len(yyv4521) { if r.TryDecodeAsNil() { - yyv4516[yyj4516] = NodeSelectorRequirement{} + yyv4521[yyj4521] = NodeSelectorRequirement{} } else { - yyv4519 := &yyv4516[yyj4516] - yyv4519.CodecDecodeSelf(d) + yyv4524 := &yyv4521[yyj4521] + yyv4524.CodecDecodeSelf(d) } } else { @@ -56741,17 +56789,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4516 < len(yyv4516) { - yyv4516 = yyv4516[:yyj4516] - yyc4516 = true - } else if yyj4516 == 0 && yyv4516 == nil { - yyv4516 = []NodeSelectorRequirement{} - yyc4516 = true + if yyj4521 < len(yyv4521) { + yyv4521 = yyv4521[:yyj4521] + yyc4521 = true + } else if yyj4521 == 0 && yyv4521 == nil { + yyv4521 = []NodeSelectorRequirement{} + yyc4521 = true } } - yyh4516.End() - if yyc4516 { - *v = yyv4516 + yyh4521.End() + if yyc4521 { + *v = yyv4521 } } @@ -56760,10 +56808,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 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) } @@ -56773,83 +56821,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4522 := *v - yyh4522, yyl4522 := z.DecSliceHelperStart() - var yyc4522 bool - if yyl4522 == 0 { - if yyv4522 == nil { - yyv4522 = []PodAffinityTerm{} - 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 = []PodAffinityTerm{} + 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, 48) - if yyrt4522 { - if yyrl4522 <= cap(yyv4522) { - yyv4522 = yyv4522[:yyrl4522] + yyrg4527 := len(yyv4527) > 0 + yyv24527 := yyv4527 + yyrl4527, yyrt4527 = z.DecInferLen(yyl4527, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4527 { + if yyrl4527 <= cap(yyv4527) { + yyv4527 = yyv4527[:yyrl4527] } else { - yyv4522 = make([]PodAffinityTerm, yyrl4522) + yyv4527 = make([]PodAffinityTerm, yyrl4527) } } else { - yyv4522 = make([]PodAffinityTerm, yyrl4522) + yyv4527 = make([]PodAffinityTerm, 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] = PodAffinityTerm{} + yyv4527[yyj4527] = PodAffinityTerm{} } else { - yyv4523 := &yyv4522[yyj4522] - yyv4523.CodecDecodeSelf(d) + yyv4528 := &yyv4527[yyj4527] + yyv4528.CodecDecodeSelf(d) } } - if yyrt4522 { - for ; yyj4522 < yyl4522; yyj4522++ { - yyv4522 = append(yyv4522, PodAffinityTerm{}) - yyh4522.ElemContainerState(yyj4522) + if yyrt4527 { + for ; yyj4527 < yyl4527; yyj4527++ { + yyv4527 = append(yyv4527, PodAffinityTerm{}) + yyh4527.ElemContainerState(yyj4527) if r.TryDecodeAsNil() { - yyv4522[yyj4522] = PodAffinityTerm{} + yyv4527[yyj4527] = PodAffinityTerm{} } 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, PodAffinityTerm{}) // var yyz4522 PodAffinityTerm - yyc4522 = true + if yyj4527 >= len(yyv4527) { + yyv4527 = append(yyv4527, PodAffinityTerm{}) // var yyz4527 PodAffinityTerm + yyc4527 = true } - yyh4522.ElemContainerState(yyj4522) - if yyj4522 < len(yyv4522) { + yyh4527.ElemContainerState(yyj4527) + if yyj4527 < len(yyv4527) { if r.TryDecodeAsNil() { - yyv4522[yyj4522] = PodAffinityTerm{} + yyv4527[yyj4527] = PodAffinityTerm{} } else { - yyv4525 := &yyv4522[yyj4522] - yyv4525.CodecDecodeSelf(d) + yyv4530 := &yyv4527[yyj4527] + yyv4530.CodecDecodeSelf(d) } } else { @@ -56857,17 +56905,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4522 < len(yyv4522) { - yyv4522 = yyv4522[:yyj4522] - yyc4522 = true - } else if yyj4522 == 0 && yyv4522 == nil { - yyv4522 = []PodAffinityTerm{} - yyc4522 = true + if yyj4527 < len(yyv4527) { + yyv4527 = yyv4527[:yyj4527] + yyc4527 = true + } else if yyj4527 == 0 && yyv4527 == nil { + yyv4527 = []PodAffinityTerm{} + yyc4527 = true } } - yyh4522.End() - if yyc4522 { - *v = yyv4522 + yyh4527.End() + if yyc4527 { + *v = yyv4527 } } @@ -56876,10 +56924,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity 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) } @@ -56889,83 +56937,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4528 := *v - yyh4528, yyl4528 := z.DecSliceHelperStart() - var yyc4528 bool - if yyl4528 == 0 { - if yyv4528 == nil { - yyv4528 = []WeightedPodAffinityTerm{} - 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 = []WeightedPodAffinityTerm{} + 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, 56) - if yyrt4528 { - if yyrl4528 <= cap(yyv4528) { - yyv4528 = yyv4528[:yyrl4528] + yyrg4533 := len(yyv4533) > 0 + yyv24533 := yyv4533 + yyrl4533, yyrt4533 = z.DecInferLen(yyl4533, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4533 { + if yyrl4533 <= cap(yyv4533) { + yyv4533 = yyv4533[:yyrl4533] } else { - yyv4528 = make([]WeightedPodAffinityTerm, yyrl4528) + yyv4533 = make([]WeightedPodAffinityTerm, yyrl4533) } } else { - yyv4528 = make([]WeightedPodAffinityTerm, yyrl4528) + yyv4533 = make([]WeightedPodAffinityTerm, 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] = WeightedPodAffinityTerm{} + yyv4533[yyj4533] = WeightedPodAffinityTerm{} } else { - yyv4529 := &yyv4528[yyj4528] - yyv4529.CodecDecodeSelf(d) + yyv4534 := &yyv4533[yyj4533] + yyv4534.CodecDecodeSelf(d) } } - if yyrt4528 { - for ; yyj4528 < yyl4528; yyj4528++ { - yyv4528 = append(yyv4528, WeightedPodAffinityTerm{}) - yyh4528.ElemContainerState(yyj4528) + if yyrt4533 { + for ; yyj4533 < yyl4533; yyj4533++ { + yyv4533 = append(yyv4533, WeightedPodAffinityTerm{}) + yyh4533.ElemContainerState(yyj4533) if r.TryDecodeAsNil() { - yyv4528[yyj4528] = WeightedPodAffinityTerm{} + yyv4533[yyj4533] = WeightedPodAffinityTerm{} } 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, WeightedPodAffinityTerm{}) // var yyz4528 WeightedPodAffinityTerm - yyc4528 = true + if yyj4533 >= len(yyv4533) { + yyv4533 = append(yyv4533, WeightedPodAffinityTerm{}) // var yyz4533 WeightedPodAffinityTerm + yyc4533 = true } - yyh4528.ElemContainerState(yyj4528) - if yyj4528 < len(yyv4528) { + yyh4533.ElemContainerState(yyj4533) + if yyj4533 < len(yyv4533) { if r.TryDecodeAsNil() { - yyv4528[yyj4528] = WeightedPodAffinityTerm{} + yyv4533[yyj4533] = WeightedPodAffinityTerm{} } else { - yyv4531 := &yyv4528[yyj4528] - yyv4531.CodecDecodeSelf(d) + yyv4536 := &yyv4533[yyj4533] + yyv4536.CodecDecodeSelf(d) } } else { @@ -56973,17 +57021,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4528 < len(yyv4528) { - yyv4528 = yyv4528[:yyj4528] - yyc4528 = true - } else if yyj4528 == 0 && yyv4528 == nil { - yyv4528 = []WeightedPodAffinityTerm{} - yyc4528 = true + if yyj4533 < len(yyv4533) { + yyv4533 = yyv4533[:yyj4533] + yyc4533 = true + } else if yyj4533 == 0 && yyv4533 == nil { + yyv4533 = []WeightedPodAffinityTerm{} + yyc4533 = true } } - yyh4528.End() - if yyc4528 { - *v = yyv4528 + yyh4533.End() + if yyc4533 { + *v = yyv4533 } } @@ -56992,10 +57040,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling 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) } @@ -57005,83 +57053,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4534 := *v - yyh4534, yyl4534 := z.DecSliceHelperStart() - var yyc4534 bool - if yyl4534 == 0 { - if yyv4534 == nil { - yyv4534 = []PreferredSchedulingTerm{} - 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 = []PreferredSchedulingTerm{} + 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, 32) - if yyrt4534 { - if yyrl4534 <= cap(yyv4534) { - yyv4534 = yyv4534[:yyrl4534] + yyrg4539 := len(yyv4539) > 0 + yyv24539 := yyv4539 + yyrl4539, yyrt4539 = z.DecInferLen(yyl4539, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4539 { + if yyrl4539 <= cap(yyv4539) { + yyv4539 = yyv4539[:yyrl4539] } else { - yyv4534 = make([]PreferredSchedulingTerm, yyrl4534) + yyv4539 = make([]PreferredSchedulingTerm, yyrl4539) } } else { - yyv4534 = make([]PreferredSchedulingTerm, yyrl4534) + yyv4539 = make([]PreferredSchedulingTerm, 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] = PreferredSchedulingTerm{} + yyv4539[yyj4539] = PreferredSchedulingTerm{} } else { - yyv4535 := &yyv4534[yyj4534] - yyv4535.CodecDecodeSelf(d) + yyv4540 := &yyv4539[yyj4539] + yyv4540.CodecDecodeSelf(d) } } - if yyrt4534 { - for ; yyj4534 < yyl4534; yyj4534++ { - yyv4534 = append(yyv4534, PreferredSchedulingTerm{}) - yyh4534.ElemContainerState(yyj4534) + if yyrt4539 { + for ; yyj4539 < yyl4539; yyj4539++ { + yyv4539 = append(yyv4539, PreferredSchedulingTerm{}) + yyh4539.ElemContainerState(yyj4539) if r.TryDecodeAsNil() { - yyv4534[yyj4534] = PreferredSchedulingTerm{} + yyv4539[yyj4539] = PreferredSchedulingTerm{} } 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, PreferredSchedulingTerm{}) // var yyz4534 PreferredSchedulingTerm - yyc4534 = true + if yyj4539 >= len(yyv4539) { + yyv4539 = append(yyv4539, PreferredSchedulingTerm{}) // var yyz4539 PreferredSchedulingTerm + yyc4539 = true } - yyh4534.ElemContainerState(yyj4534) - if yyj4534 < len(yyv4534) { + yyh4539.ElemContainerState(yyj4539) + if yyj4539 < len(yyv4539) { if r.TryDecodeAsNil() { - yyv4534[yyj4534] = PreferredSchedulingTerm{} + yyv4539[yyj4539] = PreferredSchedulingTerm{} } else { - yyv4537 := &yyv4534[yyj4534] - yyv4537.CodecDecodeSelf(d) + yyv4542 := &yyv4539[yyj4539] + yyv4542.CodecDecodeSelf(d) } } else { @@ -57089,17 +57137,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4534 < len(yyv4534) { - yyv4534 = yyv4534[:yyj4534] - yyc4534 = true - } else if yyj4534 == 0 && yyv4534 == nil { - yyv4534 = []PreferredSchedulingTerm{} - yyc4534 = true + if yyj4539 < len(yyv4539) { + yyv4539 = yyv4539[:yyj4539] + yyc4539 = true + } else if yyj4539 == 0 && yyv4539 == nil { + yyv4539 = []PreferredSchedulingTerm{} + yyc4539 = true } } - yyh4534.End() - if yyc4534 { - *v = yyv4534 + yyh4539.End() + if yyc4539 { + *v = yyv4539 } } @@ -57108,10 +57156,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { 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) } @@ -57121,83 +57169,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4540 := *v - yyh4540, yyl4540 := z.DecSliceHelperStart() - var yyc4540 bool - if yyl4540 == 0 { - if yyv4540 == nil { - yyv4540 = []Volume{} - 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 = []Volume{} + 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, 184) - if yyrt4540 { - if yyrl4540 <= cap(yyv4540) { - yyv4540 = yyv4540[:yyrl4540] + yyrg4545 := len(yyv4545) > 0 + yyv24545 := yyv4545 + yyrl4545, yyrt4545 = z.DecInferLen(yyl4545, z.DecBasicHandle().MaxInitLen, 184) + if yyrt4545 { + if yyrl4545 <= cap(yyv4545) { + yyv4545 = yyv4545[:yyrl4545] } else { - yyv4540 = make([]Volume, yyrl4540) + yyv4545 = make([]Volume, yyrl4545) } } else { - yyv4540 = make([]Volume, yyrl4540) + yyv4545 = make([]Volume, 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] = Volume{} + yyv4545[yyj4545] = Volume{} } else { - yyv4541 := &yyv4540[yyj4540] - yyv4541.CodecDecodeSelf(d) + yyv4546 := &yyv4545[yyj4545] + yyv4546.CodecDecodeSelf(d) } } - if yyrt4540 { - for ; yyj4540 < yyl4540; yyj4540++ { - yyv4540 = append(yyv4540, Volume{}) - yyh4540.ElemContainerState(yyj4540) + if yyrt4545 { + for ; yyj4545 < yyl4545; yyj4545++ { + yyv4545 = append(yyv4545, Volume{}) + yyh4545.ElemContainerState(yyj4545) if r.TryDecodeAsNil() { - yyv4540[yyj4540] = Volume{} + yyv4545[yyj4545] = Volume{} } 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, Volume{}) // var yyz4540 Volume - yyc4540 = true + if yyj4545 >= len(yyv4545) { + yyv4545 = append(yyv4545, Volume{}) // var yyz4545 Volume + yyc4545 = true } - yyh4540.ElemContainerState(yyj4540) - if yyj4540 < len(yyv4540) { + yyh4545.ElemContainerState(yyj4545) + if yyj4545 < len(yyv4545) { if r.TryDecodeAsNil() { - yyv4540[yyj4540] = Volume{} + yyv4545[yyj4545] = Volume{} } else { - yyv4543 := &yyv4540[yyj4540] - yyv4543.CodecDecodeSelf(d) + yyv4548 := &yyv4545[yyj4545] + yyv4548.CodecDecodeSelf(d) } } else { @@ -57205,17 +57253,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4540 < len(yyv4540) { - yyv4540 = yyv4540[:yyj4540] - yyc4540 = true - } else if yyj4540 == 0 && yyv4540 == nil { - yyv4540 = []Volume{} - yyc4540 = true + if yyj4545 < len(yyv4545) { + yyv4545 = yyv4545[:yyj4545] + yyc4545 = true + } else if yyj4545 == 0 && yyv4545 == nil { + yyv4545 = []Volume{} + yyc4545 = true } } - yyh4540.End() - if yyc4540 { - *v = yyv4540 + yyh4545.End() + if yyc4545 { + *v = yyv4545 } } @@ -57224,10 +57272,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, 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) } @@ -57237,83 +57285,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, 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 = []Container{} - 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 = []Container{} + 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, 256) - if yyrt4546 { - if yyrl4546 <= cap(yyv4546) { - yyv4546 = yyv4546[:yyrl4546] + yyrg4551 := len(yyv4551) > 0 + yyv24551 := yyv4551 + yyrl4551, yyrt4551 = z.DecInferLen(yyl4551, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4551 { + if yyrl4551 <= cap(yyv4551) { + yyv4551 = yyv4551[:yyrl4551] } else { - yyv4546 = make([]Container, yyrl4546) + yyv4551 = make([]Container, yyrl4551) } } else { - yyv4546 = make([]Container, yyrl4546) + yyv4551 = make([]Container, 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] = Container{} + yyv4551[yyj4551] = Container{} } else { - yyv4547 := &yyv4546[yyj4546] - yyv4547.CodecDecodeSelf(d) + yyv4552 := &yyv4551[yyj4551] + yyv4552.CodecDecodeSelf(d) } } - if yyrt4546 { - for ; yyj4546 < yyl4546; yyj4546++ { - yyv4546 = append(yyv4546, Container{}) - yyh4546.ElemContainerState(yyj4546) + if yyrt4551 { + for ; yyj4551 < yyl4551; yyj4551++ { + yyv4551 = append(yyv4551, Container{}) + yyh4551.ElemContainerState(yyj4551) if r.TryDecodeAsNil() { - yyv4546[yyj4546] = Container{} + yyv4551[yyj4551] = Container{} } 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, Container{}) // var yyz4546 Container - yyc4546 = true + if yyj4551 >= len(yyv4551) { + yyv4551 = append(yyv4551, Container{}) // var yyz4551 Container + yyc4551 = true } - yyh4546.ElemContainerState(yyj4546) - if yyj4546 < len(yyv4546) { + yyh4551.ElemContainerState(yyj4551) + if yyj4551 < len(yyv4551) { if r.TryDecodeAsNil() { - yyv4546[yyj4546] = Container{} + yyv4551[yyj4551] = Container{} } else { - yyv4549 := &yyv4546[yyj4546] - yyv4549.CodecDecodeSelf(d) + yyv4554 := &yyv4551[yyj4551] + yyv4554.CodecDecodeSelf(d) } } else { @@ -57321,17 +57369,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4546 < len(yyv4546) { - yyv4546 = yyv4546[:yyj4546] - yyc4546 = true - } else if yyj4546 == 0 && yyv4546 == nil { - yyv4546 = []Container{} - yyc4546 = true + if yyj4551 < len(yyv4551) { + yyv4551 = yyv4551[:yyj4551] + yyc4551 = true + } else if yyj4551 == 0 && yyv4551 == nil { + yyv4551 = []Container{} + yyc4551 = true } } - yyh4546.End() - if yyc4546 { - *v = yyv4546 + yyh4551.End() + if yyc4551 { + *v = yyv4551 } } @@ -57340,10 +57388,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, 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) } @@ -57353,83 +57401,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4552 := *v - yyh4552, yyl4552 := z.DecSliceHelperStart() - var yyc4552 bool - if yyl4552 == 0 { - if yyv4552 == nil { - yyv4552 = []LocalObjectReference{} - 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 = []LocalObjectReference{} + 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, 16) - if yyrt4552 { - if yyrl4552 <= cap(yyv4552) { - yyv4552 = yyv4552[:yyrl4552] + yyrg4557 := len(yyv4557) > 0 + yyv24557 := yyv4557 + yyrl4557, yyrt4557 = z.DecInferLen(yyl4557, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4557 { + if yyrl4557 <= cap(yyv4557) { + yyv4557 = yyv4557[:yyrl4557] } else { - yyv4552 = make([]LocalObjectReference, yyrl4552) + yyv4557 = make([]LocalObjectReference, yyrl4557) } } else { - yyv4552 = make([]LocalObjectReference, yyrl4552) + yyv4557 = make([]LocalObjectReference, 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] = LocalObjectReference{} + yyv4557[yyj4557] = LocalObjectReference{} } else { - yyv4553 := &yyv4552[yyj4552] - yyv4553.CodecDecodeSelf(d) + yyv4558 := &yyv4557[yyj4557] + yyv4558.CodecDecodeSelf(d) } } - if yyrt4552 { - for ; yyj4552 < yyl4552; yyj4552++ { - yyv4552 = append(yyv4552, LocalObjectReference{}) - yyh4552.ElemContainerState(yyj4552) + if yyrt4557 { + for ; yyj4557 < yyl4557; yyj4557++ { + yyv4557 = append(yyv4557, LocalObjectReference{}) + yyh4557.ElemContainerState(yyj4557) if r.TryDecodeAsNil() { - yyv4552[yyj4552] = LocalObjectReference{} + yyv4557[yyj4557] = LocalObjectReference{} } 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, LocalObjectReference{}) // var yyz4552 LocalObjectReference - yyc4552 = true + if yyj4557 >= len(yyv4557) { + yyv4557 = append(yyv4557, LocalObjectReference{}) // var yyz4557 LocalObjectReference + yyc4557 = true } - yyh4552.ElemContainerState(yyj4552) - if yyj4552 < len(yyv4552) { + yyh4557.ElemContainerState(yyj4557) + if yyj4557 < len(yyv4557) { if r.TryDecodeAsNil() { - yyv4552[yyj4552] = LocalObjectReference{} + yyv4557[yyj4557] = LocalObjectReference{} } else { - yyv4555 := &yyv4552[yyj4552] - yyv4555.CodecDecodeSelf(d) + yyv4560 := &yyv4557[yyj4557] + yyv4560.CodecDecodeSelf(d) } } else { @@ -57437,17 +57485,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4552 < len(yyv4552) { - yyv4552 = yyv4552[:yyj4552] - yyc4552 = true - } else if yyj4552 == 0 && yyv4552 == nil { - yyv4552 = []LocalObjectReference{} - yyc4552 = true + if yyj4557 < len(yyv4557) { + yyv4557 = yyv4557[:yyj4557] + yyc4557 = true + } else if yyj4557 == 0 && yyv4557 == nil { + yyv4557 = []LocalObjectReference{} + yyc4557 = true } } - yyh4552.End() - if yyc4552 { - *v = yyv4552 + yyh4557.End() + if yyc4557 { + *v = yyv4557 } } @@ -57456,10 +57504,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc 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) } @@ -57469,83 +57517,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4558 := *v - yyh4558, yyl4558 := z.DecSliceHelperStart() - var yyc4558 bool - if yyl4558 == 0 { - if yyv4558 == nil { - yyv4558 = []PodCondition{} - 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 = []PodCondition{} + 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, 112) - if yyrt4558 { - if yyrl4558 <= cap(yyv4558) { - yyv4558 = yyv4558[:yyrl4558] + yyrg4563 := len(yyv4563) > 0 + yyv24563 := yyv4563 + yyrl4563, yyrt4563 = z.DecInferLen(yyl4563, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4563 { + if yyrl4563 <= cap(yyv4563) { + yyv4563 = yyv4563[:yyrl4563] } else { - yyv4558 = make([]PodCondition, yyrl4558) + yyv4563 = make([]PodCondition, yyrl4563) } } else { - yyv4558 = make([]PodCondition, yyrl4558) + yyv4563 = make([]PodCondition, 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] = PodCondition{} + yyv4563[yyj4563] = PodCondition{} } else { - yyv4559 := &yyv4558[yyj4558] - yyv4559.CodecDecodeSelf(d) + yyv4564 := &yyv4563[yyj4563] + yyv4564.CodecDecodeSelf(d) } } - if yyrt4558 { - for ; yyj4558 < yyl4558; yyj4558++ { - yyv4558 = append(yyv4558, PodCondition{}) - yyh4558.ElemContainerState(yyj4558) + if yyrt4563 { + for ; yyj4563 < yyl4563; yyj4563++ { + yyv4563 = append(yyv4563, PodCondition{}) + yyh4563.ElemContainerState(yyj4563) if r.TryDecodeAsNil() { - yyv4558[yyj4558] = PodCondition{} + yyv4563[yyj4563] = PodCondition{} } 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, PodCondition{}) // var yyz4558 PodCondition - yyc4558 = true + if yyj4563 >= len(yyv4563) { + yyv4563 = append(yyv4563, PodCondition{}) // var yyz4563 PodCondition + yyc4563 = true } - yyh4558.ElemContainerState(yyj4558) - if yyj4558 < len(yyv4558) { + yyh4563.ElemContainerState(yyj4563) + if yyj4563 < len(yyv4563) { if r.TryDecodeAsNil() { - yyv4558[yyj4558] = PodCondition{} + yyv4563[yyj4563] = PodCondition{} } else { - yyv4561 := &yyv4558[yyj4558] - yyv4561.CodecDecodeSelf(d) + yyv4566 := &yyv4563[yyj4563] + yyv4566.CodecDecodeSelf(d) } } else { @@ -57553,17 +57601,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4558 < len(yyv4558) { - yyv4558 = yyv4558[:yyj4558] - yyc4558 = true - } else if yyj4558 == 0 && yyv4558 == nil { - yyv4558 = []PodCondition{} - yyc4558 = true + if yyj4563 < len(yyv4563) { + yyv4563 = yyv4563[:yyj4563] + yyc4563 = true + } else if yyj4563 == 0 && yyv4563 == nil { + yyv4563 = []PodCondition{} + yyc4563 = true } } - yyh4558.End() - if yyc4558 { - *v = yyv4558 + yyh4563.End() + if yyc4563 { + *v = yyv4563 } } @@ -57572,10 +57620,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 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) } @@ -57585,83 +57633,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4564 := *v - yyh4564, yyl4564 := z.DecSliceHelperStart() - var yyc4564 bool - if yyl4564 == 0 { - if yyv4564 == nil { - yyv4564 = []ContainerStatus{} - 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 = []ContainerStatus{} + 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, 120) - if yyrt4564 { - if yyrl4564 <= cap(yyv4564) { - yyv4564 = yyv4564[:yyrl4564] + yyrg4569 := len(yyv4569) > 0 + yyv24569 := yyv4569 + yyrl4569, yyrt4569 = z.DecInferLen(yyl4569, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4569 { + if yyrl4569 <= cap(yyv4569) { + yyv4569 = yyv4569[:yyrl4569] } else { - yyv4564 = make([]ContainerStatus, yyrl4564) + yyv4569 = make([]ContainerStatus, yyrl4569) } } else { - yyv4564 = make([]ContainerStatus, yyrl4564) + yyv4569 = make([]ContainerStatus, 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] = ContainerStatus{} + yyv4569[yyj4569] = ContainerStatus{} } else { - yyv4565 := &yyv4564[yyj4564] - yyv4565.CodecDecodeSelf(d) + yyv4570 := &yyv4569[yyj4569] + yyv4570.CodecDecodeSelf(d) } } - if yyrt4564 { - for ; yyj4564 < yyl4564; yyj4564++ { - yyv4564 = append(yyv4564, ContainerStatus{}) - yyh4564.ElemContainerState(yyj4564) + if yyrt4569 { + for ; yyj4569 < yyl4569; yyj4569++ { + yyv4569 = append(yyv4569, ContainerStatus{}) + yyh4569.ElemContainerState(yyj4569) if r.TryDecodeAsNil() { - yyv4564[yyj4564] = ContainerStatus{} + yyv4569[yyj4569] = ContainerStatus{} } 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, ContainerStatus{}) // var yyz4564 ContainerStatus - yyc4564 = true + if yyj4569 >= len(yyv4569) { + yyv4569 = append(yyv4569, ContainerStatus{}) // var yyz4569 ContainerStatus + yyc4569 = true } - yyh4564.ElemContainerState(yyj4564) - if yyj4564 < len(yyv4564) { + yyh4569.ElemContainerState(yyj4569) + if yyj4569 < len(yyv4569) { if r.TryDecodeAsNil() { - yyv4564[yyj4564] = ContainerStatus{} + yyv4569[yyj4569] = ContainerStatus{} } else { - yyv4567 := &yyv4564[yyj4564] - yyv4567.CodecDecodeSelf(d) + yyv4572 := &yyv4569[yyj4569] + yyv4572.CodecDecodeSelf(d) } } else { @@ -57669,17 +57717,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4564 < len(yyv4564) { - yyv4564 = yyv4564[:yyj4564] - yyc4564 = true - } else if yyj4564 == 0 && yyv4564 == nil { - yyv4564 = []ContainerStatus{} - yyc4564 = true + if yyj4569 < len(yyv4569) { + yyv4569 = yyv4569[:yyj4569] + yyc4569 = true + } else if yyj4569 == 0 && yyv4569 == nil { + yyv4569 = []ContainerStatus{} + yyc4569 = true } } - yyh4564.End() - if yyc4564 { - *v = yyv4564 + yyh4569.End() + if yyc4569 { + *v = yyv4569 } } @@ -57688,10 +57736,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4568 := range v { + for _, yyv4573 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4569 := &yyv4568 - yy4569.CodecEncodeSelf(e) + yy4574 := &yyv4573 + yy4574.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57701,83 +57749,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4570 := *v - yyh4570, yyl4570 := z.DecSliceHelperStart() - var yyc4570 bool - if yyl4570 == 0 { - if yyv4570 == nil { - yyv4570 = []Pod{} - yyc4570 = true - } else if len(yyv4570) != 0 { - yyv4570 = yyv4570[:0] - yyc4570 = true + yyv4575 := *v + yyh4575, yyl4575 := z.DecSliceHelperStart() + var yyc4575 bool + if yyl4575 == 0 { + if yyv4575 == nil { + yyv4575 = []Pod{} + yyc4575 = true + } else if len(yyv4575) != 0 { + yyv4575 = yyv4575[:0] + yyc4575 = true } - } else if yyl4570 > 0 { - var yyrr4570, yyrl4570 int - var yyrt4570 bool - if yyl4570 > cap(yyv4570) { + } else if yyl4575 > 0 { + var yyrr4575, yyrl4575 int + var yyrt4575 bool + if yyl4575 > cap(yyv4575) { - yyrg4570 := len(yyv4570) > 0 - yyv24570 := yyv4570 - yyrl4570, yyrt4570 = z.DecInferLen(yyl4570, z.DecBasicHandle().MaxInitLen, 648) - if yyrt4570 { - if yyrl4570 <= cap(yyv4570) { - yyv4570 = yyv4570[:yyrl4570] + yyrg4575 := len(yyv4575) > 0 + yyv24575 := yyv4575 + yyrl4575, yyrt4575 = z.DecInferLen(yyl4575, z.DecBasicHandle().MaxInitLen, 648) + if yyrt4575 { + if yyrl4575 <= cap(yyv4575) { + yyv4575 = yyv4575[:yyrl4575] } else { - yyv4570 = make([]Pod, yyrl4570) + yyv4575 = make([]Pod, yyrl4575) } } else { - yyv4570 = make([]Pod, yyrl4570) + yyv4575 = make([]Pod, yyrl4575) } - yyc4570 = true - yyrr4570 = len(yyv4570) - if yyrg4570 { - copy(yyv4570, yyv24570) + yyc4575 = true + yyrr4575 = len(yyv4575) + if yyrg4575 { + copy(yyv4575, yyv24575) } - } else if yyl4570 != len(yyv4570) { - yyv4570 = yyv4570[:yyl4570] - yyc4570 = true + } else if yyl4575 != len(yyv4575) { + yyv4575 = yyv4575[:yyl4575] + yyc4575 = true } - yyj4570 := 0 - for ; yyj4570 < yyrr4570; yyj4570++ { - yyh4570.ElemContainerState(yyj4570) + yyj4575 := 0 + for ; yyj4575 < yyrr4575; yyj4575++ { + yyh4575.ElemContainerState(yyj4575) if r.TryDecodeAsNil() { - yyv4570[yyj4570] = Pod{} + yyv4575[yyj4575] = Pod{} } else { - yyv4571 := &yyv4570[yyj4570] - yyv4571.CodecDecodeSelf(d) + yyv4576 := &yyv4575[yyj4575] + yyv4576.CodecDecodeSelf(d) } } - if yyrt4570 { - for ; yyj4570 < yyl4570; yyj4570++ { - yyv4570 = append(yyv4570, Pod{}) - yyh4570.ElemContainerState(yyj4570) + if yyrt4575 { + for ; yyj4575 < yyl4575; yyj4575++ { + yyv4575 = append(yyv4575, Pod{}) + yyh4575.ElemContainerState(yyj4575) if r.TryDecodeAsNil() { - yyv4570[yyj4570] = Pod{} + yyv4575[yyj4575] = Pod{} } else { - yyv4572 := &yyv4570[yyj4570] - yyv4572.CodecDecodeSelf(d) + yyv4577 := &yyv4575[yyj4575] + yyv4577.CodecDecodeSelf(d) } } } } else { - yyj4570 := 0 - for ; !r.CheckBreak(); yyj4570++ { + yyj4575 := 0 + for ; !r.CheckBreak(); yyj4575++ { - if yyj4570 >= len(yyv4570) { - yyv4570 = append(yyv4570, Pod{}) // var yyz4570 Pod - yyc4570 = true + if yyj4575 >= len(yyv4575) { + yyv4575 = append(yyv4575, Pod{}) // var yyz4575 Pod + yyc4575 = true } - yyh4570.ElemContainerState(yyj4570) - if yyj4570 < len(yyv4570) { + yyh4575.ElemContainerState(yyj4575) + if yyj4575 < len(yyv4575) { if r.TryDecodeAsNil() { - yyv4570[yyj4570] = Pod{} + yyv4575[yyj4575] = Pod{} } else { - yyv4573 := &yyv4570[yyj4570] - yyv4573.CodecDecodeSelf(d) + yyv4578 := &yyv4575[yyj4575] + yyv4578.CodecDecodeSelf(d) } } else { @@ -57785,17 +57833,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4570 < len(yyv4570) { - yyv4570 = yyv4570[:yyj4570] - yyc4570 = true - } else if yyj4570 == 0 && yyv4570 == nil { - yyv4570 = []Pod{} - yyc4570 = true + if yyj4575 < len(yyv4575) { + yyv4575 = yyv4575[:yyj4575] + yyc4575 = true + } else if yyj4575 == 0 && yyv4575 == nil { + yyv4575 = []Pod{} + yyc4575 = true } } - yyh4570.End() - if yyc4570 { - *v = yyv4570 + yyh4575.End() + if yyc4575 { + *v = yyv4575 } } @@ -57804,10 +57852,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4574 := range v { + for _, yyv4579 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4575 := &yyv4574 - yy4575.CodecEncodeSelf(e) + yy4580 := &yyv4579 + yy4580.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57817,83 +57865,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4576 := *v - yyh4576, yyl4576 := z.DecSliceHelperStart() - var yyc4576 bool - if yyl4576 == 0 { - if yyv4576 == nil { - yyv4576 = []PodTemplate{} - yyc4576 = true - } else if len(yyv4576) != 0 { - yyv4576 = yyv4576[:0] - yyc4576 = true + yyv4581 := *v + yyh4581, yyl4581 := z.DecSliceHelperStart() + var yyc4581 bool + if yyl4581 == 0 { + if yyv4581 == nil { + yyv4581 = []PodTemplate{} + yyc4581 = true + } else if len(yyv4581) != 0 { + yyv4581 = yyv4581[:0] + yyc4581 = true } - } else if yyl4576 > 0 { - var yyrr4576, yyrl4576 int - var yyrt4576 bool - if yyl4576 > cap(yyv4576) { + } else if yyl4581 > 0 { + var yyrr4581, yyrl4581 int + var yyrt4581 bool + if yyl4581 > cap(yyv4581) { - yyrg4576 := len(yyv4576) > 0 - yyv24576 := yyv4576 - yyrl4576, yyrt4576 = z.DecInferLen(yyl4576, z.DecBasicHandle().MaxInitLen, 696) - if yyrt4576 { - if yyrl4576 <= cap(yyv4576) { - yyv4576 = yyv4576[:yyrl4576] + yyrg4581 := len(yyv4581) > 0 + yyv24581 := yyv4581 + yyrl4581, yyrt4581 = z.DecInferLen(yyl4581, z.DecBasicHandle().MaxInitLen, 696) + if yyrt4581 { + if yyrl4581 <= cap(yyv4581) { + yyv4581 = yyv4581[:yyrl4581] } else { - yyv4576 = make([]PodTemplate, yyrl4576) + yyv4581 = make([]PodTemplate, yyrl4581) } } else { - yyv4576 = make([]PodTemplate, yyrl4576) + yyv4581 = make([]PodTemplate, yyrl4581) } - yyc4576 = true - yyrr4576 = len(yyv4576) - if yyrg4576 { - copy(yyv4576, yyv24576) + yyc4581 = true + yyrr4581 = len(yyv4581) + if yyrg4581 { + copy(yyv4581, yyv24581) } - } else if yyl4576 != len(yyv4576) { - yyv4576 = yyv4576[:yyl4576] - yyc4576 = true + } else if yyl4581 != len(yyv4581) { + yyv4581 = yyv4581[:yyl4581] + yyc4581 = true } - yyj4576 := 0 - for ; yyj4576 < yyrr4576; yyj4576++ { - yyh4576.ElemContainerState(yyj4576) + yyj4581 := 0 + for ; yyj4581 < yyrr4581; yyj4581++ { + yyh4581.ElemContainerState(yyj4581) if r.TryDecodeAsNil() { - yyv4576[yyj4576] = PodTemplate{} + yyv4581[yyj4581] = PodTemplate{} } else { - yyv4577 := &yyv4576[yyj4576] - yyv4577.CodecDecodeSelf(d) + yyv4582 := &yyv4581[yyj4581] + yyv4582.CodecDecodeSelf(d) } } - if yyrt4576 { - for ; yyj4576 < yyl4576; yyj4576++ { - yyv4576 = append(yyv4576, PodTemplate{}) - yyh4576.ElemContainerState(yyj4576) + if yyrt4581 { + for ; yyj4581 < yyl4581; yyj4581++ { + yyv4581 = append(yyv4581, PodTemplate{}) + yyh4581.ElemContainerState(yyj4581) if r.TryDecodeAsNil() { - yyv4576[yyj4576] = PodTemplate{} + yyv4581[yyj4581] = PodTemplate{} } else { - yyv4578 := &yyv4576[yyj4576] - yyv4578.CodecDecodeSelf(d) + yyv4583 := &yyv4581[yyj4581] + yyv4583.CodecDecodeSelf(d) } } } } else { - yyj4576 := 0 - for ; !r.CheckBreak(); yyj4576++ { + yyj4581 := 0 + for ; !r.CheckBreak(); yyj4581++ { - if yyj4576 >= len(yyv4576) { - yyv4576 = append(yyv4576, PodTemplate{}) // var yyz4576 PodTemplate - yyc4576 = true + if yyj4581 >= len(yyv4581) { + yyv4581 = append(yyv4581, PodTemplate{}) // var yyz4581 PodTemplate + yyc4581 = true } - yyh4576.ElemContainerState(yyj4576) - if yyj4576 < len(yyv4576) { + yyh4581.ElemContainerState(yyj4581) + if yyj4581 < len(yyv4581) { if r.TryDecodeAsNil() { - yyv4576[yyj4576] = PodTemplate{} + yyv4581[yyj4581] = PodTemplate{} } else { - yyv4579 := &yyv4576[yyj4576] - yyv4579.CodecDecodeSelf(d) + yyv4584 := &yyv4581[yyj4581] + yyv4584.CodecDecodeSelf(d) } } else { @@ -57901,17 +57949,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4576 < len(yyv4576) { - yyv4576 = yyv4576[:yyj4576] - yyc4576 = true - } else if yyj4576 == 0 && yyv4576 == nil { - yyv4576 = []PodTemplate{} - yyc4576 = true + if yyj4581 < len(yyv4581) { + yyv4581 = yyv4581[:yyj4581] + yyc4581 = true + } else if yyj4581 == 0 && yyv4581 == nil { + yyv4581 = []PodTemplate{} + yyc4581 = true } } - yyh4576.End() - if yyc4576 { - *v = yyv4576 + yyh4581.End() + if yyc4581 { + *v = yyv4581 } } @@ -57920,10 +57968,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4580 := range v { + for _, yyv4585 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4581 := &yyv4580 - yy4581.CodecEncodeSelf(e) + yy4586 := &yyv4585 + yy4586.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57933,83 +57981,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4582 := *v - yyh4582, yyl4582 := z.DecSliceHelperStart() - var yyc4582 bool - if yyl4582 == 0 { - if yyv4582 == nil { - yyv4582 = []ReplicationController{} - yyc4582 = true - } else if len(yyv4582) != 0 { - yyv4582 = yyv4582[:0] - yyc4582 = true + yyv4587 := *v + yyh4587, yyl4587 := z.DecSliceHelperStart() + var yyc4587 bool + if yyl4587 == 0 { + if yyv4587 == nil { + yyv4587 = []ReplicationController{} + yyc4587 = true + } else if len(yyv4587) != 0 { + yyv4587 = yyv4587[:0] + yyc4587 = true } - } else if yyl4582 > 0 { - var yyrr4582, yyrl4582 int - var yyrt4582 bool - if yyl4582 > cap(yyv4582) { + } else if yyl4587 > 0 { + var yyrr4587, yyrl4587 int + var yyrt4587 bool + if yyl4587 > cap(yyv4587) { - yyrg4582 := len(yyv4582) > 0 - yyv24582 := yyv4582 - yyrl4582, yyrt4582 = z.DecInferLen(yyl4582, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4582 { - if yyrl4582 <= cap(yyv4582) { - yyv4582 = yyv4582[:yyrl4582] + yyrg4587 := len(yyv4587) > 0 + yyv24587 := yyv4587 + yyrl4587, yyrt4587 = z.DecInferLen(yyl4587, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4587 { + if yyrl4587 <= cap(yyv4587) { + yyv4587 = yyv4587[:yyrl4587] } else { - yyv4582 = make([]ReplicationController, yyrl4582) + yyv4587 = make([]ReplicationController, yyrl4587) } } else { - yyv4582 = make([]ReplicationController, yyrl4582) + yyv4587 = make([]ReplicationController, yyrl4587) } - yyc4582 = true - yyrr4582 = len(yyv4582) - if yyrg4582 { - copy(yyv4582, yyv24582) + yyc4587 = true + yyrr4587 = len(yyv4587) + if yyrg4587 { + copy(yyv4587, yyv24587) } - } else if yyl4582 != len(yyv4582) { - yyv4582 = yyv4582[:yyl4582] - yyc4582 = true + } else if yyl4587 != len(yyv4587) { + yyv4587 = yyv4587[:yyl4587] + yyc4587 = true } - yyj4582 := 0 - for ; yyj4582 < yyrr4582; yyj4582++ { - yyh4582.ElemContainerState(yyj4582) + yyj4587 := 0 + for ; yyj4587 < yyrr4587; yyj4587++ { + yyh4587.ElemContainerState(yyj4587) if r.TryDecodeAsNil() { - yyv4582[yyj4582] = ReplicationController{} + yyv4587[yyj4587] = ReplicationController{} } else { - yyv4583 := &yyv4582[yyj4582] - yyv4583.CodecDecodeSelf(d) + yyv4588 := &yyv4587[yyj4587] + yyv4588.CodecDecodeSelf(d) } } - if yyrt4582 { - for ; yyj4582 < yyl4582; yyj4582++ { - yyv4582 = append(yyv4582, ReplicationController{}) - yyh4582.ElemContainerState(yyj4582) + if yyrt4587 { + for ; yyj4587 < yyl4587; yyj4587++ { + yyv4587 = append(yyv4587, ReplicationController{}) + yyh4587.ElemContainerState(yyj4587) if r.TryDecodeAsNil() { - yyv4582[yyj4582] = ReplicationController{} + yyv4587[yyj4587] = ReplicationController{} } else { - yyv4584 := &yyv4582[yyj4582] - yyv4584.CodecDecodeSelf(d) + yyv4589 := &yyv4587[yyj4587] + yyv4589.CodecDecodeSelf(d) } } } } else { - yyj4582 := 0 - for ; !r.CheckBreak(); yyj4582++ { + yyj4587 := 0 + for ; !r.CheckBreak(); yyj4587++ { - if yyj4582 >= len(yyv4582) { - yyv4582 = append(yyv4582, ReplicationController{}) // var yyz4582 ReplicationController - yyc4582 = true + if yyj4587 >= len(yyv4587) { + yyv4587 = append(yyv4587, ReplicationController{}) // var yyz4587 ReplicationController + yyc4587 = true } - yyh4582.ElemContainerState(yyj4582) - if yyj4582 < len(yyv4582) { + yyh4587.ElemContainerState(yyj4587) + if yyj4587 < len(yyv4587) { if r.TryDecodeAsNil() { - yyv4582[yyj4582] = ReplicationController{} + yyv4587[yyj4587] = ReplicationController{} } else { - yyv4585 := &yyv4582[yyj4582] - yyv4585.CodecDecodeSelf(d) + yyv4590 := &yyv4587[yyj4587] + yyv4590.CodecDecodeSelf(d) } } else { @@ -58017,17 +58065,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4582 < len(yyv4582) { - yyv4582 = yyv4582[:yyj4582] - yyc4582 = true - } else if yyj4582 == 0 && yyv4582 == nil { - yyv4582 = []ReplicationController{} - yyc4582 = true + if yyj4587 < len(yyv4587) { + yyv4587 = yyv4587[:yyj4587] + yyc4587 = true + } else if yyj4587 == 0 && yyv4587 == nil { + yyv4587 = []ReplicationController{} + yyc4587 = true } } - yyh4582.End() - if yyc4582 { - *v = yyv4582 + yyh4587.End() + if yyc4587 { + *v = yyv4587 } } @@ -58036,10 +58084,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4586 := range v { + for _, yyv4591 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4587 := &yyv4586 - yy4587.CodecEncodeSelf(e) + yy4592 := &yyv4591 + yy4592.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58049,83 +58097,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4588 := *v - yyh4588, yyl4588 := z.DecSliceHelperStart() - var yyc4588 bool - if yyl4588 == 0 { - if yyv4588 == nil { - yyv4588 = []LoadBalancerIngress{} - yyc4588 = true - } else if len(yyv4588) != 0 { - yyv4588 = yyv4588[:0] - yyc4588 = true + yyv4593 := *v + yyh4593, yyl4593 := z.DecSliceHelperStart() + var yyc4593 bool + if yyl4593 == 0 { + if yyv4593 == nil { + yyv4593 = []LoadBalancerIngress{} + yyc4593 = true + } else if len(yyv4593) != 0 { + yyv4593 = yyv4593[:0] + yyc4593 = true } - } else if yyl4588 > 0 { - var yyrr4588, yyrl4588 int - var yyrt4588 bool - if yyl4588 > cap(yyv4588) { + } else if yyl4593 > 0 { + var yyrr4593, yyrl4593 int + var yyrt4593 bool + if yyl4593 > cap(yyv4593) { - yyrg4588 := len(yyv4588) > 0 - yyv24588 := yyv4588 - yyrl4588, yyrt4588 = z.DecInferLen(yyl4588, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4588 { - if yyrl4588 <= cap(yyv4588) { - yyv4588 = yyv4588[:yyrl4588] + yyrg4593 := len(yyv4593) > 0 + yyv24593 := yyv4593 + yyrl4593, yyrt4593 = z.DecInferLen(yyl4593, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4593 { + if yyrl4593 <= cap(yyv4593) { + yyv4593 = yyv4593[:yyrl4593] } else { - yyv4588 = make([]LoadBalancerIngress, yyrl4588) + yyv4593 = make([]LoadBalancerIngress, yyrl4593) } } else { - yyv4588 = make([]LoadBalancerIngress, yyrl4588) + yyv4593 = make([]LoadBalancerIngress, yyrl4593) } - yyc4588 = true - yyrr4588 = len(yyv4588) - if yyrg4588 { - copy(yyv4588, yyv24588) + yyc4593 = true + yyrr4593 = len(yyv4593) + if yyrg4593 { + copy(yyv4593, yyv24593) } - } else if yyl4588 != len(yyv4588) { - yyv4588 = yyv4588[:yyl4588] - yyc4588 = true + } else if yyl4593 != len(yyv4593) { + yyv4593 = yyv4593[:yyl4593] + yyc4593 = true } - yyj4588 := 0 - for ; yyj4588 < yyrr4588; yyj4588++ { - yyh4588.ElemContainerState(yyj4588) + yyj4593 := 0 + for ; yyj4593 < yyrr4593; yyj4593++ { + yyh4593.ElemContainerState(yyj4593) if r.TryDecodeAsNil() { - yyv4588[yyj4588] = LoadBalancerIngress{} + yyv4593[yyj4593] = LoadBalancerIngress{} } else { - yyv4589 := &yyv4588[yyj4588] - yyv4589.CodecDecodeSelf(d) + yyv4594 := &yyv4593[yyj4593] + yyv4594.CodecDecodeSelf(d) } } - if yyrt4588 { - for ; yyj4588 < yyl4588; yyj4588++ { - yyv4588 = append(yyv4588, LoadBalancerIngress{}) - yyh4588.ElemContainerState(yyj4588) + if yyrt4593 { + for ; yyj4593 < yyl4593; yyj4593++ { + yyv4593 = append(yyv4593, LoadBalancerIngress{}) + yyh4593.ElemContainerState(yyj4593) if r.TryDecodeAsNil() { - yyv4588[yyj4588] = LoadBalancerIngress{} + yyv4593[yyj4593] = LoadBalancerIngress{} } else { - yyv4590 := &yyv4588[yyj4588] - yyv4590.CodecDecodeSelf(d) + yyv4595 := &yyv4593[yyj4593] + yyv4595.CodecDecodeSelf(d) } } } } else { - yyj4588 := 0 - for ; !r.CheckBreak(); yyj4588++ { + yyj4593 := 0 + for ; !r.CheckBreak(); yyj4593++ { - if yyj4588 >= len(yyv4588) { - yyv4588 = append(yyv4588, LoadBalancerIngress{}) // var yyz4588 LoadBalancerIngress - yyc4588 = true + if yyj4593 >= len(yyv4593) { + yyv4593 = append(yyv4593, LoadBalancerIngress{}) // var yyz4593 LoadBalancerIngress + yyc4593 = true } - yyh4588.ElemContainerState(yyj4588) - if yyj4588 < len(yyv4588) { + yyh4593.ElemContainerState(yyj4593) + if yyj4593 < len(yyv4593) { if r.TryDecodeAsNil() { - yyv4588[yyj4588] = LoadBalancerIngress{} + yyv4593[yyj4593] = LoadBalancerIngress{} } else { - yyv4591 := &yyv4588[yyj4588] - yyv4591.CodecDecodeSelf(d) + yyv4596 := &yyv4593[yyj4593] + yyv4596.CodecDecodeSelf(d) } } else { @@ -58133,17 +58181,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4588 < len(yyv4588) { - yyv4588 = yyv4588[:yyj4588] - yyc4588 = true - } else if yyj4588 == 0 && yyv4588 == nil { - yyv4588 = []LoadBalancerIngress{} - yyc4588 = true + if yyj4593 < len(yyv4593) { + yyv4593 = yyv4593[:yyj4593] + yyc4593 = true + } else if yyj4593 == 0 && yyv4593 == nil { + yyv4593 = []LoadBalancerIngress{} + yyc4593 = true } } - yyh4588.End() - if yyc4588 { - *v = yyv4588 + yyh4593.End() + if yyc4593 { + *v = yyv4593 } } @@ -58152,10 +58200,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4592 := range v { + for _, yyv4597 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4593 := &yyv4592 - yy4593.CodecEncodeSelf(e) + yy4598 := &yyv4597 + yy4598.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58165,83 +58213,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4594 := *v - yyh4594, yyl4594 := z.DecSliceHelperStart() - var yyc4594 bool - if yyl4594 == 0 { - if yyv4594 == nil { - yyv4594 = []ServicePort{} - yyc4594 = true - } else if len(yyv4594) != 0 { - yyv4594 = yyv4594[:0] - yyc4594 = true + yyv4599 := *v + yyh4599, yyl4599 := z.DecSliceHelperStart() + var yyc4599 bool + if yyl4599 == 0 { + if yyv4599 == nil { + yyv4599 = []ServicePort{} + yyc4599 = true + } else if len(yyv4599) != 0 { + yyv4599 = yyv4599[:0] + yyc4599 = true } - } else if yyl4594 > 0 { - var yyrr4594, yyrl4594 int - var yyrt4594 bool - if yyl4594 > cap(yyv4594) { + } else if yyl4599 > 0 { + var yyrr4599, yyrl4599 int + var yyrt4599 bool + if yyl4599 > cap(yyv4599) { - yyrg4594 := len(yyv4594) > 0 - yyv24594 := yyv4594 - yyrl4594, yyrt4594 = z.DecInferLen(yyl4594, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4594 { - if yyrl4594 <= cap(yyv4594) { - yyv4594 = yyv4594[:yyrl4594] + yyrg4599 := len(yyv4599) > 0 + yyv24599 := yyv4599 + yyrl4599, yyrt4599 = z.DecInferLen(yyl4599, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4599 { + if yyrl4599 <= cap(yyv4599) { + yyv4599 = yyv4599[:yyrl4599] } else { - yyv4594 = make([]ServicePort, yyrl4594) + yyv4599 = make([]ServicePort, yyrl4599) } } else { - yyv4594 = make([]ServicePort, yyrl4594) + yyv4599 = make([]ServicePort, yyrl4599) } - yyc4594 = true - yyrr4594 = len(yyv4594) - if yyrg4594 { - copy(yyv4594, yyv24594) + yyc4599 = true + yyrr4599 = len(yyv4599) + if yyrg4599 { + copy(yyv4599, yyv24599) } - } else if yyl4594 != len(yyv4594) { - yyv4594 = yyv4594[:yyl4594] - yyc4594 = true + } else if yyl4599 != len(yyv4599) { + yyv4599 = yyv4599[:yyl4599] + yyc4599 = true } - yyj4594 := 0 - for ; yyj4594 < yyrr4594; yyj4594++ { - yyh4594.ElemContainerState(yyj4594) + yyj4599 := 0 + for ; yyj4599 < yyrr4599; yyj4599++ { + yyh4599.ElemContainerState(yyj4599) if r.TryDecodeAsNil() { - yyv4594[yyj4594] = ServicePort{} + yyv4599[yyj4599] = ServicePort{} } else { - yyv4595 := &yyv4594[yyj4594] - yyv4595.CodecDecodeSelf(d) + yyv4600 := &yyv4599[yyj4599] + yyv4600.CodecDecodeSelf(d) } } - if yyrt4594 { - for ; yyj4594 < yyl4594; yyj4594++ { - yyv4594 = append(yyv4594, ServicePort{}) - yyh4594.ElemContainerState(yyj4594) + if yyrt4599 { + for ; yyj4599 < yyl4599; yyj4599++ { + yyv4599 = append(yyv4599, ServicePort{}) + yyh4599.ElemContainerState(yyj4599) if r.TryDecodeAsNil() { - yyv4594[yyj4594] = ServicePort{} + yyv4599[yyj4599] = ServicePort{} } else { - yyv4596 := &yyv4594[yyj4594] - yyv4596.CodecDecodeSelf(d) + yyv4601 := &yyv4599[yyj4599] + yyv4601.CodecDecodeSelf(d) } } } } else { - yyj4594 := 0 - for ; !r.CheckBreak(); yyj4594++ { + yyj4599 := 0 + for ; !r.CheckBreak(); yyj4599++ { - if yyj4594 >= len(yyv4594) { - yyv4594 = append(yyv4594, ServicePort{}) // var yyz4594 ServicePort - yyc4594 = true + if yyj4599 >= len(yyv4599) { + yyv4599 = append(yyv4599, ServicePort{}) // var yyz4599 ServicePort + yyc4599 = true } - yyh4594.ElemContainerState(yyj4594) - if yyj4594 < len(yyv4594) { + yyh4599.ElemContainerState(yyj4599) + if yyj4599 < len(yyv4599) { if r.TryDecodeAsNil() { - yyv4594[yyj4594] = ServicePort{} + yyv4599[yyj4599] = ServicePort{} } else { - yyv4597 := &yyv4594[yyj4594] - yyv4597.CodecDecodeSelf(d) + yyv4602 := &yyv4599[yyj4599] + yyv4602.CodecDecodeSelf(d) } } else { @@ -58249,17 +58297,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4594 < len(yyv4594) { - yyv4594 = yyv4594[:yyj4594] - yyc4594 = true - } else if yyj4594 == 0 && yyv4594 == nil { - yyv4594 = []ServicePort{} - yyc4594 = true + if yyj4599 < len(yyv4599) { + yyv4599 = yyv4599[:yyj4599] + yyc4599 = true + } else if yyj4599 == 0 && yyv4599 == nil { + yyv4599 = []ServicePort{} + yyc4599 = true } } - yyh4594.End() - if yyc4594 { - *v = yyv4594 + yyh4599.End() + if yyc4599 { + *v = yyv4599 } } @@ -58268,10 +58316,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4598 := range v { + for _, yyv4603 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4599 := &yyv4598 - yy4599.CodecEncodeSelf(e) + yy4604 := &yyv4603 + yy4604.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58281,83 +58329,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4600 := *v - yyh4600, yyl4600 := z.DecSliceHelperStart() - var yyc4600 bool - if yyl4600 == 0 { - if yyv4600 == nil { - yyv4600 = []Service{} - yyc4600 = true - } else if len(yyv4600) != 0 { - yyv4600 = yyv4600[:0] - yyc4600 = true + yyv4605 := *v + yyh4605, yyl4605 := z.DecSliceHelperStart() + var yyc4605 bool + if yyl4605 == 0 { + if yyv4605 == nil { + yyv4605 = []Service{} + yyc4605 = true + } else if len(yyv4605) != 0 { + yyv4605 = yyv4605[:0] + yyc4605 = true } - } else if yyl4600 > 0 { - var yyrr4600, yyrl4600 int - var yyrt4600 bool - if yyl4600 > cap(yyv4600) { + } else if yyl4605 > 0 { + var yyrr4605, yyrl4605 int + var yyrt4605 bool + if yyl4605 > cap(yyv4605) { - yyrg4600 := len(yyv4600) > 0 - yyv24600 := yyv4600 - yyrl4600, yyrt4600 = z.DecInferLen(yyl4600, z.DecBasicHandle().MaxInitLen, 432) - if yyrt4600 { - if yyrl4600 <= cap(yyv4600) { - yyv4600 = yyv4600[:yyrl4600] + yyrg4605 := len(yyv4605) > 0 + yyv24605 := yyv4605 + yyrl4605, yyrt4605 = z.DecInferLen(yyl4605, z.DecBasicHandle().MaxInitLen, 448) + if yyrt4605 { + if yyrl4605 <= cap(yyv4605) { + yyv4605 = yyv4605[:yyrl4605] } else { - yyv4600 = make([]Service, yyrl4600) + yyv4605 = make([]Service, yyrl4605) } } else { - yyv4600 = make([]Service, yyrl4600) + yyv4605 = make([]Service, yyrl4605) } - yyc4600 = true - yyrr4600 = len(yyv4600) - if yyrg4600 { - copy(yyv4600, yyv24600) + yyc4605 = true + yyrr4605 = len(yyv4605) + if yyrg4605 { + copy(yyv4605, yyv24605) } - } else if yyl4600 != len(yyv4600) { - yyv4600 = yyv4600[:yyl4600] - yyc4600 = true + } else if yyl4605 != len(yyv4605) { + yyv4605 = yyv4605[:yyl4605] + yyc4605 = true } - yyj4600 := 0 - for ; yyj4600 < yyrr4600; yyj4600++ { - yyh4600.ElemContainerState(yyj4600) + yyj4605 := 0 + for ; yyj4605 < yyrr4605; yyj4605++ { + yyh4605.ElemContainerState(yyj4605) if r.TryDecodeAsNil() { - yyv4600[yyj4600] = Service{} + yyv4605[yyj4605] = Service{} } else { - yyv4601 := &yyv4600[yyj4600] - yyv4601.CodecDecodeSelf(d) + yyv4606 := &yyv4605[yyj4605] + yyv4606.CodecDecodeSelf(d) } } - if yyrt4600 { - for ; yyj4600 < yyl4600; yyj4600++ { - yyv4600 = append(yyv4600, Service{}) - yyh4600.ElemContainerState(yyj4600) + if yyrt4605 { + for ; yyj4605 < yyl4605; yyj4605++ { + yyv4605 = append(yyv4605, Service{}) + yyh4605.ElemContainerState(yyj4605) if r.TryDecodeAsNil() { - yyv4600[yyj4600] = Service{} + yyv4605[yyj4605] = Service{} } else { - yyv4602 := &yyv4600[yyj4600] - yyv4602.CodecDecodeSelf(d) + yyv4607 := &yyv4605[yyj4605] + yyv4607.CodecDecodeSelf(d) } } } } else { - yyj4600 := 0 - for ; !r.CheckBreak(); yyj4600++ { + yyj4605 := 0 + for ; !r.CheckBreak(); yyj4605++ { - if yyj4600 >= len(yyv4600) { - yyv4600 = append(yyv4600, Service{}) // var yyz4600 Service - yyc4600 = true + if yyj4605 >= len(yyv4605) { + yyv4605 = append(yyv4605, Service{}) // var yyz4605 Service + yyc4605 = true } - yyh4600.ElemContainerState(yyj4600) - if yyj4600 < len(yyv4600) { + yyh4605.ElemContainerState(yyj4605) + if yyj4605 < len(yyv4605) { if r.TryDecodeAsNil() { - yyv4600[yyj4600] = Service{} + yyv4605[yyj4605] = Service{} } else { - yyv4603 := &yyv4600[yyj4600] - yyv4603.CodecDecodeSelf(d) + yyv4608 := &yyv4605[yyj4605] + yyv4608.CodecDecodeSelf(d) } } else { @@ -58365,17 +58413,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4600 < len(yyv4600) { - yyv4600 = yyv4600[:yyj4600] - yyc4600 = true - } else if yyj4600 == 0 && yyv4600 == nil { - yyv4600 = []Service{} - yyc4600 = true + if yyj4605 < len(yyv4605) { + yyv4605 = yyv4605[:yyj4605] + yyc4605 = true + } else if yyj4605 == 0 && yyv4605 == nil { + yyv4605 = []Service{} + yyc4605 = true } } - yyh4600.End() - if yyc4600 { - *v = yyv4600 + yyh4605.End() + if yyc4605 { + *v = yyv4605 } } @@ -58384,10 +58432,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4604 := range v { + for _, yyv4609 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4605 := &yyv4604 - yy4605.CodecEncodeSelf(e) + yy4610 := &yyv4609 + yy4610.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58397,83 +58445,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4606 := *v - yyh4606, yyl4606 := z.DecSliceHelperStart() - var yyc4606 bool - if yyl4606 == 0 { - if yyv4606 == nil { - yyv4606 = []ObjectReference{} - yyc4606 = true - } else if len(yyv4606) != 0 { - yyv4606 = yyv4606[:0] - yyc4606 = true + yyv4611 := *v + yyh4611, yyl4611 := z.DecSliceHelperStart() + var yyc4611 bool + if yyl4611 == 0 { + if yyv4611 == nil { + yyv4611 = []ObjectReference{} + yyc4611 = true + } else if len(yyv4611) != 0 { + yyv4611 = yyv4611[:0] + yyc4611 = true } - } else if yyl4606 > 0 { - var yyrr4606, yyrl4606 int - var yyrt4606 bool - if yyl4606 > cap(yyv4606) { + } else if yyl4611 > 0 { + var yyrr4611, yyrl4611 int + var yyrt4611 bool + if yyl4611 > cap(yyv4611) { - yyrg4606 := len(yyv4606) > 0 - yyv24606 := yyv4606 - yyrl4606, yyrt4606 = z.DecInferLen(yyl4606, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4606 { - if yyrl4606 <= cap(yyv4606) { - yyv4606 = yyv4606[:yyrl4606] + yyrg4611 := len(yyv4611) > 0 + yyv24611 := yyv4611 + yyrl4611, yyrt4611 = z.DecInferLen(yyl4611, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4611 { + if yyrl4611 <= cap(yyv4611) { + yyv4611 = yyv4611[:yyrl4611] } else { - yyv4606 = make([]ObjectReference, yyrl4606) + yyv4611 = make([]ObjectReference, yyrl4611) } } else { - yyv4606 = make([]ObjectReference, yyrl4606) + yyv4611 = make([]ObjectReference, yyrl4611) } - yyc4606 = true - yyrr4606 = len(yyv4606) - if yyrg4606 { - copy(yyv4606, yyv24606) + yyc4611 = true + yyrr4611 = len(yyv4611) + if yyrg4611 { + copy(yyv4611, yyv24611) } - } else if yyl4606 != len(yyv4606) { - yyv4606 = yyv4606[:yyl4606] - yyc4606 = true + } else if yyl4611 != len(yyv4611) { + yyv4611 = yyv4611[:yyl4611] + yyc4611 = true } - yyj4606 := 0 - for ; yyj4606 < yyrr4606; yyj4606++ { - yyh4606.ElemContainerState(yyj4606) + yyj4611 := 0 + for ; yyj4611 < yyrr4611; yyj4611++ { + yyh4611.ElemContainerState(yyj4611) if r.TryDecodeAsNil() { - yyv4606[yyj4606] = ObjectReference{} + yyv4611[yyj4611] = ObjectReference{} } else { - yyv4607 := &yyv4606[yyj4606] - yyv4607.CodecDecodeSelf(d) + yyv4612 := &yyv4611[yyj4611] + yyv4612.CodecDecodeSelf(d) } } - if yyrt4606 { - for ; yyj4606 < yyl4606; yyj4606++ { - yyv4606 = append(yyv4606, ObjectReference{}) - yyh4606.ElemContainerState(yyj4606) + if yyrt4611 { + for ; yyj4611 < yyl4611; yyj4611++ { + yyv4611 = append(yyv4611, ObjectReference{}) + yyh4611.ElemContainerState(yyj4611) if r.TryDecodeAsNil() { - yyv4606[yyj4606] = ObjectReference{} + yyv4611[yyj4611] = ObjectReference{} } else { - yyv4608 := &yyv4606[yyj4606] - yyv4608.CodecDecodeSelf(d) + yyv4613 := &yyv4611[yyj4611] + yyv4613.CodecDecodeSelf(d) } } } } else { - yyj4606 := 0 - for ; !r.CheckBreak(); yyj4606++ { + yyj4611 := 0 + for ; !r.CheckBreak(); yyj4611++ { - if yyj4606 >= len(yyv4606) { - yyv4606 = append(yyv4606, ObjectReference{}) // var yyz4606 ObjectReference - yyc4606 = true + if yyj4611 >= len(yyv4611) { + yyv4611 = append(yyv4611, ObjectReference{}) // var yyz4611 ObjectReference + yyc4611 = true } - yyh4606.ElemContainerState(yyj4606) - if yyj4606 < len(yyv4606) { + yyh4611.ElemContainerState(yyj4611) + if yyj4611 < len(yyv4611) { if r.TryDecodeAsNil() { - yyv4606[yyj4606] = ObjectReference{} + yyv4611[yyj4611] = ObjectReference{} } else { - yyv4609 := &yyv4606[yyj4606] - yyv4609.CodecDecodeSelf(d) + yyv4614 := &yyv4611[yyj4611] + yyv4614.CodecDecodeSelf(d) } } else { @@ -58481,17 +58529,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4606 < len(yyv4606) { - yyv4606 = yyv4606[:yyj4606] - yyc4606 = true - } else if yyj4606 == 0 && yyv4606 == nil { - yyv4606 = []ObjectReference{} - yyc4606 = true + if yyj4611 < len(yyv4611) { + yyv4611 = yyv4611[:yyj4611] + yyc4611 = true + } else if yyj4611 == 0 && yyv4611 == nil { + yyv4611 = []ObjectReference{} + yyc4611 = true } } - yyh4606.End() - if yyc4606 { - *v = yyv4606 + yyh4611.End() + if yyc4611 { + *v = yyv4611 } } @@ -58500,10 +58548,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4610 := range v { + for _, yyv4615 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4611 := &yyv4610 - yy4611.CodecEncodeSelf(e) + yy4616 := &yyv4615 + yy4616.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58513,83 +58561,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4612 := *v - yyh4612, yyl4612 := z.DecSliceHelperStart() - var yyc4612 bool - if yyl4612 == 0 { - if yyv4612 == nil { - yyv4612 = []ServiceAccount{} - yyc4612 = true - } else if len(yyv4612) != 0 { - yyv4612 = yyv4612[:0] - yyc4612 = true + yyv4617 := *v + yyh4617, yyl4617 := z.DecSliceHelperStart() + var yyc4617 bool + if yyl4617 == 0 { + if yyv4617 == nil { + yyv4617 = []ServiceAccount{} + yyc4617 = true + } else if len(yyv4617) != 0 { + yyv4617 = yyv4617[:0] + yyc4617 = true } - } else if yyl4612 > 0 { - var yyrr4612, yyrl4612 int - var yyrt4612 bool - if yyl4612 > cap(yyv4612) { + } else if yyl4617 > 0 { + var yyrr4617, yyrl4617 int + var yyrt4617 bool + if yyl4617 > cap(yyv4617) { - yyrg4612 := len(yyv4612) > 0 - yyv24612 := yyv4612 - yyrl4612, yyrt4612 = z.DecInferLen(yyl4612, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4612 { - if yyrl4612 <= cap(yyv4612) { - yyv4612 = yyv4612[:yyrl4612] + yyrg4617 := len(yyv4617) > 0 + yyv24617 := yyv4617 + yyrl4617, yyrt4617 = z.DecInferLen(yyl4617, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4617 { + if yyrl4617 <= cap(yyv4617) { + yyv4617 = yyv4617[:yyrl4617] } else { - yyv4612 = make([]ServiceAccount, yyrl4612) + yyv4617 = make([]ServiceAccount, yyrl4617) } } else { - yyv4612 = make([]ServiceAccount, yyrl4612) + yyv4617 = make([]ServiceAccount, yyrl4617) } - yyc4612 = true - yyrr4612 = len(yyv4612) - if yyrg4612 { - copy(yyv4612, yyv24612) + yyc4617 = true + yyrr4617 = len(yyv4617) + if yyrg4617 { + copy(yyv4617, yyv24617) } - } else if yyl4612 != len(yyv4612) { - yyv4612 = yyv4612[:yyl4612] - yyc4612 = true + } else if yyl4617 != len(yyv4617) { + yyv4617 = yyv4617[:yyl4617] + yyc4617 = true } - yyj4612 := 0 - for ; yyj4612 < yyrr4612; yyj4612++ { - yyh4612.ElemContainerState(yyj4612) + yyj4617 := 0 + for ; yyj4617 < yyrr4617; yyj4617++ { + yyh4617.ElemContainerState(yyj4617) if r.TryDecodeAsNil() { - yyv4612[yyj4612] = ServiceAccount{} + yyv4617[yyj4617] = ServiceAccount{} } else { - yyv4613 := &yyv4612[yyj4612] - yyv4613.CodecDecodeSelf(d) + yyv4618 := &yyv4617[yyj4617] + yyv4618.CodecDecodeSelf(d) } } - if yyrt4612 { - for ; yyj4612 < yyl4612; yyj4612++ { - yyv4612 = append(yyv4612, ServiceAccount{}) - yyh4612.ElemContainerState(yyj4612) + if yyrt4617 { + for ; yyj4617 < yyl4617; yyj4617++ { + yyv4617 = append(yyv4617, ServiceAccount{}) + yyh4617.ElemContainerState(yyj4617) if r.TryDecodeAsNil() { - yyv4612[yyj4612] = ServiceAccount{} + yyv4617[yyj4617] = ServiceAccount{} } else { - yyv4614 := &yyv4612[yyj4612] - yyv4614.CodecDecodeSelf(d) + yyv4619 := &yyv4617[yyj4617] + yyv4619.CodecDecodeSelf(d) } } } } else { - yyj4612 := 0 - for ; !r.CheckBreak(); yyj4612++ { + yyj4617 := 0 + for ; !r.CheckBreak(); yyj4617++ { - if yyj4612 >= len(yyv4612) { - yyv4612 = append(yyv4612, ServiceAccount{}) // var yyz4612 ServiceAccount - yyc4612 = true + if yyj4617 >= len(yyv4617) { + yyv4617 = append(yyv4617, ServiceAccount{}) // var yyz4617 ServiceAccount + yyc4617 = true } - yyh4612.ElemContainerState(yyj4612) - if yyj4612 < len(yyv4612) { + yyh4617.ElemContainerState(yyj4617) + if yyj4617 < len(yyv4617) { if r.TryDecodeAsNil() { - yyv4612[yyj4612] = ServiceAccount{} + yyv4617[yyj4617] = ServiceAccount{} } else { - yyv4615 := &yyv4612[yyj4612] - yyv4615.CodecDecodeSelf(d) + yyv4620 := &yyv4617[yyj4617] + yyv4620.CodecDecodeSelf(d) } } else { @@ -58597,17 +58645,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4612 < len(yyv4612) { - yyv4612 = yyv4612[:yyj4612] - yyc4612 = true - } else if yyj4612 == 0 && yyv4612 == nil { - yyv4612 = []ServiceAccount{} - yyc4612 = true + if yyj4617 < len(yyv4617) { + yyv4617 = yyv4617[:yyj4617] + yyc4617 = true + } else if yyj4617 == 0 && yyv4617 == nil { + yyv4617 = []ServiceAccount{} + yyc4617 = true } } - yyh4612.End() - if yyc4612 { - *v = yyv4612 + yyh4617.End() + if yyc4617 { + *v = yyv4617 } } @@ -58616,10 +58664,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4616 := range v { + for _, yyv4621 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4617 := &yyv4616 - yy4617.CodecEncodeSelf(e) + yy4622 := &yyv4621 + yy4622.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58629,83 +58677,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4618 := *v - yyh4618, yyl4618 := z.DecSliceHelperStart() - var yyc4618 bool - if yyl4618 == 0 { - if yyv4618 == nil { - yyv4618 = []EndpointSubset{} - yyc4618 = true - } else if len(yyv4618) != 0 { - yyv4618 = yyv4618[:0] - yyc4618 = true + yyv4623 := *v + yyh4623, yyl4623 := z.DecSliceHelperStart() + var yyc4623 bool + if yyl4623 == 0 { + if yyv4623 == nil { + yyv4623 = []EndpointSubset{} + yyc4623 = true + } else if len(yyv4623) != 0 { + yyv4623 = yyv4623[:0] + yyc4623 = true } - } else if yyl4618 > 0 { - var yyrr4618, yyrl4618 int - var yyrt4618 bool - if yyl4618 > cap(yyv4618) { + } else if yyl4623 > 0 { + var yyrr4623, yyrl4623 int + var yyrt4623 bool + if yyl4623 > cap(yyv4623) { - yyrg4618 := len(yyv4618) > 0 - yyv24618 := yyv4618 - yyrl4618, yyrt4618 = z.DecInferLen(yyl4618, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4618 { - if yyrl4618 <= cap(yyv4618) { - yyv4618 = yyv4618[:yyrl4618] + yyrg4623 := len(yyv4623) > 0 + yyv24623 := yyv4623 + yyrl4623, yyrt4623 = z.DecInferLen(yyl4623, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4623 { + if yyrl4623 <= cap(yyv4623) { + yyv4623 = yyv4623[:yyrl4623] } else { - yyv4618 = make([]EndpointSubset, yyrl4618) + yyv4623 = make([]EndpointSubset, yyrl4623) } } else { - yyv4618 = make([]EndpointSubset, yyrl4618) + yyv4623 = make([]EndpointSubset, yyrl4623) } - yyc4618 = true - yyrr4618 = len(yyv4618) - if yyrg4618 { - copy(yyv4618, yyv24618) + yyc4623 = true + yyrr4623 = len(yyv4623) + if yyrg4623 { + copy(yyv4623, yyv24623) } - } else if yyl4618 != len(yyv4618) { - yyv4618 = yyv4618[:yyl4618] - yyc4618 = true + } else if yyl4623 != len(yyv4623) { + yyv4623 = yyv4623[:yyl4623] + yyc4623 = true } - yyj4618 := 0 - for ; yyj4618 < yyrr4618; yyj4618++ { - yyh4618.ElemContainerState(yyj4618) + yyj4623 := 0 + for ; yyj4623 < yyrr4623; yyj4623++ { + yyh4623.ElemContainerState(yyj4623) if r.TryDecodeAsNil() { - yyv4618[yyj4618] = EndpointSubset{} + yyv4623[yyj4623] = EndpointSubset{} } else { - yyv4619 := &yyv4618[yyj4618] - yyv4619.CodecDecodeSelf(d) + yyv4624 := &yyv4623[yyj4623] + yyv4624.CodecDecodeSelf(d) } } - if yyrt4618 { - for ; yyj4618 < yyl4618; yyj4618++ { - yyv4618 = append(yyv4618, EndpointSubset{}) - yyh4618.ElemContainerState(yyj4618) + if yyrt4623 { + for ; yyj4623 < yyl4623; yyj4623++ { + yyv4623 = append(yyv4623, EndpointSubset{}) + yyh4623.ElemContainerState(yyj4623) if r.TryDecodeAsNil() { - yyv4618[yyj4618] = EndpointSubset{} + yyv4623[yyj4623] = EndpointSubset{} } else { - yyv4620 := &yyv4618[yyj4618] - yyv4620.CodecDecodeSelf(d) + yyv4625 := &yyv4623[yyj4623] + yyv4625.CodecDecodeSelf(d) } } } } else { - yyj4618 := 0 - for ; !r.CheckBreak(); yyj4618++ { + yyj4623 := 0 + for ; !r.CheckBreak(); yyj4623++ { - if yyj4618 >= len(yyv4618) { - yyv4618 = append(yyv4618, EndpointSubset{}) // var yyz4618 EndpointSubset - yyc4618 = true + if yyj4623 >= len(yyv4623) { + yyv4623 = append(yyv4623, EndpointSubset{}) // var yyz4623 EndpointSubset + yyc4623 = true } - yyh4618.ElemContainerState(yyj4618) - if yyj4618 < len(yyv4618) { + yyh4623.ElemContainerState(yyj4623) + if yyj4623 < len(yyv4623) { if r.TryDecodeAsNil() { - yyv4618[yyj4618] = EndpointSubset{} + yyv4623[yyj4623] = EndpointSubset{} } else { - yyv4621 := &yyv4618[yyj4618] - yyv4621.CodecDecodeSelf(d) + yyv4626 := &yyv4623[yyj4623] + yyv4626.CodecDecodeSelf(d) } } else { @@ -58713,17 +58761,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4618 < len(yyv4618) { - yyv4618 = yyv4618[:yyj4618] - yyc4618 = true - } else if yyj4618 == 0 && yyv4618 == nil { - yyv4618 = []EndpointSubset{} - yyc4618 = true + if yyj4623 < len(yyv4623) { + yyv4623 = yyv4623[:yyj4623] + yyc4623 = true + } else if yyj4623 == 0 && yyv4623 == nil { + yyv4623 = []EndpointSubset{} + yyc4623 = true } } - yyh4618.End() - if yyc4618 { - *v = yyv4618 + yyh4623.End() + if yyc4623 { + *v = yyv4623 } } @@ -58732,10 +58780,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4622 := range v { + for _, yyv4627 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4623 := &yyv4622 - yy4623.CodecEncodeSelf(e) + yy4628 := &yyv4627 + yy4628.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58745,83 +58793,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4624 := *v - yyh4624, yyl4624 := z.DecSliceHelperStart() - var yyc4624 bool - if yyl4624 == 0 { - if yyv4624 == nil { - yyv4624 = []EndpointAddress{} - yyc4624 = true - } else if len(yyv4624) != 0 { - yyv4624 = yyv4624[:0] - yyc4624 = true + yyv4629 := *v + yyh4629, yyl4629 := z.DecSliceHelperStart() + var yyc4629 bool + if yyl4629 == 0 { + if yyv4629 == nil { + yyv4629 = []EndpointAddress{} + yyc4629 = true + } else if len(yyv4629) != 0 { + yyv4629 = yyv4629[:0] + yyc4629 = true } - } else if yyl4624 > 0 { - var yyrr4624, yyrl4624 int - var yyrt4624 bool - if yyl4624 > cap(yyv4624) { + } else if yyl4629 > 0 { + var yyrr4629, yyrl4629 int + var yyrt4629 bool + if yyl4629 > cap(yyv4629) { - yyrg4624 := len(yyv4624) > 0 - yyv24624 := yyv4624 - yyrl4624, yyrt4624 = z.DecInferLen(yyl4624, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4624 { - if yyrl4624 <= cap(yyv4624) { - yyv4624 = yyv4624[:yyrl4624] + yyrg4629 := len(yyv4629) > 0 + yyv24629 := yyv4629 + yyrl4629, yyrt4629 = z.DecInferLen(yyl4629, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4629 { + if yyrl4629 <= cap(yyv4629) { + yyv4629 = yyv4629[:yyrl4629] } else { - yyv4624 = make([]EndpointAddress, yyrl4624) + yyv4629 = make([]EndpointAddress, yyrl4629) } } else { - yyv4624 = make([]EndpointAddress, yyrl4624) + yyv4629 = make([]EndpointAddress, yyrl4629) } - yyc4624 = true - yyrr4624 = len(yyv4624) - if yyrg4624 { - copy(yyv4624, yyv24624) + yyc4629 = true + yyrr4629 = len(yyv4629) + if yyrg4629 { + copy(yyv4629, yyv24629) } - } else if yyl4624 != len(yyv4624) { - yyv4624 = yyv4624[:yyl4624] - yyc4624 = true + } else if yyl4629 != len(yyv4629) { + yyv4629 = yyv4629[:yyl4629] + yyc4629 = true } - yyj4624 := 0 - for ; yyj4624 < yyrr4624; yyj4624++ { - yyh4624.ElemContainerState(yyj4624) + yyj4629 := 0 + for ; yyj4629 < yyrr4629; yyj4629++ { + yyh4629.ElemContainerState(yyj4629) if r.TryDecodeAsNil() { - yyv4624[yyj4624] = EndpointAddress{} + yyv4629[yyj4629] = EndpointAddress{} } else { - yyv4625 := &yyv4624[yyj4624] - yyv4625.CodecDecodeSelf(d) + yyv4630 := &yyv4629[yyj4629] + yyv4630.CodecDecodeSelf(d) } } - if yyrt4624 { - for ; yyj4624 < yyl4624; yyj4624++ { - yyv4624 = append(yyv4624, EndpointAddress{}) - yyh4624.ElemContainerState(yyj4624) + if yyrt4629 { + for ; yyj4629 < yyl4629; yyj4629++ { + yyv4629 = append(yyv4629, EndpointAddress{}) + yyh4629.ElemContainerState(yyj4629) if r.TryDecodeAsNil() { - yyv4624[yyj4624] = EndpointAddress{} + yyv4629[yyj4629] = EndpointAddress{} } else { - yyv4626 := &yyv4624[yyj4624] - yyv4626.CodecDecodeSelf(d) + yyv4631 := &yyv4629[yyj4629] + yyv4631.CodecDecodeSelf(d) } } } } else { - yyj4624 := 0 - for ; !r.CheckBreak(); yyj4624++ { + yyj4629 := 0 + for ; !r.CheckBreak(); yyj4629++ { - if yyj4624 >= len(yyv4624) { - yyv4624 = append(yyv4624, EndpointAddress{}) // var yyz4624 EndpointAddress - yyc4624 = true + if yyj4629 >= len(yyv4629) { + yyv4629 = append(yyv4629, EndpointAddress{}) // var yyz4629 EndpointAddress + yyc4629 = true } - yyh4624.ElemContainerState(yyj4624) - if yyj4624 < len(yyv4624) { + yyh4629.ElemContainerState(yyj4629) + if yyj4629 < len(yyv4629) { if r.TryDecodeAsNil() { - yyv4624[yyj4624] = EndpointAddress{} + yyv4629[yyj4629] = EndpointAddress{} } else { - yyv4627 := &yyv4624[yyj4624] - yyv4627.CodecDecodeSelf(d) + yyv4632 := &yyv4629[yyj4629] + yyv4632.CodecDecodeSelf(d) } } else { @@ -58829,17 +58877,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4624 < len(yyv4624) { - yyv4624 = yyv4624[:yyj4624] - yyc4624 = true - } else if yyj4624 == 0 && yyv4624 == nil { - yyv4624 = []EndpointAddress{} - yyc4624 = true + if yyj4629 < len(yyv4629) { + yyv4629 = yyv4629[:yyj4629] + yyc4629 = true + } else if yyj4629 == 0 && yyv4629 == nil { + yyv4629 = []EndpointAddress{} + yyc4629 = true } } - yyh4624.End() - if yyc4624 { - *v = yyv4624 + yyh4629.End() + if yyc4629 { + *v = yyv4629 } } @@ -58848,10 +58896,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4628 := range v { + for _, yyv4633 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4629 := &yyv4628 - yy4629.CodecEncodeSelf(e) + yy4634 := &yyv4633 + yy4634.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58861,83 +58909,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4630 := *v - yyh4630, yyl4630 := z.DecSliceHelperStart() - var yyc4630 bool - if yyl4630 == 0 { - if yyv4630 == nil { - yyv4630 = []EndpointPort{} - yyc4630 = true - } else if len(yyv4630) != 0 { - yyv4630 = yyv4630[:0] - yyc4630 = true + yyv4635 := *v + yyh4635, yyl4635 := z.DecSliceHelperStart() + var yyc4635 bool + if yyl4635 == 0 { + if yyv4635 == nil { + yyv4635 = []EndpointPort{} + yyc4635 = true + } else if len(yyv4635) != 0 { + yyv4635 = yyv4635[:0] + yyc4635 = true } - } else if yyl4630 > 0 { - var yyrr4630, yyrl4630 int - var yyrt4630 bool - if yyl4630 > cap(yyv4630) { + } else if yyl4635 > 0 { + var yyrr4635, yyrl4635 int + var yyrt4635 bool + if yyl4635 > cap(yyv4635) { - yyrg4630 := len(yyv4630) > 0 - yyv24630 := yyv4630 - yyrl4630, yyrt4630 = z.DecInferLen(yyl4630, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4630 { - if yyrl4630 <= cap(yyv4630) { - yyv4630 = yyv4630[:yyrl4630] + yyrg4635 := len(yyv4635) > 0 + yyv24635 := yyv4635 + yyrl4635, yyrt4635 = z.DecInferLen(yyl4635, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4635 { + if yyrl4635 <= cap(yyv4635) { + yyv4635 = yyv4635[:yyrl4635] } else { - yyv4630 = make([]EndpointPort, yyrl4630) + yyv4635 = make([]EndpointPort, yyrl4635) } } else { - yyv4630 = make([]EndpointPort, yyrl4630) + yyv4635 = make([]EndpointPort, yyrl4635) } - yyc4630 = true - yyrr4630 = len(yyv4630) - if yyrg4630 { - copy(yyv4630, yyv24630) + yyc4635 = true + yyrr4635 = len(yyv4635) + if yyrg4635 { + copy(yyv4635, yyv24635) } - } else if yyl4630 != len(yyv4630) { - yyv4630 = yyv4630[:yyl4630] - yyc4630 = true + } else if yyl4635 != len(yyv4635) { + yyv4635 = yyv4635[:yyl4635] + yyc4635 = true } - yyj4630 := 0 - for ; yyj4630 < yyrr4630; yyj4630++ { - yyh4630.ElemContainerState(yyj4630) + yyj4635 := 0 + for ; yyj4635 < yyrr4635; yyj4635++ { + yyh4635.ElemContainerState(yyj4635) if r.TryDecodeAsNil() { - yyv4630[yyj4630] = EndpointPort{} + yyv4635[yyj4635] = EndpointPort{} } else { - yyv4631 := &yyv4630[yyj4630] - yyv4631.CodecDecodeSelf(d) + yyv4636 := &yyv4635[yyj4635] + yyv4636.CodecDecodeSelf(d) } } - if yyrt4630 { - for ; yyj4630 < yyl4630; yyj4630++ { - yyv4630 = append(yyv4630, EndpointPort{}) - yyh4630.ElemContainerState(yyj4630) + if yyrt4635 { + for ; yyj4635 < yyl4635; yyj4635++ { + yyv4635 = append(yyv4635, EndpointPort{}) + yyh4635.ElemContainerState(yyj4635) if r.TryDecodeAsNil() { - yyv4630[yyj4630] = EndpointPort{} + yyv4635[yyj4635] = EndpointPort{} } else { - yyv4632 := &yyv4630[yyj4630] - yyv4632.CodecDecodeSelf(d) + yyv4637 := &yyv4635[yyj4635] + yyv4637.CodecDecodeSelf(d) } } } } else { - yyj4630 := 0 - for ; !r.CheckBreak(); yyj4630++ { + yyj4635 := 0 + for ; !r.CheckBreak(); yyj4635++ { - if yyj4630 >= len(yyv4630) { - yyv4630 = append(yyv4630, EndpointPort{}) // var yyz4630 EndpointPort - yyc4630 = true + if yyj4635 >= len(yyv4635) { + yyv4635 = append(yyv4635, EndpointPort{}) // var yyz4635 EndpointPort + yyc4635 = true } - yyh4630.ElemContainerState(yyj4630) - if yyj4630 < len(yyv4630) { + yyh4635.ElemContainerState(yyj4635) + if yyj4635 < len(yyv4635) { if r.TryDecodeAsNil() { - yyv4630[yyj4630] = EndpointPort{} + yyv4635[yyj4635] = EndpointPort{} } else { - yyv4633 := &yyv4630[yyj4630] - yyv4633.CodecDecodeSelf(d) + yyv4638 := &yyv4635[yyj4635] + yyv4638.CodecDecodeSelf(d) } } else { @@ -58945,17 +58993,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4630 < len(yyv4630) { - yyv4630 = yyv4630[:yyj4630] - yyc4630 = true - } else if yyj4630 == 0 && yyv4630 == nil { - yyv4630 = []EndpointPort{} - yyc4630 = true + if yyj4635 < len(yyv4635) { + yyv4635 = yyv4635[:yyj4635] + yyc4635 = true + } else if yyj4635 == 0 && yyv4635 == nil { + yyv4635 = []EndpointPort{} + yyc4635 = true } } - yyh4630.End() - if yyc4630 { - *v = yyv4630 + yyh4635.End() + if yyc4635 { + *v = yyv4635 } } @@ -58964,10 +59012,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4634 := range v { + for _, yyv4639 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4635 := &yyv4634 - yy4635.CodecEncodeSelf(e) + yy4640 := &yyv4639 + yy4640.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58977,83 +59025,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4636 := *v - yyh4636, yyl4636 := z.DecSliceHelperStart() - var yyc4636 bool - if yyl4636 == 0 { - if yyv4636 == nil { - yyv4636 = []Endpoints{} - yyc4636 = true - } else if len(yyv4636) != 0 { - yyv4636 = yyv4636[:0] - yyc4636 = true + yyv4641 := *v + yyh4641, yyl4641 := z.DecSliceHelperStart() + var yyc4641 bool + if yyl4641 == 0 { + if yyv4641 == nil { + yyv4641 = []Endpoints{} + yyc4641 = true + } else if len(yyv4641) != 0 { + yyv4641 = yyv4641[:0] + yyc4641 = true } - } else if yyl4636 > 0 { - var yyrr4636, yyrl4636 int - var yyrt4636 bool - if yyl4636 > cap(yyv4636) { + } else if yyl4641 > 0 { + var yyrr4641, yyrl4641 int + var yyrt4641 bool + if yyl4641 > cap(yyv4641) { - yyrg4636 := len(yyv4636) > 0 - yyv24636 := yyv4636 - yyrl4636, yyrt4636 = z.DecInferLen(yyl4636, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4636 { - if yyrl4636 <= cap(yyv4636) { - yyv4636 = yyv4636[:yyrl4636] + yyrg4641 := len(yyv4641) > 0 + yyv24641 := yyv4641 + yyrl4641, yyrt4641 = z.DecInferLen(yyl4641, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4641 { + if yyrl4641 <= cap(yyv4641) { + yyv4641 = yyv4641[:yyrl4641] } else { - yyv4636 = make([]Endpoints, yyrl4636) + yyv4641 = make([]Endpoints, yyrl4641) } } else { - yyv4636 = make([]Endpoints, yyrl4636) + yyv4641 = make([]Endpoints, yyrl4641) } - yyc4636 = true - yyrr4636 = len(yyv4636) - if yyrg4636 { - copy(yyv4636, yyv24636) + yyc4641 = true + yyrr4641 = len(yyv4641) + if yyrg4641 { + copy(yyv4641, yyv24641) } - } else if yyl4636 != len(yyv4636) { - yyv4636 = yyv4636[:yyl4636] - yyc4636 = true + } else if yyl4641 != len(yyv4641) { + yyv4641 = yyv4641[:yyl4641] + yyc4641 = true } - yyj4636 := 0 - for ; yyj4636 < yyrr4636; yyj4636++ { - yyh4636.ElemContainerState(yyj4636) + yyj4641 := 0 + for ; yyj4641 < yyrr4641; yyj4641++ { + yyh4641.ElemContainerState(yyj4641) if r.TryDecodeAsNil() { - yyv4636[yyj4636] = Endpoints{} + yyv4641[yyj4641] = Endpoints{} } else { - yyv4637 := &yyv4636[yyj4636] - yyv4637.CodecDecodeSelf(d) + yyv4642 := &yyv4641[yyj4641] + yyv4642.CodecDecodeSelf(d) } } - if yyrt4636 { - for ; yyj4636 < yyl4636; yyj4636++ { - yyv4636 = append(yyv4636, Endpoints{}) - yyh4636.ElemContainerState(yyj4636) + if yyrt4641 { + for ; yyj4641 < yyl4641; yyj4641++ { + yyv4641 = append(yyv4641, Endpoints{}) + yyh4641.ElemContainerState(yyj4641) if r.TryDecodeAsNil() { - yyv4636[yyj4636] = Endpoints{} + yyv4641[yyj4641] = Endpoints{} } else { - yyv4638 := &yyv4636[yyj4636] - yyv4638.CodecDecodeSelf(d) + yyv4643 := &yyv4641[yyj4641] + yyv4643.CodecDecodeSelf(d) } } } } else { - yyj4636 := 0 - for ; !r.CheckBreak(); yyj4636++ { + yyj4641 := 0 + for ; !r.CheckBreak(); yyj4641++ { - if yyj4636 >= len(yyv4636) { - yyv4636 = append(yyv4636, Endpoints{}) // var yyz4636 Endpoints - yyc4636 = true + if yyj4641 >= len(yyv4641) { + yyv4641 = append(yyv4641, Endpoints{}) // var yyz4641 Endpoints + yyc4641 = true } - yyh4636.ElemContainerState(yyj4636) - if yyj4636 < len(yyv4636) { + yyh4641.ElemContainerState(yyj4641) + if yyj4641 < len(yyv4641) { if r.TryDecodeAsNil() { - yyv4636[yyj4636] = Endpoints{} + yyv4641[yyj4641] = Endpoints{} } else { - yyv4639 := &yyv4636[yyj4636] - yyv4639.CodecDecodeSelf(d) + yyv4644 := &yyv4641[yyj4641] + yyv4644.CodecDecodeSelf(d) } } else { @@ -59061,17 +59109,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4636 < len(yyv4636) { - yyv4636 = yyv4636[:yyj4636] - yyc4636 = true - } else if yyj4636 == 0 && yyv4636 == nil { - yyv4636 = []Endpoints{} - yyc4636 = true + if yyj4641 < len(yyv4641) { + yyv4641 = yyv4641[:yyj4641] + yyc4641 = true + } else if yyj4641 == 0 && yyv4641 == nil { + yyv4641 = []Endpoints{} + yyc4641 = true } } - yyh4636.End() - if yyc4636 { - *v = yyv4636 + yyh4641.End() + if yyc4641 { + *v = yyv4641 } } @@ -59080,10 +59128,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4640 := range v { + for _, yyv4645 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4641 := &yyv4640 - yy4641.CodecEncodeSelf(e) + yy4646 := &yyv4645 + yy4646.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59093,83 +59141,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4642 := *v - yyh4642, yyl4642 := z.DecSliceHelperStart() - var yyc4642 bool - if yyl4642 == 0 { - if yyv4642 == nil { - yyv4642 = []NodeCondition{} - yyc4642 = true - } else if len(yyv4642) != 0 { - yyv4642 = yyv4642[:0] - yyc4642 = true + yyv4647 := *v + yyh4647, yyl4647 := z.DecSliceHelperStart() + var yyc4647 bool + if yyl4647 == 0 { + if yyv4647 == nil { + yyv4647 = []NodeCondition{} + yyc4647 = true + } else if len(yyv4647) != 0 { + yyv4647 = yyv4647[:0] + yyc4647 = true } - } else if yyl4642 > 0 { - var yyrr4642, yyrl4642 int - var yyrt4642 bool - if yyl4642 > cap(yyv4642) { + } else if yyl4647 > 0 { + var yyrr4647, yyrl4647 int + var yyrt4647 bool + if yyl4647 > cap(yyv4647) { - yyrg4642 := len(yyv4642) > 0 - yyv24642 := yyv4642 - yyrl4642, yyrt4642 = z.DecInferLen(yyl4642, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4642 { - if yyrl4642 <= cap(yyv4642) { - yyv4642 = yyv4642[:yyrl4642] + yyrg4647 := len(yyv4647) > 0 + yyv24647 := yyv4647 + yyrl4647, yyrt4647 = z.DecInferLen(yyl4647, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4647 { + if yyrl4647 <= cap(yyv4647) { + yyv4647 = yyv4647[:yyrl4647] } else { - yyv4642 = make([]NodeCondition, yyrl4642) + yyv4647 = make([]NodeCondition, yyrl4647) } } else { - yyv4642 = make([]NodeCondition, yyrl4642) + yyv4647 = make([]NodeCondition, yyrl4647) } - yyc4642 = true - yyrr4642 = len(yyv4642) - if yyrg4642 { - copy(yyv4642, yyv24642) + yyc4647 = true + yyrr4647 = len(yyv4647) + if yyrg4647 { + copy(yyv4647, yyv24647) } - } else if yyl4642 != len(yyv4642) { - yyv4642 = yyv4642[:yyl4642] - yyc4642 = true + } else if yyl4647 != len(yyv4647) { + yyv4647 = yyv4647[:yyl4647] + yyc4647 = true } - yyj4642 := 0 - for ; yyj4642 < yyrr4642; yyj4642++ { - yyh4642.ElemContainerState(yyj4642) + yyj4647 := 0 + for ; yyj4647 < yyrr4647; yyj4647++ { + yyh4647.ElemContainerState(yyj4647) if r.TryDecodeAsNil() { - yyv4642[yyj4642] = NodeCondition{} + yyv4647[yyj4647] = NodeCondition{} } else { - yyv4643 := &yyv4642[yyj4642] - yyv4643.CodecDecodeSelf(d) + yyv4648 := &yyv4647[yyj4647] + yyv4648.CodecDecodeSelf(d) } } - if yyrt4642 { - for ; yyj4642 < yyl4642; yyj4642++ { - yyv4642 = append(yyv4642, NodeCondition{}) - yyh4642.ElemContainerState(yyj4642) + if yyrt4647 { + for ; yyj4647 < yyl4647; yyj4647++ { + yyv4647 = append(yyv4647, NodeCondition{}) + yyh4647.ElemContainerState(yyj4647) if r.TryDecodeAsNil() { - yyv4642[yyj4642] = NodeCondition{} + yyv4647[yyj4647] = NodeCondition{} } else { - yyv4644 := &yyv4642[yyj4642] - yyv4644.CodecDecodeSelf(d) + yyv4649 := &yyv4647[yyj4647] + yyv4649.CodecDecodeSelf(d) } } } } else { - yyj4642 := 0 - for ; !r.CheckBreak(); yyj4642++ { + yyj4647 := 0 + for ; !r.CheckBreak(); yyj4647++ { - if yyj4642 >= len(yyv4642) { - yyv4642 = append(yyv4642, NodeCondition{}) // var yyz4642 NodeCondition - yyc4642 = true + if yyj4647 >= len(yyv4647) { + yyv4647 = append(yyv4647, NodeCondition{}) // var yyz4647 NodeCondition + yyc4647 = true } - yyh4642.ElemContainerState(yyj4642) - if yyj4642 < len(yyv4642) { + yyh4647.ElemContainerState(yyj4647) + if yyj4647 < len(yyv4647) { if r.TryDecodeAsNil() { - yyv4642[yyj4642] = NodeCondition{} + yyv4647[yyj4647] = NodeCondition{} } else { - yyv4645 := &yyv4642[yyj4642] - yyv4645.CodecDecodeSelf(d) + yyv4650 := &yyv4647[yyj4647] + yyv4650.CodecDecodeSelf(d) } } else { @@ -59177,17 +59225,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4642 < len(yyv4642) { - yyv4642 = yyv4642[:yyj4642] - yyc4642 = true - } else if yyj4642 == 0 && yyv4642 == nil { - yyv4642 = []NodeCondition{} - yyc4642 = true + if yyj4647 < len(yyv4647) { + yyv4647 = yyv4647[:yyj4647] + yyc4647 = true + } else if yyj4647 == 0 && yyv4647 == nil { + yyv4647 = []NodeCondition{} + yyc4647 = true } } - yyh4642.End() - if yyc4642 { - *v = yyv4642 + yyh4647.End() + if yyc4647 { + *v = yyv4647 } } @@ -59196,10 +59244,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4646 := range v { + for _, yyv4651 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4647 := &yyv4646 - yy4647.CodecEncodeSelf(e) + yy4652 := &yyv4651 + yy4652.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59209,83 +59257,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4648 := *v - yyh4648, yyl4648 := z.DecSliceHelperStart() - var yyc4648 bool - if yyl4648 == 0 { - if yyv4648 == nil { - yyv4648 = []NodeAddress{} - yyc4648 = true - } else if len(yyv4648) != 0 { - yyv4648 = yyv4648[:0] - yyc4648 = true + yyv4653 := *v + yyh4653, yyl4653 := z.DecSliceHelperStart() + var yyc4653 bool + if yyl4653 == 0 { + if yyv4653 == nil { + yyv4653 = []NodeAddress{} + yyc4653 = true + } else if len(yyv4653) != 0 { + yyv4653 = yyv4653[:0] + yyc4653 = true } - } else if yyl4648 > 0 { - var yyrr4648, yyrl4648 int - var yyrt4648 bool - if yyl4648 > cap(yyv4648) { + } else if yyl4653 > 0 { + var yyrr4653, yyrl4653 int + var yyrt4653 bool + if yyl4653 > cap(yyv4653) { - yyrg4648 := len(yyv4648) > 0 - yyv24648 := yyv4648 - yyrl4648, yyrt4648 = z.DecInferLen(yyl4648, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4648 { - if yyrl4648 <= cap(yyv4648) { - yyv4648 = yyv4648[:yyrl4648] + yyrg4653 := len(yyv4653) > 0 + yyv24653 := yyv4653 + yyrl4653, yyrt4653 = z.DecInferLen(yyl4653, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4653 { + if yyrl4653 <= cap(yyv4653) { + yyv4653 = yyv4653[:yyrl4653] } else { - yyv4648 = make([]NodeAddress, yyrl4648) + yyv4653 = make([]NodeAddress, yyrl4653) } } else { - yyv4648 = make([]NodeAddress, yyrl4648) + yyv4653 = make([]NodeAddress, yyrl4653) } - yyc4648 = true - yyrr4648 = len(yyv4648) - if yyrg4648 { - copy(yyv4648, yyv24648) + yyc4653 = true + yyrr4653 = len(yyv4653) + if yyrg4653 { + copy(yyv4653, yyv24653) } - } else if yyl4648 != len(yyv4648) { - yyv4648 = yyv4648[:yyl4648] - yyc4648 = true + } else if yyl4653 != len(yyv4653) { + yyv4653 = yyv4653[:yyl4653] + yyc4653 = true } - yyj4648 := 0 - for ; yyj4648 < yyrr4648; yyj4648++ { - yyh4648.ElemContainerState(yyj4648) + yyj4653 := 0 + for ; yyj4653 < yyrr4653; yyj4653++ { + yyh4653.ElemContainerState(yyj4653) if r.TryDecodeAsNil() { - yyv4648[yyj4648] = NodeAddress{} + yyv4653[yyj4653] = NodeAddress{} } else { - yyv4649 := &yyv4648[yyj4648] - yyv4649.CodecDecodeSelf(d) + yyv4654 := &yyv4653[yyj4653] + yyv4654.CodecDecodeSelf(d) } } - if yyrt4648 { - for ; yyj4648 < yyl4648; yyj4648++ { - yyv4648 = append(yyv4648, NodeAddress{}) - yyh4648.ElemContainerState(yyj4648) + if yyrt4653 { + for ; yyj4653 < yyl4653; yyj4653++ { + yyv4653 = append(yyv4653, NodeAddress{}) + yyh4653.ElemContainerState(yyj4653) if r.TryDecodeAsNil() { - yyv4648[yyj4648] = NodeAddress{} + yyv4653[yyj4653] = NodeAddress{} } else { - yyv4650 := &yyv4648[yyj4648] - yyv4650.CodecDecodeSelf(d) + yyv4655 := &yyv4653[yyj4653] + yyv4655.CodecDecodeSelf(d) } } } } else { - yyj4648 := 0 - for ; !r.CheckBreak(); yyj4648++ { + yyj4653 := 0 + for ; !r.CheckBreak(); yyj4653++ { - if yyj4648 >= len(yyv4648) { - yyv4648 = append(yyv4648, NodeAddress{}) // var yyz4648 NodeAddress - yyc4648 = true + if yyj4653 >= len(yyv4653) { + yyv4653 = append(yyv4653, NodeAddress{}) // var yyz4653 NodeAddress + yyc4653 = true } - yyh4648.ElemContainerState(yyj4648) - if yyj4648 < len(yyv4648) { + yyh4653.ElemContainerState(yyj4653) + if yyj4653 < len(yyv4653) { if r.TryDecodeAsNil() { - yyv4648[yyj4648] = NodeAddress{} + yyv4653[yyj4653] = NodeAddress{} } else { - yyv4651 := &yyv4648[yyj4648] - yyv4651.CodecDecodeSelf(d) + yyv4656 := &yyv4653[yyj4653] + yyv4656.CodecDecodeSelf(d) } } else { @@ -59293,17 +59341,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4648 < len(yyv4648) { - yyv4648 = yyv4648[:yyj4648] - yyc4648 = true - } else if yyj4648 == 0 && yyv4648 == nil { - yyv4648 = []NodeAddress{} - yyc4648 = true + if yyj4653 < len(yyv4653) { + yyv4653 = yyv4653[:yyj4653] + yyc4653 = true + } else if yyj4653 == 0 && yyv4653 == nil { + yyv4653 = []NodeAddress{} + yyc4653 = true } } - yyh4648.End() - if yyc4648 { - *v = yyv4648 + yyh4653.End() + if yyc4653 { + *v = yyv4653 } } @@ -59312,10 +59360,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4652 := range v { + for _, yyv4657 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4653 := &yyv4652 - yy4653.CodecEncodeSelf(e) + yy4658 := &yyv4657 + yy4658.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59325,83 +59373,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4654 := *v - yyh4654, yyl4654 := z.DecSliceHelperStart() - var yyc4654 bool - if yyl4654 == 0 { - if yyv4654 == nil { - yyv4654 = []ContainerImage{} - yyc4654 = true - } else if len(yyv4654) != 0 { - yyv4654 = yyv4654[:0] - yyc4654 = true + yyv4659 := *v + yyh4659, yyl4659 := z.DecSliceHelperStart() + var yyc4659 bool + if yyl4659 == 0 { + if yyv4659 == nil { + yyv4659 = []ContainerImage{} + yyc4659 = true + } else if len(yyv4659) != 0 { + yyv4659 = yyv4659[:0] + yyc4659 = true } - } else if yyl4654 > 0 { - var yyrr4654, yyrl4654 int - var yyrt4654 bool - if yyl4654 > cap(yyv4654) { + } else if yyl4659 > 0 { + var yyrr4659, yyrl4659 int + var yyrt4659 bool + if yyl4659 > cap(yyv4659) { - yyrg4654 := len(yyv4654) > 0 - yyv24654 := yyv4654 - yyrl4654, yyrt4654 = z.DecInferLen(yyl4654, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4654 { - if yyrl4654 <= cap(yyv4654) { - yyv4654 = yyv4654[:yyrl4654] + yyrg4659 := len(yyv4659) > 0 + yyv24659 := yyv4659 + yyrl4659, yyrt4659 = z.DecInferLen(yyl4659, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4659 { + if yyrl4659 <= cap(yyv4659) { + yyv4659 = yyv4659[:yyrl4659] } else { - yyv4654 = make([]ContainerImage, yyrl4654) + yyv4659 = make([]ContainerImage, yyrl4659) } } else { - yyv4654 = make([]ContainerImage, yyrl4654) + yyv4659 = make([]ContainerImage, yyrl4659) } - yyc4654 = true - yyrr4654 = len(yyv4654) - if yyrg4654 { - copy(yyv4654, yyv24654) + yyc4659 = true + yyrr4659 = len(yyv4659) + if yyrg4659 { + copy(yyv4659, yyv24659) } - } else if yyl4654 != len(yyv4654) { - yyv4654 = yyv4654[:yyl4654] - yyc4654 = true + } else if yyl4659 != len(yyv4659) { + yyv4659 = yyv4659[:yyl4659] + yyc4659 = true } - yyj4654 := 0 - for ; yyj4654 < yyrr4654; yyj4654++ { - yyh4654.ElemContainerState(yyj4654) + yyj4659 := 0 + for ; yyj4659 < yyrr4659; yyj4659++ { + yyh4659.ElemContainerState(yyj4659) if r.TryDecodeAsNil() { - yyv4654[yyj4654] = ContainerImage{} + yyv4659[yyj4659] = ContainerImage{} } else { - yyv4655 := &yyv4654[yyj4654] - yyv4655.CodecDecodeSelf(d) + yyv4660 := &yyv4659[yyj4659] + yyv4660.CodecDecodeSelf(d) } } - if yyrt4654 { - for ; yyj4654 < yyl4654; yyj4654++ { - yyv4654 = append(yyv4654, ContainerImage{}) - yyh4654.ElemContainerState(yyj4654) + if yyrt4659 { + for ; yyj4659 < yyl4659; yyj4659++ { + yyv4659 = append(yyv4659, ContainerImage{}) + yyh4659.ElemContainerState(yyj4659) if r.TryDecodeAsNil() { - yyv4654[yyj4654] = ContainerImage{} + yyv4659[yyj4659] = ContainerImage{} } else { - yyv4656 := &yyv4654[yyj4654] - yyv4656.CodecDecodeSelf(d) + yyv4661 := &yyv4659[yyj4659] + yyv4661.CodecDecodeSelf(d) } } } } else { - yyj4654 := 0 - for ; !r.CheckBreak(); yyj4654++ { + yyj4659 := 0 + for ; !r.CheckBreak(); yyj4659++ { - if yyj4654 >= len(yyv4654) { - yyv4654 = append(yyv4654, ContainerImage{}) // var yyz4654 ContainerImage - yyc4654 = true + if yyj4659 >= len(yyv4659) { + yyv4659 = append(yyv4659, ContainerImage{}) // var yyz4659 ContainerImage + yyc4659 = true } - yyh4654.ElemContainerState(yyj4654) - if yyj4654 < len(yyv4654) { + yyh4659.ElemContainerState(yyj4659) + if yyj4659 < len(yyv4659) { if r.TryDecodeAsNil() { - yyv4654[yyj4654] = ContainerImage{} + yyv4659[yyj4659] = ContainerImage{} } else { - yyv4657 := &yyv4654[yyj4654] - yyv4657.CodecDecodeSelf(d) + yyv4662 := &yyv4659[yyj4659] + yyv4662.CodecDecodeSelf(d) } } else { @@ -59409,17 +59457,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4654 < len(yyv4654) { - yyv4654 = yyv4654[:yyj4654] - yyc4654 = true - } else if yyj4654 == 0 && yyv4654 == nil { - yyv4654 = []ContainerImage{} - yyc4654 = true + if yyj4659 < len(yyv4659) { + yyv4659 = yyv4659[:yyj4659] + yyc4659 = true + } else if yyj4659 == 0 && yyv4659 == nil { + yyv4659 = []ContainerImage{} + yyc4659 = true } } - yyh4654.End() - if yyc4654 { - *v = yyv4654 + yyh4659.End() + if yyc4659 { + *v = yyv4659 } } @@ -59428,9 +59476,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4658 := range v { + for _, yyv4663 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4658.CodecEncodeSelf(e) + yyv4663.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59440,75 +59488,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4659 := *v - yyh4659, yyl4659 := z.DecSliceHelperStart() - var yyc4659 bool - if yyl4659 == 0 { - if yyv4659 == nil { - yyv4659 = []UniqueVolumeName{} - yyc4659 = true - } else if len(yyv4659) != 0 { - yyv4659 = yyv4659[:0] - yyc4659 = true + yyv4664 := *v + yyh4664, yyl4664 := z.DecSliceHelperStart() + var yyc4664 bool + if yyl4664 == 0 { + if yyv4664 == nil { + yyv4664 = []UniqueVolumeName{} + yyc4664 = true + } else if len(yyv4664) != 0 { + yyv4664 = yyv4664[:0] + yyc4664 = true } - } else if yyl4659 > 0 { - var yyrr4659, yyrl4659 int - var yyrt4659 bool - if yyl4659 > cap(yyv4659) { + } else if yyl4664 > 0 { + var yyrr4664, yyrl4664 int + var yyrt4664 bool + if yyl4664 > cap(yyv4664) { - yyrl4659, yyrt4659 = z.DecInferLen(yyl4659, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4659 { - if yyrl4659 <= cap(yyv4659) { - yyv4659 = yyv4659[:yyrl4659] + yyrl4664, yyrt4664 = z.DecInferLen(yyl4664, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4664 { + if yyrl4664 <= cap(yyv4664) { + yyv4664 = yyv4664[:yyrl4664] } else { - yyv4659 = make([]UniqueVolumeName, yyrl4659) + yyv4664 = make([]UniqueVolumeName, yyrl4664) } } else { - yyv4659 = make([]UniqueVolumeName, yyrl4659) + yyv4664 = make([]UniqueVolumeName, yyrl4664) } - yyc4659 = true - yyrr4659 = len(yyv4659) - } else if yyl4659 != len(yyv4659) { - yyv4659 = yyv4659[:yyl4659] - yyc4659 = true + yyc4664 = true + yyrr4664 = len(yyv4664) + } else if yyl4664 != len(yyv4664) { + yyv4664 = yyv4664[:yyl4664] + yyc4664 = true } - yyj4659 := 0 - for ; yyj4659 < yyrr4659; yyj4659++ { - yyh4659.ElemContainerState(yyj4659) + yyj4664 := 0 + for ; yyj4664 < yyrr4664; yyj4664++ { + yyh4664.ElemContainerState(yyj4664) if r.TryDecodeAsNil() { - yyv4659[yyj4659] = "" + yyv4664[yyj4664] = "" } else { - yyv4659[yyj4659] = UniqueVolumeName(r.DecodeString()) + yyv4664[yyj4664] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4659 { - for ; yyj4659 < yyl4659; yyj4659++ { - yyv4659 = append(yyv4659, "") - yyh4659.ElemContainerState(yyj4659) + if yyrt4664 { + for ; yyj4664 < yyl4664; yyj4664++ { + yyv4664 = append(yyv4664, "") + yyh4664.ElemContainerState(yyj4664) if r.TryDecodeAsNil() { - yyv4659[yyj4659] = "" + yyv4664[yyj4664] = "" } else { - yyv4659[yyj4659] = UniqueVolumeName(r.DecodeString()) + yyv4664[yyj4664] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4659 := 0 - for ; !r.CheckBreak(); yyj4659++ { + yyj4664 := 0 + for ; !r.CheckBreak(); yyj4664++ { - if yyj4659 >= len(yyv4659) { - yyv4659 = append(yyv4659, "") // var yyz4659 UniqueVolumeName - yyc4659 = true + if yyj4664 >= len(yyv4664) { + yyv4664 = append(yyv4664, "") // var yyz4664 UniqueVolumeName + yyc4664 = true } - yyh4659.ElemContainerState(yyj4659) - if yyj4659 < len(yyv4659) { + yyh4664.ElemContainerState(yyj4664) + if yyj4664 < len(yyv4664) { if r.TryDecodeAsNil() { - yyv4659[yyj4659] = "" + yyv4664[yyj4664] = "" } else { - yyv4659[yyj4659] = UniqueVolumeName(r.DecodeString()) + yyv4664[yyj4664] = UniqueVolumeName(r.DecodeString()) } } else { @@ -59516,17 +59564,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4659 < len(yyv4659) { - yyv4659 = yyv4659[:yyj4659] - yyc4659 = true - } else if yyj4659 == 0 && yyv4659 == nil { - yyv4659 = []UniqueVolumeName{} - yyc4659 = true + if yyj4664 < len(yyv4664) { + yyv4664 = yyv4664[:yyj4664] + yyc4664 = true + } else if yyj4664 == 0 && yyv4664 == nil { + yyv4664 = []UniqueVolumeName{} + yyc4664 = true } } - yyh4659.End() - if yyc4659 { - *v = yyv4659 + yyh4664.End() + if yyc4664 { + *v = yyv4664 } } @@ -59535,10 +59583,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 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) } @@ -59548,83 +59596,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4665 := *v - yyh4665, yyl4665 := z.DecSliceHelperStart() - var yyc4665 bool - if yyl4665 == 0 { - if yyv4665 == nil { - yyv4665 = []AttachedVolume{} - 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 = []AttachedVolume{} + 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, 32) - if yyrt4665 { - if yyrl4665 <= cap(yyv4665) { - yyv4665 = yyv4665[:yyrl4665] + yyrg4670 := len(yyv4670) > 0 + yyv24670 := yyv4670 + yyrl4670, yyrt4670 = z.DecInferLen(yyl4670, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4670 { + if yyrl4670 <= cap(yyv4670) { + yyv4670 = yyv4670[:yyrl4670] } else { - yyv4665 = make([]AttachedVolume, yyrl4665) + yyv4670 = make([]AttachedVolume, yyrl4670) } } else { - yyv4665 = make([]AttachedVolume, yyrl4665) + yyv4670 = make([]AttachedVolume, 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] = AttachedVolume{} + yyv4670[yyj4670] = AttachedVolume{} } else { - yyv4666 := &yyv4665[yyj4665] - yyv4666.CodecDecodeSelf(d) + yyv4671 := &yyv4670[yyj4670] + yyv4671.CodecDecodeSelf(d) } } - if yyrt4665 { - for ; yyj4665 < yyl4665; yyj4665++ { - yyv4665 = append(yyv4665, AttachedVolume{}) - yyh4665.ElemContainerState(yyj4665) + if yyrt4670 { + for ; yyj4670 < yyl4670; yyj4670++ { + yyv4670 = append(yyv4670, AttachedVolume{}) + yyh4670.ElemContainerState(yyj4670) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = AttachedVolume{} + yyv4670[yyj4670] = AttachedVolume{} } 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, AttachedVolume{}) // var yyz4665 AttachedVolume - yyc4665 = true + if yyj4670 >= len(yyv4670) { + yyv4670 = append(yyv4670, AttachedVolume{}) // var yyz4670 AttachedVolume + yyc4670 = true } - yyh4665.ElemContainerState(yyj4665) - if yyj4665 < len(yyv4665) { + yyh4670.ElemContainerState(yyj4670) + if yyj4670 < len(yyv4670) { if r.TryDecodeAsNil() { - yyv4665[yyj4665] = AttachedVolume{} + yyv4670[yyj4670] = AttachedVolume{} } else { - yyv4668 := &yyv4665[yyj4665] - yyv4668.CodecDecodeSelf(d) + yyv4673 := &yyv4670[yyj4670] + yyv4673.CodecDecodeSelf(d) } } else { @@ -59632,17 +59680,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4665 < len(yyv4665) { - yyv4665 = yyv4665[:yyj4665] - yyc4665 = true - } else if yyj4665 == 0 && yyv4665 == nil { - yyv4665 = []AttachedVolume{} - yyc4665 = true + if yyj4670 < len(yyv4670) { + yyv4670 = yyv4670[:yyj4670] + yyc4670 = true + } else if yyj4670 == 0 && yyv4670 == nil { + yyv4670 = []AttachedVolume{} + yyc4670 = true } } - yyh4665.End() - if yyc4665 { - *v = yyv4665 + yyh4670.End() + if yyc4670 { + *v = yyv4670 } } @@ -59651,10 +59699,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, 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) } @@ -59664,83 +59712,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4671 := *v - yyh4671, yyl4671 := z.DecSliceHelperStart() - var yyc4671 bool - if yyl4671 == 0 { - if yyv4671 == nil { - yyv4671 = []PreferAvoidPodsEntry{} - 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 = []PreferAvoidPodsEntry{} + 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, 64) - if yyrt4671 { - if yyrl4671 <= cap(yyv4671) { - yyv4671 = yyv4671[:yyrl4671] + yyrg4676 := len(yyv4676) > 0 + yyv24676 := yyv4676 + yyrl4676, yyrt4676 = z.DecInferLen(yyl4676, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4676 { + if yyrl4676 <= cap(yyv4676) { + yyv4676 = yyv4676[:yyrl4676] } else { - yyv4671 = make([]PreferAvoidPodsEntry, yyrl4671) + yyv4676 = make([]PreferAvoidPodsEntry, yyrl4676) } } else { - yyv4671 = make([]PreferAvoidPodsEntry, yyrl4671) + yyv4676 = make([]PreferAvoidPodsEntry, 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] = PreferAvoidPodsEntry{} + yyv4676[yyj4676] = PreferAvoidPodsEntry{} } else { - yyv4672 := &yyv4671[yyj4671] - yyv4672.CodecDecodeSelf(d) + yyv4677 := &yyv4676[yyj4676] + yyv4677.CodecDecodeSelf(d) } } - if yyrt4671 { - for ; yyj4671 < yyl4671; yyj4671++ { - yyv4671 = append(yyv4671, PreferAvoidPodsEntry{}) - yyh4671.ElemContainerState(yyj4671) + if yyrt4676 { + for ; yyj4676 < yyl4676; yyj4676++ { + yyv4676 = append(yyv4676, PreferAvoidPodsEntry{}) + yyh4676.ElemContainerState(yyj4676) if r.TryDecodeAsNil() { - yyv4671[yyj4671] = PreferAvoidPodsEntry{} + yyv4676[yyj4676] = PreferAvoidPodsEntry{} } 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, PreferAvoidPodsEntry{}) // var yyz4671 PreferAvoidPodsEntry - yyc4671 = true + if yyj4676 >= len(yyv4676) { + yyv4676 = append(yyv4676, PreferAvoidPodsEntry{}) // var yyz4676 PreferAvoidPodsEntry + yyc4676 = true } - yyh4671.ElemContainerState(yyj4671) - if yyj4671 < len(yyv4671) { + yyh4676.ElemContainerState(yyj4676) + if yyj4676 < len(yyv4676) { if r.TryDecodeAsNil() { - yyv4671[yyj4671] = PreferAvoidPodsEntry{} + yyv4676[yyj4676] = PreferAvoidPodsEntry{} } else { - yyv4674 := &yyv4671[yyj4671] - yyv4674.CodecDecodeSelf(d) + yyv4679 := &yyv4676[yyj4676] + yyv4679.CodecDecodeSelf(d) } } else { @@ -59748,17 +59796,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4671 < len(yyv4671) { - yyv4671 = yyv4671[:yyj4671] - yyc4671 = true - } else if yyj4671 == 0 && yyv4671 == nil { - yyv4671 = []PreferAvoidPodsEntry{} - yyc4671 = true + if yyj4676 < len(yyv4676) { + yyv4676 = yyv4676[:yyj4676] + yyc4676 = true + } else if yyj4676 == 0 && yyv4676 == nil { + yyv4676 = []PreferAvoidPodsEntry{} + yyc4676 = true } } - yyh4671.End() - if yyc4671 { - *v = yyv4671 + yyh4676.End() + if yyc4676 { + *v = yyv4676 } } @@ -59767,19 +59815,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4675, yyv4675 := range v { + for yyk4680, yyv4680 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4675.CodecEncodeSelf(e) + yyk4680.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4676 := &yyv4675 - yym4677 := z.EncBinary() - _ = yym4677 + yy4681 := &yyv4680 + yym4682 := z.EncBinary() + _ = yym4682 if false { - } else if z.HasExtensions() && z.EncExt(yy4676) { - } else if !yym4677 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4676) + } else if z.HasExtensions() && z.EncExt(yy4681) { + } else if !yym4682 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4681) } else { - z.EncFallback(yy4676) + z.EncFallback(yy4681) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -59790,86 +59838,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4678 := *v - yyl4678 := r.ReadMapStart() - yybh4678 := z.DecBasicHandle() - if yyv4678 == nil { - yyrl4678, _ := z.DecInferLen(yyl4678, yybh4678.MaxInitLen, 72) - yyv4678 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4678) - *v = yyv4678 + yyv4683 := *v + yyl4683 := r.ReadMapStart() + yybh4683 := z.DecBasicHandle() + if yyv4683 == nil { + yyrl4683, _ := z.DecInferLen(yyl4683, yybh4683.MaxInitLen, 72) + yyv4683 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4683) + *v = yyv4683 } - var yymk4678 ResourceName - var yymv4678 pkg3_resource.Quantity - var yymg4678 bool - if yybh4678.MapValueReset { - yymg4678 = true + var yymk4683 ResourceName + var yymv4683 pkg3_resource.Quantity + var yymg4683 bool + if yybh4683.MapValueReset { + yymg4683 = true } - if yyl4678 > 0 { - for yyj4678 := 0; yyj4678 < yyl4678; yyj4678++ { + if yyl4683 > 0 { + for yyj4683 := 0; yyj4683 < yyl4683; yyj4683++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4678 = "" + yymk4683 = "" } else { - yymk4678 = ResourceName(r.DecodeString()) + yymk4683 = ResourceName(r.DecodeString()) } - if yymg4678 { - yymv4678 = yyv4678[yymk4678] + if yymg4683 { + yymv4683 = yyv4683[yymk4683] } else { - yymv4678 = pkg3_resource.Quantity{} + yymv4683 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4678 = pkg3_resource.Quantity{} + yymv4683 = pkg3_resource.Quantity{} } else { - yyv4680 := &yymv4678 - yym4681 := z.DecBinary() - _ = yym4681 + yyv4685 := &yymv4683 + yym4686 := z.DecBinary() + _ = yym4686 if false { - } else if z.HasExtensions() && z.DecExt(yyv4680) { - } else if !yym4681 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4680) + } else if z.HasExtensions() && z.DecExt(yyv4685) { + } else if !yym4686 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4685) } else { - z.DecFallback(yyv4680, false) + z.DecFallback(yyv4685, false) } } - if yyv4678 != nil { - yyv4678[yymk4678] = yymv4678 + if yyv4683 != nil { + yyv4683[yymk4683] = yymv4683 } } - } else if yyl4678 < 0 { - for yyj4678 := 0; !r.CheckBreak(); yyj4678++ { + } else if yyl4683 < 0 { + for yyj4683 := 0; !r.CheckBreak(); yyj4683++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4678 = "" + yymk4683 = "" } else { - yymk4678 = ResourceName(r.DecodeString()) + yymk4683 = ResourceName(r.DecodeString()) } - if yymg4678 { - yymv4678 = yyv4678[yymk4678] + if yymg4683 { + yymv4683 = yyv4683[yymk4683] } else { - yymv4678 = pkg3_resource.Quantity{} + yymv4683 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4678 = pkg3_resource.Quantity{} + yymv4683 = pkg3_resource.Quantity{} } else { - yyv4683 := &yymv4678 - yym4684 := z.DecBinary() - _ = yym4684 + yyv4688 := &yymv4683 + yym4689 := z.DecBinary() + _ = yym4689 if false { - } else if z.HasExtensions() && z.DecExt(yyv4683) { - } else if !yym4684 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4683) + } else if z.HasExtensions() && z.DecExt(yyv4688) { + } else if !yym4689 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4688) } else { - z.DecFallback(yyv4683, false) + z.DecFallback(yyv4688, false) } } - if yyv4678 != nil { - yyv4678[yymk4678] = yymv4678 + if yyv4683 != nil { + yyv4683[yymk4683] = yymv4683 } } } // else len==0: TODO: Should we clear map entries? @@ -59881,10 +59929,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4685 := range v { + for _, yyv4690 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4686 := &yyv4685 - yy4686.CodecEncodeSelf(e) + yy4691 := &yyv4690 + yy4691.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59894,127 +59942,12 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4687 := *v - yyh4687, yyl4687 := z.DecSliceHelperStart() - var yyc4687 bool - if yyl4687 == 0 { - if yyv4687 == nil { - yyv4687 = []Node{} - yyc4687 = true - } else if len(yyv4687) != 0 { - yyv4687 = yyv4687[:0] - yyc4687 = true - } - } else if yyl4687 > 0 { - var yyrr4687, yyrl4687 int - var yyrt4687 bool - if yyl4687 > cap(yyv4687) { - - yyrg4687 := len(yyv4687) > 0 - yyv24687 := yyv4687 - yyrl4687, yyrt4687 = z.DecInferLen(yyl4687, z.DecBasicHandle().MaxInitLen, 616) - if yyrt4687 { - if yyrl4687 <= cap(yyv4687) { - yyv4687 = yyv4687[:yyrl4687] - } else { - yyv4687 = make([]Node, yyrl4687) - } - } else { - yyv4687 = make([]Node, yyrl4687) - } - yyc4687 = true - yyrr4687 = len(yyv4687) - if yyrg4687 { - copy(yyv4687, yyv24687) - } - } else if yyl4687 != len(yyv4687) { - yyv4687 = yyv4687[:yyl4687] - yyc4687 = true - } - yyj4687 := 0 - for ; yyj4687 < yyrr4687; yyj4687++ { - yyh4687.ElemContainerState(yyj4687) - if r.TryDecodeAsNil() { - yyv4687[yyj4687] = Node{} - } else { - yyv4688 := &yyv4687[yyj4687] - yyv4688.CodecDecodeSelf(d) - } - - } - if yyrt4687 { - for ; yyj4687 < yyl4687; yyj4687++ { - yyv4687 = append(yyv4687, Node{}) - yyh4687.ElemContainerState(yyj4687) - if r.TryDecodeAsNil() { - yyv4687[yyj4687] = Node{} - } else { - yyv4689 := &yyv4687[yyj4687] - yyv4689.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4687 := 0 - for ; !r.CheckBreak(); yyj4687++ { - - if yyj4687 >= len(yyv4687) { - yyv4687 = append(yyv4687, Node{}) // var yyz4687 Node - yyc4687 = true - } - yyh4687.ElemContainerState(yyj4687) - if yyj4687 < len(yyv4687) { - if r.TryDecodeAsNil() { - yyv4687[yyj4687] = Node{} - } else { - yyv4690 := &yyv4687[yyj4687] - yyv4690.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4687 < len(yyv4687) { - yyv4687 = yyv4687[:yyj4687] - yyc4687 = true - } else if yyj4687 == 0 && yyv4687 == nil { - yyv4687 = []Node{} - yyc4687 = true - } - } - yyh4687.End() - if yyc4687 { - *v = yyv4687 - } -} - -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 _, yyv4691 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4691.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 - yyv4692 := *v yyh4692, yyl4692 := z.DecSliceHelperStart() var yyc4692 bool if yyl4692 == 0 { if yyv4692 == nil { - yyv4692 = []FinalizerName{} + yyv4692 = []Node{} yyc4692 = true } else if len(yyv4692) != 0 { yyv4692 = yyv4692[:0] @@ -60025,18 +59958,23 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. var yyrt4692 bool if yyl4692 > cap(yyv4692) { - yyrl4692, yyrt4692 = z.DecInferLen(yyl4692, z.DecBasicHandle().MaxInitLen, 16) + yyrg4692 := len(yyv4692) > 0 + yyv24692 := yyv4692 + yyrl4692, yyrt4692 = z.DecInferLen(yyl4692, z.DecBasicHandle().MaxInitLen, 616) if yyrt4692 { if yyrl4692 <= cap(yyv4692) { yyv4692 = yyv4692[:yyrl4692] } else { - yyv4692 = make([]FinalizerName, yyrl4692) + yyv4692 = make([]Node, yyrl4692) } } else { - yyv4692 = make([]FinalizerName, yyrl4692) + yyv4692 = make([]Node, yyrl4692) } yyc4692 = true yyrr4692 = len(yyv4692) + if yyrg4692 { + copy(yyv4692, yyv24692) + } } else if yyl4692 != len(yyv4692) { yyv4692 = yyv4692[:yyl4692] yyc4692 = true @@ -60045,20 +59983,22 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; yyj4692 < yyrr4692; yyj4692++ { yyh4692.ElemContainerState(yyj4692) if r.TryDecodeAsNil() { - yyv4692[yyj4692] = "" + yyv4692[yyj4692] = Node{} } else { - yyv4692[yyj4692] = FinalizerName(r.DecodeString()) + yyv4693 := &yyv4692[yyj4692] + yyv4693.CodecDecodeSelf(d) } } if yyrt4692 { for ; yyj4692 < yyl4692; yyj4692++ { - yyv4692 = append(yyv4692, "") + yyv4692 = append(yyv4692, Node{}) yyh4692.ElemContainerState(yyj4692) if r.TryDecodeAsNil() { - yyv4692[yyj4692] = "" + yyv4692[yyj4692] = Node{} } else { - yyv4692[yyj4692] = FinalizerName(r.DecodeString()) + yyv4694 := &yyv4692[yyj4692] + yyv4694.CodecDecodeSelf(d) } } @@ -60069,15 +60009,16 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; !r.CheckBreak(); yyj4692++ { if yyj4692 >= len(yyv4692) { - yyv4692 = append(yyv4692, "") // var yyz4692 FinalizerName + yyv4692 = append(yyv4692, Node{}) // var yyz4692 Node yyc4692 = true } yyh4692.ElemContainerState(yyj4692) if yyj4692 < len(yyv4692) { if r.TryDecodeAsNil() { - yyv4692[yyj4692] = "" + yyv4692[yyj4692] = Node{} } else { - yyv4692[yyj4692] = FinalizerName(r.DecodeString()) + yyv4695 := &yyv4692[yyj4692] + yyv4695.CodecDecodeSelf(d) } } else { @@ -60089,7 +60030,7 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. yyv4692 = yyv4692[:yyj4692] yyc4692 = true } else if yyj4692 == 0 && yyv4692 == nil { - yyv4692 = []FinalizerName{} + yyv4692 = []Node{} yyc4692 = true } } @@ -60099,101 +60040,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 _, yyv4696 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4697 := &yyv4696 - yy4697.CodecEncodeSelf(e) + yyv4696.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 - yyv4698 := *v - yyh4698, yyl4698 := z.DecSliceHelperStart() - var yyc4698 bool - if yyl4698 == 0 { - if yyv4698 == nil { - yyv4698 = []Namespace{} - yyc4698 = true - } else if len(yyv4698) != 0 { - yyv4698 = yyv4698[:0] - yyc4698 = true + yyv4697 := *v + yyh4697, yyl4697 := z.DecSliceHelperStart() + var yyc4697 bool + if yyl4697 == 0 { + if yyv4697 == nil { + yyv4697 = []FinalizerName{} + yyc4697 = true + } else if len(yyv4697) != 0 { + yyv4697 = yyv4697[:0] + yyc4697 = true } - } else if yyl4698 > 0 { - var yyrr4698, yyrl4698 int - var yyrt4698 bool - if yyl4698 > cap(yyv4698) { + } else if yyl4697 > 0 { + var yyrr4697, yyrl4697 int + var yyrt4697 bool + if yyl4697 > cap(yyv4697) { - yyrg4698 := len(yyv4698) > 0 - yyv24698 := yyv4698 - yyrl4698, yyrt4698 = z.DecInferLen(yyl4698, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4698 { - if yyrl4698 <= cap(yyv4698) { - yyv4698 = yyv4698[:yyrl4698] + yyrl4697, yyrt4697 = z.DecInferLen(yyl4697, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4697 { + if yyrl4697 <= cap(yyv4697) { + yyv4697 = yyv4697[:yyrl4697] } else { - yyv4698 = make([]Namespace, yyrl4698) + yyv4697 = make([]FinalizerName, yyrl4697) } } else { - yyv4698 = make([]Namespace, yyrl4698) - } - yyc4698 = true - yyrr4698 = len(yyv4698) - if yyrg4698 { - copy(yyv4698, yyv24698) + yyv4697 = make([]FinalizerName, yyrl4697) } - } else if yyl4698 != len(yyv4698) { - yyv4698 = yyv4698[:yyl4698] - yyc4698 = true + yyc4697 = true + yyrr4697 = len(yyv4697) + } else if yyl4697 != len(yyv4697) { + yyv4697 = yyv4697[:yyl4697] + yyc4697 = true } - yyj4698 := 0 - for ; yyj4698 < yyrr4698; yyj4698++ { - yyh4698.ElemContainerState(yyj4698) + yyj4697 := 0 + for ; yyj4697 < yyrr4697; yyj4697++ { + yyh4697.ElemContainerState(yyj4697) if r.TryDecodeAsNil() { - yyv4698[yyj4698] = Namespace{} + yyv4697[yyj4697] = "" } else { - yyv4699 := &yyv4698[yyj4698] - yyv4699.CodecDecodeSelf(d) + yyv4697[yyj4697] = FinalizerName(r.DecodeString()) } } - if yyrt4698 { - for ; yyj4698 < yyl4698; yyj4698++ { - yyv4698 = append(yyv4698, Namespace{}) - yyh4698.ElemContainerState(yyj4698) + if yyrt4697 { + for ; yyj4697 < yyl4697; yyj4697++ { + yyv4697 = append(yyv4697, "") + yyh4697.ElemContainerState(yyj4697) if r.TryDecodeAsNil() { - yyv4698[yyj4698] = Namespace{} + yyv4697[yyj4697] = "" } else { - yyv4700 := &yyv4698[yyj4698] - yyv4700.CodecDecodeSelf(d) + yyv4697[yyj4697] = FinalizerName(r.DecodeString()) } } } } else { - yyj4698 := 0 - for ; !r.CheckBreak(); yyj4698++ { + yyj4697 := 0 + for ; !r.CheckBreak(); yyj4697++ { - if yyj4698 >= len(yyv4698) { - yyv4698 = append(yyv4698, Namespace{}) // var yyz4698 Namespace - yyc4698 = true + if yyj4697 >= len(yyv4697) { + yyv4697 = append(yyv4697, "") // var yyz4697 FinalizerName + yyc4697 = true } - yyh4698.ElemContainerState(yyj4698) - if yyj4698 < len(yyv4698) { + yyh4697.ElemContainerState(yyj4697) + if yyj4697 < len(yyv4697) { if r.TryDecodeAsNil() { - yyv4698[yyj4698] = Namespace{} + yyv4697[yyj4697] = "" } else { - yyv4701 := &yyv4698[yyj4698] - yyv4701.CodecDecodeSelf(d) + yyv4697[yyj4697] = FinalizerName(r.DecodeString()) } } else { @@ -60201,115 +60133,115 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4698 < len(yyv4698) { - yyv4698 = yyv4698[:yyj4698] - yyc4698 = true - } else if yyj4698 == 0 && yyv4698 == nil { - yyv4698 = []Namespace{} - yyc4698 = true + if yyj4697 < len(yyv4697) { + yyv4697 = yyv4697[:yyj4697] + yyc4697 = true + } else if yyj4697 == 0 && yyv4697 == nil { + yyv4697 = []FinalizerName{} + yyc4697 = true } } - yyh4698.End() - if yyc4698 { - *v = yyv4698 + yyh4697.End() + if yyc4697 { + *v = yyv4697 } } -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 _, yyv4702 := range v { + for _, yyv4701 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4703 := &yyv4702 - yy4703.CodecEncodeSelf(e) + yy4702 := &yyv4701 + yy4702.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 - yyv4704 := *v - yyh4704, yyl4704 := z.DecSliceHelperStart() - var yyc4704 bool - if yyl4704 == 0 { - if yyv4704 == nil { - yyv4704 = []Event{} - yyc4704 = true - } else if len(yyv4704) != 0 { - yyv4704 = yyv4704[:0] - yyc4704 = true + yyv4703 := *v + yyh4703, yyl4703 := z.DecSliceHelperStart() + var yyc4703 bool + if yyl4703 == 0 { + if yyv4703 == nil { + yyv4703 = []Namespace{} + yyc4703 = true + } else if len(yyv4703) != 0 { + yyv4703 = yyv4703[:0] + yyc4703 = true } - } else if yyl4704 > 0 { - var yyrr4704, yyrl4704 int - var yyrt4704 bool - if yyl4704 > cap(yyv4704) { + } else if yyl4703 > 0 { + var yyrr4703, yyrl4703 int + var yyrt4703 bool + if yyl4703 > cap(yyv4703) { - yyrg4704 := len(yyv4704) > 0 - yyv24704 := yyv4704 - yyrl4704, yyrt4704 = z.DecInferLen(yyl4704, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4704 { - if yyrl4704 <= cap(yyv4704) { - yyv4704 = yyv4704[:yyrl4704] + yyrg4703 := len(yyv4703) > 0 + yyv24703 := yyv4703 + yyrl4703, yyrt4703 = z.DecInferLen(yyl4703, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4703 { + if yyrl4703 <= cap(yyv4703) { + yyv4703 = yyv4703[:yyrl4703] } else { - yyv4704 = make([]Event, yyrl4704) + yyv4703 = make([]Namespace, yyrl4703) } } else { - yyv4704 = make([]Event, yyrl4704) + yyv4703 = make([]Namespace, yyrl4703) } - yyc4704 = true - yyrr4704 = len(yyv4704) - if yyrg4704 { - copy(yyv4704, yyv24704) + yyc4703 = true + yyrr4703 = len(yyv4703) + if yyrg4703 { + copy(yyv4703, yyv24703) } - } else if yyl4704 != len(yyv4704) { - yyv4704 = yyv4704[:yyl4704] - yyc4704 = true + } else if yyl4703 != len(yyv4703) { + yyv4703 = yyv4703[:yyl4703] + yyc4703 = true } - yyj4704 := 0 - for ; yyj4704 < yyrr4704; yyj4704++ { - yyh4704.ElemContainerState(yyj4704) + yyj4703 := 0 + for ; yyj4703 < yyrr4703; yyj4703++ { + yyh4703.ElemContainerState(yyj4703) if r.TryDecodeAsNil() { - yyv4704[yyj4704] = Event{} + yyv4703[yyj4703] = Namespace{} } else { - yyv4705 := &yyv4704[yyj4704] - yyv4705.CodecDecodeSelf(d) + yyv4704 := &yyv4703[yyj4703] + yyv4704.CodecDecodeSelf(d) } } - if yyrt4704 { - for ; yyj4704 < yyl4704; yyj4704++ { - yyv4704 = append(yyv4704, Event{}) - yyh4704.ElemContainerState(yyj4704) + if yyrt4703 { + for ; yyj4703 < yyl4703; yyj4703++ { + yyv4703 = append(yyv4703, Namespace{}) + yyh4703.ElemContainerState(yyj4703) if r.TryDecodeAsNil() { - yyv4704[yyj4704] = Event{} + yyv4703[yyj4703] = Namespace{} } else { - yyv4706 := &yyv4704[yyj4704] - yyv4706.CodecDecodeSelf(d) + yyv4705 := &yyv4703[yyj4703] + yyv4705.CodecDecodeSelf(d) } } } } else { - yyj4704 := 0 - for ; !r.CheckBreak(); yyj4704++ { + yyj4703 := 0 + for ; !r.CheckBreak(); yyj4703++ { - if yyj4704 >= len(yyv4704) { - yyv4704 = append(yyv4704, Event{}) // var yyz4704 Event - yyc4704 = true + if yyj4703 >= len(yyv4703) { + yyv4703 = append(yyv4703, Namespace{}) // var yyz4703 Namespace + yyc4703 = true } - yyh4704.ElemContainerState(yyj4704) - if yyj4704 < len(yyv4704) { + yyh4703.ElemContainerState(yyj4703) + if yyj4703 < len(yyv4703) { if r.TryDecodeAsNil() { - yyv4704[yyj4704] = Event{} + yyv4703[yyj4703] = Namespace{} } else { - yyv4707 := &yyv4704[yyj4704] - yyv4707.CodecDecodeSelf(d) + yyv4706 := &yyv4703[yyj4703] + yyv4706.CodecDecodeSelf(d) } } else { @@ -60317,147 +60249,115 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4704 < len(yyv4704) { - yyv4704 = yyv4704[:yyj4704] - yyc4704 = true - } else if yyj4704 == 0 && yyv4704 == nil { - yyv4704 = []Event{} - yyc4704 = true + if yyj4703 < len(yyv4703) { + yyv4703 = yyv4703[:yyj4703] + yyc4703 = true + } else if yyj4703 == 0 && yyv4703 == nil { + yyv4703 = []Namespace{} + yyc4703 = true } } - yyh4704.End() - if yyc4704 { - *v = yyv4704 + yyh4703.End() + if yyc4703 { + *v = yyv4703 } } -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 _, yyv4708 := range v { + for _, yyv4707 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4709 := &yyv4708 - yym4710 := z.EncBinary() - _ = yym4710 - if false { - } else if z.HasExtensions() && z.EncExt(yy4709) { - } else if !yym4710 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4709) - } else { - z.EncFallback(yy4709) - } + yy4708 := &yyv4707 + yy4708.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 - yyv4711 := *v - yyh4711, yyl4711 := z.DecSliceHelperStart() - var yyc4711 bool - if yyl4711 == 0 { - if yyv4711 == nil { - yyv4711 = []pkg5_runtime.RawExtension{} - yyc4711 = true - } else if len(yyv4711) != 0 { - yyv4711 = yyv4711[:0] - yyc4711 = true + yyv4709 := *v + yyh4709, yyl4709 := z.DecSliceHelperStart() + var yyc4709 bool + if yyl4709 == 0 { + if yyv4709 == nil { + yyv4709 = []Event{} + yyc4709 = true + } else if len(yyv4709) != 0 { + yyv4709 = yyv4709[:0] + yyc4709 = true } - } else if yyl4711 > 0 { - var yyrr4711, yyrl4711 int - var yyrt4711 bool - if yyl4711 > cap(yyv4711) { + } else if yyl4709 > 0 { + var yyrr4709, yyrl4709 int + var yyrt4709 bool + if yyl4709 > cap(yyv4709) { - yyrg4711 := len(yyv4711) > 0 - yyv24711 := yyv4711 - yyrl4711, yyrt4711 = z.DecInferLen(yyl4711, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4711 { - if yyrl4711 <= cap(yyv4711) { - yyv4711 = yyv4711[:yyrl4711] + yyrg4709 := len(yyv4709) > 0 + yyv24709 := yyv4709 + yyrl4709, yyrt4709 = z.DecInferLen(yyl4709, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4709 { + if yyrl4709 <= cap(yyv4709) { + yyv4709 = yyv4709[:yyrl4709] } else { - yyv4711 = make([]pkg5_runtime.RawExtension, yyrl4711) + yyv4709 = make([]Event, yyrl4709) } } else { - yyv4711 = make([]pkg5_runtime.RawExtension, yyrl4711) + yyv4709 = make([]Event, yyrl4709) } - yyc4711 = true - yyrr4711 = len(yyv4711) - if yyrg4711 { - copy(yyv4711, yyv24711) + yyc4709 = true + yyrr4709 = len(yyv4709) + if yyrg4709 { + copy(yyv4709, yyv24709) } - } else if yyl4711 != len(yyv4711) { - yyv4711 = yyv4711[:yyl4711] - yyc4711 = true + } else if yyl4709 != len(yyv4709) { + yyv4709 = yyv4709[:yyl4709] + yyc4709 = true } - yyj4711 := 0 - for ; yyj4711 < yyrr4711; yyj4711++ { - yyh4711.ElemContainerState(yyj4711) + yyj4709 := 0 + for ; yyj4709 < yyrr4709; yyj4709++ { + yyh4709.ElemContainerState(yyj4709) if r.TryDecodeAsNil() { - yyv4711[yyj4711] = pkg5_runtime.RawExtension{} + yyv4709[yyj4709] = Event{} } else { - yyv4712 := &yyv4711[yyj4711] - yym4713 := z.DecBinary() - _ = yym4713 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4712) { - } else if !yym4713 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4712) - } else { - z.DecFallback(yyv4712, false) - } + yyv4710 := &yyv4709[yyj4709] + yyv4710.CodecDecodeSelf(d) } } - if yyrt4711 { - for ; yyj4711 < yyl4711; yyj4711++ { - yyv4711 = append(yyv4711, pkg5_runtime.RawExtension{}) - yyh4711.ElemContainerState(yyj4711) + if yyrt4709 { + for ; yyj4709 < yyl4709; yyj4709++ { + yyv4709 = append(yyv4709, Event{}) + yyh4709.ElemContainerState(yyj4709) if r.TryDecodeAsNil() { - yyv4711[yyj4711] = pkg5_runtime.RawExtension{} + yyv4709[yyj4709] = Event{} } else { - yyv4714 := &yyv4711[yyj4711] - yym4715 := z.DecBinary() - _ = yym4715 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4714) { - } else if !yym4715 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4714) - } else { - z.DecFallback(yyv4714, false) - } + yyv4711 := &yyv4709[yyj4709] + yyv4711.CodecDecodeSelf(d) } } } } else { - yyj4711 := 0 - for ; !r.CheckBreak(); yyj4711++ { + yyj4709 := 0 + for ; !r.CheckBreak(); yyj4709++ { - if yyj4711 >= len(yyv4711) { - yyv4711 = append(yyv4711, pkg5_runtime.RawExtension{}) // var yyz4711 pkg5_runtime.RawExtension - yyc4711 = true + if yyj4709 >= len(yyv4709) { + yyv4709 = append(yyv4709, Event{}) // var yyz4709 Event + yyc4709 = true } - yyh4711.ElemContainerState(yyj4711) - if yyj4711 < len(yyv4711) { + yyh4709.ElemContainerState(yyj4709) + if yyj4709 < len(yyv4709) { if r.TryDecodeAsNil() { - yyv4711[yyj4711] = pkg5_runtime.RawExtension{} + yyv4709[yyj4709] = Event{} } else { - yyv4716 := &yyv4711[yyj4711] - yym4717 := z.DecBinary() - _ = yym4717 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4716) { - } else if !yym4717 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4716) - } else { - z.DecFallback(yyv4716, false) - } + yyv4712 := &yyv4709[yyj4709] + yyv4712.CodecDecodeSelf(d) } } else { @@ -60465,115 +60365,147 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } - if yyj4711 < len(yyv4711) { - yyv4711 = yyv4711[:yyj4711] - yyc4711 = true - } else if yyj4711 == 0 && yyv4711 == nil { - yyv4711 = []pkg5_runtime.RawExtension{} - yyc4711 = true + if yyj4709 < len(yyv4709) { + yyv4709 = yyv4709[:yyj4709] + yyc4709 = true + } else if yyj4709 == 0 && yyv4709 == nil { + yyv4709 = []Event{} + yyc4709 = true } } - yyh4711.End() - if yyc4711 { - *v = yyv4711 + yyh4709.End() + if yyc4709 { + *v = yyv4709 } } -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 _, yyv4718 := range v { + for _, yyv4713 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4719 := &yyv4718 - yy4719.CodecEncodeSelf(e) + yy4714 := &yyv4713 + yym4715 := z.EncBinary() + _ = yym4715 + if false { + } else if z.HasExtensions() && z.EncExt(yy4714) { + } else if !yym4715 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4714) + } else { + z.EncFallback(yy4714) + } } 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 - yyv4720 := *v - yyh4720, yyl4720 := z.DecSliceHelperStart() - var yyc4720 bool - if yyl4720 == 0 { - if yyv4720 == nil { - yyv4720 = []LimitRangeItem{} - yyc4720 = true - } else if len(yyv4720) != 0 { - yyv4720 = yyv4720[:0] - yyc4720 = true + yyv4716 := *v + yyh4716, yyl4716 := z.DecSliceHelperStart() + var yyc4716 bool + if yyl4716 == 0 { + if yyv4716 == nil { + yyv4716 = []pkg5_runtime.RawExtension{} + yyc4716 = true + } else if len(yyv4716) != 0 { + yyv4716 = yyv4716[:0] + yyc4716 = true } - } else if yyl4720 > 0 { - var yyrr4720, yyrl4720 int - var yyrt4720 bool - if yyl4720 > cap(yyv4720) { + } else if yyl4716 > 0 { + var yyrr4716, yyrl4716 int + var yyrt4716 bool + if yyl4716 > cap(yyv4716) { - yyrg4720 := len(yyv4720) > 0 - yyv24720 := yyv4720 - yyrl4720, yyrt4720 = z.DecInferLen(yyl4720, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4720 { - if yyrl4720 <= cap(yyv4720) { - yyv4720 = yyv4720[:yyrl4720] + yyrg4716 := len(yyv4716) > 0 + yyv24716 := yyv4716 + yyrl4716, yyrt4716 = z.DecInferLen(yyl4716, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4716 { + if yyrl4716 <= cap(yyv4716) { + yyv4716 = yyv4716[:yyrl4716] } else { - yyv4720 = make([]LimitRangeItem, yyrl4720) + yyv4716 = make([]pkg5_runtime.RawExtension, yyrl4716) } } else { - yyv4720 = make([]LimitRangeItem, yyrl4720) + yyv4716 = make([]pkg5_runtime.RawExtension, yyrl4716) } - yyc4720 = true - yyrr4720 = len(yyv4720) - if yyrg4720 { - copy(yyv4720, yyv24720) + yyc4716 = true + yyrr4716 = len(yyv4716) + if yyrg4716 { + copy(yyv4716, yyv24716) } - } else if yyl4720 != len(yyv4720) { - yyv4720 = yyv4720[:yyl4720] - yyc4720 = true + } else if yyl4716 != len(yyv4716) { + yyv4716 = yyv4716[:yyl4716] + yyc4716 = true } - yyj4720 := 0 - for ; yyj4720 < yyrr4720; yyj4720++ { - yyh4720.ElemContainerState(yyj4720) + yyj4716 := 0 + for ; yyj4716 < yyrr4716; yyj4716++ { + yyh4716.ElemContainerState(yyj4716) if r.TryDecodeAsNil() { - yyv4720[yyj4720] = LimitRangeItem{} + yyv4716[yyj4716] = pkg5_runtime.RawExtension{} } else { - yyv4721 := &yyv4720[yyj4720] - yyv4721.CodecDecodeSelf(d) + yyv4717 := &yyv4716[yyj4716] + yym4718 := z.DecBinary() + _ = yym4718 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4717) { + } else if !yym4718 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4717) + } else { + z.DecFallback(yyv4717, false) + } } } - if yyrt4720 { - for ; yyj4720 < yyl4720; yyj4720++ { - yyv4720 = append(yyv4720, LimitRangeItem{}) - yyh4720.ElemContainerState(yyj4720) + if yyrt4716 { + for ; yyj4716 < yyl4716; yyj4716++ { + yyv4716 = append(yyv4716, pkg5_runtime.RawExtension{}) + yyh4716.ElemContainerState(yyj4716) if r.TryDecodeAsNil() { - yyv4720[yyj4720] = LimitRangeItem{} + yyv4716[yyj4716] = pkg5_runtime.RawExtension{} } else { - yyv4722 := &yyv4720[yyj4720] - yyv4722.CodecDecodeSelf(d) + yyv4719 := &yyv4716[yyj4716] + yym4720 := z.DecBinary() + _ = yym4720 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4719) { + } else if !yym4720 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4719) + } else { + z.DecFallback(yyv4719, false) + } } } } } else { - yyj4720 := 0 - for ; !r.CheckBreak(); yyj4720++ { + yyj4716 := 0 + for ; !r.CheckBreak(); yyj4716++ { - if yyj4720 >= len(yyv4720) { - yyv4720 = append(yyv4720, LimitRangeItem{}) // var yyz4720 LimitRangeItem - yyc4720 = true + if yyj4716 >= len(yyv4716) { + yyv4716 = append(yyv4716, pkg5_runtime.RawExtension{}) // var yyz4716 pkg5_runtime.RawExtension + yyc4716 = true } - yyh4720.ElemContainerState(yyj4720) - if yyj4720 < len(yyv4720) { + yyh4716.ElemContainerState(yyj4716) + if yyj4716 < len(yyv4716) { if r.TryDecodeAsNil() { - yyv4720[yyj4720] = LimitRangeItem{} + yyv4716[yyj4716] = pkg5_runtime.RawExtension{} } else { - yyv4723 := &yyv4720[yyj4720] - yyv4723.CodecDecodeSelf(d) + yyv4721 := &yyv4716[yyj4716] + yym4722 := z.DecBinary() + _ = yym4722 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4721) { + } else if !yym4722 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4721) + } else { + z.DecFallback(yyv4721, false) + } } } else { @@ -60581,115 +60513,115 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4720 < len(yyv4720) { - yyv4720 = yyv4720[:yyj4720] - yyc4720 = true - } else if yyj4720 == 0 && yyv4720 == nil { - yyv4720 = []LimitRangeItem{} - yyc4720 = true + if yyj4716 < len(yyv4716) { + yyv4716 = yyv4716[:yyj4716] + yyc4716 = true + } else if yyj4716 == 0 && yyv4716 == nil { + yyv4716 = []pkg5_runtime.RawExtension{} + yyc4716 = true } } - yyh4720.End() - if yyc4720 { - *v = yyv4720 + yyh4716.End() + if yyc4716 { + *v = yyv4716 } } -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 _, yyv4724 := range v { + for _, yyv4723 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4725 := &yyv4724 - yy4725.CodecEncodeSelf(e) + yy4724 := &yyv4723 + yy4724.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 - yyv4726 := *v - yyh4726, yyl4726 := z.DecSliceHelperStart() - var yyc4726 bool - if yyl4726 == 0 { - if yyv4726 == nil { - yyv4726 = []LimitRange{} - yyc4726 = true - } else if len(yyv4726) != 0 { - yyv4726 = yyv4726[:0] - yyc4726 = true + yyv4725 := *v + yyh4725, yyl4725 := z.DecSliceHelperStart() + var yyc4725 bool + if yyl4725 == 0 { + if yyv4725 == nil { + yyv4725 = []LimitRangeItem{} + yyc4725 = true + } else if len(yyv4725) != 0 { + yyv4725 = yyv4725[:0] + yyc4725 = true } - } else if yyl4726 > 0 { - var yyrr4726, yyrl4726 int - var yyrt4726 bool - if yyl4726 > cap(yyv4726) { + } else if yyl4725 > 0 { + var yyrr4725, yyrl4725 int + var yyrt4725 bool + if yyl4725 > cap(yyv4725) { - yyrg4726 := len(yyv4726) > 0 - yyv24726 := yyv4726 - yyrl4726, yyrt4726 = z.DecInferLen(yyl4726, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4726 { - if yyrl4726 <= cap(yyv4726) { - yyv4726 = yyv4726[:yyrl4726] + yyrg4725 := len(yyv4725) > 0 + yyv24725 := yyv4725 + yyrl4725, yyrt4725 = z.DecInferLen(yyl4725, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4725 { + if yyrl4725 <= cap(yyv4725) { + yyv4725 = yyv4725[:yyrl4725] } else { - yyv4726 = make([]LimitRange, yyrl4726) + yyv4725 = make([]LimitRangeItem, yyrl4725) } } else { - yyv4726 = make([]LimitRange, yyrl4726) + yyv4725 = make([]LimitRangeItem, yyrl4725) } - yyc4726 = true - yyrr4726 = len(yyv4726) - if yyrg4726 { - copy(yyv4726, yyv24726) + yyc4725 = true + yyrr4725 = len(yyv4725) + if yyrg4725 { + copy(yyv4725, yyv24725) } - } else if yyl4726 != len(yyv4726) { - yyv4726 = yyv4726[:yyl4726] - yyc4726 = true + } else if yyl4725 != len(yyv4725) { + yyv4725 = yyv4725[:yyl4725] + yyc4725 = true } - yyj4726 := 0 - for ; yyj4726 < yyrr4726; yyj4726++ { - yyh4726.ElemContainerState(yyj4726) + yyj4725 := 0 + for ; yyj4725 < yyrr4725; yyj4725++ { + yyh4725.ElemContainerState(yyj4725) if r.TryDecodeAsNil() { - yyv4726[yyj4726] = LimitRange{} + yyv4725[yyj4725] = LimitRangeItem{} } else { - yyv4727 := &yyv4726[yyj4726] - yyv4727.CodecDecodeSelf(d) + yyv4726 := &yyv4725[yyj4725] + yyv4726.CodecDecodeSelf(d) } } - if yyrt4726 { - for ; yyj4726 < yyl4726; yyj4726++ { - yyv4726 = append(yyv4726, LimitRange{}) - yyh4726.ElemContainerState(yyj4726) + if yyrt4725 { + for ; yyj4725 < yyl4725; yyj4725++ { + yyv4725 = append(yyv4725, LimitRangeItem{}) + yyh4725.ElemContainerState(yyj4725) if r.TryDecodeAsNil() { - yyv4726[yyj4726] = LimitRange{} + yyv4725[yyj4725] = LimitRangeItem{} } else { - yyv4728 := &yyv4726[yyj4726] - yyv4728.CodecDecodeSelf(d) + yyv4727 := &yyv4725[yyj4725] + yyv4727.CodecDecodeSelf(d) } } } } else { - yyj4726 := 0 - for ; !r.CheckBreak(); yyj4726++ { + yyj4725 := 0 + for ; !r.CheckBreak(); yyj4725++ { - if yyj4726 >= len(yyv4726) { - yyv4726 = append(yyv4726, LimitRange{}) // var yyz4726 LimitRange - yyc4726 = true + if yyj4725 >= len(yyv4725) { + yyv4725 = append(yyv4725, LimitRangeItem{}) // var yyz4725 LimitRangeItem + yyc4725 = true } - yyh4726.ElemContainerState(yyj4726) - if yyj4726 < len(yyv4726) { + yyh4725.ElemContainerState(yyj4725) + if yyj4725 < len(yyv4725) { if r.TryDecodeAsNil() { - yyv4726[yyj4726] = LimitRange{} + yyv4725[yyj4725] = LimitRangeItem{} } else { - yyv4729 := &yyv4726[yyj4726] - yyv4729.CodecDecodeSelf(d) + yyv4728 := &yyv4725[yyj4725] + yyv4728.CodecDecodeSelf(d) } } else { @@ -60697,33 +60629,34 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4726 < len(yyv4726) { - yyv4726 = yyv4726[:yyj4726] - yyc4726 = true - } else if yyj4726 == 0 && yyv4726 == nil { - yyv4726 = []LimitRange{} - yyc4726 = true + if yyj4725 < len(yyv4725) { + yyv4725 = yyv4725[:yyj4725] + yyc4725 = true + } else if yyj4725 == 0 && yyv4725 == nil { + yyv4725 = []LimitRangeItem{} + yyc4725 = true } } - yyh4726.End() - if yyc4726 { - *v = yyv4726 + yyh4725.End() + if yyc4725 { + *v = yyv4725 } } -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 _, yyv4730 := range v { + for _, yyv4729 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4730.CodecEncodeSelf(e) + yy4730 := &yyv4729 + yy4730.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 @@ -60733,7 +60666,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyc4731 bool if yyl4731 == 0 { if yyv4731 == nil { - yyv4731 = []ResourceQuotaScope{} + yyv4731 = []LimitRange{} yyc4731 = true } else if len(yyv4731) != 0 { yyv4731 = yyv4731[:0] @@ -60744,18 +60677,23 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyrt4731 bool if yyl4731 > cap(yyv4731) { - yyrl4731, yyrt4731 = z.DecInferLen(yyl4731, z.DecBasicHandle().MaxInitLen, 16) + yyrg4731 := len(yyv4731) > 0 + yyv24731 := yyv4731 + yyrl4731, yyrt4731 = z.DecInferLen(yyl4731, z.DecBasicHandle().MaxInitLen, 264) if yyrt4731 { if yyrl4731 <= cap(yyv4731) { yyv4731 = yyv4731[:yyrl4731] } else { - yyv4731 = make([]ResourceQuotaScope, yyrl4731) + yyv4731 = make([]LimitRange, yyrl4731) } } else { - yyv4731 = make([]ResourceQuotaScope, yyrl4731) + yyv4731 = make([]LimitRange, yyrl4731) } yyc4731 = true yyrr4731 = len(yyv4731) + if yyrg4731 { + copy(yyv4731, yyv24731) + } } else if yyl4731 != len(yyv4731) { yyv4731 = yyv4731[:yyl4731] yyc4731 = true @@ -60764,20 +60702,22 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; yyj4731 < yyrr4731; yyj4731++ { yyh4731.ElemContainerState(yyj4731) if r.TryDecodeAsNil() { - yyv4731[yyj4731] = "" + yyv4731[yyj4731] = LimitRange{} } else { - yyv4731[yyj4731] = ResourceQuotaScope(r.DecodeString()) + yyv4732 := &yyv4731[yyj4731] + yyv4732.CodecDecodeSelf(d) } } if yyrt4731 { for ; yyj4731 < yyl4731; yyj4731++ { - yyv4731 = append(yyv4731, "") + yyv4731 = append(yyv4731, LimitRange{}) yyh4731.ElemContainerState(yyj4731) if r.TryDecodeAsNil() { - yyv4731[yyj4731] = "" + yyv4731[yyj4731] = LimitRange{} } else { - yyv4731[yyj4731] = ResourceQuotaScope(r.DecodeString()) + yyv4733 := &yyv4731[yyj4731] + yyv4733.CodecDecodeSelf(d) } } @@ -60788,15 +60728,16 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; !r.CheckBreak(); yyj4731++ { if yyj4731 >= len(yyv4731) { - yyv4731 = append(yyv4731, "") // var yyz4731 ResourceQuotaScope + yyv4731 = append(yyv4731, LimitRange{}) // var yyz4731 LimitRange yyc4731 = true } yyh4731.ElemContainerState(yyj4731) if yyj4731 < len(yyv4731) { if r.TryDecodeAsNil() { - yyv4731[yyj4731] = "" + yyv4731[yyj4731] = LimitRange{} } else { - yyv4731[yyj4731] = ResourceQuotaScope(r.DecodeString()) + yyv4734 := &yyv4731[yyj4731] + yyv4734.CodecDecodeSelf(d) } } else { @@ -60808,7 +60749,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * yyv4731 = yyv4731[:yyj4731] yyc4731 = true } else if yyj4731 == 0 && yyv4731 == nil { - yyv4731 = []ResourceQuotaScope{} + yyv4731 = []LimitRange{} yyc4731 = true } } @@ -60818,15 +60759,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 _, yyv4735 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4736 := &yyv4735 - yy4736.CodecEncodeSelf(e) + yyv4735.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 + + yyv4736 := *v + yyh4736, yyl4736 := z.DecSliceHelperStart() + var yyc4736 bool + if yyl4736 == 0 { + if yyv4736 == nil { + yyv4736 = []ResourceQuotaScope{} + yyc4736 = true + } else if len(yyv4736) != 0 { + yyv4736 = yyv4736[:0] + yyc4736 = true + } + } else if yyl4736 > 0 { + var yyrr4736, yyrl4736 int + var yyrt4736 bool + if yyl4736 > cap(yyv4736) { + + yyrl4736, yyrt4736 = z.DecInferLen(yyl4736, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4736 { + if yyrl4736 <= cap(yyv4736) { + yyv4736 = yyv4736[:yyrl4736] + } else { + yyv4736 = make([]ResourceQuotaScope, yyrl4736) + } + } else { + yyv4736 = make([]ResourceQuotaScope, yyrl4736) + } + yyc4736 = true + yyrr4736 = len(yyv4736) + } else if yyl4736 != len(yyv4736) { + yyv4736 = yyv4736[:yyl4736] + yyc4736 = true + } + yyj4736 := 0 + for ; yyj4736 < yyrr4736; yyj4736++ { + yyh4736.ElemContainerState(yyj4736) + if r.TryDecodeAsNil() { + yyv4736[yyj4736] = "" + } else { + yyv4736[yyj4736] = ResourceQuotaScope(r.DecodeString()) + } + + } + if yyrt4736 { + for ; yyj4736 < yyl4736; yyj4736++ { + yyv4736 = append(yyv4736, "") + yyh4736.ElemContainerState(yyj4736) + if r.TryDecodeAsNil() { + yyv4736[yyj4736] = "" + } else { + yyv4736[yyj4736] = ResourceQuotaScope(r.DecodeString()) + } + + } + } + + } else { + yyj4736 := 0 + for ; !r.CheckBreak(); yyj4736++ { + + if yyj4736 >= len(yyv4736) { + yyv4736 = append(yyv4736, "") // var yyz4736 ResourceQuotaScope + yyc4736 = true + } + yyh4736.ElemContainerState(yyj4736) + if yyj4736 < len(yyv4736) { + if r.TryDecodeAsNil() { + yyv4736[yyj4736] = "" + } else { + yyv4736[yyj4736] = ResourceQuotaScope(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4736 < len(yyv4736) { + yyv4736 = yyv4736[:yyj4736] + yyc4736 = true + } else if yyj4736 == 0 && yyv4736 == nil { + yyv4736 = []ResourceQuotaScope{} + yyc4736 = true + } + } + yyh4736.End() + if yyc4736 { + *v = yyv4736 + } +} + +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 _, yyv4740 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4741 := &yyv4740 + yy4741.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60836,83 +60884,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4737 := *v - yyh4737, yyl4737 := z.DecSliceHelperStart() - var yyc4737 bool - if yyl4737 == 0 { - if yyv4737 == nil { - yyv4737 = []ResourceQuota{} - yyc4737 = true - } else if len(yyv4737) != 0 { - yyv4737 = yyv4737[:0] - yyc4737 = true + yyv4742 := *v + yyh4742, yyl4742 := z.DecSliceHelperStart() + var yyc4742 bool + if yyl4742 == 0 { + if yyv4742 == nil { + yyv4742 = []ResourceQuota{} + yyc4742 = true + } else if len(yyv4742) != 0 { + yyv4742 = yyv4742[:0] + yyc4742 = true } - } else if yyl4737 > 0 { - var yyrr4737, yyrl4737 int - var yyrt4737 bool - if yyl4737 > cap(yyv4737) { + } else if yyl4742 > 0 { + var yyrr4742, yyrl4742 int + var yyrt4742 bool + if yyl4742 > cap(yyv4742) { - yyrg4737 := len(yyv4737) > 0 - yyv24737 := yyv4737 - yyrl4737, yyrt4737 = z.DecInferLen(yyl4737, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4737 { - if yyrl4737 <= cap(yyv4737) { - yyv4737 = yyv4737[:yyrl4737] + yyrg4742 := len(yyv4742) > 0 + yyv24742 := yyv4742 + yyrl4742, yyrt4742 = z.DecInferLen(yyl4742, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4742 { + if yyrl4742 <= cap(yyv4742) { + yyv4742 = yyv4742[:yyrl4742] } else { - yyv4737 = make([]ResourceQuota, yyrl4737) + yyv4742 = make([]ResourceQuota, yyrl4742) } } else { - yyv4737 = make([]ResourceQuota, yyrl4737) + yyv4742 = make([]ResourceQuota, yyrl4742) } - yyc4737 = true - yyrr4737 = len(yyv4737) - if yyrg4737 { - copy(yyv4737, yyv24737) + yyc4742 = true + yyrr4742 = len(yyv4742) + if yyrg4742 { + copy(yyv4742, yyv24742) } - } else if yyl4737 != len(yyv4737) { - yyv4737 = yyv4737[:yyl4737] - yyc4737 = true + } else if yyl4742 != len(yyv4742) { + yyv4742 = yyv4742[:yyl4742] + yyc4742 = true } - yyj4737 := 0 - for ; yyj4737 < yyrr4737; yyj4737++ { - yyh4737.ElemContainerState(yyj4737) + yyj4742 := 0 + for ; yyj4742 < yyrr4742; yyj4742++ { + yyh4742.ElemContainerState(yyj4742) if r.TryDecodeAsNil() { - yyv4737[yyj4737] = ResourceQuota{} + yyv4742[yyj4742] = ResourceQuota{} } else { - yyv4738 := &yyv4737[yyj4737] - yyv4738.CodecDecodeSelf(d) + yyv4743 := &yyv4742[yyj4742] + yyv4743.CodecDecodeSelf(d) } } - if yyrt4737 { - for ; yyj4737 < yyl4737; yyj4737++ { - yyv4737 = append(yyv4737, ResourceQuota{}) - yyh4737.ElemContainerState(yyj4737) + if yyrt4742 { + for ; yyj4742 < yyl4742; yyj4742++ { + yyv4742 = append(yyv4742, ResourceQuota{}) + yyh4742.ElemContainerState(yyj4742) if r.TryDecodeAsNil() { - yyv4737[yyj4737] = ResourceQuota{} + yyv4742[yyj4742] = ResourceQuota{} } else { - yyv4739 := &yyv4737[yyj4737] - yyv4739.CodecDecodeSelf(d) + yyv4744 := &yyv4742[yyj4742] + yyv4744.CodecDecodeSelf(d) } } } } else { - yyj4737 := 0 - for ; !r.CheckBreak(); yyj4737++ { + yyj4742 := 0 + for ; !r.CheckBreak(); yyj4742++ { - if yyj4737 >= len(yyv4737) { - yyv4737 = append(yyv4737, ResourceQuota{}) // var yyz4737 ResourceQuota - yyc4737 = true + if yyj4742 >= len(yyv4742) { + yyv4742 = append(yyv4742, ResourceQuota{}) // var yyz4742 ResourceQuota + yyc4742 = true } - yyh4737.ElemContainerState(yyj4737) - if yyj4737 < len(yyv4737) { + yyh4742.ElemContainerState(yyj4742) + if yyj4742 < len(yyv4742) { if r.TryDecodeAsNil() { - yyv4737[yyj4737] = ResourceQuota{} + yyv4742[yyj4742] = ResourceQuota{} } else { - yyv4740 := &yyv4737[yyj4737] - yyv4740.CodecDecodeSelf(d) + yyv4745 := &yyv4742[yyj4742] + yyv4745.CodecDecodeSelf(d) } } else { @@ -60920,17 +60968,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4737 < len(yyv4737) { - yyv4737 = yyv4737[:yyj4737] - yyc4737 = true - } else if yyj4737 == 0 && yyv4737 == nil { - yyv4737 = []ResourceQuota{} - yyc4737 = true + if yyj4742 < len(yyv4742) { + yyv4742 = yyv4742[:yyj4742] + yyc4742 = true + } else if yyj4742 == 0 && yyv4742 == nil { + yyv4742 = []ResourceQuota{} + yyc4742 = true } } - yyh4737.End() - if yyc4737 { - *v = yyv4737 + yyh4742.End() + if yyc4742 { + *v = yyv4742 } } @@ -60939,23 +60987,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4741, yyv4741 := range v { + for yyk4746, yyv4746 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4742 := z.EncBinary() - _ = yym4742 + yym4747 := z.EncBinary() + _ = yym4747 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4741)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4746)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4741 == nil { + if yyv4746 == nil { r.EncodeNil() } else { - yym4743 := z.EncBinary() - _ = yym4743 + yym4748 := z.EncBinary() + _ = yym4748 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4741)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4746)) } } } @@ -60967,80 +61015,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4744 := *v - yyl4744 := r.ReadMapStart() - yybh4744 := z.DecBasicHandle() - if yyv4744 == nil { - yyrl4744, _ := z.DecInferLen(yyl4744, yybh4744.MaxInitLen, 40) - yyv4744 = make(map[string][]uint8, yyrl4744) - *v = yyv4744 + yyv4749 := *v + yyl4749 := r.ReadMapStart() + yybh4749 := z.DecBasicHandle() + if yyv4749 == nil { + yyrl4749, _ := z.DecInferLen(yyl4749, yybh4749.MaxInitLen, 40) + yyv4749 = make(map[string][]uint8, yyrl4749) + *v = yyv4749 } - var yymk4744 string - var yymv4744 []uint8 - var yymg4744 bool - if yybh4744.MapValueReset { - yymg4744 = true + var yymk4749 string + var yymv4749 []uint8 + var yymg4749 bool + if yybh4749.MapValueReset { + yymg4749 = true } - if yyl4744 > 0 { - for yyj4744 := 0; yyj4744 < yyl4744; yyj4744++ { + if yyl4749 > 0 { + for yyj4749 := 0; yyj4749 < yyl4749; yyj4749++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4744 = "" + yymk4749 = "" } else { - yymk4744 = string(r.DecodeString()) + yymk4749 = string(r.DecodeString()) } - if yymg4744 { - yymv4744 = yyv4744[yymk4744] + if yymg4749 { + yymv4749 = yyv4749[yymk4749] } else { - yymv4744 = nil + yymv4749 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4744 = nil + yymv4749 = nil } else { - yyv4746 := &yymv4744 - yym4747 := z.DecBinary() - _ = yym4747 + yyv4751 := &yymv4749 + yym4752 := z.DecBinary() + _ = yym4752 if false { } else { - *yyv4746 = r.DecodeBytes(*(*[]byte)(yyv4746), false, false) + *yyv4751 = r.DecodeBytes(*(*[]byte)(yyv4751), false, false) } } - if yyv4744 != nil { - yyv4744[yymk4744] = yymv4744 + if yyv4749 != nil { + yyv4749[yymk4749] = yymv4749 } } - } else if yyl4744 < 0 { - for yyj4744 := 0; !r.CheckBreak(); yyj4744++ { + } else if yyl4749 < 0 { + for yyj4749 := 0; !r.CheckBreak(); yyj4749++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4744 = "" + yymk4749 = "" } else { - yymk4744 = string(r.DecodeString()) + yymk4749 = string(r.DecodeString()) } - if yymg4744 { - yymv4744 = yyv4744[yymk4744] + if yymg4749 { + yymv4749 = yyv4749[yymk4749] } else { - yymv4744 = nil + yymv4749 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4744 = nil + yymv4749 = nil } else { - yyv4749 := &yymv4744 - yym4750 := z.DecBinary() - _ = yym4750 + yyv4754 := &yymv4749 + yym4755 := z.DecBinary() + _ = yym4755 if false { } else { - *yyv4749 = r.DecodeBytes(*(*[]byte)(yyv4749), false, false) + *yyv4754 = r.DecodeBytes(*(*[]byte)(yyv4754), false, false) } } - if yyv4744 != nil { - yyv4744[yymk4744] = yymv4744 + if yyv4749 != nil { + yyv4749[yymk4749] = yymv4749 } } } // else len==0: TODO: Should we clear map entries? @@ -61052,10 +61100,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4751 := range v { + for _, yyv4756 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4752 := &yyv4751 - yy4752.CodecEncodeSelf(e) + yy4757 := &yyv4756 + yy4757.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61065,83 +61113,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4753 := *v - yyh4753, yyl4753 := z.DecSliceHelperStart() - var yyc4753 bool - if yyl4753 == 0 { - if yyv4753 == nil { - yyv4753 = []Secret{} - yyc4753 = true - } else if len(yyv4753) != 0 { - yyv4753 = yyv4753[:0] - yyc4753 = true + yyv4758 := *v + yyh4758, yyl4758 := z.DecSliceHelperStart() + var yyc4758 bool + if yyl4758 == 0 { + if yyv4758 == nil { + yyv4758 = []Secret{} + yyc4758 = true + } else if len(yyv4758) != 0 { + yyv4758 = yyv4758[:0] + yyc4758 = true } - } else if yyl4753 > 0 { - var yyrr4753, yyrl4753 int - var yyrt4753 bool - if yyl4753 > cap(yyv4753) { + } else if yyl4758 > 0 { + var yyrr4758, yyrl4758 int + var yyrt4758 bool + if yyl4758 > cap(yyv4758) { - yyrg4753 := len(yyv4753) > 0 - yyv24753 := yyv4753 - yyrl4753, yyrt4753 = z.DecInferLen(yyl4753, z.DecBasicHandle().MaxInitLen, 272) - if yyrt4753 { - if yyrl4753 <= cap(yyv4753) { - yyv4753 = yyv4753[:yyrl4753] + yyrg4758 := len(yyv4758) > 0 + yyv24758 := yyv4758 + yyrl4758, yyrt4758 = z.DecInferLen(yyl4758, z.DecBasicHandle().MaxInitLen, 272) + if yyrt4758 { + if yyrl4758 <= cap(yyv4758) { + yyv4758 = yyv4758[:yyrl4758] } else { - yyv4753 = make([]Secret, yyrl4753) + yyv4758 = make([]Secret, yyrl4758) } } else { - yyv4753 = make([]Secret, yyrl4753) + yyv4758 = make([]Secret, yyrl4758) } - yyc4753 = true - yyrr4753 = len(yyv4753) - if yyrg4753 { - copy(yyv4753, yyv24753) + yyc4758 = true + yyrr4758 = len(yyv4758) + if yyrg4758 { + copy(yyv4758, yyv24758) } - } else if yyl4753 != len(yyv4753) { - yyv4753 = yyv4753[:yyl4753] - yyc4753 = true + } else if yyl4758 != len(yyv4758) { + yyv4758 = yyv4758[:yyl4758] + yyc4758 = true } - yyj4753 := 0 - for ; yyj4753 < yyrr4753; yyj4753++ { - yyh4753.ElemContainerState(yyj4753) + yyj4758 := 0 + for ; yyj4758 < yyrr4758; yyj4758++ { + yyh4758.ElemContainerState(yyj4758) if r.TryDecodeAsNil() { - yyv4753[yyj4753] = Secret{} + yyv4758[yyj4758] = Secret{} } else { - yyv4754 := &yyv4753[yyj4753] - yyv4754.CodecDecodeSelf(d) + yyv4759 := &yyv4758[yyj4758] + yyv4759.CodecDecodeSelf(d) } } - if yyrt4753 { - for ; yyj4753 < yyl4753; yyj4753++ { - yyv4753 = append(yyv4753, Secret{}) - yyh4753.ElemContainerState(yyj4753) + if yyrt4758 { + for ; yyj4758 < yyl4758; yyj4758++ { + yyv4758 = append(yyv4758, Secret{}) + yyh4758.ElemContainerState(yyj4758) if r.TryDecodeAsNil() { - yyv4753[yyj4753] = Secret{} + yyv4758[yyj4758] = Secret{} } else { - yyv4755 := &yyv4753[yyj4753] - yyv4755.CodecDecodeSelf(d) + yyv4760 := &yyv4758[yyj4758] + yyv4760.CodecDecodeSelf(d) } } } } else { - yyj4753 := 0 - for ; !r.CheckBreak(); yyj4753++ { + yyj4758 := 0 + for ; !r.CheckBreak(); yyj4758++ { - if yyj4753 >= len(yyv4753) { - yyv4753 = append(yyv4753, Secret{}) // var yyz4753 Secret - yyc4753 = true + if yyj4758 >= len(yyv4758) { + yyv4758 = append(yyv4758, Secret{}) // var yyz4758 Secret + yyc4758 = true } - yyh4753.ElemContainerState(yyj4753) - if yyj4753 < len(yyv4753) { + yyh4758.ElemContainerState(yyj4758) + if yyj4758 < len(yyv4758) { if r.TryDecodeAsNil() { - yyv4753[yyj4753] = Secret{} + yyv4758[yyj4758] = Secret{} } else { - yyv4756 := &yyv4753[yyj4753] - yyv4756.CodecDecodeSelf(d) + yyv4761 := &yyv4758[yyj4758] + yyv4761.CodecDecodeSelf(d) } } else { @@ -61149,17 +61197,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4753 < len(yyv4753) { - yyv4753 = yyv4753[:yyj4753] - yyc4753 = true - } else if yyj4753 == 0 && yyv4753 == nil { - yyv4753 = []Secret{} - yyc4753 = true + if yyj4758 < len(yyv4758) { + yyv4758 = yyv4758[:yyj4758] + yyc4758 = true + } else if yyj4758 == 0 && yyv4758 == nil { + yyv4758 = []Secret{} + yyc4758 = true } } - yyh4753.End() - if yyc4753 { - *v = yyv4753 + yyh4758.End() + if yyc4758 { + *v = yyv4758 } } @@ -61168,10 +61216,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4757 := range v { + for _, yyv4762 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4758 := &yyv4757 - yy4758.CodecEncodeSelf(e) + yy4763 := &yyv4762 + yy4763.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61181,83 +61229,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4759 := *v - yyh4759, yyl4759 := z.DecSliceHelperStart() - var yyc4759 bool - if yyl4759 == 0 { - if yyv4759 == nil { - yyv4759 = []ConfigMap{} - yyc4759 = true - } else if len(yyv4759) != 0 { - yyv4759 = yyv4759[:0] - yyc4759 = true + yyv4764 := *v + yyh4764, yyl4764 := z.DecSliceHelperStart() + var yyc4764 bool + if yyl4764 == 0 { + if yyv4764 == nil { + yyv4764 = []ConfigMap{} + yyc4764 = true + } else if len(yyv4764) != 0 { + yyv4764 = yyv4764[:0] + yyc4764 = true } - } else if yyl4759 > 0 { - var yyrr4759, yyrl4759 int - var yyrt4759 bool - if yyl4759 > cap(yyv4759) { + } else if yyl4764 > 0 { + var yyrr4764, yyrl4764 int + var yyrt4764 bool + if yyl4764 > cap(yyv4764) { - yyrg4759 := len(yyv4759) > 0 - yyv24759 := yyv4759 - yyrl4759, yyrt4759 = z.DecInferLen(yyl4759, z.DecBasicHandle().MaxInitLen, 248) - if yyrt4759 { - if yyrl4759 <= cap(yyv4759) { - yyv4759 = yyv4759[:yyrl4759] + yyrg4764 := len(yyv4764) > 0 + yyv24764 := yyv4764 + yyrl4764, yyrt4764 = z.DecInferLen(yyl4764, z.DecBasicHandle().MaxInitLen, 248) + if yyrt4764 { + if yyrl4764 <= cap(yyv4764) { + yyv4764 = yyv4764[:yyrl4764] } else { - yyv4759 = make([]ConfigMap, yyrl4759) + yyv4764 = make([]ConfigMap, yyrl4764) } } else { - yyv4759 = make([]ConfigMap, yyrl4759) + yyv4764 = make([]ConfigMap, yyrl4764) } - yyc4759 = true - yyrr4759 = len(yyv4759) - if yyrg4759 { - copy(yyv4759, yyv24759) + yyc4764 = true + yyrr4764 = len(yyv4764) + if yyrg4764 { + copy(yyv4764, yyv24764) } - } else if yyl4759 != len(yyv4759) { - yyv4759 = yyv4759[:yyl4759] - yyc4759 = true + } else if yyl4764 != len(yyv4764) { + yyv4764 = yyv4764[:yyl4764] + yyc4764 = true } - yyj4759 := 0 - for ; yyj4759 < yyrr4759; yyj4759++ { - yyh4759.ElemContainerState(yyj4759) + yyj4764 := 0 + for ; yyj4764 < yyrr4764; yyj4764++ { + yyh4764.ElemContainerState(yyj4764) if r.TryDecodeAsNil() { - yyv4759[yyj4759] = ConfigMap{} + yyv4764[yyj4764] = ConfigMap{} } else { - yyv4760 := &yyv4759[yyj4759] - yyv4760.CodecDecodeSelf(d) + yyv4765 := &yyv4764[yyj4764] + yyv4765.CodecDecodeSelf(d) } } - if yyrt4759 { - for ; yyj4759 < yyl4759; yyj4759++ { - yyv4759 = append(yyv4759, ConfigMap{}) - yyh4759.ElemContainerState(yyj4759) + if yyrt4764 { + for ; yyj4764 < yyl4764; yyj4764++ { + yyv4764 = append(yyv4764, ConfigMap{}) + yyh4764.ElemContainerState(yyj4764) if r.TryDecodeAsNil() { - yyv4759[yyj4759] = ConfigMap{} + yyv4764[yyj4764] = ConfigMap{} } else { - yyv4761 := &yyv4759[yyj4759] - yyv4761.CodecDecodeSelf(d) + yyv4766 := &yyv4764[yyj4764] + yyv4766.CodecDecodeSelf(d) } } } } else { - yyj4759 := 0 - for ; !r.CheckBreak(); yyj4759++ { + yyj4764 := 0 + for ; !r.CheckBreak(); yyj4764++ { - if yyj4759 >= len(yyv4759) { - yyv4759 = append(yyv4759, ConfigMap{}) // var yyz4759 ConfigMap - yyc4759 = true + if yyj4764 >= len(yyv4764) { + yyv4764 = append(yyv4764, ConfigMap{}) // var yyz4764 ConfigMap + yyc4764 = true } - yyh4759.ElemContainerState(yyj4759) - if yyj4759 < len(yyv4759) { + yyh4764.ElemContainerState(yyj4764) + if yyj4764 < len(yyv4764) { if r.TryDecodeAsNil() { - yyv4759[yyj4759] = ConfigMap{} + yyv4764[yyj4764] = ConfigMap{} } else { - yyv4762 := &yyv4759[yyj4759] - yyv4762.CodecDecodeSelf(d) + yyv4767 := &yyv4764[yyj4764] + yyv4767.CodecDecodeSelf(d) } } else { @@ -61265,17 +61313,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4759 < len(yyv4759) { - yyv4759 = yyv4759[:yyj4759] - yyc4759 = true - } else if yyj4759 == 0 && yyv4759 == nil { - yyv4759 = []ConfigMap{} - yyc4759 = true + if yyj4764 < len(yyv4764) { + yyv4764 = yyv4764[:yyj4764] + yyc4764 = true + } else if yyj4764 == 0 && yyv4764 == nil { + yyv4764 = []ConfigMap{} + yyc4764 = true } } - yyh4759.End() - if yyc4759 { - *v = yyv4759 + yyh4764.End() + if yyc4764 { + *v = yyv4764 } } @@ -61284,10 +61332,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4763 := range v { + for _, yyv4768 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4764 := &yyv4763 - yy4764.CodecEncodeSelf(e) + yy4769 := &yyv4768 + yy4769.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61297,83 +61345,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4765 := *v - yyh4765, yyl4765 := z.DecSliceHelperStart() - var yyc4765 bool - if yyl4765 == 0 { - if yyv4765 == nil { - yyv4765 = []ComponentCondition{} - yyc4765 = true - } else if len(yyv4765) != 0 { - yyv4765 = yyv4765[:0] - yyc4765 = true + yyv4770 := *v + yyh4770, yyl4770 := z.DecSliceHelperStart() + var yyc4770 bool + if yyl4770 == 0 { + if yyv4770 == nil { + yyv4770 = []ComponentCondition{} + yyc4770 = true + } else if len(yyv4770) != 0 { + yyv4770 = yyv4770[:0] + yyc4770 = true } - } else if yyl4765 > 0 { - var yyrr4765, yyrl4765 int - var yyrt4765 bool - if yyl4765 > cap(yyv4765) { + } else if yyl4770 > 0 { + var yyrr4770, yyrl4770 int + var yyrt4770 bool + if yyl4770 > cap(yyv4770) { - yyrg4765 := len(yyv4765) > 0 - yyv24765 := yyv4765 - yyrl4765, yyrt4765 = z.DecInferLen(yyl4765, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4765 { - if yyrl4765 <= cap(yyv4765) { - yyv4765 = yyv4765[:yyrl4765] + yyrg4770 := len(yyv4770) > 0 + yyv24770 := yyv4770 + yyrl4770, yyrt4770 = z.DecInferLen(yyl4770, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4770 { + if yyrl4770 <= cap(yyv4770) { + yyv4770 = yyv4770[:yyrl4770] } else { - yyv4765 = make([]ComponentCondition, yyrl4765) + yyv4770 = make([]ComponentCondition, yyrl4770) } } else { - yyv4765 = make([]ComponentCondition, yyrl4765) + yyv4770 = make([]ComponentCondition, yyrl4770) } - yyc4765 = true - yyrr4765 = len(yyv4765) - if yyrg4765 { - copy(yyv4765, yyv24765) + yyc4770 = true + yyrr4770 = len(yyv4770) + if yyrg4770 { + copy(yyv4770, yyv24770) } - } else if yyl4765 != len(yyv4765) { - yyv4765 = yyv4765[:yyl4765] - yyc4765 = true + } else if yyl4770 != len(yyv4770) { + yyv4770 = yyv4770[:yyl4770] + yyc4770 = true } - yyj4765 := 0 - for ; yyj4765 < yyrr4765; yyj4765++ { - yyh4765.ElemContainerState(yyj4765) + yyj4770 := 0 + for ; yyj4770 < yyrr4770; yyj4770++ { + yyh4770.ElemContainerState(yyj4770) if r.TryDecodeAsNil() { - yyv4765[yyj4765] = ComponentCondition{} + yyv4770[yyj4770] = ComponentCondition{} } else { - yyv4766 := &yyv4765[yyj4765] - yyv4766.CodecDecodeSelf(d) + yyv4771 := &yyv4770[yyj4770] + yyv4771.CodecDecodeSelf(d) } } - if yyrt4765 { - for ; yyj4765 < yyl4765; yyj4765++ { - yyv4765 = append(yyv4765, ComponentCondition{}) - yyh4765.ElemContainerState(yyj4765) + if yyrt4770 { + for ; yyj4770 < yyl4770; yyj4770++ { + yyv4770 = append(yyv4770, ComponentCondition{}) + yyh4770.ElemContainerState(yyj4770) if r.TryDecodeAsNil() { - yyv4765[yyj4765] = ComponentCondition{} + yyv4770[yyj4770] = ComponentCondition{} } else { - yyv4767 := &yyv4765[yyj4765] - yyv4767.CodecDecodeSelf(d) + yyv4772 := &yyv4770[yyj4770] + yyv4772.CodecDecodeSelf(d) } } } } else { - yyj4765 := 0 - for ; !r.CheckBreak(); yyj4765++ { + yyj4770 := 0 + for ; !r.CheckBreak(); yyj4770++ { - if yyj4765 >= len(yyv4765) { - yyv4765 = append(yyv4765, ComponentCondition{}) // var yyz4765 ComponentCondition - yyc4765 = true + if yyj4770 >= len(yyv4770) { + yyv4770 = append(yyv4770, ComponentCondition{}) // var yyz4770 ComponentCondition + yyc4770 = true } - yyh4765.ElemContainerState(yyj4765) - if yyj4765 < len(yyv4765) { + yyh4770.ElemContainerState(yyj4770) + if yyj4770 < len(yyv4770) { if r.TryDecodeAsNil() { - yyv4765[yyj4765] = ComponentCondition{} + yyv4770[yyj4770] = ComponentCondition{} } else { - yyv4768 := &yyv4765[yyj4765] - yyv4768.CodecDecodeSelf(d) + yyv4773 := &yyv4770[yyj4770] + yyv4773.CodecDecodeSelf(d) } } else { @@ -61381,17 +61429,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4765 < len(yyv4765) { - yyv4765 = yyv4765[:yyj4765] - yyc4765 = true - } else if yyj4765 == 0 && yyv4765 == nil { - yyv4765 = []ComponentCondition{} - yyc4765 = true + if yyj4770 < len(yyv4770) { + yyv4770 = yyv4770[:yyj4770] + yyc4770 = true + } else if yyj4770 == 0 && yyv4770 == nil { + yyv4770 = []ComponentCondition{} + yyc4770 = true } } - yyh4765.End() - if yyc4765 { - *v = yyv4765 + yyh4770.End() + if yyc4770 { + *v = yyv4770 } } @@ -61400,10 +61448,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4769 := range v { + for _, yyv4774 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4770 := &yyv4769 - yy4770.CodecEncodeSelf(e) + yy4775 := &yyv4774 + yy4775.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61413,83 +61461,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4771 := *v - yyh4771, yyl4771 := z.DecSliceHelperStart() - var yyc4771 bool - if yyl4771 == 0 { - if yyv4771 == nil { - yyv4771 = []ComponentStatus{} - yyc4771 = true - } else if len(yyv4771) != 0 { - yyv4771 = yyv4771[:0] - yyc4771 = true + yyv4776 := *v + yyh4776, yyl4776 := z.DecSliceHelperStart() + var yyc4776 bool + if yyl4776 == 0 { + if yyv4776 == nil { + yyv4776 = []ComponentStatus{} + yyc4776 = true + } else if len(yyv4776) != 0 { + yyv4776 = yyv4776[:0] + yyc4776 = true } - } else if yyl4771 > 0 { - var yyrr4771, yyrl4771 int - var yyrt4771 bool - if yyl4771 > cap(yyv4771) { + } else if yyl4776 > 0 { + var yyrr4776, yyrl4776 int + var yyrt4776 bool + if yyl4776 > cap(yyv4776) { - yyrg4771 := len(yyv4771) > 0 - yyv24771 := yyv4771 - yyrl4771, yyrt4771 = z.DecInferLen(yyl4771, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4771 { - if yyrl4771 <= cap(yyv4771) { - yyv4771 = yyv4771[:yyrl4771] + yyrg4776 := len(yyv4776) > 0 + yyv24776 := yyv4776 + yyrl4776, yyrt4776 = z.DecInferLen(yyl4776, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4776 { + if yyrl4776 <= cap(yyv4776) { + yyv4776 = yyv4776[:yyrl4776] } else { - yyv4771 = make([]ComponentStatus, yyrl4771) + yyv4776 = make([]ComponentStatus, yyrl4776) } } else { - yyv4771 = make([]ComponentStatus, yyrl4771) + yyv4776 = make([]ComponentStatus, yyrl4776) } - yyc4771 = true - yyrr4771 = len(yyv4771) - if yyrg4771 { - copy(yyv4771, yyv24771) + yyc4776 = true + yyrr4776 = len(yyv4776) + if yyrg4776 { + copy(yyv4776, yyv24776) } - } else if yyl4771 != len(yyv4771) { - yyv4771 = yyv4771[:yyl4771] - yyc4771 = true + } else if yyl4776 != len(yyv4776) { + yyv4776 = yyv4776[:yyl4776] + yyc4776 = true } - yyj4771 := 0 - for ; yyj4771 < yyrr4771; yyj4771++ { - yyh4771.ElemContainerState(yyj4771) + yyj4776 := 0 + for ; yyj4776 < yyrr4776; yyj4776++ { + yyh4776.ElemContainerState(yyj4776) if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ComponentStatus{} + yyv4776[yyj4776] = ComponentStatus{} } else { - yyv4772 := &yyv4771[yyj4771] - yyv4772.CodecDecodeSelf(d) + yyv4777 := &yyv4776[yyj4776] + yyv4777.CodecDecodeSelf(d) } } - if yyrt4771 { - for ; yyj4771 < yyl4771; yyj4771++ { - yyv4771 = append(yyv4771, ComponentStatus{}) - yyh4771.ElemContainerState(yyj4771) + if yyrt4776 { + for ; yyj4776 < yyl4776; yyj4776++ { + yyv4776 = append(yyv4776, ComponentStatus{}) + yyh4776.ElemContainerState(yyj4776) if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ComponentStatus{} + yyv4776[yyj4776] = ComponentStatus{} } else { - yyv4773 := &yyv4771[yyj4771] - yyv4773.CodecDecodeSelf(d) + yyv4778 := &yyv4776[yyj4776] + yyv4778.CodecDecodeSelf(d) } } } } else { - yyj4771 := 0 - for ; !r.CheckBreak(); yyj4771++ { + yyj4776 := 0 + for ; !r.CheckBreak(); yyj4776++ { - if yyj4771 >= len(yyv4771) { - yyv4771 = append(yyv4771, ComponentStatus{}) // var yyz4771 ComponentStatus - yyc4771 = true + if yyj4776 >= len(yyv4776) { + yyv4776 = append(yyv4776, ComponentStatus{}) // var yyz4776 ComponentStatus + yyc4776 = true } - yyh4771.ElemContainerState(yyj4771) - if yyj4771 < len(yyv4771) { + yyh4776.ElemContainerState(yyj4776) + if yyj4776 < len(yyv4776) { if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ComponentStatus{} + yyv4776[yyj4776] = ComponentStatus{} } else { - yyv4774 := &yyv4771[yyj4771] - yyv4774.CodecDecodeSelf(d) + yyv4779 := &yyv4776[yyj4776] + yyv4779.CodecDecodeSelf(d) } } else { @@ -61497,17 +61545,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4771 < len(yyv4771) { - yyv4771 = yyv4771[:yyj4771] - yyc4771 = true - } else if yyj4771 == 0 && yyv4771 == nil { - yyv4771 = []ComponentStatus{} - yyc4771 = true + if yyj4776 < len(yyv4776) { + yyv4776 = yyv4776[:yyj4776] + yyc4776 = true + } else if yyj4776 == 0 && yyv4776 == nil { + yyv4776 = []ComponentStatus{} + yyc4776 = true } } - yyh4771.End() - if yyc4771 { - *v = yyv4771 + yyh4776.End() + if yyc4776 { + *v = yyv4776 } } @@ -61516,10 +61564,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4775 := range v { + for _, yyv4780 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4776 := &yyv4775 - yy4776.CodecEncodeSelf(e) + yy4781 := &yyv4780 + yy4781.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61529,83 +61577,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4777 := *v - yyh4777, yyl4777 := z.DecSliceHelperStart() - var yyc4777 bool - if yyl4777 == 0 { - if yyv4777 == nil { - yyv4777 = []DownwardAPIVolumeFile{} - yyc4777 = true - } else if len(yyv4777) != 0 { - yyv4777 = yyv4777[:0] - yyc4777 = true + yyv4782 := *v + yyh4782, yyl4782 := z.DecSliceHelperStart() + var yyc4782 bool + if yyl4782 == 0 { + if yyv4782 == nil { + yyv4782 = []DownwardAPIVolumeFile{} + yyc4782 = true + } else if len(yyv4782) != 0 { + yyv4782 = yyv4782[:0] + yyc4782 = true } - } else if yyl4777 > 0 { - var yyrr4777, yyrl4777 int - var yyrt4777 bool - if yyl4777 > cap(yyv4777) { + } else if yyl4782 > 0 { + var yyrr4782, yyrl4782 int + var yyrt4782 bool + if yyl4782 > cap(yyv4782) { - yyrg4777 := len(yyv4777) > 0 - yyv24777 := yyv4777 - yyrl4777, yyrt4777 = z.DecInferLen(yyl4777, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4777 { - if yyrl4777 <= cap(yyv4777) { - yyv4777 = yyv4777[:yyrl4777] + yyrg4782 := len(yyv4782) > 0 + yyv24782 := yyv4782 + yyrl4782, yyrt4782 = z.DecInferLen(yyl4782, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4782 { + if yyrl4782 <= cap(yyv4782) { + yyv4782 = yyv4782[:yyrl4782] } else { - yyv4777 = make([]DownwardAPIVolumeFile, yyrl4777) + yyv4782 = make([]DownwardAPIVolumeFile, yyrl4782) } } else { - yyv4777 = make([]DownwardAPIVolumeFile, yyrl4777) + yyv4782 = make([]DownwardAPIVolumeFile, yyrl4782) } - yyc4777 = true - yyrr4777 = len(yyv4777) - if yyrg4777 { - copy(yyv4777, yyv24777) + yyc4782 = true + yyrr4782 = len(yyv4782) + if yyrg4782 { + copy(yyv4782, yyv24782) } - } else if yyl4777 != len(yyv4777) { - yyv4777 = yyv4777[:yyl4777] - yyc4777 = true + } else if yyl4782 != len(yyv4782) { + yyv4782 = yyv4782[:yyl4782] + yyc4782 = true } - yyj4777 := 0 - for ; yyj4777 < yyrr4777; yyj4777++ { - yyh4777.ElemContainerState(yyj4777) + yyj4782 := 0 + for ; yyj4782 < yyrr4782; yyj4782++ { + yyh4782.ElemContainerState(yyj4782) if r.TryDecodeAsNil() { - yyv4777[yyj4777] = DownwardAPIVolumeFile{} + yyv4782[yyj4782] = DownwardAPIVolumeFile{} } else { - yyv4778 := &yyv4777[yyj4777] - yyv4778.CodecDecodeSelf(d) + yyv4783 := &yyv4782[yyj4782] + yyv4783.CodecDecodeSelf(d) } } - if yyrt4777 { - for ; yyj4777 < yyl4777; yyj4777++ { - yyv4777 = append(yyv4777, DownwardAPIVolumeFile{}) - yyh4777.ElemContainerState(yyj4777) + if yyrt4782 { + for ; yyj4782 < yyl4782; yyj4782++ { + yyv4782 = append(yyv4782, DownwardAPIVolumeFile{}) + yyh4782.ElemContainerState(yyj4782) if r.TryDecodeAsNil() { - yyv4777[yyj4777] = DownwardAPIVolumeFile{} + yyv4782[yyj4782] = DownwardAPIVolumeFile{} } else { - yyv4779 := &yyv4777[yyj4777] - yyv4779.CodecDecodeSelf(d) + yyv4784 := &yyv4782[yyj4782] + yyv4784.CodecDecodeSelf(d) } } } } else { - yyj4777 := 0 - for ; !r.CheckBreak(); yyj4777++ { + yyj4782 := 0 + for ; !r.CheckBreak(); yyj4782++ { - if yyj4777 >= len(yyv4777) { - yyv4777 = append(yyv4777, DownwardAPIVolumeFile{}) // var yyz4777 DownwardAPIVolumeFile - yyc4777 = true + if yyj4782 >= len(yyv4782) { + yyv4782 = append(yyv4782, DownwardAPIVolumeFile{}) // var yyz4782 DownwardAPIVolumeFile + yyc4782 = true } - yyh4777.ElemContainerState(yyj4777) - if yyj4777 < len(yyv4777) { + yyh4782.ElemContainerState(yyj4782) + if yyj4782 < len(yyv4782) { if r.TryDecodeAsNil() { - yyv4777[yyj4777] = DownwardAPIVolumeFile{} + yyv4782[yyj4782] = DownwardAPIVolumeFile{} } else { - yyv4780 := &yyv4777[yyj4777] - yyv4780.CodecDecodeSelf(d) + yyv4785 := &yyv4782[yyj4782] + yyv4785.CodecDecodeSelf(d) } } else { @@ -61613,16 +61661,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4777 < len(yyv4777) { - yyv4777 = yyv4777[:yyj4777] - yyc4777 = true - } else if yyj4777 == 0 && yyv4777 == nil { - yyv4777 = []DownwardAPIVolumeFile{} - yyc4777 = true + if yyj4782 < len(yyv4782) { + yyv4782 = yyv4782[:yyj4782] + yyc4782 = true + } else if yyj4782 == 0 && yyv4782 == nil { + yyv4782 = []DownwardAPIVolumeFile{} + yyc4782 = true } } - yyh4777.End() - if yyc4777 { - *v = yyv4777 + yyh4782.End() + if yyc4782 { + *v = yyv4782 } } diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 5ee10f8fbb9e..b7721211b846 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -2066,6 +2066,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. @@ -2100,24 +2105,39 @@ 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 the Service is exposed. Defaults to ClusterIP. Valid + // options are ExternalName, ClusterIP, NodePort, and LoadBalancer. + // "ExternalName" maps to the specified externalName. + // "ClusterIP" allocates a cluster-internal IP address for load-balancing to + // endpoints. Endpoints are determined by the selector or if that is not + // specified, by manual construction of an Endpoints object. If clusterIP is + // "None", no virtual IP is allocated and the endpoints are published as a + // set of endpoints rather than a stable IP. + // "NodePort" builds on ClusterIP and allocates a port on every node which + // routes to the clusterIP. + // "LoadBalancer" builds on NodePort and creates an + // external load-balancer (if supported in the current cloud) which routes + // to the clusterIP. + // 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 @@ -2156,6 +2176,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 fc559468e97e..d1023eb4acce 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -1665,14 +1665,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 the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ExternalName\" maps to the specified externalName. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. 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 188f1bfd1c33..45c98d1ef4d5 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -6443,6 +6443,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 } @@ -6461,6 +6462,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 32d8c265ba01..e02c7a7a979c 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -3387,6 +3387,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 5a5c79b7cdbe..1f5e827fce41 100644 --- a/pkg/api/validation/validation.go +++ b/pkg/api/validation/validation.go @@ -101,6 +101,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] != "" { @@ -2190,17 +2199,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 && service.Spec.Type != api.ServiceTypeExternalName { 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 @@ -2211,9 +2222,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 service.Spec.ClusterIP != "" { + allErrs = append(allErrs, field.Invalid(specPath.Child("clusterIP"), service.Spec.ClusterIP, "must be empty for ExternalName services")) + } + 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 3162740c1f20..b55447fc8d26 100644 --- a/pkg/api/validation/validation_test.go +++ b/pkg/api/validation/validation_test.go @@ -4982,6 +4982,42 @@ func TestValidateService(t *testing.T) { }, numErrs: 1, }, + { + name: "valid ExternalName", + tweakSvc: func(s *api.Service) { + s.Spec.Type = api.ServiceTypeExternalName + s.Spec.ClusterIP = "" + 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" + s.Spec.ExternalName = "foo.bar.example.com" + }, + numErrs: 1, + }, + { + name: "invalid ExternalName clusterIP (None)", + tweakSvc: func(s *api.Service) { + s.Spec.Type = api.ServiceTypeExternalName + s.Spec.ClusterIP = "None" + s.Spec.ExternalName = "foo.bar.example.com" + }, + numErrs: 1, + }, + { + name: "invalid ExternalName (not a DNS name)", + tweakSvc: func(s *api.Service) { + s.Spec.Type = api.ServiceTypeExternalName + s.Spec.ClusterIP = "" + 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 7f6f878855e9..79a570e1c2ed 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -3406,6 +3406,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))