From a2d1bb7acf2db64f28bd3b65d6a1fadb0e385251 Mon Sep 17 00:00:00 2001 From: Rudi Chiarito Date: Tue, 2 Feb 2016 10:03:50 -0500 Subject: [PATCH] Add httpHeaders to httpGet liveness probe Also update existing documentation and try to steer users away from 'host'. Add validation. --- api/swagger-spec/v1.json | 27 +- api/swagger-spec/v1beta1.json | 27 +- .../extensions/v1beta1/definitions.html | 52 +- docs/api-reference/v1/definitions.html | 218 +- docs/user-guide/liveness/README.md | 5 +- docs/user-guide/liveness/http-liveness.yaml | 3 + pkg/api/deep_copy_generated.go | 18 + pkg/api/types.generated.go | 27995 +++++++------- pkg/api/types.go | 13 +- pkg/api/v1/conversion_generated.go | 48 + pkg/api/v1/deep_copy_generated.go | 17 + pkg/api/v1/types.generated.go | 30147 ++++++++-------- pkg/api/v1/types.go | 13 +- pkg/api/v1/types_swagger_doc_generated.go | 21 +- pkg/api/validation/validation.go | 5 + pkg/api/validation/validation_test.go | 4 + .../v1beta1/conversion_generated.go | 48 + .../extensions/v1beta1/deep_copy_generated.go | 17 + pkg/apiserver/validator.go | 2 +- pkg/apiserver/validator_test.go | 3 +- pkg/kubelet/prober/prober.go | 15 +- pkg/kubelet/prober/prober_test.go | 29 + pkg/probe/http/http.go | 18 +- pkg/probe/http/http_test.go | 38 +- pkg/registry/componentstatus/rest_test.go | 3 +- pkg/util/validation/validation.go | 10 + pkg/util/validation/validation_test.go | 27 + 27 files changed, 30025 insertions(+), 28798 deletions(-) diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index f1baf14693..f56018f3df 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -15902,11 +15902,36 @@ }, "host": { "type": "string", - "description": "Host name to connect to, defaults to the pod IP." + "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead." }, "scheme": { "type": "string", "description": "Scheme to use for connecting to the host. Defaults to HTTP." + }, + "httpHeaders": { + "type": "array", + "items": { + "$ref": "v1.HTTPHeader" + }, + "description": "Custom headers to set in the request. HTTP allows repeated headers." + } + } + }, + "v1.HTTPHeader": { + "id": "v1.HTTPHeader", + "description": "HTTPHeader describes a custom header to be used in HTTP probes", + "required": [ + "name", + "value" + ], + "properties": { + "name": { + "type": "string", + "description": "The header field name" + }, + "value": { + "type": "string", + "description": "The header field value" } } }, diff --git a/api/swagger-spec/v1beta1.json b/api/swagger-spec/v1beta1.json index be2ddfa57c..f6471ff066 100644 --- a/api/swagger-spec/v1beta1.json +++ b/api/swagger-spec/v1beta1.json @@ -4781,11 +4781,36 @@ }, "host": { "type": "string", - "description": "Host name to connect to, defaults to the pod IP." + "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead." }, "scheme": { "type": "string", "description": "Scheme to use for connecting to the host. Defaults to HTTP." + }, + "httpHeaders": { + "type": "array", + "items": { + "$ref": "v1.HTTPHeader" + }, + "description": "Custom headers to set in the request. HTTP allows repeated headers." + } + } + }, + "v1.HTTPHeader": { + "id": "v1.HTTPHeader", + "description": "HTTPHeader describes a custom header to be used in HTTP probes", + "required": [ + "name", + "value" + ], + "properties": { + "name": { + "type": "string", + "description": "The header field name" + }, + "value": { + "type": "string", + "description": "The header field value" } } }, diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index d435556773..6d1780bc1f 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -893,6 +893,47 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

v1.HTTPHeader

+
+

HTTPHeader describes a custom header to be used in HTTP probes

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

name

The header field name

true

string

value

The header field value

true

string

+

v1beta1.HorizontalPodAutoscalerStatus

@@ -1562,7 +1603,7 @@ Both these may change in the future. Incoming requests are matched against the h

host

-

Host name to connect to, defaults to the pod IP.

+

Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

false

string

@@ -1574,6 +1615,13 @@ Both these may change in the future. Incoming requests are matched against the h

string

+ +

httpHeaders

+

Custom headers to set in the request. HTTP allows repeated headers.

+

false

+

v1.HTTPHeader array

+ + @@ -4838,7 +4886,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index 8cf00cdf63..86fc04fbc7 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -3432,6 +3432,89 @@ The resulting set of endpoints can be viewed as:

v1.Capability

+
+
+

v1.PodStatus

+
+

PodStatus represents information about the status of a pod. Status may trail the actual state of a system.

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

phase

Current condition of the pod. More info: http://releases.k8s.io/HEAD/docs/user-guide/pod-states.md#pod-phase

false

string

conditions

Current service state of pod. More info: http://releases.k8s.io/HEAD/docs/user-guide/pod-states.md#pod-conditions

false

v1.PodCondition array

message

A human readable message indicating details about why the pod is in this condition.

false

string

reason

A brief CamelCase message indicating details about why the pod is in this state. e.g. OutOfDisk

false

string

hostIP

IP address of the host to which the pod is assigned. Empty if not yet scheduled.

false

string

podIP

IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.

false

string

startTime

RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.

false

string

containerStatuses

The list has one entry per container in the manifest. Each entry is currently the output of docker inspect. More info: http://releases.k8s.io/HEAD/docs/user-guide/pod-states.md#container-statuses

false

v1.ContainerStatus array

+

v1.LimitRange

@@ -3528,89 +3611,6 @@ The resulting set of endpoints can be viewed as:
-
-
-

v1.PodStatus

-
-

PodStatus represents information about the status of a pod. Status may trail the actual state of a system.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

phase

Current condition of the pod. More info: http://releases.k8s.io/HEAD/docs/user-guide/pod-states.md#pod-phase

false

string

conditions

Current service state of pod. More info: http://releases.k8s.io/HEAD/docs/user-guide/pod-states.md#pod-conditions

false

v1.PodCondition array

message

A human readable message indicating details about why the pod is in this condition.

false

string

reason

A brief CamelCase message indicating details about why the pod is in this state. e.g. OutOfDisk

false

string

hostIP

IP address of the host to which the pod is assigned. Empty if not yet scheduled.

false

string

podIP

IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.

false

string

startTime

RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.

false

string

containerStatuses

The list has one entry per container in the manifest. Each entry is currently the output of docker inspect. More info: http://releases.k8s.io/HEAD/docs/user-guide/pod-states.md#container-statuses

false

v1.ContainerStatus array

-

v1.PodSpec

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

v1.HTTPHeader

+
+

HTTPHeader describes a custom header to be used in HTTP probes

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

name

The header field name

true

string

value

The header field value

true

string

+

v1.FCVolumeSource

@@ -4759,7 +4800,7 @@ The resulting set of endpoints can be viewed as:

host

-

Host name to connect to, defaults to the pod IP.

+

Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

false

string

@@ -4771,6 +4812,13 @@ The resulting set of endpoints can be viewed as:

string

+ +

httpHeaders

+

Custom headers to set in the request. HTTP allows repeated headers.

+

false

+

v1.HTTPHeader array

+ + @@ -7268,7 +7316,7 @@ The resulting set of endpoints can be viewed as:
diff --git a/docs/user-guide/liveness/README.md b/docs/user-guide/liveness/README.md index 500256dd8c..1e5311f471 100644 --- a/docs/user-guide/liveness/README.md +++ b/docs/user-guide/liveness/README.md @@ -66,11 +66,14 @@ The [http-liveness.yaml](http-liveness.yaml) demonstrates the HTTP check. httpGet: path: /healthz port: 8080 + httpHeaders: + - name: X-Custom-Header + value: Awesome initialDelaySeconds: 15 timeoutSeconds: 1 ``` -The Kubelet sends an HTTP request to the specified path and port to perform the health check. If you take a look at image/server.go, you will see the server starts to respond with an error code 500 after 10 seconds, so the check fails. The Kubelet sends the probe to the container's ip address by default which could be specified with `host` as part of httpGet probe. If the container listens on `127.0.0.1`, `host` should be specified as `127.0.0.1`. In general, if the container listens on its ip address or on all interfaces (0.0.0.0), there is no need to specify the `host` as part of the httpGet probe. +The Kubelet sends an HTTP request to the specified path and port to perform the health check. If you take a look at image/server.go, you will see the server starts to respond with an error code 500 after 10 seconds, so the check fails. The Kubelet sends probes to the container's IP address, unless overridden by the optional `host` field in httpGet. If the container listens on `127.0.0.1` and `hostNetwork` is `true` (i.e., it does not use the pod-specific network), then `host` should be specified as `127.0.0.1`. Be warned that, outside of less common cases like that, `host` does probably not result in what you would expect. If you set it to a non-existing hostname (or your competitor's!), probes will never reach the pod, defeating the whole point of health checks. If your pod relies on e.g. virtual hosts, which is probably the more common case, you should not use `host`, but rather set the `Host` header in `httpHeaders`. This [guide](../walkthrough/k8s201.md#health-checking) has more information on health checks. diff --git a/docs/user-guide/liveness/http-liveness.yaml b/docs/user-guide/liveness/http-liveness.yaml index ca8d212ae2..c2c6065450 100644 --- a/docs/user-guide/liveness/http-liveness.yaml +++ b/docs/user-guide/liveness/http-liveness.yaml @@ -13,6 +13,9 @@ spec: httpGet: path: /healthz port: 8080 + httpHeaders: + - name: X-Custom-Header + value: Awesome initialDelaySeconds: 15 timeoutSeconds: 1 name: liveness diff --git a/pkg/api/deep_copy_generated.go b/pkg/api/deep_copy_generated.go index c2e5766a7c..248a5470b6 100644 --- a/pkg/api/deep_copy_generated.go +++ b/pkg/api/deep_copy_generated.go @@ -76,6 +76,7 @@ func init() { DeepCopy_api_GitRepoVolumeSource, DeepCopy_api_GlusterfsVolumeSource, DeepCopy_api_HTTPGetAction, + DeepCopy_api_HTTPHeader, DeepCopy_api_Handler, DeepCopy_api_HostPathVolumeSource, DeepCopy_api_ISCSIVolumeSource, @@ -930,6 +931,23 @@ func DeepCopy_api_HTTPGetAction(in HTTPGetAction, out *HTTPGetAction, c *convers } out.Host = in.Host out.Scheme = in.Scheme + if in.HTTPHeaders != nil { + in, out := in.HTTPHeaders, &out.HTTPHeaders + *out = make([]HTTPHeader, len(in)) + for i := range in { + if err := DeepCopy_api_HTTPHeader(in[i], &(*out)[i], c); err != nil { + return err + } + } + } else { + out.HTTPHeaders = nil + } + return nil +} + +func DeepCopy_api_HTTPHeader(in HTTPHeader, out *HTTPHeader, c *conversion.Cloner) error { + out.Name = in.Name + out.Value = in.Value return nil } diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index 1e43d587de..3ea351723e 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -14518,7 +14518,7 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -14532,18 +14532,14 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep1036 := !z.EncBinary() yy2arr1036 := z.EncBasicHandle().StructToArray - var yyq1036 [4]bool + var yyq1036 [2]bool _, _, _ = yysep1036, yyq1036, yy2arr1036 const yyr1036 bool = false - yyq1036[0] = x.Path != "" - yyq1036[1] = true - yyq1036[2] = x.Host != "" - yyq1036[3] = x.Scheme != "" var yynn1036 int if yyr1036 || yy2arr1036 { - r.EncodeArrayStart(4) + r.EncodeArrayStart(2) } else { - yynn1036 = 0 + yynn1036 = 2 for _, b := range yyq1036 { if b { yynn1036++ @@ -14554,9 +14550,217 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr1036 || yy2arr1036 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1036[0] { - yym1038 := z.EncBinary() - _ = yym1038 + yym1038 := z.EncBinary() + _ = yym1038 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1039 := z.EncBinary() + _ = yym1039 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + if yyr1036 || yy2arr1036 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1041 := z.EncBinary() + _ = yym1041 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("value")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1042 := z.EncBinary() + _ = yym1042 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + } + } + if yyr1036 || yy2arr1036 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1043 := z.DecBinary() + _ = yym1043 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1044 := r.ContainerType() + if yyct1044 == codecSelferValueTypeMap1234 { + yyl1044 := r.ReadMapStart() + if yyl1044 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1044, d) + } + } else if yyct1044 == codecSelferValueTypeArray1234 { + yyl1044 := r.ReadArrayStart() + if yyl1044 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1044, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1045Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1045Slc + var yyhl1045 bool = l >= 0 + for yyj1045 := 0; ; yyj1045++ { + if yyhl1045 { + if yyj1045 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1045Slc = r.DecodeBytes(yys1045Slc, true, true) + yys1045 := string(yys1045Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1045 { + case "name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + case "value": + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys1045) + } // end switch yys1045 + } // end for yyj1045 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1048 int + var yyb1048 bool + var yyhl1048 bool = l >= 0 + yyj1048++ + if yyhl1048 { + yyb1048 = yyj1048 > l + } else { + yyb1048 = r.CheckBreak() + } + if yyb1048 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + yyj1048++ + if yyhl1048 { + yyb1048 = yyj1048 > l + } else { + yyb1048 = r.CheckBreak() + } + if yyb1048 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = string(r.DecodeString()) + } + for { + yyj1048++ + if yyhl1048 { + yyb1048 = yyj1048 > l + } else { + yyb1048 = r.CheckBreak() + } + if yyb1048 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1048-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1051 := z.EncBinary() + _ = yym1051 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1052 := !z.EncBinary() + yy2arr1052 := z.EncBasicHandle().StructToArray + var yyq1052 [5]bool + _, _, _ = yysep1052, yyq1052, yy2arr1052 + const yyr1052 bool = false + yyq1052[0] = x.Path != "" + yyq1052[1] = true + yyq1052[2] = x.Host != "" + yyq1052[3] = x.Scheme != "" + yyq1052[4] = len(x.HTTPHeaders) != 0 + var yynn1052 int + if yyr1052 || yy2arr1052 { + r.EncodeArrayStart(5) + } else { + yynn1052 = 0 + for _, b := range yyq1052 { + if b { + yynn1052++ + } + } + r.EncodeMapStart(yynn1052) + yynn1052 = 0 + } + if yyr1052 || yy2arr1052 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1052[0] { + yym1054 := z.EncBinary() + _ = yym1054 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -14565,56 +14769,56 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1036[0] { + if yyq1052[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1039 := z.EncBinary() - _ = yym1039 + yym1055 := z.EncBinary() + _ = yym1055 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr1036 || yy2arr1036 { + if yyr1052 || yy2arr1052 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1036[1] { - yy1041 := &x.Port - yym1042 := z.EncBinary() - _ = yym1042 + if yyq1052[1] { + yy1057 := &x.Port + yym1058 := z.EncBinary() + _ = yym1058 if false { - } else if z.HasExtensions() && z.EncExt(yy1041) { - } else if !yym1042 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1041) + } else if z.HasExtensions() && z.EncExt(yy1057) { + } else if !yym1058 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1057) } else { - z.EncFallback(yy1041) + z.EncFallback(yy1057) } } else { r.EncodeNil() } } else { - if yyq1036[1] { + if yyq1052[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1043 := &x.Port - yym1044 := z.EncBinary() - _ = yym1044 + yy1059 := &x.Port + yym1060 := z.EncBinary() + _ = yym1060 if false { - } else if z.HasExtensions() && z.EncExt(yy1043) { - } else if !yym1044 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1043) + } else if z.HasExtensions() && z.EncExt(yy1059) { + } else if !yym1060 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1059) } else { - z.EncFallback(yy1043) + z.EncFallback(yy1059) } } } - if yyr1036 || yy2arr1036 { + if yyr1052 || yy2arr1052 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1036[2] { - yym1046 := z.EncBinary() - _ = yym1046 + if yyq1052[2] { + yym1062 := z.EncBinary() + _ = yym1062 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -14623,34 +14827,67 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1036[2] { + if yyq1052[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1047 := z.EncBinary() - _ = yym1047 + yym1063 := z.EncBinary() + _ = yym1063 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr1036 || yy2arr1036 { + if yyr1052 || yy2arr1052 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1036[3] { + if yyq1052[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1036[3] { + if yyq1052[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr1036 || yy2arr1036 { + if yyr1052 || yy2arr1052 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1052[4] { + if x.HTTPHeaders == nil { + r.EncodeNil() + } else { + yym1066 := z.EncBinary() + _ = yym1066 + if false { + } else { + h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1052[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("httpHeaders")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.HTTPHeaders == nil { + r.EncodeNil() + } else { + yym1067 := z.EncBinary() + _ = yym1067 + if false { + } else { + h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) + } + } + } + } + if yyr1052 || yy2arr1052 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14663,25 +14900,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1049 := z.DecBinary() - _ = yym1049 + yym1068 := z.DecBinary() + _ = yym1068 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1050 := r.ContainerType() - if yyct1050 == codecSelferValueTypeMap1234 { - yyl1050 := r.ReadMapStart() - if yyl1050 == 0 { + yyct1069 := r.ContainerType() + if yyct1069 == codecSelferValueTypeMap1234 { + yyl1069 := r.ReadMapStart() + if yyl1069 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1050, d) + x.codecDecodeSelfFromMap(yyl1069, d) } - } else if yyct1050 == codecSelferValueTypeArray1234 { - yyl1050 := r.ReadArrayStart() - if yyl1050 == 0 { + } else if yyct1069 == codecSelferValueTypeArray1234 { + yyl1069 := r.ReadArrayStart() + if yyl1069 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1050, d) + x.codecDecodeSelfFromArray(yyl1069, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14693,12 +14930,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1051Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1051Slc - var yyhl1051 bool = l >= 0 - for yyj1051 := 0; ; yyj1051++ { - if yyhl1051 { - if yyj1051 >= l { + var yys1070Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1070Slc + var yyhl1070 bool = l >= 0 + for yyj1070 := 0; ; yyj1070++ { + if yyhl1070 { + if yyj1070 >= l { break } } else { @@ -14707,10 +14944,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1051Slc = r.DecodeBytes(yys1051Slc, true, true) - yys1051 := string(yys1051Slc) + yys1070Slc = r.DecodeBytes(yys1070Slc, true, true) + yys1070 := string(yys1070Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1051 { + switch yys1070 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -14721,15 +14958,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1053 := &x.Port - yym1054 := z.DecBinary() - _ = yym1054 + yyv1072 := &x.Port + yym1073 := z.DecBinary() + _ = yym1073 if false { - } else if z.HasExtensions() && z.DecExt(yyv1053) { - } else if !yym1054 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1053) + } else if z.HasExtensions() && z.DecExt(yyv1072) { + } else if !yym1073 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1072) } else { - z.DecFallback(yyv1053, false) + z.DecFallback(yyv1072, false) } } case "host": @@ -14744,10 +14981,22 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } + case "httpHeaders": + if r.TryDecodeAsNil() { + x.HTTPHeaders = nil + } else { + yyv1076 := &x.HTTPHeaders + yym1077 := z.DecBinary() + _ = yym1077 + if false { + } else { + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1076), d) + } + } default: - z.DecStructFieldNotFound(-1, yys1051) - } // end switch yys1051 - } // end for yyj1051 + z.DecStructFieldNotFound(-1, yys1070) + } // end switch yys1070 + } // end for yyj1070 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14755,16 +15004,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1057 int - var yyb1057 bool - var yyhl1057 bool = l >= 0 - yyj1057++ - if yyhl1057 { - yyb1057 = yyj1057 > l + var yyj1078 int + var yyb1078 bool + var yyhl1078 bool = l >= 0 + yyj1078++ + if yyhl1078 { + yyb1078 = yyj1078 > l } else { - yyb1057 = r.CheckBreak() + yyb1078 = r.CheckBreak() } - if yyb1057 { + if yyb1078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14774,13 +15023,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1057++ - if yyhl1057 { - yyb1057 = yyj1057 > l + yyj1078++ + if yyhl1078 { + yyb1078 = yyj1078 > l } else { - yyb1057 = r.CheckBreak() + yyb1078 = r.CheckBreak() } - if yyb1057 { + if yyb1078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14788,24 +15037,24 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1059 := &x.Port - yym1060 := z.DecBinary() - _ = yym1060 + yyv1080 := &x.Port + yym1081 := z.DecBinary() + _ = yym1081 if false { - } else if z.HasExtensions() && z.DecExt(yyv1059) { - } else if !yym1060 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1059) + } else if z.HasExtensions() && z.DecExt(yyv1080) { + } else if !yym1081 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1080) } else { - z.DecFallback(yyv1059, false) + z.DecFallback(yyv1080, false) } } - yyj1057++ - if yyhl1057 { - yyb1057 = yyj1057 > l + yyj1078++ + if yyhl1078 { + yyb1078 = yyj1078 > l } else { - yyb1057 = r.CheckBreak() + yyb1078 = r.CheckBreak() } - if yyb1057 { + if yyb1078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14815,13 +15064,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj1057++ - if yyhl1057 { - yyb1057 = yyj1057 > l + yyj1078++ + if yyhl1078 { + yyb1078 = yyj1078 > l } else { - yyb1057 = r.CheckBreak() + yyb1078 = r.CheckBreak() } - if yyb1057 { + if yyb1078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14831,18 +15080,40 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } - for { - yyj1057++ - if yyhl1057 { - yyb1057 = yyj1057 > l + yyj1078++ + if yyhl1078 { + yyb1078 = yyj1078 > l + } else { + yyb1078 = r.CheckBreak() + } + if yyb1078 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.HTTPHeaders = nil + } else { + yyv1084 := &x.HTTPHeaders + yym1085 := z.DecBinary() + _ = yym1085 + if false { } else { - yyb1057 = r.CheckBreak() + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1084), d) } - if yyb1057 { + } + for { + yyj1078++ + if yyhl1078 { + yyb1078 = yyj1078 > l + } else { + yyb1078 = r.CheckBreak() + } + if yyb1078 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1057-1, "") + z.DecStructFieldNotFound(yyj1078-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14851,8 +15122,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1063 := z.EncBinary() - _ = yym1063 + yym1086 := z.EncBinary() + _ = yym1086 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -14864,8 +15135,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1064 := z.DecBinary() - _ = yym1064 + yym1087 := z.DecBinary() + _ = yym1087 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -14880,64 +15151,64 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1065 := z.EncBinary() - _ = yym1065 + yym1088 := z.EncBinary() + _ = yym1088 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1066 := !z.EncBinary() - yy2arr1066 := z.EncBasicHandle().StructToArray - var yyq1066 [1]bool - _, _, _ = yysep1066, yyq1066, yy2arr1066 - const yyr1066 bool = false - yyq1066[0] = true - var yynn1066 int - if yyr1066 || yy2arr1066 { + yysep1089 := !z.EncBinary() + yy2arr1089 := z.EncBasicHandle().StructToArray + var yyq1089 [1]bool + _, _, _ = yysep1089, yyq1089, yy2arr1089 + const yyr1089 bool = false + yyq1089[0] = true + var yynn1089 int + if yyr1089 || yy2arr1089 { r.EncodeArrayStart(1) } else { - yynn1066 = 0 - for _, b := range yyq1066 { + yynn1089 = 0 + for _, b := range yyq1089 { if b { - yynn1066++ + yynn1089++ } } - r.EncodeMapStart(yynn1066) - yynn1066 = 0 + r.EncodeMapStart(yynn1089) + yynn1089 = 0 } - if yyr1066 || yy2arr1066 { + if yyr1089 || yy2arr1089 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1066[0] { - yy1068 := &x.Port - yym1069 := z.EncBinary() - _ = yym1069 + if yyq1089[0] { + yy1091 := &x.Port + yym1092 := z.EncBinary() + _ = yym1092 if false { - } else if z.HasExtensions() && z.EncExt(yy1068) { - } else if !yym1069 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1068) + } else if z.HasExtensions() && z.EncExt(yy1091) { + } else if !yym1092 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1091) } else { - z.EncFallback(yy1068) + z.EncFallback(yy1091) } } else { r.EncodeNil() } } else { - if yyq1066[0] { + if yyq1089[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1070 := &x.Port - yym1071 := z.EncBinary() - _ = yym1071 + yy1093 := &x.Port + yym1094 := z.EncBinary() + _ = yym1094 if false { - } else if z.HasExtensions() && z.EncExt(yy1070) { - } else if !yym1071 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1070) + } else if z.HasExtensions() && z.EncExt(yy1093) { + } else if !yym1094 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1093) } else { - z.EncFallback(yy1070) + z.EncFallback(yy1093) } } } - if yyr1066 || yy2arr1066 { + if yyr1089 || yy2arr1089 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14950,25 +15221,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1072 := z.DecBinary() - _ = yym1072 + yym1095 := z.DecBinary() + _ = yym1095 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1073 := r.ContainerType() - if yyct1073 == codecSelferValueTypeMap1234 { - yyl1073 := r.ReadMapStart() - if yyl1073 == 0 { + yyct1096 := r.ContainerType() + if yyct1096 == codecSelferValueTypeMap1234 { + yyl1096 := r.ReadMapStart() + if yyl1096 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1073, d) + x.codecDecodeSelfFromMap(yyl1096, d) } - } else if yyct1073 == codecSelferValueTypeArray1234 { - yyl1073 := r.ReadArrayStart() - if yyl1073 == 0 { + } else if yyct1096 == codecSelferValueTypeArray1234 { + yyl1096 := r.ReadArrayStart() + if yyl1096 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1073, d) + x.codecDecodeSelfFromArray(yyl1096, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14980,12 +15251,12 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1074Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1074Slc - var yyhl1074 bool = l >= 0 - for yyj1074 := 0; ; yyj1074++ { - if yyhl1074 { - if yyj1074 >= l { + var yys1097Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1097Slc + var yyhl1097 bool = l >= 0 + for yyj1097 := 0; ; yyj1097++ { + if yyhl1097 { + if yyj1097 >= l { break } } else { @@ -14994,29 +15265,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1074Slc = r.DecodeBytes(yys1074Slc, true, true) - yys1074 := string(yys1074Slc) + yys1097Slc = r.DecodeBytes(yys1097Slc, true, true) + yys1097 := string(yys1097Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1074 { + switch yys1097 { case "port": if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1075 := &x.Port - yym1076 := z.DecBinary() - _ = yym1076 + yyv1098 := &x.Port + yym1099 := z.DecBinary() + _ = yym1099 if false { - } else if z.HasExtensions() && z.DecExt(yyv1075) { - } else if !yym1076 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1075) + } else if z.HasExtensions() && z.DecExt(yyv1098) { + } else if !yym1099 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1098) } else { - z.DecFallback(yyv1075, false) + z.DecFallback(yyv1098, false) } } default: - z.DecStructFieldNotFound(-1, yys1074) - } // end switch yys1074 - } // end for yyj1074 + z.DecStructFieldNotFound(-1, yys1097) + } // end switch yys1097 + } // end for yyj1097 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15024,16 +15295,16 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1077 int - var yyb1077 bool - var yyhl1077 bool = l >= 0 - yyj1077++ - if yyhl1077 { - yyb1077 = yyj1077 > l + var yyj1100 int + var yyb1100 bool + var yyhl1100 bool = l >= 0 + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1077 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1077 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15041,29 +15312,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1078 := &x.Port - yym1079 := z.DecBinary() - _ = yym1079 + yyv1101 := &x.Port + yym1102 := z.DecBinary() + _ = yym1102 if false { - } else if z.HasExtensions() && z.DecExt(yyv1078) { - } else if !yym1079 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1078) + } else if z.HasExtensions() && z.DecExt(yyv1101) { + } else if !yym1102 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1101) } else { - z.DecFallback(yyv1078, false) + z.DecFallback(yyv1101, false) } } for { - yyj1077++ - if yyhl1077 { - yyb1077 = yyj1077 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1077 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1077 { + if yyb1100 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1077-1, "") + z.DecStructFieldNotFound(yyj1100-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15075,38 +15346,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1080 := z.EncBinary() - _ = yym1080 + yym1103 := z.EncBinary() + _ = yym1103 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1081 := !z.EncBinary() - yy2arr1081 := z.EncBasicHandle().StructToArray - var yyq1081 [1]bool - _, _, _ = yysep1081, yyq1081, yy2arr1081 - const yyr1081 bool = false - yyq1081[0] = len(x.Command) != 0 - var yynn1081 int - if yyr1081 || yy2arr1081 { + yysep1104 := !z.EncBinary() + yy2arr1104 := z.EncBasicHandle().StructToArray + var yyq1104 [1]bool + _, _, _ = yysep1104, yyq1104, yy2arr1104 + const yyr1104 bool = false + yyq1104[0] = len(x.Command) != 0 + var yynn1104 int + if yyr1104 || yy2arr1104 { r.EncodeArrayStart(1) } else { - yynn1081 = 0 - for _, b := range yyq1081 { + yynn1104 = 0 + for _, b := range yyq1104 { if b { - yynn1081++ + yynn1104++ } } - r.EncodeMapStart(yynn1081) - yynn1081 = 0 + r.EncodeMapStart(yynn1104) + yynn1104 = 0 } - if yyr1081 || yy2arr1081 { + if yyr1104 || yy2arr1104 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1081[0] { + if yyq1104[0] { if x.Command == nil { r.EncodeNil() } else { - yym1083 := z.EncBinary() - _ = yym1083 + yym1106 := z.EncBinary() + _ = yym1106 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -15116,15 +15387,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1081[0] { + if yyq1104[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1084 := z.EncBinary() - _ = yym1084 + yym1107 := z.EncBinary() + _ = yym1107 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -15132,7 +15403,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1081 || yy2arr1081 { + if yyr1104 || yy2arr1104 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15145,25 +15416,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1085 := z.DecBinary() - _ = yym1085 + yym1108 := z.DecBinary() + _ = yym1108 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1086 := r.ContainerType() - if yyct1086 == codecSelferValueTypeMap1234 { - yyl1086 := r.ReadMapStart() - if yyl1086 == 0 { + yyct1109 := r.ContainerType() + if yyct1109 == codecSelferValueTypeMap1234 { + yyl1109 := r.ReadMapStart() + if yyl1109 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1086, d) + x.codecDecodeSelfFromMap(yyl1109, d) } - } else if yyct1086 == codecSelferValueTypeArray1234 { - yyl1086 := r.ReadArrayStart() - if yyl1086 == 0 { + } else if yyct1109 == codecSelferValueTypeArray1234 { + yyl1109 := r.ReadArrayStart() + if yyl1109 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1086, d) + x.codecDecodeSelfFromArray(yyl1109, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15175,12 +15446,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1087Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1087Slc - var yyhl1087 bool = l >= 0 - for yyj1087 := 0; ; yyj1087++ { - if yyhl1087 { - if yyj1087 >= l { + var yys1110Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1110Slc + var yyhl1110 bool = l >= 0 + for yyj1110 := 0; ; yyj1110++ { + if yyhl1110 { + if yyj1110 >= l { break } } else { @@ -15189,26 +15460,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1087Slc = r.DecodeBytes(yys1087Slc, true, true) - yys1087 := string(yys1087Slc) + yys1110Slc = r.DecodeBytes(yys1110Slc, true, true) + yys1110 := string(yys1110Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1087 { + switch yys1110 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1088 := &x.Command - yym1089 := z.DecBinary() - _ = yym1089 + yyv1111 := &x.Command + yym1112 := z.DecBinary() + _ = yym1112 if false { } else { - z.F.DecSliceStringX(yyv1088, false, d) + z.F.DecSliceStringX(yyv1111, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1087) - } // end switch yys1087 - } // end for yyj1087 + z.DecStructFieldNotFound(-1, yys1110) + } // end switch yys1110 + } // end for yyj1110 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15216,16 +15487,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1090 int - var yyb1090 bool - var yyhl1090 bool = l >= 0 - yyj1090++ - if yyhl1090 { - yyb1090 = yyj1090 > l + var yyj1113 int + var yyb1113 bool + var yyhl1113 bool = l >= 0 + yyj1113++ + if yyhl1113 { + yyb1113 = yyj1113 > l } else { - yyb1090 = r.CheckBreak() + yyb1113 = r.CheckBreak() } - if yyb1090 { + if yyb1113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15233,26 +15504,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1091 := &x.Command - yym1092 := z.DecBinary() - _ = yym1092 + yyv1114 := &x.Command + yym1115 := z.DecBinary() + _ = yym1115 if false { } else { - z.F.DecSliceStringX(yyv1091, false, d) + z.F.DecSliceStringX(yyv1114, false, d) } } for { - yyj1090++ - if yyhl1090 { - yyb1090 = yyj1090 > l + yyj1113++ + if yyhl1113 { + yyb1113 = yyj1113 > l } else { - yyb1090 = r.CheckBreak() + yyb1113 = r.CheckBreak() } - if yyb1090 { + if yyb1113 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1090-1, "") + z.DecStructFieldNotFound(yyj1113-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15264,49 +15535,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1093 := z.EncBinary() - _ = yym1093 + yym1116 := z.EncBinary() + _ = yym1116 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1094 := !z.EncBinary() - yy2arr1094 := z.EncBasicHandle().StructToArray - var yyq1094 [8]bool - _, _, _ = yysep1094, yyq1094, yy2arr1094 - const yyr1094 bool = false - yyq1094[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1094[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1094[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1094[3] = x.InitialDelaySeconds != 0 - yyq1094[4] = x.TimeoutSeconds != 0 - yyq1094[5] = x.PeriodSeconds != 0 - yyq1094[6] = x.SuccessThreshold != 0 - yyq1094[7] = x.FailureThreshold != 0 - var yynn1094 int - if yyr1094 || yy2arr1094 { + yysep1117 := !z.EncBinary() + yy2arr1117 := z.EncBasicHandle().StructToArray + var yyq1117 [8]bool + _, _, _ = yysep1117, yyq1117, yy2arr1117 + const yyr1117 bool = false + yyq1117[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1117[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1117[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1117[3] = x.InitialDelaySeconds != 0 + yyq1117[4] = x.TimeoutSeconds != 0 + yyq1117[5] = x.PeriodSeconds != 0 + yyq1117[6] = x.SuccessThreshold != 0 + yyq1117[7] = x.FailureThreshold != 0 + var yynn1117 int + if yyr1117 || yy2arr1117 { r.EncodeArrayStart(8) } else { - yynn1094 = 0 - for _, b := range yyq1094 { + yynn1117 = 0 + for _, b := range yyq1117 { if b { - yynn1094++ + yynn1117++ } } - r.EncodeMapStart(yynn1094) - yynn1094 = 0 + r.EncodeMapStart(yynn1117) + yynn1117 = 0 } - var yyn1095 bool + var yyn1118 bool if x.Handler.Exec == nil { - yyn1095 = true - goto LABEL1095 + yyn1118 = true + goto LABEL1118 } - LABEL1095: - if yyr1094 || yy2arr1094 { - if yyn1095 { + LABEL1118: + if yyr1117 || yy2arr1117 { + if yyn1118 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1094[0] { + if yyq1117[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -15317,11 +15588,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1094[0] { + if yyq1117[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1095 { + if yyn1118 { r.EncodeNil() } else { if x.Exec == nil { @@ -15332,18 +15603,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1096 bool + var yyn1119 bool if x.Handler.HTTPGet == nil { - yyn1096 = true - goto LABEL1096 + yyn1119 = true + goto LABEL1119 } - LABEL1096: - if yyr1094 || yy2arr1094 { - if yyn1096 { + LABEL1119: + if yyr1117 || yy2arr1117 { + if yyn1119 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1094[1] { + if yyq1117[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -15354,11 +15625,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1094[1] { + if yyq1117[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1096 { + if yyn1119 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -15369,18 +15640,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1097 bool + var yyn1120 bool if x.Handler.TCPSocket == nil { - yyn1097 = true - goto LABEL1097 + yyn1120 = true + goto LABEL1120 } - LABEL1097: - if yyr1094 || yy2arr1094 { - if yyn1097 { + LABEL1120: + if yyr1117 || yy2arr1117 { + if yyn1120 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1094[2] { + if yyq1117[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -15391,11 +15662,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1094[2] { + if yyq1117[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1097 { + if yyn1120 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -15406,11 +15677,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1094 || yy2arr1094 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1094[3] { - yym1099 := z.EncBinary() - _ = yym1099 + if yyq1117[3] { + yym1122 := z.EncBinary() + _ = yym1122 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -15419,23 +15690,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1094[3] { + if yyq1117[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1100 := z.EncBinary() - _ = yym1100 + yym1123 := z.EncBinary() + _ = yym1123 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1094 || yy2arr1094 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1094[4] { - yym1102 := z.EncBinary() - _ = yym1102 + if yyq1117[4] { + yym1125 := z.EncBinary() + _ = yym1125 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -15444,23 +15715,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1094[4] { + if yyq1117[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1103 := z.EncBinary() - _ = yym1103 + yym1126 := z.EncBinary() + _ = yym1126 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1094 || yy2arr1094 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1094[5] { - yym1105 := z.EncBinary() - _ = yym1105 + if yyq1117[5] { + yym1128 := z.EncBinary() + _ = yym1128 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -15469,23 +15740,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1094[5] { + if yyq1117[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1106 := z.EncBinary() - _ = yym1106 + yym1129 := z.EncBinary() + _ = yym1129 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1094 || yy2arr1094 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1094[6] { - yym1108 := z.EncBinary() - _ = yym1108 + if yyq1117[6] { + yym1131 := z.EncBinary() + _ = yym1131 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -15494,23 +15765,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1094[6] { + if yyq1117[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1109 := z.EncBinary() - _ = yym1109 + yym1132 := z.EncBinary() + _ = yym1132 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1094 || yy2arr1094 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1094[7] { - yym1111 := z.EncBinary() - _ = yym1111 + if yyq1117[7] { + yym1134 := z.EncBinary() + _ = yym1134 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -15519,19 +15790,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1094[7] { + if yyq1117[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1112 := z.EncBinary() - _ = yym1112 + yym1135 := z.EncBinary() + _ = yym1135 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1094 || yy2arr1094 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15544,25 +15815,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1113 := z.DecBinary() - _ = yym1113 + yym1136 := z.DecBinary() + _ = yym1136 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1114 := r.ContainerType() - if yyct1114 == codecSelferValueTypeMap1234 { - yyl1114 := r.ReadMapStart() - if yyl1114 == 0 { + yyct1137 := r.ContainerType() + if yyct1137 == codecSelferValueTypeMap1234 { + yyl1137 := r.ReadMapStart() + if yyl1137 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1114, d) + x.codecDecodeSelfFromMap(yyl1137, d) } - } else if yyct1114 == codecSelferValueTypeArray1234 { - yyl1114 := r.ReadArrayStart() - if yyl1114 == 0 { + } else if yyct1137 == codecSelferValueTypeArray1234 { + yyl1137 := r.ReadArrayStart() + if yyl1137 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1114, d) + x.codecDecodeSelfFromArray(yyl1137, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15574,12 +15845,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1115Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1115Slc - var yyhl1115 bool = l >= 0 - for yyj1115 := 0; ; yyj1115++ { - if yyhl1115 { - if yyj1115 >= l { + var yys1138Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1138Slc + var yyhl1138 bool = l >= 0 + for yyj1138 := 0; ; yyj1138++ { + if yyhl1138 { + if yyj1138 >= l { break } } else { @@ -15588,10 +15859,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1115Slc = r.DecodeBytes(yys1115Slc, true, true) - yys1115 := string(yys1115Slc) + yys1138Slc = r.DecodeBytes(yys1138Slc, true, true) + yys1138 := string(yys1138Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1115 { + switch yys1138 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -15665,9 +15936,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys1115) - } // end switch yys1115 - } // end for yyj1115 + z.DecStructFieldNotFound(-1, yys1138) + } // end switch yys1138 + } // end for yyj1138 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15675,19 +15946,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1124 int - var yyb1124 bool - var yyhl1124 bool = l >= 0 + var yyj1147 int + var yyb1147 bool + var yyhl1147 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15705,13 +15976,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15729,13 +16000,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15750,13 +16021,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15766,13 +16037,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15782,13 +16053,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15798,13 +16069,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15814,13 +16085,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15831,17 +16102,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1147++ + if yyhl1147 { + yyb1147 = yyj1147 > l } else { - yyb1124 = r.CheckBreak() + yyb1147 = r.CheckBreak() } - if yyb1124 { + if yyb1147 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1124-1, "") + z.DecStructFieldNotFound(yyj1147-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15850,8 +16121,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1133 := z.EncBinary() - _ = yym1133 + yym1156 := z.EncBinary() + _ = yym1156 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -15863,8 +16134,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1134 := z.DecBinary() - _ = yym1134 + yym1157 := z.DecBinary() + _ = yym1157 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -15876,8 +16147,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1135 := z.EncBinary() - _ = yym1135 + yym1158 := z.EncBinary() + _ = yym1158 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -15889,8 +16160,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1136 := z.DecBinary() - _ = yym1136 + yym1159 := z.DecBinary() + _ = yym1159 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -15905,39 +16176,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1137 := z.EncBinary() - _ = yym1137 + yym1160 := z.EncBinary() + _ = yym1160 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1138 := !z.EncBinary() - yy2arr1138 := z.EncBasicHandle().StructToArray - var yyq1138 [2]bool - _, _, _ = yysep1138, yyq1138, yy2arr1138 - const yyr1138 bool = false - yyq1138[0] = len(x.Add) != 0 - yyq1138[1] = len(x.Drop) != 0 - var yynn1138 int - if yyr1138 || yy2arr1138 { + yysep1161 := !z.EncBinary() + yy2arr1161 := z.EncBasicHandle().StructToArray + var yyq1161 [2]bool + _, _, _ = yysep1161, yyq1161, yy2arr1161 + const yyr1161 bool = false + yyq1161[0] = len(x.Add) != 0 + yyq1161[1] = len(x.Drop) != 0 + var yynn1161 int + if yyr1161 || yy2arr1161 { r.EncodeArrayStart(2) } else { - yynn1138 = 0 - for _, b := range yyq1138 { + yynn1161 = 0 + for _, b := range yyq1161 { if b { - yynn1138++ + yynn1161++ } } - r.EncodeMapStart(yynn1138) - yynn1138 = 0 + r.EncodeMapStart(yynn1161) + yynn1161 = 0 } - if yyr1138 || yy2arr1138 { + if yyr1161 || yy2arr1161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1138[0] { + if yyq1161[0] { if x.Add == nil { r.EncodeNil() } else { - yym1140 := z.EncBinary() - _ = yym1140 + yym1163 := z.EncBinary() + _ = yym1163 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -15947,15 +16218,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1138[0] { + if yyq1161[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1141 := z.EncBinary() - _ = yym1141 + yym1164 := z.EncBinary() + _ = yym1164 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -15963,14 +16234,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1138 || yy2arr1138 { + if yyr1161 || yy2arr1161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1138[1] { + if yyq1161[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1143 := z.EncBinary() - _ = yym1143 + yym1166 := z.EncBinary() + _ = yym1166 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -15980,15 +16251,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1138[1] { + if yyq1161[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1144 := z.EncBinary() - _ = yym1144 + yym1167 := z.EncBinary() + _ = yym1167 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -15996,7 +16267,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1138 || yy2arr1138 { + if yyr1161 || yy2arr1161 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16009,25 +16280,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1145 := z.DecBinary() - _ = yym1145 + yym1168 := z.DecBinary() + _ = yym1168 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1146 := r.ContainerType() - if yyct1146 == codecSelferValueTypeMap1234 { - yyl1146 := r.ReadMapStart() - if yyl1146 == 0 { + yyct1169 := r.ContainerType() + if yyct1169 == codecSelferValueTypeMap1234 { + yyl1169 := r.ReadMapStart() + if yyl1169 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1146, d) + x.codecDecodeSelfFromMap(yyl1169, d) } - } else if yyct1146 == codecSelferValueTypeArray1234 { - yyl1146 := r.ReadArrayStart() - if yyl1146 == 0 { + } else if yyct1169 == codecSelferValueTypeArray1234 { + yyl1169 := r.ReadArrayStart() + if yyl1169 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1146, d) + x.codecDecodeSelfFromArray(yyl1169, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16039,12 +16310,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1147Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1147Slc - var yyhl1147 bool = l >= 0 - for yyj1147 := 0; ; yyj1147++ { - if yyhl1147 { - if yyj1147 >= l { + var yys1170Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1170Slc + var yyhl1170 bool = l >= 0 + for yyj1170 := 0; ; yyj1170++ { + if yyhl1170 { + if yyj1170 >= l { break } } else { @@ -16053,38 +16324,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1147Slc = r.DecodeBytes(yys1147Slc, true, true) - yys1147 := string(yys1147Slc) + yys1170Slc = r.DecodeBytes(yys1170Slc, true, true) + yys1170 := string(yys1170Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1147 { + switch yys1170 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1148 := &x.Add - yym1149 := z.DecBinary() - _ = yym1149 + yyv1171 := &x.Add + yym1172 := z.DecBinary() + _ = yym1172 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1148), d) + h.decSliceCapability((*[]Capability)(yyv1171), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1150 := &x.Drop - yym1151 := z.DecBinary() - _ = yym1151 + yyv1173 := &x.Drop + yym1174 := z.DecBinary() + _ = yym1174 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1150), d) + h.decSliceCapability((*[]Capability)(yyv1173), d) } } default: - z.DecStructFieldNotFound(-1, yys1147) - } // end switch yys1147 - } // end for yyj1147 + z.DecStructFieldNotFound(-1, yys1170) + } // end switch yys1170 + } // end for yyj1170 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16092,16 +16363,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1152 int - var yyb1152 bool - var yyhl1152 bool = l >= 0 - yyj1152++ - if yyhl1152 { - yyb1152 = yyj1152 > l + var yyj1175 int + var yyb1175 bool + var yyhl1175 bool = l >= 0 + yyj1175++ + if yyhl1175 { + yyb1175 = yyj1175 > l } else { - yyb1152 = r.CheckBreak() + yyb1175 = r.CheckBreak() } - if yyb1152 { + if yyb1175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16109,21 +16380,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1153 := &x.Add - yym1154 := z.DecBinary() - _ = yym1154 + yyv1176 := &x.Add + yym1177 := z.DecBinary() + _ = yym1177 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1153), d) + h.decSliceCapability((*[]Capability)(yyv1176), d) } } - yyj1152++ - if yyhl1152 { - yyb1152 = yyj1152 > l + yyj1175++ + if yyhl1175 { + yyb1175 = yyj1175 > l } else { - yyb1152 = r.CheckBreak() + yyb1175 = r.CheckBreak() } - if yyb1152 { + if yyb1175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16131,26 +16402,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1155 := &x.Drop - yym1156 := z.DecBinary() - _ = yym1156 + yyv1178 := &x.Drop + yym1179 := z.DecBinary() + _ = yym1179 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1155), d) + h.decSliceCapability((*[]Capability)(yyv1178), d) } } for { - yyj1152++ - if yyhl1152 { - yyb1152 = yyj1152 > l + yyj1175++ + if yyhl1175 { + yyb1175 = yyj1175 > l } else { - yyb1152 = r.CheckBreak() + yyb1175 = r.CheckBreak() } - if yyb1152 { + if yyb1175 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1152-1, "") + z.DecStructFieldNotFound(yyj1175-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16162,34 +16433,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1157 := z.EncBinary() - _ = yym1157 + yym1180 := z.EncBinary() + _ = yym1180 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1158 := !z.EncBinary() - yy2arr1158 := z.EncBasicHandle().StructToArray - var yyq1158 [2]bool - _, _, _ = yysep1158, yyq1158, yy2arr1158 - const yyr1158 bool = false - yyq1158[0] = len(x.Limits) != 0 - yyq1158[1] = len(x.Requests) != 0 - var yynn1158 int - if yyr1158 || yy2arr1158 { + yysep1181 := !z.EncBinary() + yy2arr1181 := z.EncBasicHandle().StructToArray + var yyq1181 [2]bool + _, _, _ = yysep1181, yyq1181, yy2arr1181 + const yyr1181 bool = false + yyq1181[0] = len(x.Limits) != 0 + yyq1181[1] = len(x.Requests) != 0 + var yynn1181 int + if yyr1181 || yy2arr1181 { r.EncodeArrayStart(2) } else { - yynn1158 = 0 - for _, b := range yyq1158 { + yynn1181 = 0 + for _, b := range yyq1181 { if b { - yynn1158++ + yynn1181++ } } - r.EncodeMapStart(yynn1158) - yynn1158 = 0 + r.EncodeMapStart(yynn1181) + yynn1181 = 0 } - if yyr1158 || yy2arr1158 { + if yyr1181 || yy2arr1181 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1158[0] { + if yyq1181[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -16199,7 +16470,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1158[0] { + if yyq1181[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16210,9 +16481,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1158 || yy2arr1158 { + if yyr1181 || yy2arr1181 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1158[1] { + if yyq1181[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -16222,7 +16493,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1158[1] { + if yyq1181[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16233,7 +16504,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1158 || yy2arr1158 { + if yyr1181 || yy2arr1181 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16246,25 +16517,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1161 := z.DecBinary() - _ = yym1161 + yym1184 := z.DecBinary() + _ = yym1184 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1162 := r.ContainerType() - if yyct1162 == codecSelferValueTypeMap1234 { - yyl1162 := r.ReadMapStart() - if yyl1162 == 0 { + yyct1185 := r.ContainerType() + if yyct1185 == codecSelferValueTypeMap1234 { + yyl1185 := r.ReadMapStart() + if yyl1185 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1162, d) + x.codecDecodeSelfFromMap(yyl1185, d) } - } else if yyct1162 == codecSelferValueTypeArray1234 { - yyl1162 := r.ReadArrayStart() - if yyl1162 == 0 { + } else if yyct1185 == codecSelferValueTypeArray1234 { + yyl1185 := r.ReadArrayStart() + if yyl1185 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1162, d) + x.codecDecodeSelfFromArray(yyl1185, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16276,12 +16547,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1163Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1163Slc - var yyhl1163 bool = l >= 0 - for yyj1163 := 0; ; yyj1163++ { - if yyhl1163 { - if yyj1163 >= l { + var yys1186Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1186Slc + var yyhl1186 bool = l >= 0 + for yyj1186 := 0; ; yyj1186++ { + if yyhl1186 { + if yyj1186 >= l { break } } else { @@ -16290,28 +16561,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1163Slc = r.DecodeBytes(yys1163Slc, true, true) - yys1163 := string(yys1163Slc) + yys1186Slc = r.DecodeBytes(yys1186Slc, true, true) + yys1186 := string(yys1186Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1163 { + switch yys1186 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1164 := &x.Limits - yyv1164.CodecDecodeSelf(d) + yyv1187 := &x.Limits + yyv1187.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1165 := &x.Requests - yyv1165.CodecDecodeSelf(d) + yyv1188 := &x.Requests + yyv1188.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1163) - } // end switch yys1163 - } // end for yyj1163 + z.DecStructFieldNotFound(-1, yys1186) + } // end switch yys1186 + } // end for yyj1186 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16319,16 +16590,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1166 int - var yyb1166 bool - var yyhl1166 bool = l >= 0 - yyj1166++ - if yyhl1166 { - yyb1166 = yyj1166 > l + var yyj1189 int + var yyb1189 bool + var yyhl1189 bool = l >= 0 + yyj1189++ + if yyhl1189 { + yyb1189 = yyj1189 > l } else { - yyb1166 = r.CheckBreak() + yyb1189 = r.CheckBreak() } - if yyb1166 { + if yyb1189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16336,16 +16607,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1167 := &x.Limits - yyv1167.CodecDecodeSelf(d) + yyv1190 := &x.Limits + yyv1190.CodecDecodeSelf(d) } - yyj1166++ - if yyhl1166 { - yyb1166 = yyj1166 > l + yyj1189++ + if yyhl1189 { + yyb1189 = yyj1189 > l } else { - yyb1166 = r.CheckBreak() + yyb1189 = r.CheckBreak() } - if yyb1166 { + if yyb1189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16353,21 +16624,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1168 := &x.Requests - yyv1168.CodecDecodeSelf(d) + yyv1191 := &x.Requests + yyv1191.CodecDecodeSelf(d) } for { - yyj1166++ - if yyhl1166 { - yyb1166 = yyj1166 > l + yyj1189++ + if yyhl1189 { + yyb1189 = yyj1189 > l } else { - yyb1166 = r.CheckBreak() + yyb1189 = r.CheckBreak() } - if yyb1166 { + if yyb1189 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1166-1, "") + z.DecStructFieldNotFound(yyj1189-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16379,48 +16650,48 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1169 := z.EncBinary() - _ = yym1169 + yym1192 := z.EncBinary() + _ = yym1192 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1170 := !z.EncBinary() - yy2arr1170 := z.EncBasicHandle().StructToArray - var yyq1170 [18]bool - _, _, _ = yysep1170, yyq1170, yy2arr1170 - const yyr1170 bool = false - yyq1170[2] = len(x.Command) != 0 - yyq1170[3] = len(x.Args) != 0 - yyq1170[4] = x.WorkingDir != "" - yyq1170[5] = len(x.Ports) != 0 - yyq1170[6] = len(x.Env) != 0 - yyq1170[7] = true - yyq1170[8] = len(x.VolumeMounts) != 0 - yyq1170[9] = x.LivenessProbe != nil - yyq1170[10] = x.ReadinessProbe != nil - yyq1170[11] = x.Lifecycle != nil - yyq1170[12] = x.TerminationMessagePath != "" - yyq1170[14] = x.SecurityContext != nil - yyq1170[15] = x.Stdin != false - yyq1170[16] = x.StdinOnce != false - yyq1170[17] = x.TTY != false - var yynn1170 int - if yyr1170 || yy2arr1170 { + yysep1193 := !z.EncBinary() + yy2arr1193 := z.EncBasicHandle().StructToArray + var yyq1193 [18]bool + _, _, _ = yysep1193, yyq1193, yy2arr1193 + const yyr1193 bool = false + yyq1193[2] = len(x.Command) != 0 + yyq1193[3] = len(x.Args) != 0 + yyq1193[4] = x.WorkingDir != "" + yyq1193[5] = len(x.Ports) != 0 + yyq1193[6] = len(x.Env) != 0 + yyq1193[7] = true + yyq1193[8] = len(x.VolumeMounts) != 0 + yyq1193[9] = x.LivenessProbe != nil + yyq1193[10] = x.ReadinessProbe != nil + yyq1193[11] = x.Lifecycle != nil + yyq1193[12] = x.TerminationMessagePath != "" + yyq1193[14] = x.SecurityContext != nil + yyq1193[15] = x.Stdin != false + yyq1193[16] = x.StdinOnce != false + yyq1193[17] = x.TTY != false + var yynn1193 int + if yyr1193 || yy2arr1193 { r.EncodeArrayStart(18) } else { - yynn1170 = 3 - for _, b := range yyq1170 { + yynn1193 = 3 + for _, b := range yyq1193 { if b { - yynn1170++ + yynn1193++ } } - r.EncodeMapStart(yynn1170) - yynn1170 = 0 + r.EncodeMapStart(yynn1193) + yynn1193 = 0 } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1172 := z.EncBinary() - _ = yym1172 + yym1195 := z.EncBinary() + _ = yym1195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16429,17 +16700,17 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1173 := z.EncBinary() - _ = yym1173 + yym1196 := z.EncBinary() + _ = yym1196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1175 := z.EncBinary() - _ = yym1175 + yym1198 := z.EncBinary() + _ = yym1198 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -16448,21 +16719,21 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1176 := z.EncBinary() - _ = yym1176 + yym1199 := z.EncBinary() + _ = yym1199 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[2] { + if yyq1193[2] { if x.Command == nil { r.EncodeNil() } else { - yym1178 := z.EncBinary() - _ = yym1178 + yym1201 := z.EncBinary() + _ = yym1201 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -16472,15 +16743,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[2] { + if yyq1193[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1179 := z.EncBinary() - _ = yym1179 + yym1202 := z.EncBinary() + _ = yym1202 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -16488,14 +16759,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[3] { + if yyq1193[3] { if x.Args == nil { r.EncodeNil() } else { - yym1181 := z.EncBinary() - _ = yym1181 + yym1204 := z.EncBinary() + _ = yym1204 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -16505,15 +16776,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[3] { + if yyq1193[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1182 := z.EncBinary() - _ = yym1182 + yym1205 := z.EncBinary() + _ = yym1205 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -16521,11 +16792,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[4] { - yym1184 := z.EncBinary() - _ = yym1184 + if yyq1193[4] { + yym1207 := z.EncBinary() + _ = yym1207 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -16534,26 +16805,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1170[4] { + if yyq1193[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1185 := z.EncBinary() - _ = yym1185 + yym1208 := z.EncBinary() + _ = yym1208 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[5] { + if yyq1193[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1187 := z.EncBinary() - _ = yym1187 + yym1210 := z.EncBinary() + _ = yym1210 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -16563,15 +16834,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[5] { + if yyq1193[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1188 := z.EncBinary() - _ = yym1188 + yym1211 := z.EncBinary() + _ = yym1211 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -16579,14 +16850,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[6] { + if yyq1193[6] { if x.Env == nil { r.EncodeNil() } else { - yym1190 := z.EncBinary() - _ = yym1190 + yym1213 := z.EncBinary() + _ = yym1213 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -16596,15 +16867,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[6] { + if yyq1193[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1191 := z.EncBinary() - _ = yym1191 + yym1214 := z.EncBinary() + _ = yym1214 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -16612,31 +16883,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[7] { - yy1193 := &x.Resources - yy1193.CodecEncodeSelf(e) + if yyq1193[7] { + yy1216 := &x.Resources + yy1216.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1170[7] { + if yyq1193[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1194 := &x.Resources - yy1194.CodecEncodeSelf(e) + yy1217 := &x.Resources + yy1217.CodecEncodeSelf(e) } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[8] { + if yyq1193[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1196 := z.EncBinary() - _ = yym1196 + yym1219 := z.EncBinary() + _ = yym1219 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -16646,15 +16917,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[8] { + if yyq1193[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1197 := z.EncBinary() - _ = yym1197 + yym1220 := z.EncBinary() + _ = yym1220 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -16662,9 +16933,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[9] { + if yyq1193[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -16674,7 +16945,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[9] { + if yyq1193[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16685,9 +16956,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[10] { + if yyq1193[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -16697,7 +16968,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[10] { + if yyq1193[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16708,9 +16979,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[11] { + if yyq1193[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -16720,7 +16991,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[11] { + if yyq1193[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16731,11 +17002,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[12] { - yym1202 := z.EncBinary() - _ = yym1202 + if yyq1193[12] { + yym1225 := z.EncBinary() + _ = yym1225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -16744,19 +17015,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1170[12] { + if yyq1193[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1203 := z.EncBinary() - _ = yym1203 + yym1226 := z.EncBinary() + _ = yym1226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.ImagePullPolicy.CodecEncodeSelf(e) } else { @@ -16765,9 +17036,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[14] { + if yyq1193[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -16777,7 +17048,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1170[14] { + if yyq1193[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16788,11 +17059,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[15] { - yym1207 := z.EncBinary() - _ = yym1207 + if yyq1193[15] { + yym1230 := z.EncBinary() + _ = yym1230 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -16801,23 +17072,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1170[15] { + if yyq1193[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1208 := z.EncBinary() - _ = yym1208 + yym1231 := z.EncBinary() + _ = yym1231 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[16] { - yym1210 := z.EncBinary() - _ = yym1210 + if yyq1193[16] { + yym1233 := z.EncBinary() + _ = yym1233 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -16826,23 +17097,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1170[16] { + if yyq1193[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1211 := z.EncBinary() - _ = yym1211 + yym1234 := z.EncBinary() + _ = yym1234 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1170[17] { - yym1213 := z.EncBinary() - _ = yym1213 + if yyq1193[17] { + yym1236 := z.EncBinary() + _ = yym1236 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -16851,19 +17122,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1170[17] { + if yyq1193[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1214 := z.EncBinary() - _ = yym1214 + yym1237 := z.EncBinary() + _ = yym1237 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1170 || yy2arr1170 { + if yyr1193 || yy2arr1193 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16876,25 +17147,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1215 := z.DecBinary() - _ = yym1215 + yym1238 := z.DecBinary() + _ = yym1238 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1216 := r.ContainerType() - if yyct1216 == codecSelferValueTypeMap1234 { - yyl1216 := r.ReadMapStart() - if yyl1216 == 0 { + yyct1239 := r.ContainerType() + if yyct1239 == codecSelferValueTypeMap1234 { + yyl1239 := r.ReadMapStart() + if yyl1239 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1216, d) + x.codecDecodeSelfFromMap(yyl1239, d) } - } else if yyct1216 == codecSelferValueTypeArray1234 { - yyl1216 := r.ReadArrayStart() - if yyl1216 == 0 { + } else if yyct1239 == codecSelferValueTypeArray1234 { + yyl1239 := r.ReadArrayStart() + if yyl1239 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1216, d) + x.codecDecodeSelfFromArray(yyl1239, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16906,12 +17177,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1217Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1217Slc - var yyhl1217 bool = l >= 0 - for yyj1217 := 0; ; yyj1217++ { - if yyhl1217 { - if yyj1217 >= l { + var yys1240Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1240Slc + var yyhl1240 bool = l >= 0 + for yyj1240 := 0; ; yyj1240++ { + if yyhl1240 { + if yyj1240 >= l { break } } else { @@ -16920,10 +17191,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1217Slc = r.DecodeBytes(yys1217Slc, true, true) - yys1217 := string(yys1217Slc) + yys1240Slc = r.DecodeBytes(yys1240Slc, true, true) + yys1240 := string(yys1240Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1217 { + switch yys1240 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -16940,24 +17211,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1220 := &x.Command - yym1221 := z.DecBinary() - _ = yym1221 + yyv1243 := &x.Command + yym1244 := z.DecBinary() + _ = yym1244 if false { } else { - z.F.DecSliceStringX(yyv1220, false, d) + z.F.DecSliceStringX(yyv1243, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1222 := &x.Args - yym1223 := z.DecBinary() - _ = yym1223 + yyv1245 := &x.Args + yym1246 := z.DecBinary() + _ = yym1246 if false { } else { - z.F.DecSliceStringX(yyv1222, false, d) + z.F.DecSliceStringX(yyv1245, false, d) } } case "workingDir": @@ -16970,43 +17241,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1225 := &x.Ports - yym1226 := z.DecBinary() - _ = yym1226 + yyv1248 := &x.Ports + yym1249 := z.DecBinary() + _ = yym1249 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1225), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1248), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1227 := &x.Env - yym1228 := z.DecBinary() - _ = yym1228 + yyv1250 := &x.Env + yym1251 := z.DecBinary() + _ = yym1251 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1227), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1250), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1229 := &x.Resources - yyv1229.CodecDecodeSelf(d) + yyv1252 := &x.Resources + yyv1252.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1230 := &x.VolumeMounts - yym1231 := z.DecBinary() - _ = yym1231 + yyv1253 := &x.VolumeMounts + yym1254 := z.DecBinary() + _ = yym1254 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1230), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1253), d) } } case "livenessProbe": @@ -17084,9 +17355,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1217) - } // end switch yys1217 - } // end for yyj1217 + z.DecStructFieldNotFound(-1, yys1240) + } // end switch yys1240 + } // end for yyj1240 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17094,16 +17365,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1241 int - var yyb1241 bool - var yyhl1241 bool = l >= 0 - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + var yyj1264 int + var yyb1264 bool + var yyhl1264 bool = l >= 0 + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17113,13 +17384,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17129,13 +17400,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17143,21 +17414,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1244 := &x.Command - yym1245 := z.DecBinary() - _ = yym1245 + yyv1267 := &x.Command + yym1268 := z.DecBinary() + _ = yym1268 if false { } else { - z.F.DecSliceStringX(yyv1244, false, d) + z.F.DecSliceStringX(yyv1267, false, d) } } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17165,21 +17436,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1246 := &x.Args - yym1247 := z.DecBinary() - _ = yym1247 + yyv1269 := &x.Args + yym1270 := z.DecBinary() + _ = yym1270 if false { } else { - z.F.DecSliceStringX(yyv1246, false, d) + z.F.DecSliceStringX(yyv1269, false, d) } } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17189,13 +17460,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17203,21 +17474,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1249 := &x.Ports - yym1250 := z.DecBinary() - _ = yym1250 + yyv1272 := &x.Ports + yym1273 := z.DecBinary() + _ = yym1273 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1249), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1272), d) } } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17225,21 +17496,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1251 := &x.Env - yym1252 := z.DecBinary() - _ = yym1252 + yyv1274 := &x.Env + yym1275 := z.DecBinary() + _ = yym1275 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1251), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1274), d) } } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17247,16 +17518,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1253 := &x.Resources - yyv1253.CodecDecodeSelf(d) + yyv1276 := &x.Resources + yyv1276.CodecDecodeSelf(d) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17264,21 +17535,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1254 := &x.VolumeMounts - yym1255 := z.DecBinary() - _ = yym1255 + yyv1277 := &x.VolumeMounts + yym1278 := z.DecBinary() + _ = yym1278 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1254), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1277), d) } } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17293,13 +17564,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17314,13 +17585,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17335,13 +17606,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17351,13 +17622,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17367,13 +17638,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17388,13 +17659,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17404,13 +17675,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17420,13 +17691,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17437,17 +17708,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1241++ - if yyhl1241 { - yyb1241 = yyj1241 > l + yyj1264++ + if yyhl1264 { + yyb1264 = yyj1264 > l } else { - yyb1241 = r.CheckBreak() + yyb1264 = r.CheckBreak() } - if yyb1241 { + if yyb1264 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1241-1, "") + z.DecStructFieldNotFound(yyj1264-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17459,35 +17730,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1265 := z.EncBinary() - _ = yym1265 + yym1288 := z.EncBinary() + _ = yym1288 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1266 := !z.EncBinary() - yy2arr1266 := z.EncBasicHandle().StructToArray - var yyq1266 [3]bool - _, _, _ = yysep1266, yyq1266, yy2arr1266 - const yyr1266 bool = false - yyq1266[0] = x.Exec != nil - yyq1266[1] = x.HTTPGet != nil - yyq1266[2] = x.TCPSocket != nil - var yynn1266 int - if yyr1266 || yy2arr1266 { + yysep1289 := !z.EncBinary() + yy2arr1289 := z.EncBasicHandle().StructToArray + var yyq1289 [3]bool + _, _, _ = yysep1289, yyq1289, yy2arr1289 + const yyr1289 bool = false + yyq1289[0] = x.Exec != nil + yyq1289[1] = x.HTTPGet != nil + yyq1289[2] = x.TCPSocket != nil + var yynn1289 int + if yyr1289 || yy2arr1289 { r.EncodeArrayStart(3) } else { - yynn1266 = 0 - for _, b := range yyq1266 { + yynn1289 = 0 + for _, b := range yyq1289 { if b { - yynn1266++ + yynn1289++ } } - r.EncodeMapStart(yynn1266) - yynn1266 = 0 + r.EncodeMapStart(yynn1289) + yynn1289 = 0 } - if yyr1266 || yy2arr1266 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1266[0] { + if yyq1289[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -17497,7 +17768,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1266[0] { + if yyq1289[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17508,9 +17779,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1266 || yy2arr1266 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1266[1] { + if yyq1289[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -17520,7 +17791,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1266[1] { + if yyq1289[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17531,9 +17802,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1266 || yy2arr1266 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1266[2] { + if yyq1289[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -17543,7 +17814,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1266[2] { + if yyq1289[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17554,7 +17825,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1266 || yy2arr1266 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17567,25 +17838,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1270 := z.DecBinary() - _ = yym1270 + yym1293 := z.DecBinary() + _ = yym1293 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1271 := r.ContainerType() - if yyct1271 == codecSelferValueTypeMap1234 { - yyl1271 := r.ReadMapStart() - if yyl1271 == 0 { + yyct1294 := r.ContainerType() + if yyct1294 == codecSelferValueTypeMap1234 { + yyl1294 := r.ReadMapStart() + if yyl1294 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1271, d) + x.codecDecodeSelfFromMap(yyl1294, d) } - } else if yyct1271 == codecSelferValueTypeArray1234 { - yyl1271 := r.ReadArrayStart() - if yyl1271 == 0 { + } else if yyct1294 == codecSelferValueTypeArray1234 { + yyl1294 := r.ReadArrayStart() + if yyl1294 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1271, d) + x.codecDecodeSelfFromArray(yyl1294, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17597,12 +17868,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1272Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1272Slc - var yyhl1272 bool = l >= 0 - for yyj1272 := 0; ; yyj1272++ { - if yyhl1272 { - if yyj1272 >= l { + var yys1295Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1295Slc + var yyhl1295 bool = l >= 0 + for yyj1295 := 0; ; yyj1295++ { + if yyhl1295 { + if yyj1295 >= l { break } } else { @@ -17611,10 +17882,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1272Slc = r.DecodeBytes(yys1272Slc, true, true) - yys1272 := string(yys1272Slc) + yys1295Slc = r.DecodeBytes(yys1295Slc, true, true) + yys1295 := string(yys1295Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1272 { + switch yys1295 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -17649,9 +17920,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1272) - } // end switch yys1272 - } // end for yyj1272 + z.DecStructFieldNotFound(-1, yys1295) + } // end switch yys1295 + } // end for yyj1295 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17659,16 +17930,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1276 int - var yyb1276 bool - var yyhl1276 bool = l >= 0 - yyj1276++ - if yyhl1276 { - yyb1276 = yyj1276 > l + var yyj1299 int + var yyb1299 bool + var yyhl1299 bool = l >= 0 + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1276 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1276 { + if yyb1299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17683,13 +17954,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1276++ - if yyhl1276 { - yyb1276 = yyj1276 > l + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1276 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1276 { + if yyb1299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17704,13 +17975,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1276++ - if yyhl1276 { - yyb1276 = yyj1276 > l + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1276 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1276 { + if yyb1299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17726,17 +17997,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1276++ - if yyhl1276 { - yyb1276 = yyj1276 > l + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1276 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1276 { + if yyb1299 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1276-1, "") + z.DecStructFieldNotFound(yyj1299-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17748,34 +18019,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1280 := z.EncBinary() - _ = yym1280 + yym1303 := z.EncBinary() + _ = yym1303 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1281 := !z.EncBinary() - yy2arr1281 := z.EncBasicHandle().StructToArray - var yyq1281 [2]bool - _, _, _ = yysep1281, yyq1281, yy2arr1281 - const yyr1281 bool = false - yyq1281[0] = x.PostStart != nil - yyq1281[1] = x.PreStop != nil - var yynn1281 int - if yyr1281 || yy2arr1281 { + yysep1304 := !z.EncBinary() + yy2arr1304 := z.EncBasicHandle().StructToArray + var yyq1304 [2]bool + _, _, _ = yysep1304, yyq1304, yy2arr1304 + const yyr1304 bool = false + yyq1304[0] = x.PostStart != nil + yyq1304[1] = x.PreStop != nil + var yynn1304 int + if yyr1304 || yy2arr1304 { r.EncodeArrayStart(2) } else { - yynn1281 = 0 - for _, b := range yyq1281 { + yynn1304 = 0 + for _, b := range yyq1304 { if b { - yynn1281++ + yynn1304++ } } - r.EncodeMapStart(yynn1281) - yynn1281 = 0 + r.EncodeMapStart(yynn1304) + yynn1304 = 0 } - if yyr1281 || yy2arr1281 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1281[0] { + if yyq1304[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -17785,7 +18056,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1281[0] { + if yyq1304[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17796,9 +18067,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1281 || yy2arr1281 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1281[1] { + if yyq1304[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -17808,7 +18079,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1281[1] { + if yyq1304[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17819,7 +18090,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1281 || yy2arr1281 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17832,25 +18103,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1284 := z.DecBinary() - _ = yym1284 + yym1307 := z.DecBinary() + _ = yym1307 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1285 := r.ContainerType() - if yyct1285 == codecSelferValueTypeMap1234 { - yyl1285 := r.ReadMapStart() - if yyl1285 == 0 { + yyct1308 := r.ContainerType() + if yyct1308 == codecSelferValueTypeMap1234 { + yyl1308 := r.ReadMapStart() + if yyl1308 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1285, d) + x.codecDecodeSelfFromMap(yyl1308, d) } - } else if yyct1285 == codecSelferValueTypeArray1234 { - yyl1285 := r.ReadArrayStart() - if yyl1285 == 0 { + } else if yyct1308 == codecSelferValueTypeArray1234 { + yyl1308 := r.ReadArrayStart() + if yyl1308 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1285, d) + x.codecDecodeSelfFromArray(yyl1308, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17862,12 +18133,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1286Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1286Slc - var yyhl1286 bool = l >= 0 - for yyj1286 := 0; ; yyj1286++ { - if yyhl1286 { - if yyj1286 >= l { + var yys1309Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1309Slc + var yyhl1309 bool = l >= 0 + for yyj1309 := 0; ; yyj1309++ { + if yyhl1309 { + if yyj1309 >= l { break } } else { @@ -17876,10 +18147,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1286Slc = r.DecodeBytes(yys1286Slc, true, true) - yys1286 := string(yys1286Slc) + yys1309Slc = r.DecodeBytes(yys1309Slc, true, true) + yys1309 := string(yys1309Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1286 { + switch yys1309 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -17903,9 +18174,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1286) - } // end switch yys1286 - } // end for yyj1286 + z.DecStructFieldNotFound(-1, yys1309) + } // end switch yys1309 + } // end for yyj1309 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17913,16 +18184,16 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1289 int - var yyb1289 bool - var yyhl1289 bool = l >= 0 - yyj1289++ - if yyhl1289 { - yyb1289 = yyj1289 > l + var yyj1312 int + var yyb1312 bool + var yyhl1312 bool = l >= 0 + yyj1312++ + if yyhl1312 { + yyb1312 = yyj1312 > l } else { - yyb1289 = r.CheckBreak() + yyb1312 = r.CheckBreak() } - if yyb1289 { + if yyb1312 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17937,13 +18208,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1289++ - if yyhl1289 { - yyb1289 = yyj1289 > l + yyj1312++ + if yyhl1312 { + yyb1312 = yyj1312 > l } else { - yyb1289 = r.CheckBreak() + yyb1312 = r.CheckBreak() } - if yyb1289 { + if yyb1312 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17959,17 +18230,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1289++ - if yyhl1289 { - yyb1289 = yyj1289 > l + yyj1312++ + if yyhl1312 { + yyb1312 = yyj1312 > l } else { - yyb1289 = r.CheckBreak() + yyb1312 = r.CheckBreak() } - if yyb1289 { + if yyb1312 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1289-1, "") + z.DecStructFieldNotFound(yyj1312-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17978,8 +18249,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1292 := z.EncBinary() - _ = yym1292 + yym1315 := z.EncBinary() + _ = yym1315 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17991,8 +18262,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1293 := z.DecBinary() - _ = yym1293 + yym1316 := z.DecBinary() + _ = yym1316 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18007,36 +18278,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1294 := z.EncBinary() - _ = yym1294 + yym1317 := z.EncBinary() + _ = yym1317 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1295 := !z.EncBinary() - yy2arr1295 := z.EncBasicHandle().StructToArray - var yyq1295 [2]bool - _, _, _ = yysep1295, yyq1295, yy2arr1295 - const yyr1295 bool = false - yyq1295[0] = x.Reason != "" - yyq1295[1] = x.Message != "" - var yynn1295 int - if yyr1295 || yy2arr1295 { + yysep1318 := !z.EncBinary() + yy2arr1318 := z.EncBasicHandle().StructToArray + var yyq1318 [2]bool + _, _, _ = yysep1318, yyq1318, yy2arr1318 + const yyr1318 bool = false + yyq1318[0] = x.Reason != "" + yyq1318[1] = x.Message != "" + var yynn1318 int + if yyr1318 || yy2arr1318 { r.EncodeArrayStart(2) } else { - yynn1295 = 0 - for _, b := range yyq1295 { + yynn1318 = 0 + for _, b := range yyq1318 { if b { - yynn1295++ + yynn1318++ } } - r.EncodeMapStart(yynn1295) - yynn1295 = 0 + r.EncodeMapStart(yynn1318) + yynn1318 = 0 } - if yyr1295 || yy2arr1295 { + if yyr1318 || yy2arr1318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1295[0] { - yym1297 := z.EncBinary() - _ = yym1297 + if yyq1318[0] { + yym1320 := z.EncBinary() + _ = yym1320 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -18045,23 +18316,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1295[0] { + if yyq1318[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1298 := z.EncBinary() - _ = yym1298 + yym1321 := z.EncBinary() + _ = yym1321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1295 || yy2arr1295 { + if yyr1318 || yy2arr1318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1295[1] { - yym1300 := z.EncBinary() - _ = yym1300 + if yyq1318[1] { + yym1323 := z.EncBinary() + _ = yym1323 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -18070,19 +18341,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1295[1] { + if yyq1318[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1301 := z.EncBinary() - _ = yym1301 + yym1324 := z.EncBinary() + _ = yym1324 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1295 || yy2arr1295 { + if yyr1318 || yy2arr1318 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18095,25 +18366,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1302 := z.DecBinary() - _ = yym1302 + yym1325 := z.DecBinary() + _ = yym1325 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1303 := r.ContainerType() - if yyct1303 == codecSelferValueTypeMap1234 { - yyl1303 := r.ReadMapStart() - if yyl1303 == 0 { + yyct1326 := r.ContainerType() + if yyct1326 == codecSelferValueTypeMap1234 { + yyl1326 := r.ReadMapStart() + if yyl1326 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1303, d) + x.codecDecodeSelfFromMap(yyl1326, d) } - } else if yyct1303 == codecSelferValueTypeArray1234 { - yyl1303 := r.ReadArrayStart() - if yyl1303 == 0 { + } else if yyct1326 == codecSelferValueTypeArray1234 { + yyl1326 := r.ReadArrayStart() + if yyl1326 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1303, d) + x.codecDecodeSelfFromArray(yyl1326, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18125,12 +18396,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1304Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1304Slc - var yyhl1304 bool = l >= 0 - for yyj1304 := 0; ; yyj1304++ { - if yyhl1304 { - if yyj1304 >= l { + var yys1327Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1327Slc + var yyhl1327 bool = l >= 0 + for yyj1327 := 0; ; yyj1327++ { + if yyhl1327 { + if yyj1327 >= l { break } } else { @@ -18139,10 +18410,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1304Slc = r.DecodeBytes(yys1304Slc, true, true) - yys1304 := string(yys1304Slc) + yys1327Slc = r.DecodeBytes(yys1327Slc, true, true) + yys1327 := string(yys1327Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1304 { + switch yys1327 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -18156,9 +18427,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1304) - } // end switch yys1304 - } // end for yyj1304 + z.DecStructFieldNotFound(-1, yys1327) + } // end switch yys1327 + } // end for yyj1327 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18166,16 +18437,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1307 int - var yyb1307 bool - var yyhl1307 bool = l >= 0 - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + var yyj1330 int + var yyb1330 bool + var yyhl1330 bool = l >= 0 + yyj1330++ + if yyhl1330 { + yyb1330 = yyj1330 > l } else { - yyb1307 = r.CheckBreak() + yyb1330 = r.CheckBreak() } - if yyb1307 { + if yyb1330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18185,13 +18456,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1330++ + if yyhl1330 { + yyb1330 = yyj1330 > l } else { - yyb1307 = r.CheckBreak() + yyb1330 = r.CheckBreak() } - if yyb1307 { + if yyb1330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18202,17 +18473,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1330++ + if yyhl1330 { + yyb1330 = yyj1330 > l } else { - yyb1307 = r.CheckBreak() + yyb1330 = r.CheckBreak() } - if yyb1307 { + if yyb1330 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1307-1, "") + z.DecStructFieldNotFound(yyj1330-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18224,68 +18495,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1310 := z.EncBinary() - _ = yym1310 + yym1333 := z.EncBinary() + _ = yym1333 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1311 := !z.EncBinary() - yy2arr1311 := z.EncBasicHandle().StructToArray - var yyq1311 [1]bool - _, _, _ = yysep1311, yyq1311, yy2arr1311 - const yyr1311 bool = false - yyq1311[0] = true - var yynn1311 int - if yyr1311 || yy2arr1311 { + yysep1334 := !z.EncBinary() + yy2arr1334 := z.EncBasicHandle().StructToArray + var yyq1334 [1]bool + _, _, _ = yysep1334, yyq1334, yy2arr1334 + const yyr1334 bool = false + yyq1334[0] = true + var yynn1334 int + if yyr1334 || yy2arr1334 { r.EncodeArrayStart(1) } else { - yynn1311 = 0 - for _, b := range yyq1311 { + yynn1334 = 0 + for _, b := range yyq1334 { if b { - yynn1311++ + yynn1334++ } } - r.EncodeMapStart(yynn1311) - yynn1311 = 0 + r.EncodeMapStart(yynn1334) + yynn1334 = 0 } - if yyr1311 || yy2arr1311 { + if yyr1334 || yy2arr1334 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1311[0] { - yy1313 := &x.StartedAt - yym1314 := z.EncBinary() - _ = yym1314 + if yyq1334[0] { + yy1336 := &x.StartedAt + yym1337 := z.EncBinary() + _ = yym1337 if false { - } else if z.HasExtensions() && z.EncExt(yy1313) { - } else if yym1314 { - z.EncBinaryMarshal(yy1313) - } else if !yym1314 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1313) + } else if z.HasExtensions() && z.EncExt(yy1336) { + } else if yym1337 { + z.EncBinaryMarshal(yy1336) + } else if !yym1337 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1336) } else { - z.EncFallback(yy1313) + z.EncFallback(yy1336) } } else { r.EncodeNil() } } else { - if yyq1311[0] { + if yyq1334[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1315 := &x.StartedAt - yym1316 := z.EncBinary() - _ = yym1316 + yy1338 := &x.StartedAt + yym1339 := z.EncBinary() + _ = yym1339 if false { - } else if z.HasExtensions() && z.EncExt(yy1315) { - } else if yym1316 { - z.EncBinaryMarshal(yy1315) - } else if !yym1316 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1315) + } else if z.HasExtensions() && z.EncExt(yy1338) { + } else if yym1339 { + z.EncBinaryMarshal(yy1338) + } else if !yym1339 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1338) } else { - z.EncFallback(yy1315) + z.EncFallback(yy1338) } } } - if yyr1311 || yy2arr1311 { + if yyr1334 || yy2arr1334 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18298,25 +18569,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1317 := z.DecBinary() - _ = yym1317 + yym1340 := z.DecBinary() + _ = yym1340 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1318 := r.ContainerType() - if yyct1318 == codecSelferValueTypeMap1234 { - yyl1318 := r.ReadMapStart() - if yyl1318 == 0 { + yyct1341 := r.ContainerType() + if yyct1341 == codecSelferValueTypeMap1234 { + yyl1341 := r.ReadMapStart() + if yyl1341 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1318, d) + x.codecDecodeSelfFromMap(yyl1341, d) } - } else if yyct1318 == codecSelferValueTypeArray1234 { - yyl1318 := r.ReadArrayStart() - if yyl1318 == 0 { + } else if yyct1341 == codecSelferValueTypeArray1234 { + yyl1341 := r.ReadArrayStart() + if yyl1341 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1318, d) + x.codecDecodeSelfFromArray(yyl1341, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18328,12 +18599,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1319Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1319Slc - var yyhl1319 bool = l >= 0 - for yyj1319 := 0; ; yyj1319++ { - if yyhl1319 { - if yyj1319 >= l { + var yys1342Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1342Slc + var yyhl1342 bool = l >= 0 + for yyj1342 := 0; ; yyj1342++ { + if yyhl1342 { + if yyj1342 >= l { break } } else { @@ -18342,31 +18613,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1319Slc = r.DecodeBytes(yys1319Slc, true, true) - yys1319 := string(yys1319Slc) + yys1342Slc = r.DecodeBytes(yys1342Slc, true, true) + yys1342 := string(yys1342Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1319 { + switch yys1342 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1320 := &x.StartedAt - yym1321 := z.DecBinary() - _ = yym1321 + yyv1343 := &x.StartedAt + yym1344 := z.DecBinary() + _ = yym1344 if false { - } else if z.HasExtensions() && z.DecExt(yyv1320) { - } else if yym1321 { - z.DecBinaryUnmarshal(yyv1320) - } else if !yym1321 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1320) + } else if z.HasExtensions() && z.DecExt(yyv1343) { + } else if yym1344 { + z.DecBinaryUnmarshal(yyv1343) + } else if !yym1344 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1343) } else { - z.DecFallback(yyv1320, false) + z.DecFallback(yyv1343, false) } } default: - z.DecStructFieldNotFound(-1, yys1319) - } // end switch yys1319 - } // end for yyj1319 + z.DecStructFieldNotFound(-1, yys1342) + } // end switch yys1342 + } // end for yyj1342 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18374,16 +18645,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1322 int - var yyb1322 bool - var yyhl1322 bool = l >= 0 - yyj1322++ - if yyhl1322 { - yyb1322 = yyj1322 > l + var yyj1345 int + var yyb1345 bool + var yyhl1345 bool = l >= 0 + yyj1345++ + if yyhl1345 { + yyb1345 = yyj1345 > l } else { - yyb1322 = r.CheckBreak() + yyb1345 = r.CheckBreak() } - if yyb1322 { + if yyb1345 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18391,31 +18662,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1323 := &x.StartedAt - yym1324 := z.DecBinary() - _ = yym1324 + yyv1346 := &x.StartedAt + yym1347 := z.DecBinary() + _ = yym1347 if false { - } else if z.HasExtensions() && z.DecExt(yyv1323) { - } else if yym1324 { - z.DecBinaryUnmarshal(yyv1323) - } else if !yym1324 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1323) + } else if z.HasExtensions() && z.DecExt(yyv1346) { + } else if yym1347 { + z.DecBinaryUnmarshal(yyv1346) + } else if !yym1347 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1346) } else { - z.DecFallback(yyv1323, false) + z.DecFallback(yyv1346, false) } } for { - yyj1322++ - if yyhl1322 { - yyb1322 = yyj1322 > l + yyj1345++ + if yyhl1345 { + yyb1345 = yyj1345 > l } else { - yyb1322 = r.CheckBreak() + yyb1345 = r.CheckBreak() } - if yyb1322 { + if yyb1345 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1322-1, "") + z.DecStructFieldNotFound(yyj1345-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18427,39 +18698,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1325 := z.EncBinary() - _ = yym1325 + yym1348 := z.EncBinary() + _ = yym1348 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1326 := !z.EncBinary() - yy2arr1326 := z.EncBasicHandle().StructToArray - var yyq1326 [7]bool - _, _, _ = yysep1326, yyq1326, yy2arr1326 - const yyr1326 bool = false - yyq1326[1] = x.Signal != 0 - yyq1326[2] = x.Reason != "" - yyq1326[3] = x.Message != "" - yyq1326[4] = true - yyq1326[5] = true - yyq1326[6] = x.ContainerID != "" - var yynn1326 int - if yyr1326 || yy2arr1326 { + yysep1349 := !z.EncBinary() + yy2arr1349 := z.EncBasicHandle().StructToArray + var yyq1349 [7]bool + _, _, _ = yysep1349, yyq1349, yy2arr1349 + const yyr1349 bool = false + yyq1349[1] = x.Signal != 0 + yyq1349[2] = x.Reason != "" + yyq1349[3] = x.Message != "" + yyq1349[4] = true + yyq1349[5] = true + yyq1349[6] = x.ContainerID != "" + var yynn1349 int + if yyr1349 || yy2arr1349 { r.EncodeArrayStart(7) } else { - yynn1326 = 1 - for _, b := range yyq1326 { + yynn1349 = 1 + for _, b := range yyq1349 { if b { - yynn1326++ + yynn1349++ } } - r.EncodeMapStart(yynn1326) - yynn1326 = 0 + r.EncodeMapStart(yynn1349) + yynn1349 = 0 } - if yyr1326 || yy2arr1326 { + if yyr1349 || yy2arr1349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1328 := z.EncBinary() - _ = yym1328 + yym1351 := z.EncBinary() + _ = yym1351 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -18468,18 +18739,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1329 := z.EncBinary() - _ = yym1329 + yym1352 := z.EncBinary() + _ = yym1352 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1326 || yy2arr1326 { + if yyr1349 || yy2arr1349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[1] { - yym1331 := z.EncBinary() - _ = yym1331 + if yyq1349[1] { + yym1354 := z.EncBinary() + _ = yym1354 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -18488,23 +18759,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1326[1] { + if yyq1349[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1332 := z.EncBinary() - _ = yym1332 + yym1355 := z.EncBinary() + _ = yym1355 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1326 || yy2arr1326 { + if yyr1349 || yy2arr1349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[2] { - yym1334 := z.EncBinary() - _ = yym1334 + if yyq1349[2] { + yym1357 := z.EncBinary() + _ = yym1357 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -18513,23 +18784,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1326[2] { + if yyq1349[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1335 := z.EncBinary() - _ = yym1335 + yym1358 := z.EncBinary() + _ = yym1358 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1326 || yy2arr1326 { + if yyr1349 || yy2arr1349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[3] { - yym1337 := z.EncBinary() - _ = yym1337 + if yyq1349[3] { + yym1360 := z.EncBinary() + _ = yym1360 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -18538,97 +18809,97 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1326[3] { + if yyq1349[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1338 := z.EncBinary() - _ = yym1338 + yym1361 := z.EncBinary() + _ = yym1361 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1326 || yy2arr1326 { + if yyr1349 || yy2arr1349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[4] { - yy1340 := &x.StartedAt - yym1341 := z.EncBinary() - _ = yym1341 + if yyq1349[4] { + yy1363 := &x.StartedAt + yym1364 := z.EncBinary() + _ = yym1364 if false { - } else if z.HasExtensions() && z.EncExt(yy1340) { - } else if yym1341 { - z.EncBinaryMarshal(yy1340) - } else if !yym1341 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1340) + } else if z.HasExtensions() && z.EncExt(yy1363) { + } else if yym1364 { + z.EncBinaryMarshal(yy1363) + } else if !yym1364 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1363) } else { - z.EncFallback(yy1340) + z.EncFallback(yy1363) } } else { r.EncodeNil() } } else { - if yyq1326[4] { + if yyq1349[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1342 := &x.StartedAt - yym1343 := z.EncBinary() - _ = yym1343 + yy1365 := &x.StartedAt + yym1366 := z.EncBinary() + _ = yym1366 if false { - } else if z.HasExtensions() && z.EncExt(yy1342) { - } else if yym1343 { - z.EncBinaryMarshal(yy1342) - } else if !yym1343 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1342) + } else if z.HasExtensions() && z.EncExt(yy1365) { + } else if yym1366 { + z.EncBinaryMarshal(yy1365) + } else if !yym1366 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1365) } else { - z.EncFallback(yy1342) + z.EncFallback(yy1365) } } } - if yyr1326 || yy2arr1326 { + if yyr1349 || yy2arr1349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[5] { - yy1345 := &x.FinishedAt - yym1346 := z.EncBinary() - _ = yym1346 + if yyq1349[5] { + yy1368 := &x.FinishedAt + yym1369 := z.EncBinary() + _ = yym1369 if false { - } else if z.HasExtensions() && z.EncExt(yy1345) { - } else if yym1346 { - z.EncBinaryMarshal(yy1345) - } else if !yym1346 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1345) + } else if z.HasExtensions() && z.EncExt(yy1368) { + } else if yym1369 { + z.EncBinaryMarshal(yy1368) + } else if !yym1369 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1368) } else { - z.EncFallback(yy1345) + z.EncFallback(yy1368) } } else { r.EncodeNil() } } else { - if yyq1326[5] { + if yyq1349[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1347 := &x.FinishedAt - yym1348 := z.EncBinary() - _ = yym1348 + yy1370 := &x.FinishedAt + yym1371 := z.EncBinary() + _ = yym1371 if false { - } else if z.HasExtensions() && z.EncExt(yy1347) { - } else if yym1348 { - z.EncBinaryMarshal(yy1347) - } else if !yym1348 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1347) + } else if z.HasExtensions() && z.EncExt(yy1370) { + } else if yym1371 { + z.EncBinaryMarshal(yy1370) + } else if !yym1371 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1370) } else { - z.EncFallback(yy1347) + z.EncFallback(yy1370) } } } - if yyr1326 || yy2arr1326 { + if yyr1349 || yy2arr1349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[6] { - yym1350 := z.EncBinary() - _ = yym1350 + if yyq1349[6] { + yym1373 := z.EncBinary() + _ = yym1373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -18637,19 +18908,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1326[6] { + if yyq1349[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1351 := z.EncBinary() - _ = yym1351 + yym1374 := z.EncBinary() + _ = yym1374 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1326 || yy2arr1326 { + if yyr1349 || yy2arr1349 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18662,25 +18933,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1352 := z.DecBinary() - _ = yym1352 + yym1375 := z.DecBinary() + _ = yym1375 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1353 := r.ContainerType() - if yyct1353 == codecSelferValueTypeMap1234 { - yyl1353 := r.ReadMapStart() - if yyl1353 == 0 { + yyct1376 := r.ContainerType() + if yyct1376 == codecSelferValueTypeMap1234 { + yyl1376 := r.ReadMapStart() + if yyl1376 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1353, d) + x.codecDecodeSelfFromMap(yyl1376, d) } - } else if yyct1353 == codecSelferValueTypeArray1234 { - yyl1353 := r.ReadArrayStart() - if yyl1353 == 0 { + } else if yyct1376 == codecSelferValueTypeArray1234 { + yyl1376 := r.ReadArrayStart() + if yyl1376 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1353, d) + x.codecDecodeSelfFromArray(yyl1376, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18692,12 +18963,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1354Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1354Slc - var yyhl1354 bool = l >= 0 - for yyj1354 := 0; ; yyj1354++ { - if yyhl1354 { - if yyj1354 >= l { + var yys1377Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1377Slc + var yyhl1377 bool = l >= 0 + for yyj1377 := 0; ; yyj1377++ { + if yyhl1377 { + if yyj1377 >= l { break } } else { @@ -18706,10 +18977,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1354Slc = r.DecodeBytes(yys1354Slc, true, true) - yys1354 := string(yys1354Slc) + yys1377Slc = r.DecodeBytes(yys1377Slc, true, true) + yys1377 := string(yys1377Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1354 { + switch yys1377 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -18738,34 +19009,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1359 := &x.StartedAt - yym1360 := z.DecBinary() - _ = yym1360 + yyv1382 := &x.StartedAt + yym1383 := z.DecBinary() + _ = yym1383 if false { - } else if z.HasExtensions() && z.DecExt(yyv1359) { - } else if yym1360 { - z.DecBinaryUnmarshal(yyv1359) - } else if !yym1360 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1359) + } else if z.HasExtensions() && z.DecExt(yyv1382) { + } else if yym1383 { + z.DecBinaryUnmarshal(yyv1382) + } else if !yym1383 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1382) } else { - z.DecFallback(yyv1359, false) + z.DecFallback(yyv1382, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1361 := &x.FinishedAt - yym1362 := z.DecBinary() - _ = yym1362 + yyv1384 := &x.FinishedAt + yym1385 := z.DecBinary() + _ = yym1385 if false { - } else if z.HasExtensions() && z.DecExt(yyv1361) { - } else if yym1362 { - z.DecBinaryUnmarshal(yyv1361) - } else if !yym1362 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1361) + } else if z.HasExtensions() && z.DecExt(yyv1384) { + } else if yym1385 { + z.DecBinaryUnmarshal(yyv1384) + } else if !yym1385 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1384) } else { - z.DecFallback(yyv1361, false) + z.DecFallback(yyv1384, false) } } case "containerID": @@ -18775,9 +19046,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1354) - } // end switch yys1354 - } // end for yyj1354 + z.DecStructFieldNotFound(-1, yys1377) + } // end switch yys1377 + } // end for yyj1377 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18785,16 +19056,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1364 int - var yyb1364 bool - var yyhl1364 bool = l >= 0 - yyj1364++ - if yyhl1364 { - yyb1364 = yyj1364 > l + var yyj1387 int + var yyb1387 bool + var yyhl1387 bool = l >= 0 + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1364 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1364 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18804,13 +19075,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1364++ - if yyhl1364 { - yyb1364 = yyj1364 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1364 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1364 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18820,13 +19091,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1364++ - if yyhl1364 { - yyb1364 = yyj1364 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1364 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1364 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18836,13 +19107,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1364++ - if yyhl1364 { - yyb1364 = yyj1364 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1364 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1364 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18852,13 +19123,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1364++ - if yyhl1364 { - yyb1364 = yyj1364 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1364 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1364 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18866,26 +19137,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1369 := &x.StartedAt - yym1370 := z.DecBinary() - _ = yym1370 + yyv1392 := &x.StartedAt + yym1393 := z.DecBinary() + _ = yym1393 if false { - } else if z.HasExtensions() && z.DecExt(yyv1369) { - } else if yym1370 { - z.DecBinaryUnmarshal(yyv1369) - } else if !yym1370 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1369) + } else if z.HasExtensions() && z.DecExt(yyv1392) { + } else if yym1393 { + z.DecBinaryUnmarshal(yyv1392) + } else if !yym1393 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1392) } else { - z.DecFallback(yyv1369, false) + z.DecFallback(yyv1392, false) } } - yyj1364++ - if yyhl1364 { - yyb1364 = yyj1364 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1364 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1364 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18893,26 +19164,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1371 := &x.FinishedAt - yym1372 := z.DecBinary() - _ = yym1372 + yyv1394 := &x.FinishedAt + yym1395 := z.DecBinary() + _ = yym1395 if false { - } else if z.HasExtensions() && z.DecExt(yyv1371) { - } else if yym1372 { - z.DecBinaryUnmarshal(yyv1371) - } else if !yym1372 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1371) + } else if z.HasExtensions() && z.DecExt(yyv1394) { + } else if yym1395 { + z.DecBinaryUnmarshal(yyv1394) + } else if !yym1395 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1394) } else { - z.DecFallback(yyv1371, false) + z.DecFallback(yyv1394, false) } } - yyj1364++ - if yyhl1364 { - yyb1364 = yyj1364 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1364 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1364 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18923,17 +19194,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1364++ - if yyhl1364 { - yyb1364 = yyj1364 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1364 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1364 { + if yyb1387 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1364-1, "") + z.DecStructFieldNotFound(yyj1387-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18945,35 +19216,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1374 := z.EncBinary() - _ = yym1374 + yym1397 := z.EncBinary() + _ = yym1397 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1375 := !z.EncBinary() - yy2arr1375 := z.EncBasicHandle().StructToArray - var yyq1375 [3]bool - _, _, _ = yysep1375, yyq1375, yy2arr1375 - const yyr1375 bool = false - yyq1375[0] = x.Waiting != nil - yyq1375[1] = x.Running != nil - yyq1375[2] = x.Terminated != nil - var yynn1375 int - if yyr1375 || yy2arr1375 { + yysep1398 := !z.EncBinary() + yy2arr1398 := z.EncBasicHandle().StructToArray + var yyq1398 [3]bool + _, _, _ = yysep1398, yyq1398, yy2arr1398 + const yyr1398 bool = false + yyq1398[0] = x.Waiting != nil + yyq1398[1] = x.Running != nil + yyq1398[2] = x.Terminated != nil + var yynn1398 int + if yyr1398 || yy2arr1398 { r.EncodeArrayStart(3) } else { - yynn1375 = 0 - for _, b := range yyq1375 { + yynn1398 = 0 + for _, b := range yyq1398 { if b { - yynn1375++ + yynn1398++ } } - r.EncodeMapStart(yynn1375) - yynn1375 = 0 + r.EncodeMapStart(yynn1398) + yynn1398 = 0 } - if yyr1375 || yy2arr1375 { + if yyr1398 || yy2arr1398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1375[0] { + if yyq1398[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -18983,7 +19254,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1375[0] { + if yyq1398[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18994,9 +19265,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1375 || yy2arr1375 { + if yyr1398 || yy2arr1398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1375[1] { + if yyq1398[1] { if x.Running == nil { r.EncodeNil() } else { @@ -19006,7 +19277,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1375[1] { + if yyq1398[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19017,9 +19288,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1375 || yy2arr1375 { + if yyr1398 || yy2arr1398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1375[2] { + if yyq1398[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -19029,7 +19300,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1375[2] { + if yyq1398[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19040,7 +19311,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1375 || yy2arr1375 { + if yyr1398 || yy2arr1398 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19053,25 +19324,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1379 := z.DecBinary() - _ = yym1379 + yym1402 := z.DecBinary() + _ = yym1402 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1380 := r.ContainerType() - if yyct1380 == codecSelferValueTypeMap1234 { - yyl1380 := r.ReadMapStart() - if yyl1380 == 0 { + yyct1403 := r.ContainerType() + if yyct1403 == codecSelferValueTypeMap1234 { + yyl1403 := r.ReadMapStart() + if yyl1403 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1380, d) + x.codecDecodeSelfFromMap(yyl1403, d) } - } else if yyct1380 == codecSelferValueTypeArray1234 { - yyl1380 := r.ReadArrayStart() - if yyl1380 == 0 { + } else if yyct1403 == codecSelferValueTypeArray1234 { + yyl1403 := r.ReadArrayStart() + if yyl1403 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1380, d) + x.codecDecodeSelfFromArray(yyl1403, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19083,12 +19354,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1381Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1381Slc - var yyhl1381 bool = l >= 0 - for yyj1381 := 0; ; yyj1381++ { - if yyhl1381 { - if yyj1381 >= l { + var yys1404Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1404Slc + var yyhl1404 bool = l >= 0 + for yyj1404 := 0; ; yyj1404++ { + if yyhl1404 { + if yyj1404 >= l { break } } else { @@ -19097,10 +19368,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1381Slc = r.DecodeBytes(yys1381Slc, true, true) - yys1381 := string(yys1381Slc) + yys1404Slc = r.DecodeBytes(yys1404Slc, true, true) + yys1404 := string(yys1404Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1381 { + switch yys1404 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -19135,9 +19406,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1381) - } // end switch yys1381 - } // end for yyj1381 + z.DecStructFieldNotFound(-1, yys1404) + } // end switch yys1404 + } // end for yyj1404 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19145,16 +19416,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1385 int - var yyb1385 bool - var yyhl1385 bool = l >= 0 - yyj1385++ - if yyhl1385 { - yyb1385 = yyj1385 > l + var yyj1408 int + var yyb1408 bool + var yyhl1408 bool = l >= 0 + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1385 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1385 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19169,13 +19440,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1385++ - if yyhl1385 { - yyb1385 = yyj1385 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1385 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1385 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19190,13 +19461,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1385++ - if yyhl1385 { - yyb1385 = yyj1385 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1385 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1385 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19212,17 +19483,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1385++ - if yyhl1385 { - yyb1385 = yyj1385 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1385 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1385 { + if yyb1408 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1385-1, "") + z.DecStructFieldNotFound(yyj1408-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19234,36 +19505,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1389 := z.EncBinary() - _ = yym1389 + yym1412 := z.EncBinary() + _ = yym1412 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1390 := !z.EncBinary() - yy2arr1390 := z.EncBasicHandle().StructToArray - var yyq1390 [8]bool - _, _, _ = yysep1390, yyq1390, yy2arr1390 - const yyr1390 bool = false - yyq1390[1] = true - yyq1390[2] = true - yyq1390[7] = x.ContainerID != "" - var yynn1390 int - if yyr1390 || yy2arr1390 { + yysep1413 := !z.EncBinary() + yy2arr1413 := z.EncBasicHandle().StructToArray + var yyq1413 [8]bool + _, _, _ = yysep1413, yyq1413, yy2arr1413 + const yyr1413 bool = false + yyq1413[1] = true + yyq1413[2] = true + yyq1413[7] = x.ContainerID != "" + var yynn1413 int + if yyr1413 || yy2arr1413 { r.EncodeArrayStart(8) } else { - yynn1390 = 5 - for _, b := range yyq1390 { + yynn1413 = 5 + for _, b := range yyq1413 { if b { - yynn1390++ + yynn1413++ } } - r.EncodeMapStart(yynn1390) - yynn1390 = 0 + r.EncodeMapStart(yynn1413) + yynn1413 = 0 } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1392 := z.EncBinary() - _ = yym1392 + yym1415 := z.EncBinary() + _ = yym1415 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -19272,51 +19543,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1393 := z.EncBinary() - _ = yym1393 + yym1416 := z.EncBinary() + _ = yym1416 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1390[1] { - yy1395 := &x.State - yy1395.CodecEncodeSelf(e) + if yyq1413[1] { + yy1418 := &x.State + yy1418.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1390[1] { + if yyq1413[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1396 := &x.State - yy1396.CodecEncodeSelf(e) + yy1419 := &x.State + yy1419.CodecEncodeSelf(e) } } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1390[2] { - yy1398 := &x.LastTerminationState - yy1398.CodecEncodeSelf(e) + if yyq1413[2] { + yy1421 := &x.LastTerminationState + yy1421.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1390[2] { + if yyq1413[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1399 := &x.LastTerminationState - yy1399.CodecEncodeSelf(e) + yy1422 := &x.LastTerminationState + yy1422.CodecEncodeSelf(e) } } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1401 := z.EncBinary() - _ = yym1401 + yym1424 := z.EncBinary() + _ = yym1424 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -19325,17 +19596,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1402 := z.EncBinary() - _ = yym1402 + yym1425 := z.EncBinary() + _ = yym1425 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1404 := z.EncBinary() - _ = yym1404 + yym1427 := z.EncBinary() + _ = yym1427 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -19344,17 +19615,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1405 := z.EncBinary() - _ = yym1405 + yym1428 := z.EncBinary() + _ = yym1428 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1407 := z.EncBinary() - _ = yym1407 + yym1430 := z.EncBinary() + _ = yym1430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -19363,17 +19634,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1408 := z.EncBinary() - _ = yym1408 + yym1431 := z.EncBinary() + _ = yym1431 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1410 := z.EncBinary() - _ = yym1410 + yym1433 := z.EncBinary() + _ = yym1433 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -19382,18 +19653,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1411 := z.EncBinary() - _ = yym1411 + yym1434 := z.EncBinary() + _ = yym1434 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1390[7] { - yym1413 := z.EncBinary() - _ = yym1413 + if yyq1413[7] { + yym1436 := z.EncBinary() + _ = yym1436 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -19402,19 +19673,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1390[7] { + if yyq1413[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1414 := z.EncBinary() - _ = yym1414 + yym1437 := z.EncBinary() + _ = yym1437 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1390 || yy2arr1390 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19427,25 +19698,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1415 := z.DecBinary() - _ = yym1415 + yym1438 := z.DecBinary() + _ = yym1438 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1416 := r.ContainerType() - if yyct1416 == codecSelferValueTypeMap1234 { - yyl1416 := r.ReadMapStart() - if yyl1416 == 0 { + yyct1439 := r.ContainerType() + if yyct1439 == codecSelferValueTypeMap1234 { + yyl1439 := r.ReadMapStart() + if yyl1439 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1416, d) + x.codecDecodeSelfFromMap(yyl1439, d) } - } else if yyct1416 == codecSelferValueTypeArray1234 { - yyl1416 := r.ReadArrayStart() - if yyl1416 == 0 { + } else if yyct1439 == codecSelferValueTypeArray1234 { + yyl1439 := r.ReadArrayStart() + if yyl1439 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1416, d) + x.codecDecodeSelfFromArray(yyl1439, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19457,12 +19728,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1417Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1417Slc - var yyhl1417 bool = l >= 0 - for yyj1417 := 0; ; yyj1417++ { - if yyhl1417 { - if yyj1417 >= l { + var yys1440Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1440Slc + var yyhl1440 bool = l >= 0 + for yyj1440 := 0; ; yyj1440++ { + if yyhl1440 { + if yyj1440 >= l { break } } else { @@ -19471,10 +19742,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1417Slc = r.DecodeBytes(yys1417Slc, true, true) - yys1417 := string(yys1417Slc) + yys1440Slc = r.DecodeBytes(yys1440Slc, true, true) + yys1440 := string(yys1440Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1417 { + switch yys1440 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -19485,15 +19756,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1419 := &x.State - yyv1419.CodecDecodeSelf(d) + yyv1442 := &x.State + yyv1442.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1420 := &x.LastTerminationState - yyv1420.CodecDecodeSelf(d) + yyv1443 := &x.LastTerminationState + yyv1443.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -19526,9 +19797,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1417) - } // end switch yys1417 - } // end for yyj1417 + z.DecStructFieldNotFound(-1, yys1440) + } // end switch yys1440 + } // end for yyj1440 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19536,16 +19807,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1426 int - var yyb1426 bool - var yyhl1426 bool = l >= 0 - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + var yyj1449 int + var yyb1449 bool + var yyhl1449 bool = l >= 0 + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19555,13 +19826,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19569,16 +19840,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1428 := &x.State - yyv1428.CodecDecodeSelf(d) + yyv1451 := &x.State + yyv1451.CodecDecodeSelf(d) } - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19586,16 +19857,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1429 := &x.LastTerminationState - yyv1429.CodecDecodeSelf(d) + yyv1452 := &x.LastTerminationState + yyv1452.CodecDecodeSelf(d) } - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19605,13 +19876,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19621,13 +19892,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19637,13 +19908,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19653,13 +19924,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19670,17 +19941,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1426++ - if yyhl1426 { - yyb1426 = yyj1426 > l + yyj1449++ + if yyhl1449 { + yyb1449 = yyj1449 > l } else { - yyb1426 = r.CheckBreak() + yyb1449 = r.CheckBreak() } - if yyb1426 { + if yyb1449 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1426-1, "") + z.DecStructFieldNotFound(yyj1449-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19689,8 +19960,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1435 := z.EncBinary() - _ = yym1435 + yym1458 := z.EncBinary() + _ = yym1458 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19702,8 +19973,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1436 := z.DecBinary() - _ = yym1436 + yym1459 := z.DecBinary() + _ = yym1459 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19715,8 +19986,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1437 := z.EncBinary() - _ = yym1437 + yym1460 := z.EncBinary() + _ = yym1460 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19728,8 +19999,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1438 := z.DecBinary() - _ = yym1438 + yym1461 := z.DecBinary() + _ = yym1461 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19744,34 +20015,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1439 := z.EncBinary() - _ = yym1439 + yym1462 := z.EncBinary() + _ = yym1462 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1440 := !z.EncBinary() - yy2arr1440 := z.EncBasicHandle().StructToArray - var yyq1440 [6]bool - _, _, _ = yysep1440, yyq1440, yy2arr1440 - const yyr1440 bool = false - yyq1440[2] = true - yyq1440[3] = true - yyq1440[4] = x.Reason != "" - yyq1440[5] = x.Message != "" - var yynn1440 int - if yyr1440 || yy2arr1440 { + yysep1463 := !z.EncBinary() + yy2arr1463 := z.EncBasicHandle().StructToArray + var yyq1463 [6]bool + _, _, _ = yysep1463, yyq1463, yy2arr1463 + const yyr1463 bool = false + yyq1463[2] = true + yyq1463[3] = true + yyq1463[4] = x.Reason != "" + yyq1463[5] = x.Message != "" + var yynn1463 int + if yyr1463 || yy2arr1463 { r.EncodeArrayStart(6) } else { - yynn1440 = 2 - for _, b := range yyq1440 { + yynn1463 = 2 + for _, b := range yyq1463 { if b { - yynn1440++ + yynn1463++ } } - r.EncodeMapStart(yynn1440) - yynn1440 = 0 + r.EncodeMapStart(yynn1463) + yynn1463 = 0 } - if yyr1440 || yy2arr1440 { + if yyr1463 || yy2arr1463 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -19780,7 +20051,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1440 || yy2arr1440 { + if yyr1463 || yy2arr1463 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -19789,85 +20060,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1440 || yy2arr1440 { + if yyr1463 || yy2arr1463 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1440[2] { - yy1444 := &x.LastProbeTime - yym1445 := z.EncBinary() - _ = yym1445 + if yyq1463[2] { + yy1467 := &x.LastProbeTime + yym1468 := z.EncBinary() + _ = yym1468 if false { - } else if z.HasExtensions() && z.EncExt(yy1444) { - } else if yym1445 { - z.EncBinaryMarshal(yy1444) - } else if !yym1445 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1444) + } else if z.HasExtensions() && z.EncExt(yy1467) { + } else if yym1468 { + z.EncBinaryMarshal(yy1467) + } else if !yym1468 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1467) } else { - z.EncFallback(yy1444) + z.EncFallback(yy1467) } } else { r.EncodeNil() } } else { - if yyq1440[2] { + if yyq1463[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1446 := &x.LastProbeTime - yym1447 := z.EncBinary() - _ = yym1447 + yy1469 := &x.LastProbeTime + yym1470 := z.EncBinary() + _ = yym1470 if false { - } else if z.HasExtensions() && z.EncExt(yy1446) { - } else if yym1447 { - z.EncBinaryMarshal(yy1446) - } else if !yym1447 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1446) + } else if z.HasExtensions() && z.EncExt(yy1469) { + } else if yym1470 { + z.EncBinaryMarshal(yy1469) + } else if !yym1470 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1469) } else { - z.EncFallback(yy1446) + z.EncFallback(yy1469) } } } - if yyr1440 || yy2arr1440 { + if yyr1463 || yy2arr1463 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1440[3] { - yy1449 := &x.LastTransitionTime - yym1450 := z.EncBinary() - _ = yym1450 + if yyq1463[3] { + yy1472 := &x.LastTransitionTime + yym1473 := z.EncBinary() + _ = yym1473 if false { - } else if z.HasExtensions() && z.EncExt(yy1449) { - } else if yym1450 { - z.EncBinaryMarshal(yy1449) - } else if !yym1450 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1449) + } else if z.HasExtensions() && z.EncExt(yy1472) { + } else if yym1473 { + z.EncBinaryMarshal(yy1472) + } else if !yym1473 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1472) } else { - z.EncFallback(yy1449) + z.EncFallback(yy1472) } } else { r.EncodeNil() } } else { - if yyq1440[3] { + if yyq1463[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1451 := &x.LastTransitionTime - yym1452 := z.EncBinary() - _ = yym1452 + yy1474 := &x.LastTransitionTime + yym1475 := z.EncBinary() + _ = yym1475 if false { - } else if z.HasExtensions() && z.EncExt(yy1451) { - } else if yym1452 { - z.EncBinaryMarshal(yy1451) - } else if !yym1452 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1451) + } else if z.HasExtensions() && z.EncExt(yy1474) { + } else if yym1475 { + z.EncBinaryMarshal(yy1474) + } else if !yym1475 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1474) } else { - z.EncFallback(yy1451) + z.EncFallback(yy1474) } } } - if yyr1440 || yy2arr1440 { + if yyr1463 || yy2arr1463 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1440[4] { - yym1454 := z.EncBinary() - _ = yym1454 + if yyq1463[4] { + yym1477 := z.EncBinary() + _ = yym1477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -19876,23 +20147,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1440[4] { + if yyq1463[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1455 := z.EncBinary() - _ = yym1455 + yym1478 := z.EncBinary() + _ = yym1478 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1440 || yy2arr1440 { + if yyr1463 || yy2arr1463 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1440[5] { - yym1457 := z.EncBinary() - _ = yym1457 + if yyq1463[5] { + yym1480 := z.EncBinary() + _ = yym1480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -19901,19 +20172,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1440[5] { + if yyq1463[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1458 := z.EncBinary() - _ = yym1458 + yym1481 := z.EncBinary() + _ = yym1481 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1440 || yy2arr1440 { + if yyr1463 || yy2arr1463 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19926,25 +20197,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1459 := z.DecBinary() - _ = yym1459 + yym1482 := z.DecBinary() + _ = yym1482 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1460 := r.ContainerType() - if yyct1460 == codecSelferValueTypeMap1234 { - yyl1460 := r.ReadMapStart() - if yyl1460 == 0 { + yyct1483 := r.ContainerType() + if yyct1483 == codecSelferValueTypeMap1234 { + yyl1483 := r.ReadMapStart() + if yyl1483 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1460, d) + x.codecDecodeSelfFromMap(yyl1483, d) } - } else if yyct1460 == codecSelferValueTypeArray1234 { - yyl1460 := r.ReadArrayStart() - if yyl1460 == 0 { + } else if yyct1483 == codecSelferValueTypeArray1234 { + yyl1483 := r.ReadArrayStart() + if yyl1483 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1460, d) + x.codecDecodeSelfFromArray(yyl1483, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19956,12 +20227,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1461Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1461Slc - var yyhl1461 bool = l >= 0 - for yyj1461 := 0; ; yyj1461++ { - if yyhl1461 { - if yyj1461 >= l { + var yys1484Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1484Slc + var yyhl1484 bool = l >= 0 + for yyj1484 := 0; ; yyj1484++ { + if yyhl1484 { + if yyj1484 >= l { break } } else { @@ -19970,10 +20241,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1461Slc = r.DecodeBytes(yys1461Slc, true, true) - yys1461 := string(yys1461Slc) + yys1484Slc = r.DecodeBytes(yys1484Slc, true, true) + yys1484 := string(yys1484Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1461 { + switch yys1484 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -19990,34 +20261,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1464 := &x.LastProbeTime - yym1465 := z.DecBinary() - _ = yym1465 + yyv1487 := &x.LastProbeTime + yym1488 := z.DecBinary() + _ = yym1488 if false { - } else if z.HasExtensions() && z.DecExt(yyv1464) { - } else if yym1465 { - z.DecBinaryUnmarshal(yyv1464) - } else if !yym1465 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1464) + } else if z.HasExtensions() && z.DecExt(yyv1487) { + } else if yym1488 { + z.DecBinaryUnmarshal(yyv1487) + } else if !yym1488 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1487) } else { - z.DecFallback(yyv1464, false) + z.DecFallback(yyv1487, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1466 := &x.LastTransitionTime - yym1467 := z.DecBinary() - _ = yym1467 + yyv1489 := &x.LastTransitionTime + yym1490 := z.DecBinary() + _ = yym1490 if false { - } else if z.HasExtensions() && z.DecExt(yyv1466) { - } else if yym1467 { - z.DecBinaryUnmarshal(yyv1466) - } else if !yym1467 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1466) + } else if z.HasExtensions() && z.DecExt(yyv1489) { + } else if yym1490 { + z.DecBinaryUnmarshal(yyv1489) + } else if !yym1490 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1489) } else { - z.DecFallback(yyv1466, false) + z.DecFallback(yyv1489, false) } } case "reason": @@ -20033,9 +20304,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1461) - } // end switch yys1461 - } // end for yyj1461 + z.DecStructFieldNotFound(-1, yys1484) + } // end switch yys1484 + } // end for yyj1484 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20043,16 +20314,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1470 int - var yyb1470 bool - var yyhl1470 bool = l >= 0 - yyj1470++ - if yyhl1470 { - yyb1470 = yyj1470 > l + var yyj1493 int + var yyb1493 bool + var yyhl1493 bool = l >= 0 + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1470 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1470 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20062,13 +20333,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1470++ - if yyhl1470 { - yyb1470 = yyj1470 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1470 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1470 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20078,13 +20349,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1470++ - if yyhl1470 { - yyb1470 = yyj1470 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1470 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1470 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20092,26 +20363,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1473 := &x.LastProbeTime - yym1474 := z.DecBinary() - _ = yym1474 + yyv1496 := &x.LastProbeTime + yym1497 := z.DecBinary() + _ = yym1497 if false { - } else if z.HasExtensions() && z.DecExt(yyv1473) { - } else if yym1474 { - z.DecBinaryUnmarshal(yyv1473) - } else if !yym1474 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1473) + } else if z.HasExtensions() && z.DecExt(yyv1496) { + } else if yym1497 { + z.DecBinaryUnmarshal(yyv1496) + } else if !yym1497 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1496) } else { - z.DecFallback(yyv1473, false) + z.DecFallback(yyv1496, false) } } - yyj1470++ - if yyhl1470 { - yyb1470 = yyj1470 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1470 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1470 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20119,26 +20390,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1475 := &x.LastTransitionTime - yym1476 := z.DecBinary() - _ = yym1476 + yyv1498 := &x.LastTransitionTime + yym1499 := z.DecBinary() + _ = yym1499 if false { - } else if z.HasExtensions() && z.DecExt(yyv1475) { - } else if yym1476 { - z.DecBinaryUnmarshal(yyv1475) - } else if !yym1476 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1475) + } else if z.HasExtensions() && z.DecExt(yyv1498) { + } else if yym1499 { + z.DecBinaryUnmarshal(yyv1498) + } else if !yym1499 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1498) } else { - z.DecFallback(yyv1475, false) + z.DecFallback(yyv1498, false) } } - yyj1470++ - if yyhl1470 { - yyb1470 = yyj1470 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1470 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1470 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20148,13 +20419,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1470++ - if yyhl1470 { - yyb1470 = yyj1470 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1470 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1470 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20165,17 +20436,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1470++ - if yyhl1470 { - yyb1470 = yyj1470 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1470 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1470 { + if yyb1493 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1470-1, "") + z.DecStructFieldNotFound(yyj1493-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20184,8 +20455,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1479 := z.EncBinary() - _ = yym1479 + yym1502 := z.EncBinary() + _ = yym1502 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -20197,8 +20468,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1480 := z.DecBinary() - _ = yym1480 + yym1503 := z.DecBinary() + _ = yym1503 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -20213,37 +20484,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1481 := z.EncBinary() - _ = yym1481 + yym1504 := z.EncBinary() + _ = yym1504 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1482 := !z.EncBinary() - yy2arr1482 := z.EncBasicHandle().StructToArray - var yyq1482 [4]bool - _, _, _ = yysep1482, yyq1482, yy2arr1482 - const yyr1482 bool = false - yyq1482[0] = x.Kind != "" - yyq1482[1] = x.APIVersion != "" - yyq1482[2] = true - var yynn1482 int - if yyr1482 || yy2arr1482 { + yysep1505 := !z.EncBinary() + yy2arr1505 := z.EncBasicHandle().StructToArray + var yyq1505 [4]bool + _, _, _ = yysep1505, yyq1505, yy2arr1505 + const yyr1505 bool = false + yyq1505[0] = x.Kind != "" + yyq1505[1] = x.APIVersion != "" + yyq1505[2] = true + var yynn1505 int + if yyr1505 || yy2arr1505 { r.EncodeArrayStart(4) } else { - yynn1482 = 1 - for _, b := range yyq1482 { + yynn1505 = 1 + for _, b := range yyq1505 { if b { - yynn1482++ + yynn1505++ } } - r.EncodeMapStart(yynn1482) - yynn1482 = 0 + r.EncodeMapStart(yynn1505) + yynn1505 = 0 } - if yyr1482 || yy2arr1482 { + if yyr1505 || yy2arr1505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1482[0] { - yym1484 := z.EncBinary() - _ = yym1484 + if yyq1505[0] { + yym1507 := z.EncBinary() + _ = yym1507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -20252,23 +20523,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1482[0] { + if yyq1505[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1485 := z.EncBinary() - _ = yym1485 + yym1508 := z.EncBinary() + _ = yym1508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1482 || yy2arr1482 { + if yyr1505 || yy2arr1505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1482[1] { - yym1487 := z.EncBinary() - _ = yym1487 + if yyq1505[1] { + yym1510 := z.EncBinary() + _ = yym1510 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -20277,54 +20548,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1482[1] { + if yyq1505[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1488 := z.EncBinary() - _ = yym1488 + yym1511 := z.EncBinary() + _ = yym1511 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1482 || yy2arr1482 { + if yyr1505 || yy2arr1505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1482[2] { - yy1490 := &x.ListMeta - yym1491 := z.EncBinary() - _ = yym1491 + if yyq1505[2] { + yy1513 := &x.ListMeta + yym1514 := z.EncBinary() + _ = yym1514 if false { - } else if z.HasExtensions() && z.EncExt(yy1490) { + } else if z.HasExtensions() && z.EncExt(yy1513) { } else { - z.EncFallback(yy1490) + z.EncFallback(yy1513) } } else { r.EncodeNil() } } else { - if yyq1482[2] { + if yyq1505[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1492 := &x.ListMeta - yym1493 := z.EncBinary() - _ = yym1493 + yy1515 := &x.ListMeta + yym1516 := z.EncBinary() + _ = yym1516 if false { - } else if z.HasExtensions() && z.EncExt(yy1492) { + } else if z.HasExtensions() && z.EncExt(yy1515) { } else { - z.EncFallback(yy1492) + z.EncFallback(yy1515) } } } - if yyr1482 || yy2arr1482 { + if yyr1505 || yy2arr1505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1495 := z.EncBinary() - _ = yym1495 + yym1518 := z.EncBinary() + _ = yym1518 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -20337,15 +20608,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1496 := z.EncBinary() - _ = yym1496 + yym1519 := z.EncBinary() + _ = yym1519 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr1482 || yy2arr1482 { + if yyr1505 || yy2arr1505 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20355,294 +20626,6 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1497 := z.DecBinary() - _ = yym1497 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1498 := r.ContainerType() - if yyct1498 == codecSelferValueTypeMap1234 { - yyl1498 := r.ReadMapStart() - if yyl1498 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1498, d) - } - } else if yyct1498 == codecSelferValueTypeArray1234 { - yyl1498 := r.ReadArrayStart() - if yyl1498 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1498, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1499Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1499Slc - var yyhl1499 bool = l >= 0 - for yyj1499 := 0; ; yyj1499++ { - if yyhl1499 { - if yyj1499 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1499Slc = r.DecodeBytes(yys1499Slc, true, true) - yys1499 := string(yys1499Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1499 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv1502 := &x.ListMeta - yym1503 := z.DecBinary() - _ = yym1503 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1502) { - } else { - z.DecFallback(yyv1502, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv1504 := &x.Items - yym1505 := z.DecBinary() - _ = yym1505 - if false { - } else { - h.decSlicePod((*[]Pod)(yyv1504), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys1499) - } // end switch yys1499 - } // end for yyj1499 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1506 int - var yyb1506 bool - var yyhl1506 bool = l >= 0 - yyj1506++ - if yyhl1506 { - yyb1506 = yyj1506 > l - } else { - yyb1506 = r.CheckBreak() - } - if yyb1506 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj1506++ - if yyhl1506 { - yyb1506 = yyj1506 > l - } else { - yyb1506 = r.CheckBreak() - } - if yyb1506 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj1506++ - if yyhl1506 { - yyb1506 = yyj1506 > l - } else { - yyb1506 = r.CheckBreak() - } - if yyb1506 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv1509 := &x.ListMeta - yym1510 := z.DecBinary() - _ = yym1510 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1509) { - } else { - z.DecFallback(yyv1509, false) - } - } - yyj1506++ - if yyhl1506 { - yyb1506 = yyj1506 > l - } else { - yyb1506 = r.CheckBreak() - } - if yyb1506 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv1511 := &x.Items - yym1512 := z.DecBinary() - _ = yym1512 - if false { - } else { - h.decSlicePod((*[]Pod)(yyv1511), d) - } - } - for { - yyj1506++ - if yyhl1506 { - yyb1506 = yyj1506 > l - } else { - yyb1506 = r.CheckBreak() - } - if yyb1506 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1506-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym1513 := z.EncBinary() - _ = yym1513 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1514 := z.DecBinary() - _ = yym1514 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1515 := z.EncBinary() - _ = yym1515 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1516 := !z.EncBinary() - yy2arr1516 := z.EncBasicHandle().StructToArray - var yyq1516 [1]bool - _, _, _ = yysep1516, yyq1516, yy2arr1516 - const yyr1516 bool = false - var yynn1516 int - if yyr1516 || yy2arr1516 { - r.EncodeArrayStart(1) - } else { - yynn1516 = 1 - for _, b := range yyq1516 { - if b { - yynn1516++ - } - } - r.EncodeMapStart(yynn1516) - yynn1516 = 0 - } - if yyr1516 || yy2arr1516 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.NodeSelectorTerms == nil { - r.EncodeNil() - } else { - yym1518 := z.EncBinary() - _ = yym1518 - if false { - } else { - h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeSelectorTerms")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.NodeSelectorTerms == nil { - r.EncodeNil() - } else { - yym1519 := z.EncBinary() - _ = yym1519 - if false { - } else { - h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) - } - } - } - if yyr1516 || yy2arr1516 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -20672,7 +20655,7 @@ func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -20694,16 +20677,41 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys1522 := string(yys1522Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys1522 { - case "nodeSelectorTerms": + case "kind": if r.TryDecodeAsNil() { - x.NodeSelectorTerms = nil + x.Kind = "" } else { - yyv1523 := &x.NodeSelectorTerms - yym1524 := z.DecBinary() - _ = yym1524 + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv1525 := &x.ListMeta + yym1526 := z.DecBinary() + _ = yym1526 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1525) { + } else { + z.DecFallback(yyv1525, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv1527 := &x.Items + yym1528 := z.DecBinary() + _ = yym1528 if false { } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1523), d) + h.decSlicePod((*[]Pod)(yyv1527), d) } } default: @@ -20713,20 +20721,283 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } +func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1529 int + var yyb1529 bool + var yyhl1529 bool = l >= 0 + yyj1529++ + if yyhl1529 { + yyb1529 = yyj1529 > l + } else { + yyb1529 = r.CheckBreak() + } + if yyb1529 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj1529++ + if yyhl1529 { + yyb1529 = yyj1529 > l + } else { + yyb1529 = r.CheckBreak() + } + if yyb1529 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj1529++ + if yyhl1529 { + yyb1529 = yyj1529 > l + } else { + yyb1529 = r.CheckBreak() + } + if yyb1529 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv1532 := &x.ListMeta + yym1533 := z.DecBinary() + _ = yym1533 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1532) { + } else { + z.DecFallback(yyv1532, false) + } + } + yyj1529++ + if yyhl1529 { + yyb1529 = yyj1529 > l + } else { + yyb1529 = r.CheckBreak() + } + if yyb1529 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv1534 := &x.Items + yym1535 := z.DecBinary() + _ = yym1535 + if false { + } else { + h.decSlicePod((*[]Pod)(yyv1534), d) + } + } + for { + yyj1529++ + if yyhl1529 { + yyb1529 = yyj1529 > l + } else { + yyb1529 = r.CheckBreak() + } + if yyb1529 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1529-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1536 := z.EncBinary() + _ = yym1536 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1537 := z.DecBinary() + _ = yym1537 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1538 := z.EncBinary() + _ = yym1538 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1539 := !z.EncBinary() + yy2arr1539 := z.EncBasicHandle().StructToArray + var yyq1539 [1]bool + _, _, _ = yysep1539, yyq1539, yy2arr1539 + const yyr1539 bool = false + var yynn1539 int + if yyr1539 || yy2arr1539 { + r.EncodeArrayStart(1) + } else { + yynn1539 = 1 + for _, b := range yyq1539 { + if b { + yynn1539++ + } + } + r.EncodeMapStart(yynn1539) + yynn1539 = 0 + } + if yyr1539 || yy2arr1539 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.NodeSelectorTerms == nil { + r.EncodeNil() + } else { + yym1541 := z.EncBinary() + _ = yym1541 + if false { + } else { + h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeSelectorTerms")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.NodeSelectorTerms == nil { + r.EncodeNil() + } else { + yym1542 := z.EncBinary() + _ = yym1542 + if false { + } else { + h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) + } + } + } + if yyr1539 || yy2arr1539 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1543 := z.DecBinary() + _ = yym1543 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1544 := r.ContainerType() + if yyct1544 == codecSelferValueTypeMap1234 { + yyl1544 := r.ReadMapStart() + if yyl1544 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1544, d) + } + } else if yyct1544 == codecSelferValueTypeArray1234 { + yyl1544 := r.ReadArrayStart() + if yyl1544 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1544, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1545Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1545Slc + var yyhl1545 bool = l >= 0 + for yyj1545 := 0; ; yyj1545++ { + if yyhl1545 { + if yyj1545 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1545Slc = r.DecodeBytes(yys1545Slc, true, true) + yys1545 := string(yys1545Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1545 { + case "nodeSelectorTerms": + if r.TryDecodeAsNil() { + x.NodeSelectorTerms = nil + } else { + yyv1546 := &x.NodeSelectorTerms + yym1547 := z.DecBinary() + _ = yym1547 + if false { + } else { + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1546), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys1545) + } // end switch yys1545 + } // end for yyj1545 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1525 int - var yyb1525 bool - var yyhl1525 bool = l >= 0 - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + var yyj1548 int + var yyb1548 bool + var yyhl1548 bool = l >= 0 + yyj1548++ + if yyhl1548 { + yyb1548 = yyj1548 > l } else { - yyb1525 = r.CheckBreak() + yyb1548 = r.CheckBreak() } - if yyb1525 { + if yyb1548 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20734,26 +21005,26 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelectorTerms = nil } else { - yyv1526 := &x.NodeSelectorTerms - yym1527 := z.DecBinary() - _ = yym1527 + yyv1549 := &x.NodeSelectorTerms + yym1550 := z.DecBinary() + _ = yym1550 if false { } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1526), d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1549), d) } } for { - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1548++ + if yyhl1548 { + yyb1548 = yyj1548 > l } else { - yyb1525 = r.CheckBreak() + yyb1548 = r.CheckBreak() } - if yyb1525 { + if yyb1548 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1525-1, "") + z.DecStructFieldNotFound(yyj1548-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20765,36 +21036,36 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1528 := z.EncBinary() - _ = yym1528 + yym1551 := z.EncBinary() + _ = yym1551 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1529 := !z.EncBinary() - yy2arr1529 := z.EncBasicHandle().StructToArray - var yyq1529 [1]bool - _, _, _ = yysep1529, yyq1529, yy2arr1529 - const yyr1529 bool = false - var yynn1529 int - if yyr1529 || yy2arr1529 { + yysep1552 := !z.EncBinary() + yy2arr1552 := z.EncBasicHandle().StructToArray + var yyq1552 [1]bool + _, _, _ = yysep1552, yyq1552, yy2arr1552 + const yyr1552 bool = false + var yynn1552 int + if yyr1552 || yy2arr1552 { r.EncodeArrayStart(1) } else { - yynn1529 = 1 - for _, b := range yyq1529 { + yynn1552 = 1 + for _, b := range yyq1552 { if b { - yynn1529++ + yynn1552++ } } - r.EncodeMapStart(yynn1529) - yynn1529 = 0 + r.EncodeMapStart(yynn1552) + yynn1552 = 0 } - if yyr1529 || yy2arr1529 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1531 := z.EncBinary() - _ = yym1531 + yym1554 := z.EncBinary() + _ = yym1554 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) @@ -20807,15 +21078,15 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1532 := z.EncBinary() - _ = yym1532 + yym1555 := z.EncBinary() + _ = yym1555 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) } } } - if yyr1529 || yy2arr1529 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20828,25 +21099,25 @@ func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1533 := z.DecBinary() - _ = yym1533 + yym1556 := z.DecBinary() + _ = yym1556 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1534 := r.ContainerType() - if yyct1534 == codecSelferValueTypeMap1234 { - yyl1534 := r.ReadMapStart() - if yyl1534 == 0 { + yyct1557 := r.ContainerType() + if yyct1557 == codecSelferValueTypeMap1234 { + yyl1557 := r.ReadMapStart() + if yyl1557 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1534, d) + x.codecDecodeSelfFromMap(yyl1557, d) } - } else if yyct1534 == codecSelferValueTypeArray1234 { - yyl1534 := r.ReadArrayStart() - if yyl1534 == 0 { + } else if yyct1557 == codecSelferValueTypeArray1234 { + yyl1557 := r.ReadArrayStart() + if yyl1557 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1534, d) + x.codecDecodeSelfFromArray(yyl1557, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20858,12 +21129,12 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1535Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1535Slc - var yyhl1535 bool = l >= 0 - for yyj1535 := 0; ; yyj1535++ { - if yyhl1535 { - if yyj1535 >= l { + var yys1558Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1558Slc + var yyhl1558 bool = l >= 0 + for yyj1558 := 0; ; yyj1558++ { + if yyhl1558 { + if yyj1558 >= l { break } } else { @@ -20872,26 +21143,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1535Slc = r.DecodeBytes(yys1535Slc, true, true) - yys1535 := string(yys1535Slc) + yys1558Slc = r.DecodeBytes(yys1558Slc, true, true) + yys1558 := string(yys1558Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1535 { + switch yys1558 { case "matchExpressions": if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1536 := &x.MatchExpressions - yym1537 := z.DecBinary() - _ = yym1537 + yyv1559 := &x.MatchExpressions + yym1560 := z.DecBinary() + _ = yym1560 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1536), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1559), d) } } default: - z.DecStructFieldNotFound(-1, yys1535) - } // end switch yys1535 - } // end for yyj1535 + z.DecStructFieldNotFound(-1, yys1558) + } // end switch yys1558 + } // end for yyj1558 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20899,16 +21170,16 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1538 int - var yyb1538 bool - var yyhl1538 bool = l >= 0 - yyj1538++ - if yyhl1538 { - yyb1538 = yyj1538 > l + var yyj1561 int + var yyb1561 bool + var yyhl1561 bool = l >= 0 + yyj1561++ + if yyhl1561 { + yyb1561 = yyj1561 > l } else { - yyb1538 = r.CheckBreak() + yyb1561 = r.CheckBreak() } - if yyb1538 { + if yyb1561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20916,26 +21187,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1539 := &x.MatchExpressions - yym1540 := z.DecBinary() - _ = yym1540 + yyv1562 := &x.MatchExpressions + yym1563 := z.DecBinary() + _ = yym1563 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1539), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1562), d) } } for { - yyj1538++ - if yyhl1538 { - yyb1538 = yyj1538 > l + yyj1561++ + if yyhl1561 { + yyb1561 = yyj1561 > l } else { - yyb1538 = r.CheckBreak() + yyb1561 = r.CheckBreak() } - if yyb1538 { + if yyb1561 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1538-1, "") + z.DecStructFieldNotFound(yyj1561-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20947,34 +21218,34 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1541 := z.EncBinary() - _ = yym1541 + yym1564 := z.EncBinary() + _ = yym1564 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1542 := !z.EncBinary() - yy2arr1542 := z.EncBasicHandle().StructToArray - var yyq1542 [3]bool - _, _, _ = yysep1542, yyq1542, yy2arr1542 - const yyr1542 bool = false - yyq1542[2] = len(x.Values) != 0 - var yynn1542 int - if yyr1542 || yy2arr1542 { + yysep1565 := !z.EncBinary() + yy2arr1565 := z.EncBasicHandle().StructToArray + var yyq1565 [3]bool + _, _, _ = yysep1565, yyq1565, yy2arr1565 + const yyr1565 bool = false + yyq1565[2] = len(x.Values) != 0 + var yynn1565 int + if yyr1565 || yy2arr1565 { r.EncodeArrayStart(3) } else { - yynn1542 = 2 - for _, b := range yyq1542 { + yynn1565 = 2 + for _, b := range yyq1565 { if b { - yynn1542++ + yynn1565++ } } - r.EncodeMapStart(yynn1542) - yynn1542 = 0 + r.EncodeMapStart(yynn1565) + yynn1565 = 0 } - if yyr1542 || yy2arr1542 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1544 := z.EncBinary() - _ = yym1544 + yym1567 := z.EncBinary() + _ = yym1567 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -20983,14 +21254,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1545 := z.EncBinary() - _ = yym1545 + yym1568 := z.EncBinary() + _ = yym1568 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1542 || yy2arr1542 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Operator.CodecEncodeSelf(e) } else { @@ -20999,14 +21270,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } - if yyr1542 || yy2arr1542 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1542[2] { + if yyq1565[2] { if x.Values == nil { r.EncodeNil() } else { - yym1548 := z.EncBinary() - _ = yym1548 + yym1571 := z.EncBinary() + _ = yym1571 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -21016,15 +21287,15 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1542[2] { + if yyq1565[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("values")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Values == nil { r.EncodeNil() } else { - yym1549 := z.EncBinary() - _ = yym1549 + yym1572 := z.EncBinary() + _ = yym1572 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -21032,7 +21303,7 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1542 || yy2arr1542 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21045,25 +21316,25 @@ func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1550 := z.DecBinary() - _ = yym1550 + yym1573 := z.DecBinary() + _ = yym1573 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1551 := r.ContainerType() - if yyct1551 == codecSelferValueTypeMap1234 { - yyl1551 := r.ReadMapStart() - if yyl1551 == 0 { + yyct1574 := r.ContainerType() + if yyct1574 == codecSelferValueTypeMap1234 { + yyl1574 := r.ReadMapStart() + if yyl1574 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1551, d) + x.codecDecodeSelfFromMap(yyl1574, d) } - } else if yyct1551 == codecSelferValueTypeArray1234 { - yyl1551 := r.ReadArrayStart() - if yyl1551 == 0 { + } else if yyct1574 == codecSelferValueTypeArray1234 { + yyl1574 := r.ReadArrayStart() + if yyl1574 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1551, d) + x.codecDecodeSelfFromArray(yyl1574, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21075,12 +21346,12 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1552Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1552Slc - var yyhl1552 bool = l >= 0 - for yyj1552 := 0; ; yyj1552++ { - if yyhl1552 { - if yyj1552 >= l { + var yys1575Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1575Slc + var yyhl1575 bool = l >= 0 + for yyj1575 := 0; ; yyj1575++ { + if yyhl1575 { + if yyj1575 >= l { break } } else { @@ -21089,10 +21360,10 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1552Slc = r.DecodeBytes(yys1552Slc, true, true) - yys1552 := string(yys1552Slc) + yys1575Slc = r.DecodeBytes(yys1575Slc, true, true) + yys1575 := string(yys1575Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1552 { + switch yys1575 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -21109,18 +21380,18 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1555 := &x.Values - yym1556 := z.DecBinary() - _ = yym1556 + yyv1578 := &x.Values + yym1579 := z.DecBinary() + _ = yym1579 if false { } else { - z.F.DecSliceStringX(yyv1555, false, d) + z.F.DecSliceStringX(yyv1578, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1552) - } // end switch yys1552 - } // end for yyj1552 + z.DecStructFieldNotFound(-1, yys1575) + } // end switch yys1575 + } // end for yyj1575 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21128,16 +21399,16 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1557 int - var yyb1557 bool - var yyhl1557 bool = l >= 0 - yyj1557++ - if yyhl1557 { - yyb1557 = yyj1557 > l + var yyj1580 int + var yyb1580 bool + var yyhl1580 bool = l >= 0 + yyj1580++ + if yyhl1580 { + yyb1580 = yyj1580 > l } else { - yyb1557 = r.CheckBreak() + yyb1580 = r.CheckBreak() } - if yyb1557 { + if yyb1580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21147,13 +21418,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Key = string(r.DecodeString()) } - yyj1557++ - if yyhl1557 { - yyb1557 = yyj1557 > l + yyj1580++ + if yyhl1580 { + yyb1580 = yyj1580 > l } else { - yyb1557 = r.CheckBreak() + yyb1580 = r.CheckBreak() } - if yyb1557 { + if yyb1580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21163,13 +21434,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Operator = NodeSelectorOperator(r.DecodeString()) } - yyj1557++ - if yyhl1557 { - yyb1557 = yyj1557 > l + yyj1580++ + if yyhl1580 { + yyb1580 = yyj1580 > l } else { - yyb1557 = r.CheckBreak() + yyb1580 = r.CheckBreak() } - if yyb1557 { + if yyb1580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21177,26 +21448,26 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1560 := &x.Values - yym1561 := z.DecBinary() - _ = yym1561 + yyv1583 := &x.Values + yym1584 := z.DecBinary() + _ = yym1584 if false { } else { - z.F.DecSliceStringX(yyv1560, false, d) + z.F.DecSliceStringX(yyv1583, false, d) } } for { - yyj1557++ - if yyhl1557 { - yyb1557 = yyj1557 > l + yyj1580++ + if yyhl1580 { + yyb1580 = yyj1580 > l } else { - yyb1557 = r.CheckBreak() + yyb1580 = r.CheckBreak() } - if yyb1557 { + if yyb1580 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1557-1, "") + z.DecStructFieldNotFound(yyj1580-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21205,8 +21476,8 @@ func (x NodeSelectorOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1562 := z.EncBinary() - _ = yym1562 + yym1585 := z.EncBinary() + _ = yym1585 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -21218,8 +21489,8 @@ func (x *NodeSelectorOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1563 := z.DecBinary() - _ = yym1563 + yym1586 := z.DecBinary() + _ = yym1586 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -21234,33 +21505,33 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1564 := z.EncBinary() - _ = yym1564 + yym1587 := z.EncBinary() + _ = yym1587 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1565 := !z.EncBinary() - yy2arr1565 := z.EncBasicHandle().StructToArray - var yyq1565 [1]bool - _, _, _ = yysep1565, yyq1565, yy2arr1565 - const yyr1565 bool = false - yyq1565[0] = x.NodeAffinity != nil - var yynn1565 int - if yyr1565 || yy2arr1565 { + yysep1588 := !z.EncBinary() + yy2arr1588 := z.EncBasicHandle().StructToArray + var yyq1588 [1]bool + _, _, _ = yysep1588, yyq1588, yy2arr1588 + const yyr1588 bool = false + yyq1588[0] = x.NodeAffinity != nil + var yynn1588 int + if yyr1588 || yy2arr1588 { r.EncodeArrayStart(1) } else { - yynn1565 = 0 - for _, b := range yyq1565 { + yynn1588 = 0 + for _, b := range yyq1588 { if b { - yynn1565++ + yynn1588++ } } - r.EncodeMapStart(yynn1565) - yynn1565 = 0 + r.EncodeMapStart(yynn1588) + yynn1588 = 0 } - if yyr1565 || yy2arr1565 { + if yyr1588 || yy2arr1588 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1565[0] { + if yyq1588[0] { if x.NodeAffinity == nil { r.EncodeNil() } else { @@ -21270,7 +21541,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1565[0] { + if yyq1588[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21281,7 +21552,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1565 || yy2arr1565 { + if yyr1588 || yy2arr1588 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21294,25 +21565,25 @@ func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1567 := z.DecBinary() - _ = yym1567 + yym1590 := z.DecBinary() + _ = yym1590 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1568 := r.ContainerType() - if yyct1568 == codecSelferValueTypeMap1234 { - yyl1568 := r.ReadMapStart() - if yyl1568 == 0 { + yyct1591 := r.ContainerType() + if yyct1591 == codecSelferValueTypeMap1234 { + yyl1591 := r.ReadMapStart() + if yyl1591 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1568, d) + x.codecDecodeSelfFromMap(yyl1591, d) } - } else if yyct1568 == codecSelferValueTypeArray1234 { - yyl1568 := r.ReadArrayStart() - if yyl1568 == 0 { + } else if yyct1591 == codecSelferValueTypeArray1234 { + yyl1591 := r.ReadArrayStart() + if yyl1591 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1568, d) + x.codecDecodeSelfFromArray(yyl1591, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21324,12 +21595,12 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1569Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1569Slc - var yyhl1569 bool = l >= 0 - for yyj1569 := 0; ; yyj1569++ { - if yyhl1569 { - if yyj1569 >= l { + var yys1592Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1592Slc + var yyhl1592 bool = l >= 0 + for yyj1592 := 0; ; yyj1592++ { + if yyhl1592 { + if yyj1592 >= l { break } } else { @@ -21338,10 +21609,10 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1569Slc = r.DecodeBytes(yys1569Slc, true, true) - yys1569 := string(yys1569Slc) + yys1592Slc = r.DecodeBytes(yys1592Slc, true, true) + yys1592 := string(yys1592Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1569 { + switch yys1592 { case "nodeAffinity": if r.TryDecodeAsNil() { if x.NodeAffinity != nil { @@ -21354,9 +21625,9 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodeAffinity.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1569) - } // end switch yys1569 - } // end for yyj1569 + z.DecStructFieldNotFound(-1, yys1592) + } // end switch yys1592 + } // end for yyj1592 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21364,16 +21635,16 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1571 int - var yyb1571 bool - var yyhl1571 bool = l >= 0 - yyj1571++ - if yyhl1571 { - yyb1571 = yyj1571 > l + var yyj1594 int + var yyb1594 bool + var yyhl1594 bool = l >= 0 + yyj1594++ + if yyhl1594 { + yyb1594 = yyj1594 > l } else { - yyb1571 = r.CheckBreak() + yyb1594 = r.CheckBreak() } - if yyb1571 { + if yyb1594 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21389,17 +21660,17 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodeAffinity.CodecDecodeSelf(d) } for { - yyj1571++ - if yyhl1571 { - yyb1571 = yyj1571 > l + yyj1594++ + if yyhl1594 { + yyb1594 = yyj1594 > l } else { - yyb1571 = r.CheckBreak() + yyb1594 = r.CheckBreak() } - if yyb1571 { + if yyb1594 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1571-1, "") + z.DecStructFieldNotFound(yyj1594-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21411,35 +21682,35 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1573 := z.EncBinary() - _ = yym1573 + yym1596 := z.EncBinary() + _ = yym1596 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1574 := !z.EncBinary() - yy2arr1574 := z.EncBasicHandle().StructToArray - var yyq1574 [3]bool - _, _, _ = yysep1574, yyq1574, yy2arr1574 - const yyr1574 bool = false - yyq1574[0] = x.RequiredDuringSchedulingRequiredDuringExecution != nil - yyq1574[1] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil - yyq1574[2] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1574 int - if yyr1574 || yy2arr1574 { + yysep1597 := !z.EncBinary() + yy2arr1597 := z.EncBasicHandle().StructToArray + var yyq1597 [3]bool + _, _, _ = yysep1597, yyq1597, yy2arr1597 + const yyr1597 bool = false + yyq1597[0] = x.RequiredDuringSchedulingRequiredDuringExecution != nil + yyq1597[1] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil + yyq1597[2] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1597 int + if yyr1597 || yy2arr1597 { r.EncodeArrayStart(3) } else { - yynn1574 = 0 - for _, b := range yyq1574 { + yynn1597 = 0 + for _, b := range yyq1597 { if b { - yynn1574++ + yynn1597++ } } - r.EncodeMapStart(yynn1574) - yynn1574 = 0 + r.EncodeMapStart(yynn1597) + yynn1597 = 0 } - if yyr1574 || yy2arr1574 { + if yyr1597 || yy2arr1597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[0] { + if yyq1597[0] { if x.RequiredDuringSchedulingRequiredDuringExecution == nil { r.EncodeNil() } else { @@ -21449,7 +21720,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1574[0] { + if yyq1597[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingRequiredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21460,9 +21731,9 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1574 || yy2arr1574 { + if yyr1597 || yy2arr1597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[1] { + if yyq1597[1] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { @@ -21472,7 +21743,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1574[1] { + if yyq1597[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21483,14 +21754,14 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1574 || yy2arr1574 { + if yyr1597 || yy2arr1597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[2] { + if yyq1597[2] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1578 := z.EncBinary() - _ = yym1578 + yym1601 := z.EncBinary() + _ = yym1601 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -21500,15 +21771,15 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1574[2] { + if yyq1597[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1579 := z.EncBinary() - _ = yym1579 + yym1602 := z.EncBinary() + _ = yym1602 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -21516,7 +21787,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1574 || yy2arr1574 { + if yyr1597 || yy2arr1597 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21529,25 +21800,25 @@ func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1580 := z.DecBinary() - _ = yym1580 + yym1603 := z.DecBinary() + _ = yym1603 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1581 := r.ContainerType() - if yyct1581 == codecSelferValueTypeMap1234 { - yyl1581 := r.ReadMapStart() - if yyl1581 == 0 { + yyct1604 := r.ContainerType() + if yyct1604 == codecSelferValueTypeMap1234 { + yyl1604 := r.ReadMapStart() + if yyl1604 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1581, d) + x.codecDecodeSelfFromMap(yyl1604, d) } - } else if yyct1581 == codecSelferValueTypeArray1234 { - yyl1581 := r.ReadArrayStart() - if yyl1581 == 0 { + } else if yyct1604 == codecSelferValueTypeArray1234 { + yyl1604 := r.ReadArrayStart() + if yyl1604 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1581, d) + x.codecDecodeSelfFromArray(yyl1604, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21559,12 +21830,12 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1582Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1582Slc - var yyhl1582 bool = l >= 0 - for yyj1582 := 0; ; yyj1582++ { - if yyhl1582 { - if yyj1582 >= l { + var yys1605Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1605Slc + var yyhl1605 bool = l >= 0 + for yyj1605 := 0; ; yyj1605++ { + if yyhl1605 { + if yyj1605 >= l { break } } else { @@ -21573,10 +21844,10 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1582Slc = r.DecodeBytes(yys1582Slc, true, true) - yys1582 := string(yys1582Slc) + yys1605Slc = r.DecodeBytes(yys1605Slc, true, true) + yys1605 := string(yys1605Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1582 { + switch yys1605 { case "requiredDuringSchedulingRequiredDuringExecution": if r.TryDecodeAsNil() { if x.RequiredDuringSchedulingRequiredDuringExecution != nil { @@ -21603,18 +21874,18 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1585 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1586 := z.DecBinary() - _ = yym1586 + yyv1608 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1609 := z.DecBinary() + _ = yym1609 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1585), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1608), d) } } default: - z.DecStructFieldNotFound(-1, yys1582) - } // end switch yys1582 - } // end for yyj1582 + z.DecStructFieldNotFound(-1, yys1605) + } // end switch yys1605 + } // end for yyj1605 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21622,16 +21893,16 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1587 int - var yyb1587 bool - var yyhl1587 bool = l >= 0 - yyj1587++ - if yyhl1587 { - yyb1587 = yyj1587 > l + var yyj1610 int + var yyb1610 bool + var yyhl1610 bool = l >= 0 + yyj1610++ + if yyhl1610 { + yyb1610 = yyj1610 > l } else { - yyb1587 = r.CheckBreak() + yyb1610 = r.CheckBreak() } - if yyb1587 { + if yyb1610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21646,13 +21917,13 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RequiredDuringSchedulingRequiredDuringExecution.CodecDecodeSelf(d) } - yyj1587++ - if yyhl1587 { - yyb1587 = yyj1587 > l + yyj1610++ + if yyhl1610 { + yyb1610 = yyj1610 > l } else { - yyb1587 = r.CheckBreak() + yyb1610 = r.CheckBreak() } - if yyb1587 { + if yyb1610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21667,13 +21938,13 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) } - yyj1587++ - if yyhl1587 { - yyb1587 = yyj1587 > l + yyj1610++ + if yyhl1610 { + yyb1610 = yyj1610 > l } else { - yyb1587 = r.CheckBreak() + yyb1610 = r.CheckBreak() } - if yyb1587 { + if yyb1610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21681,26 +21952,26 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1590 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1591 := z.DecBinary() - _ = yym1591 + yyv1613 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1614 := z.DecBinary() + _ = yym1614 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1590), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1613), d) } } for { - yyj1587++ - if yyhl1587 { - yyb1587 = yyj1587 > l + yyj1610++ + if yyhl1610 { + yyb1610 = yyj1610 > l } else { - yyb1587 = r.CheckBreak() + yyb1610 = r.CheckBreak() } - if yyb1587 { + if yyb1610 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1587-1, "") + z.DecStructFieldNotFound(yyj1610-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21712,33 +21983,33 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1592 := z.EncBinary() - _ = yym1592 + yym1615 := z.EncBinary() + _ = yym1615 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1593 := !z.EncBinary() - yy2arr1593 := z.EncBasicHandle().StructToArray - var yyq1593 [2]bool - _, _, _ = yysep1593, yyq1593, yy2arr1593 - const yyr1593 bool = false - var yynn1593 int - if yyr1593 || yy2arr1593 { + yysep1616 := !z.EncBinary() + yy2arr1616 := z.EncBasicHandle().StructToArray + var yyq1616 [2]bool + _, _, _ = yysep1616, yyq1616, yy2arr1616 + const yyr1616 bool = false + var yynn1616 int + if yyr1616 || yy2arr1616 { r.EncodeArrayStart(2) } else { - yynn1593 = 2 - for _, b := range yyq1593 { + yynn1616 = 2 + for _, b := range yyq1616 { if b { - yynn1593++ + yynn1616++ } } - r.EncodeMapStart(yynn1593) - yynn1593 = 0 + r.EncodeMapStart(yynn1616) + yynn1616 = 0 } - if yyr1593 || yy2arr1593 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1595 := z.EncBinary() - _ = yym1595 + yym1618 := z.EncBinary() + _ = yym1618 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -21747,25 +22018,25 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1596 := z.EncBinary() - _ = yym1596 + yym1619 := z.EncBinary() + _ = yym1619 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1593 || yy2arr1593 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1598 := &x.Preference - yy1598.CodecEncodeSelf(e) + yy1621 := &x.Preference + yy1621.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1599 := &x.Preference - yy1599.CodecEncodeSelf(e) + yy1622 := &x.Preference + yy1622.CodecEncodeSelf(e) } - if yyr1593 || yy2arr1593 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21778,25 +22049,25 @@ func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1600 := z.DecBinary() - _ = yym1600 + yym1623 := z.DecBinary() + _ = yym1623 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1601 := r.ContainerType() - if yyct1601 == codecSelferValueTypeMap1234 { - yyl1601 := r.ReadMapStart() - if yyl1601 == 0 { + yyct1624 := r.ContainerType() + if yyct1624 == codecSelferValueTypeMap1234 { + yyl1624 := r.ReadMapStart() + if yyl1624 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1601, d) + x.codecDecodeSelfFromMap(yyl1624, d) } - } else if yyct1601 == codecSelferValueTypeArray1234 { - yyl1601 := r.ReadArrayStart() - if yyl1601 == 0 { + } else if yyct1624 == codecSelferValueTypeArray1234 { + yyl1624 := r.ReadArrayStart() + if yyl1624 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1601, d) + x.codecDecodeSelfFromArray(yyl1624, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21808,12 +22079,12 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1602Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1602Slc - var yyhl1602 bool = l >= 0 - for yyj1602 := 0; ; yyj1602++ { - if yyhl1602 { - if yyj1602 >= l { + var yys1625Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1625Slc + var yyhl1625 bool = l >= 0 + for yyj1625 := 0; ; yyj1625++ { + if yyhl1625 { + if yyj1625 >= l { break } } else { @@ -21822,10 +22093,10 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1602Slc = r.DecodeBytes(yys1602Slc, true, true) - yys1602 := string(yys1602Slc) + yys1625Slc = r.DecodeBytes(yys1625Slc, true, true) + yys1625 := string(yys1625Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1602 { + switch yys1625 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -21836,13 +22107,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1604 := &x.Preference - yyv1604.CodecDecodeSelf(d) + yyv1627 := &x.Preference + yyv1627.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1602) - } // end switch yys1602 - } // end for yyj1602 + z.DecStructFieldNotFound(-1, yys1625) + } // end switch yys1625 + } // end for yyj1625 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21850,16 +22121,16 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1605 int - var yyb1605 bool - var yyhl1605 bool = l >= 0 - yyj1605++ - if yyhl1605 { - yyb1605 = yyj1605 > l + var yyj1628 int + var yyb1628 bool + var yyhl1628 bool = l >= 0 + yyj1628++ + if yyhl1628 { + yyb1628 = yyj1628 > l } else { - yyb1605 = r.CheckBreak() + yyb1628 = r.CheckBreak() } - if yyb1605 { + if yyb1628 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21869,13 +22140,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1605++ - if yyhl1605 { - yyb1605 = yyj1605 > l + yyj1628++ + if yyhl1628 { + yyb1628 = yyj1628 > l } else { - yyb1605 = r.CheckBreak() + yyb1628 = r.CheckBreak() } - if yyb1605 { + if yyb1628 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21883,21 +22154,21 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1607 := &x.Preference - yyv1607.CodecDecodeSelf(d) + yyv1630 := &x.Preference + yyv1630.CodecDecodeSelf(d) } for { - yyj1605++ - if yyhl1605 { - yyb1605 = yyj1605 > l + yyj1628++ + if yyhl1628 { + yyb1628 = yyj1628 > l } else { - yyb1605 = r.CheckBreak() + yyb1628 = r.CheckBreak() } - if yyb1605 { + if yyb1628 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1605-1, "") + z.DecStructFieldNotFound(yyj1628-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21909,44 +22180,44 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1608 := z.EncBinary() - _ = yym1608 + yym1631 := z.EncBinary() + _ = yym1631 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1609 := !z.EncBinary() - yy2arr1609 := z.EncBasicHandle().StructToArray - var yyq1609 [11]bool - _, _, _ = yysep1609, yyq1609, yy2arr1609 - const yyr1609 bool = false - yyq1609[2] = x.RestartPolicy != "" - yyq1609[3] = x.TerminationGracePeriodSeconds != nil - yyq1609[4] = x.ActiveDeadlineSeconds != nil - yyq1609[5] = x.DNSPolicy != "" - yyq1609[6] = len(x.NodeSelector) != 0 - yyq1609[8] = x.NodeName != "" - yyq1609[9] = x.SecurityContext != nil - yyq1609[10] = len(x.ImagePullSecrets) != 0 - var yynn1609 int - if yyr1609 || yy2arr1609 { + yysep1632 := !z.EncBinary() + yy2arr1632 := z.EncBasicHandle().StructToArray + var yyq1632 [11]bool + _, _, _ = yysep1632, yyq1632, yy2arr1632 + const yyr1632 bool = false + yyq1632[2] = x.RestartPolicy != "" + yyq1632[3] = x.TerminationGracePeriodSeconds != nil + yyq1632[4] = x.ActiveDeadlineSeconds != nil + yyq1632[5] = x.DNSPolicy != "" + yyq1632[6] = len(x.NodeSelector) != 0 + yyq1632[8] = x.NodeName != "" + yyq1632[9] = x.SecurityContext != nil + yyq1632[10] = len(x.ImagePullSecrets) != 0 + var yynn1632 int + if yyr1632 || yy2arr1632 { r.EncodeArrayStart(11) } else { - yynn1609 = 3 - for _, b := range yyq1609 { + yynn1632 = 3 + for _, b := range yyq1632 { if b { - yynn1609++ + yynn1632++ } } - r.EncodeMapStart(yynn1609) - yynn1609 = 0 + r.EncodeMapStart(yynn1632) + yynn1632 = 0 } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1611 := z.EncBinary() - _ = yym1611 + yym1634 := z.EncBinary() + _ = yym1634 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -21959,21 +22230,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Volumes == nil { r.EncodeNil() } else { - yym1612 := z.EncBinary() - _ = yym1612 + yym1635 := z.EncBinary() + _ = yym1635 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) } } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1614 := z.EncBinary() - _ = yym1614 + yym1637 := z.EncBinary() + _ = yym1637 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -21986,122 +22257,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1615 := z.EncBinary() - _ = yym1615 + yym1638 := z.EncBinary() + _ = yym1638 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[2] { + if yyq1632[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1609[2] { + if yyq1632[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[3] { + if yyq1632[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1618 := *x.TerminationGracePeriodSeconds - yym1619 := z.EncBinary() - _ = yym1619 + yy1641 := *x.TerminationGracePeriodSeconds + yym1642 := z.EncBinary() + _ = yym1642 if false { } else { - r.EncodeInt(int64(yy1618)) + r.EncodeInt(int64(yy1641)) } } } else { r.EncodeNil() } } else { - if yyq1609[3] { + if yyq1632[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1620 := *x.TerminationGracePeriodSeconds - yym1621 := z.EncBinary() - _ = yym1621 + yy1643 := *x.TerminationGracePeriodSeconds + yym1644 := z.EncBinary() + _ = yym1644 if false { } else { - r.EncodeInt(int64(yy1620)) + r.EncodeInt(int64(yy1643)) } } } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[4] { + if yyq1632[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1623 := *x.ActiveDeadlineSeconds - yym1624 := z.EncBinary() - _ = yym1624 + yy1646 := *x.ActiveDeadlineSeconds + yym1647 := z.EncBinary() + _ = yym1647 if false { } else { - r.EncodeInt(int64(yy1623)) + r.EncodeInt(int64(yy1646)) } } } else { r.EncodeNil() } } else { - if yyq1609[4] { + if yyq1632[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1625 := *x.ActiveDeadlineSeconds - yym1626 := z.EncBinary() - _ = yym1626 + yy1648 := *x.ActiveDeadlineSeconds + yym1649 := z.EncBinary() + _ = yym1649 if false { } else { - r.EncodeInt(int64(yy1625)) + r.EncodeInt(int64(yy1648)) } } } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[5] { + if yyq1632[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1609[5] { + if yyq1632[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[6] { + if yyq1632[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1629 := z.EncBinary() - _ = yym1629 + yym1652 := z.EncBinary() + _ = yym1652 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -22111,15 +22382,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1609[6] { + if yyq1632[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1630 := z.EncBinary() - _ = yym1630 + yym1653 := z.EncBinary() + _ = yym1653 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -22127,10 +22398,10 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1632 := z.EncBinary() - _ = yym1632 + yym1655 := z.EncBinary() + _ = yym1655 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -22139,18 +22410,18 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1633 := z.EncBinary() - _ = yym1633 + yym1656 := z.EncBinary() + _ = yym1656 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[8] { - yym1635 := z.EncBinary() - _ = yym1635 + if yyq1632[8] { + yym1658 := z.EncBinary() + _ = yym1658 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -22159,21 +22430,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1609[8] { + if yyq1632[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1636 := z.EncBinary() - _ = yym1636 + yym1659 := z.EncBinary() + _ = yym1659 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[9] { + if yyq1632[9] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -22183,7 +22454,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1609[9] { + if yyq1632[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22194,14 +22465,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[10] { + if yyq1632[10] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1639 := z.EncBinary() - _ = yym1639 + yym1662 := z.EncBinary() + _ = yym1662 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -22211,15 +22482,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1609[10] { + if yyq1632[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1640 := z.EncBinary() - _ = yym1640 + yym1663 := z.EncBinary() + _ = yym1663 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -22227,7 +22498,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1609 || yy2arr1609 { + if yyr1632 || yy2arr1632 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22240,25 +22511,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1641 := z.DecBinary() - _ = yym1641 + yym1664 := z.DecBinary() + _ = yym1664 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1642 := r.ContainerType() - if yyct1642 == codecSelferValueTypeMap1234 { - yyl1642 := r.ReadMapStart() - if yyl1642 == 0 { + yyct1665 := r.ContainerType() + if yyct1665 == codecSelferValueTypeMap1234 { + yyl1665 := r.ReadMapStart() + if yyl1665 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1642, d) + x.codecDecodeSelfFromMap(yyl1665, d) } - } else if yyct1642 == codecSelferValueTypeArray1234 { - yyl1642 := r.ReadArrayStart() - if yyl1642 == 0 { + } else if yyct1665 == codecSelferValueTypeArray1234 { + yyl1665 := r.ReadArrayStart() + if yyl1665 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1642, d) + x.codecDecodeSelfFromArray(yyl1665, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22270,12 +22541,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1643Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1643Slc - var yyhl1643 bool = l >= 0 - for yyj1643 := 0; ; yyj1643++ { - if yyhl1643 { - if yyj1643 >= l { + var yys1666Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1666Slc + var yyhl1666 bool = l >= 0 + for yyj1666 := 0; ; yyj1666++ { + if yyhl1666 { + if yyj1666 >= l { break } } else { @@ -22284,32 +22555,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1643Slc = r.DecodeBytes(yys1643Slc, true, true) - yys1643 := string(yys1643Slc) + yys1666Slc = r.DecodeBytes(yys1666Slc, true, true) + yys1666 := string(yys1666Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1643 { + switch yys1666 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1644 := &x.Volumes - yym1645 := z.DecBinary() - _ = yym1645 + yyv1667 := &x.Volumes + yym1668 := z.DecBinary() + _ = yym1668 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1644), d) + h.decSliceVolume((*[]Volume)(yyv1667), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1646 := &x.Containers - yym1647 := z.DecBinary() - _ = yym1647 + yyv1669 := &x.Containers + yym1670 := z.DecBinary() + _ = yym1670 if false { } else { - h.decSliceContainer((*[]Container)(yyv1646), d) + h.decSliceContainer((*[]Container)(yyv1669), d) } } case "restartPolicy": @@ -22327,8 +22598,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1650 := z.DecBinary() - _ = yym1650 + yym1673 := z.DecBinary() + _ = yym1673 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -22343,8 +22614,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1652 := z.DecBinary() - _ = yym1652 + yym1675 := z.DecBinary() + _ = yym1675 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -22360,12 +22631,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1654 := &x.NodeSelector - yym1655 := z.DecBinary() - _ = yym1655 + yyv1677 := &x.NodeSelector + yym1678 := z.DecBinary() + _ = yym1678 if false { } else { - z.F.DecMapStringStringX(yyv1654, false, d) + z.F.DecMapStringStringX(yyv1677, false, d) } } case "serviceAccountName": @@ -22395,18 +22666,18 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1659 := &x.ImagePullSecrets - yym1660 := z.DecBinary() - _ = yym1660 + yyv1682 := &x.ImagePullSecrets + yym1683 := z.DecBinary() + _ = yym1683 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1659), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1682), d) } } default: - z.DecStructFieldNotFound(-1, yys1643) - } // end switch yys1643 - } // end for yyj1643 + z.DecStructFieldNotFound(-1, yys1666) + } // end switch yys1666 + } // end for yyj1666 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22414,16 +22685,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1661 int - var yyb1661 bool - var yyhl1661 bool = l >= 0 - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + var yyj1684 int + var yyb1684 bool + var yyhl1684 bool = l >= 0 + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22431,21 +22702,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1662 := &x.Volumes - yym1663 := z.DecBinary() - _ = yym1663 + yyv1685 := &x.Volumes + yym1686 := z.DecBinary() + _ = yym1686 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1662), d) + h.decSliceVolume((*[]Volume)(yyv1685), d) } } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22453,21 +22724,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1664 := &x.Containers - yym1665 := z.DecBinary() - _ = yym1665 + yyv1687 := &x.Containers + yym1688 := z.DecBinary() + _ = yym1688 if false { } else { - h.decSliceContainer((*[]Container)(yyv1664), d) + h.decSliceContainer((*[]Container)(yyv1687), d) } } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22477,13 +22748,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22496,20 +22767,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1668 := z.DecBinary() - _ = yym1668 + yym1691 := z.DecBinary() + _ = yym1691 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22522,20 +22793,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1670 := z.DecBinary() - _ = yym1670 + yym1693 := z.DecBinary() + _ = yym1693 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22545,13 +22816,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22559,21 +22830,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1672 := &x.NodeSelector - yym1673 := z.DecBinary() - _ = yym1673 + yyv1695 := &x.NodeSelector + yym1696 := z.DecBinary() + _ = yym1696 if false { } else { - z.F.DecMapStringStringX(yyv1672, false, d) + z.F.DecMapStringStringX(yyv1695, false, d) } } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22583,13 +22854,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22599,13 +22870,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22620,13 +22891,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22634,26 +22905,26 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1677 := &x.ImagePullSecrets - yym1678 := z.DecBinary() - _ = yym1678 + yyv1700 := &x.ImagePullSecrets + yym1701 := z.DecBinary() + _ = yym1701 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1677), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1700), d) } } for { - yyj1661++ - if yyhl1661 { - yyb1661 = yyj1661 > l + yyj1684++ + if yyhl1684 { + yyb1684 = yyj1684 > l } else { - yyb1661 = r.CheckBreak() + yyb1684 = r.CheckBreak() } - if yyb1661 { + if yyb1684 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1661-1, "") + z.DecStructFieldNotFound(yyj1684-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22665,42 +22936,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1679 := z.EncBinary() - _ = yym1679 + yym1702 := z.EncBinary() + _ = yym1702 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1680 := !z.EncBinary() - yy2arr1680 := z.EncBasicHandle().StructToArray - var yyq1680 [8]bool - _, _, _ = yysep1680, yyq1680, yy2arr1680 - const yyr1680 bool = false - yyq1680[0] = x.HostNetwork != false - yyq1680[1] = x.HostPID != false - yyq1680[2] = x.HostIPC != false - yyq1680[3] = x.SELinuxOptions != nil - yyq1680[4] = x.RunAsUser != nil - yyq1680[5] = x.RunAsNonRoot != nil - yyq1680[6] = len(x.SupplementalGroups) != 0 - yyq1680[7] = x.FSGroup != nil - var yynn1680 int - if yyr1680 || yy2arr1680 { + yysep1703 := !z.EncBinary() + yy2arr1703 := z.EncBasicHandle().StructToArray + var yyq1703 [8]bool + _, _, _ = yysep1703, yyq1703, yy2arr1703 + const yyr1703 bool = false + yyq1703[0] = x.HostNetwork != false + yyq1703[1] = x.HostPID != false + yyq1703[2] = x.HostIPC != false + yyq1703[3] = x.SELinuxOptions != nil + yyq1703[4] = x.RunAsUser != nil + yyq1703[5] = x.RunAsNonRoot != nil + yyq1703[6] = len(x.SupplementalGroups) != 0 + yyq1703[7] = x.FSGroup != nil + var yynn1703 int + if yyr1703 || yy2arr1703 { r.EncodeArrayStart(8) } else { - yynn1680 = 0 - for _, b := range yyq1680 { + yynn1703 = 0 + for _, b := range yyq1703 { if b { - yynn1680++ + yynn1703++ } } - r.EncodeMapStart(yynn1680) - yynn1680 = 0 + r.EncodeMapStart(yynn1703) + yynn1703 = 0 } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1680[0] { - yym1682 := z.EncBinary() - _ = yym1682 + if yyq1703[0] { + yym1705 := z.EncBinary() + _ = yym1705 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -22709,23 +22980,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1680[0] { + if yyq1703[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1683 := z.EncBinary() - _ = yym1683 + yym1706 := z.EncBinary() + _ = yym1706 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1680[1] { - yym1685 := z.EncBinary() - _ = yym1685 + if yyq1703[1] { + yym1708 := z.EncBinary() + _ = yym1708 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -22734,23 +23005,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1680[1] { + if yyq1703[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1686 := z.EncBinary() - _ = yym1686 + yym1709 := z.EncBinary() + _ = yym1709 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1680[2] { - yym1688 := z.EncBinary() - _ = yym1688 + if yyq1703[2] { + yym1711 := z.EncBinary() + _ = yym1711 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -22759,21 +23030,21 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1680[2] { + if yyq1703[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1689 := z.EncBinary() - _ = yym1689 + yym1712 := z.EncBinary() + _ = yym1712 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1680[3] { + if yyq1703[3] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -22783,7 +23054,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1680[3] { + if yyq1703[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22794,84 +23065,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1680[4] { + if yyq1703[4] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy1692 := *x.RunAsUser - yym1693 := z.EncBinary() - _ = yym1693 + yy1715 := *x.RunAsUser + yym1716 := z.EncBinary() + _ = yym1716 if false { } else { - r.EncodeInt(int64(yy1692)) + r.EncodeInt(int64(yy1715)) } } } else { r.EncodeNil() } } else { - if yyq1680[4] { + if yyq1703[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy1694 := *x.RunAsUser - yym1695 := z.EncBinary() - _ = yym1695 + yy1717 := *x.RunAsUser + yym1718 := z.EncBinary() + _ = yym1718 if false { } else { - r.EncodeInt(int64(yy1694)) + r.EncodeInt(int64(yy1717)) } } } } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1680[5] { + if yyq1703[5] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1697 := *x.RunAsNonRoot - yym1698 := z.EncBinary() - _ = yym1698 + yy1720 := *x.RunAsNonRoot + yym1721 := z.EncBinary() + _ = yym1721 if false { } else { - r.EncodeBool(bool(yy1697)) + r.EncodeBool(bool(yy1720)) } } } else { r.EncodeNil() } } else { - if yyq1680[5] { + if yyq1703[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1699 := *x.RunAsNonRoot - yym1700 := z.EncBinary() - _ = yym1700 + yy1722 := *x.RunAsNonRoot + yym1723 := z.EncBinary() + _ = yym1723 if false { } else { - r.EncodeBool(bool(yy1699)) + r.EncodeBool(bool(yy1722)) } } } } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1680[6] { + if yyq1703[6] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1702 := z.EncBinary() - _ = yym1702 + yym1725 := z.EncBinary() + _ = yym1725 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -22881,15 +23152,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1680[6] { + if yyq1703[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1703 := z.EncBinary() - _ = yym1703 + yym1726 := z.EncBinary() + _ = yym1726 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -22897,42 +23168,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1680[7] { + if yyq1703[7] { if x.FSGroup == nil { r.EncodeNil() } else { - yy1705 := *x.FSGroup - yym1706 := z.EncBinary() - _ = yym1706 + yy1728 := *x.FSGroup + yym1729 := z.EncBinary() + _ = yym1729 if false { } else { - r.EncodeInt(int64(yy1705)) + r.EncodeInt(int64(yy1728)) } } } else { r.EncodeNil() } } else { - if yyq1680[7] { + if yyq1703[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy1707 := *x.FSGroup - yym1708 := z.EncBinary() - _ = yym1708 + yy1730 := *x.FSGroup + yym1731 := z.EncBinary() + _ = yym1731 if false { } else { - r.EncodeInt(int64(yy1707)) + r.EncodeInt(int64(yy1730)) } } } } - if yyr1680 || yy2arr1680 { + if yyr1703 || yy2arr1703 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22945,25 +23216,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1709 := z.DecBinary() - _ = yym1709 + yym1732 := z.DecBinary() + _ = yym1732 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1710 := r.ContainerType() - if yyct1710 == codecSelferValueTypeMap1234 { - yyl1710 := r.ReadMapStart() - if yyl1710 == 0 { + yyct1733 := r.ContainerType() + if yyct1733 == codecSelferValueTypeMap1234 { + yyl1733 := r.ReadMapStart() + if yyl1733 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1710, d) + x.codecDecodeSelfFromMap(yyl1733, d) } - } else if yyct1710 == codecSelferValueTypeArray1234 { - yyl1710 := r.ReadArrayStart() - if yyl1710 == 0 { + } else if yyct1733 == codecSelferValueTypeArray1234 { + yyl1733 := r.ReadArrayStart() + if yyl1733 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1710, d) + x.codecDecodeSelfFromArray(yyl1733, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22975,12 +23246,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1711Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1711Slc - var yyhl1711 bool = l >= 0 - for yyj1711 := 0; ; yyj1711++ { - if yyhl1711 { - if yyj1711 >= l { + var yys1734Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1734Slc + var yyhl1734 bool = l >= 0 + for yyj1734 := 0; ; yyj1734++ { + if yyhl1734 { + if yyj1734 >= l { break } } else { @@ -22989,10 +23260,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1711Slc = r.DecodeBytes(yys1711Slc, true, true) - yys1711 := string(yys1711Slc) + yys1734Slc = r.DecodeBytes(yys1734Slc, true, true) + yys1734 := string(yys1734Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1711 { + switch yys1734 { case "hostNetwork": if r.TryDecodeAsNil() { x.HostNetwork = false @@ -23031,8 +23302,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1717 := z.DecBinary() - _ = yym1717 + yym1740 := z.DecBinary() + _ = yym1740 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -23047,8 +23318,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1719 := z.DecBinary() - _ = yym1719 + yym1742 := z.DecBinary() + _ = yym1742 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -23058,12 +23329,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1720 := &x.SupplementalGroups - yym1721 := z.DecBinary() - _ = yym1721 + yyv1743 := &x.SupplementalGroups + yym1744 := z.DecBinary() + _ = yym1744 if false { } else { - z.F.DecSliceInt64X(yyv1720, false, d) + z.F.DecSliceInt64X(yyv1743, false, d) } } case "fsGroup": @@ -23075,17 +23346,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1723 := z.DecBinary() - _ = yym1723 + yym1746 := z.DecBinary() + _ = yym1746 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys1711) - } // end switch yys1711 - } // end for yyj1711 + z.DecStructFieldNotFound(-1, yys1734) + } // end switch yys1734 + } // end for yyj1734 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23093,16 +23364,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1724 int - var yyb1724 bool - var yyhl1724 bool = l >= 0 - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + var yyj1747 int + var yyb1747 bool + var yyhl1747 bool = l >= 0 + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23112,13 +23383,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23128,13 +23399,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostPID = bool(r.DecodeBool()) } - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23144,13 +23415,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23165,13 +23436,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23184,20 +23455,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1730 := z.DecBinary() - _ = yym1730 + yym1753 := z.DecBinary() + _ = yym1753 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23210,20 +23481,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1732 := z.DecBinary() - _ = yym1732 + yym1755 := z.DecBinary() + _ = yym1755 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23231,21 +23502,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1733 := &x.SupplementalGroups - yym1734 := z.DecBinary() - _ = yym1734 + yyv1756 := &x.SupplementalGroups + yym1757 := z.DecBinary() + _ = yym1757 if false { } else { - z.F.DecSliceInt64X(yyv1733, false, d) + z.F.DecSliceInt64X(yyv1756, false, d) } } - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23258,25 +23529,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1736 := z.DecBinary() - _ = yym1736 + yym1759 := z.DecBinary() + _ = yym1759 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1747++ + if yyhl1747 { + yyb1747 = yyj1747 > l } else { - yyb1724 = r.CheckBreak() + yyb1747 = r.CheckBreak() } - if yyb1724 { + if yyb1747 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1724-1, "") + z.DecStructFieldNotFound(yyj1747-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23288,60 +23559,60 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1737 := z.EncBinary() - _ = yym1737 + yym1760 := z.EncBinary() + _ = yym1760 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1738 := !z.EncBinary() - yy2arr1738 := z.EncBasicHandle().StructToArray - var yyq1738 [8]bool - _, _, _ = yysep1738, yyq1738, yy2arr1738 - const yyr1738 bool = false - yyq1738[0] = x.Phase != "" - yyq1738[1] = len(x.Conditions) != 0 - yyq1738[2] = x.Message != "" - yyq1738[3] = x.Reason != "" - yyq1738[4] = x.HostIP != "" - yyq1738[5] = x.PodIP != "" - yyq1738[6] = x.StartTime != nil - yyq1738[7] = len(x.ContainerStatuses) != 0 - var yynn1738 int - if yyr1738 || yy2arr1738 { + yysep1761 := !z.EncBinary() + yy2arr1761 := z.EncBasicHandle().StructToArray + var yyq1761 [8]bool + _, _, _ = yysep1761, yyq1761, yy2arr1761 + const yyr1761 bool = false + yyq1761[0] = x.Phase != "" + yyq1761[1] = len(x.Conditions) != 0 + yyq1761[2] = x.Message != "" + yyq1761[3] = x.Reason != "" + yyq1761[4] = x.HostIP != "" + yyq1761[5] = x.PodIP != "" + yyq1761[6] = x.StartTime != nil + yyq1761[7] = len(x.ContainerStatuses) != 0 + var yynn1761 int + if yyr1761 || yy2arr1761 { r.EncodeArrayStart(8) } else { - yynn1738 = 0 - for _, b := range yyq1738 { + yynn1761 = 0 + for _, b := range yyq1761 { if b { - yynn1738++ + yynn1761++ } } - r.EncodeMapStart(yynn1738) - yynn1738 = 0 + r.EncodeMapStart(yynn1761) + yynn1761 = 0 } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1738[0] { + if yyq1761[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1738[0] { + if yyq1761[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1738[1] { + if yyq1761[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym1741 := z.EncBinary() - _ = yym1741 + yym1764 := z.EncBinary() + _ = yym1764 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -23351,15 +23622,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1738[1] { + if yyq1761[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym1742 := z.EncBinary() - _ = yym1742 + yym1765 := z.EncBinary() + _ = yym1765 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -23367,11 +23638,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1738[2] { - yym1744 := z.EncBinary() - _ = yym1744 + if yyq1761[2] { + yym1767 := z.EncBinary() + _ = yym1767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -23380,23 +23651,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1738[2] { + if yyq1761[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1745 := z.EncBinary() - _ = yym1745 + yym1768 := z.EncBinary() + _ = yym1768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1738[3] { - yym1747 := z.EncBinary() - _ = yym1747 + if yyq1761[3] { + yym1770 := z.EncBinary() + _ = yym1770 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -23405,23 +23676,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1738[3] { + if yyq1761[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1748 := z.EncBinary() - _ = yym1748 + yym1771 := z.EncBinary() + _ = yym1771 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1738[4] { - yym1750 := z.EncBinary() - _ = yym1750 + if yyq1761[4] { + yym1773 := z.EncBinary() + _ = yym1773 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -23430,23 +23701,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1738[4] { + if yyq1761[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1751 := z.EncBinary() - _ = yym1751 + yym1774 := z.EncBinary() + _ = yym1774 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1738[5] { - yym1753 := z.EncBinary() - _ = yym1753 + if yyq1761[5] { + yym1776 := z.EncBinary() + _ = yym1776 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -23455,31 +23726,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1738[5] { + if yyq1761[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1754 := z.EncBinary() - _ = yym1754 + yym1777 := z.EncBinary() + _ = yym1777 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1738[6] { + if yyq1761[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym1756 := z.EncBinary() - _ = yym1756 + yym1779 := z.EncBinary() + _ = yym1779 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1756 { + } else if yym1779 { z.EncBinaryMarshal(x.StartTime) - } else if !yym1756 && z.IsJSONHandle() { + } else if !yym1779 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -23489,20 +23760,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1738[6] { + if yyq1761[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym1757 := z.EncBinary() - _ = yym1757 + yym1780 := z.EncBinary() + _ = yym1780 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1757 { + } else if yym1780 { z.EncBinaryMarshal(x.StartTime) - } else if !yym1757 && z.IsJSONHandle() { + } else if !yym1780 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -23510,14 +23781,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1738[7] { + if yyq1761[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym1759 := z.EncBinary() - _ = yym1759 + yym1782 := z.EncBinary() + _ = yym1782 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -23527,15 +23798,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1738[7] { + if yyq1761[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym1760 := z.EncBinary() - _ = yym1760 + yym1783 := z.EncBinary() + _ = yym1783 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -23543,7 +23814,7 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1738 || yy2arr1738 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23556,25 +23827,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1761 := z.DecBinary() - _ = yym1761 + yym1784 := z.DecBinary() + _ = yym1784 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1762 := r.ContainerType() - if yyct1762 == codecSelferValueTypeMap1234 { - yyl1762 := r.ReadMapStart() - if yyl1762 == 0 { + yyct1785 := r.ContainerType() + if yyct1785 == codecSelferValueTypeMap1234 { + yyl1785 := r.ReadMapStart() + if yyl1785 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1762, d) + x.codecDecodeSelfFromMap(yyl1785, d) } - } else if yyct1762 == codecSelferValueTypeArray1234 { - yyl1762 := r.ReadArrayStart() - if yyl1762 == 0 { + } else if yyct1785 == codecSelferValueTypeArray1234 { + yyl1785 := r.ReadArrayStart() + if yyl1785 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1762, d) + x.codecDecodeSelfFromArray(yyl1785, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23586,12 +23857,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1763Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1763Slc - var yyhl1763 bool = l >= 0 - for yyj1763 := 0; ; yyj1763++ { - if yyhl1763 { - if yyj1763 >= l { + var yys1786Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1786Slc + var yyhl1786 bool = l >= 0 + for yyj1786 := 0; ; yyj1786++ { + if yyhl1786 { + if yyj1786 >= l { break } } else { @@ -23600,10 +23871,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1763Slc = r.DecodeBytes(yys1763Slc, true, true) - yys1763 := string(yys1763Slc) + yys1786Slc = r.DecodeBytes(yys1786Slc, true, true) + yys1786 := string(yys1786Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1763 { + switch yys1786 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -23614,12 +23885,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1765 := &x.Conditions - yym1766 := z.DecBinary() - _ = yym1766 + yyv1788 := &x.Conditions + yym1789 := z.DecBinary() + _ = yym1789 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1765), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1788), d) } } case "message": @@ -23655,13 +23926,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1772 := z.DecBinary() - _ = yym1772 + yym1795 := z.DecBinary() + _ = yym1795 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1772 { + } else if yym1795 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1772 && z.IsJSONHandle() { + } else if !yym1795 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -23671,18 +23942,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1773 := &x.ContainerStatuses - yym1774 := z.DecBinary() - _ = yym1774 + yyv1796 := &x.ContainerStatuses + yym1797 := z.DecBinary() + _ = yym1797 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1773), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1796), d) } } default: - z.DecStructFieldNotFound(-1, yys1763) - } // end switch yys1763 - } // end for yyj1763 + z.DecStructFieldNotFound(-1, yys1786) + } // end switch yys1786 + } // end for yyj1786 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23690,16 +23961,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1775 int - var yyb1775 bool - var yyhl1775 bool = l >= 0 - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + var yyj1798 int + var yyb1798 bool + var yyhl1798 bool = l >= 0 + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23709,13 +23980,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23723,21 +23994,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1777 := &x.Conditions - yym1778 := z.DecBinary() - _ = yym1778 + yyv1800 := &x.Conditions + yym1801 := z.DecBinary() + _ = yym1801 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1777), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1800), d) } } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23747,13 +24018,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23763,13 +24034,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23779,13 +24050,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23795,13 +24066,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23814,25 +24085,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1784 := z.DecBinary() - _ = yym1784 + yym1807 := z.DecBinary() + _ = yym1807 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1784 { + } else if yym1807 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1784 && z.IsJSONHandle() { + } else if !yym1807 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23840,26 +24111,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1785 := &x.ContainerStatuses - yym1786 := z.DecBinary() - _ = yym1786 + yyv1808 := &x.ContainerStatuses + yym1809 := z.DecBinary() + _ = yym1809 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1785), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1808), d) } } for { - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1798++ + if yyhl1798 { + yyb1798 = yyj1798 > l } else { - yyb1775 = r.CheckBreak() + yyb1798 = r.CheckBreak() } - if yyb1775 { + if yyb1798 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1775-1, "") + z.DecStructFieldNotFound(yyj1798-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23871,38 +24142,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1787 := z.EncBinary() - _ = yym1787 + yym1810 := z.EncBinary() + _ = yym1810 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1788 := !z.EncBinary() - yy2arr1788 := z.EncBasicHandle().StructToArray - var yyq1788 [4]bool - _, _, _ = yysep1788, yyq1788, yy2arr1788 - const yyr1788 bool = false - yyq1788[0] = x.Kind != "" - yyq1788[1] = x.APIVersion != "" - yyq1788[2] = true - yyq1788[3] = true - var yynn1788 int - if yyr1788 || yy2arr1788 { + yysep1811 := !z.EncBinary() + yy2arr1811 := z.EncBasicHandle().StructToArray + var yyq1811 [4]bool + _, _, _ = yysep1811, yyq1811, yy2arr1811 + const yyr1811 bool = false + yyq1811[0] = x.Kind != "" + yyq1811[1] = x.APIVersion != "" + yyq1811[2] = true + yyq1811[3] = true + var yynn1811 int + if yyr1811 || yy2arr1811 { r.EncodeArrayStart(4) } else { - yynn1788 = 0 - for _, b := range yyq1788 { + yynn1811 = 0 + for _, b := range yyq1811 { if b { - yynn1788++ + yynn1811++ } } - r.EncodeMapStart(yynn1788) - yynn1788 = 0 + r.EncodeMapStart(yynn1811) + yynn1811 = 0 } - if yyr1788 || yy2arr1788 { + if yyr1811 || yy2arr1811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1788[0] { - yym1790 := z.EncBinary() - _ = yym1790 + if yyq1811[0] { + yym1813 := z.EncBinary() + _ = yym1813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23911,23 +24182,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1788[0] { + if yyq1811[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1791 := z.EncBinary() - _ = yym1791 + yym1814 := z.EncBinary() + _ = yym1814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1788 || yy2arr1788 { + if yyr1811 || yy2arr1811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1788[1] { - yym1793 := z.EncBinary() - _ = yym1793 + if yyq1811[1] { + yym1816 := z.EncBinary() + _ = yym1816 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23936,53 +24207,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1788[1] { + if yyq1811[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1794 := z.EncBinary() - _ = yym1794 + yym1817 := z.EncBinary() + _ = yym1817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1788 || yy2arr1788 { + if yyr1811 || yy2arr1811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1788[2] { - yy1796 := &x.ObjectMeta - yy1796.CodecEncodeSelf(e) + if yyq1811[2] { + yy1819 := &x.ObjectMeta + yy1819.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1788[2] { + if yyq1811[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1797 := &x.ObjectMeta - yy1797.CodecEncodeSelf(e) + yy1820 := &x.ObjectMeta + yy1820.CodecEncodeSelf(e) } } - if yyr1788 || yy2arr1788 { + if yyr1811 || yy2arr1811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1788[3] { - yy1799 := &x.Status - yy1799.CodecEncodeSelf(e) + if yyq1811[3] { + yy1822 := &x.Status + yy1822.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1788[3] { + if yyq1811[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1800 := &x.Status - yy1800.CodecEncodeSelf(e) + yy1823 := &x.Status + yy1823.CodecEncodeSelf(e) } } - if yyr1788 || yy2arr1788 { + if yyr1811 || yy2arr1811 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23995,25 +24266,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1801 := z.DecBinary() - _ = yym1801 + yym1824 := z.DecBinary() + _ = yym1824 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1802 := r.ContainerType() - if yyct1802 == codecSelferValueTypeMap1234 { - yyl1802 := r.ReadMapStart() - if yyl1802 == 0 { + yyct1825 := r.ContainerType() + if yyct1825 == codecSelferValueTypeMap1234 { + yyl1825 := r.ReadMapStart() + if yyl1825 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1802, d) + x.codecDecodeSelfFromMap(yyl1825, d) } - } else if yyct1802 == codecSelferValueTypeArray1234 { - yyl1802 := r.ReadArrayStart() - if yyl1802 == 0 { + } else if yyct1825 == codecSelferValueTypeArray1234 { + yyl1825 := r.ReadArrayStart() + if yyl1825 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1802, d) + x.codecDecodeSelfFromArray(yyl1825, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24025,12 +24296,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1803Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1803Slc - var yyhl1803 bool = l >= 0 - for yyj1803 := 0; ; yyj1803++ { - if yyhl1803 { - if yyj1803 >= l { + var yys1826Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1826Slc + var yyhl1826 bool = l >= 0 + for yyj1826 := 0; ; yyj1826++ { + if yyhl1826 { + if yyj1826 >= l { break } } else { @@ -24039,10 +24310,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1803Slc = r.DecodeBytes(yys1803Slc, true, true) - yys1803 := string(yys1803Slc) + yys1826Slc = r.DecodeBytes(yys1826Slc, true, true) + yys1826 := string(yys1826Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1803 { + switch yys1826 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24059,20 +24330,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1806 := &x.ObjectMeta - yyv1806.CodecDecodeSelf(d) + yyv1829 := &x.ObjectMeta + yyv1829.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1807 := &x.Status - yyv1807.CodecDecodeSelf(d) + yyv1830 := &x.Status + yyv1830.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1803) - } // end switch yys1803 - } // end for yyj1803 + z.DecStructFieldNotFound(-1, yys1826) + } // end switch yys1826 + } // end for yyj1826 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24080,16 +24351,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1808 int - var yyb1808 bool - var yyhl1808 bool = l >= 0 - yyj1808++ - if yyhl1808 { - yyb1808 = yyj1808 > l + var yyj1831 int + var yyb1831 bool + var yyhl1831 bool = l >= 0 + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1808 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1808 { + if yyb1831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24099,13 +24370,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1808++ - if yyhl1808 { - yyb1808 = yyj1808 > l + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1808 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1808 { + if yyb1831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24115,13 +24386,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1808++ - if yyhl1808 { - yyb1808 = yyj1808 > l + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1808 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1808 { + if yyb1831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24129,16 +24400,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1811 := &x.ObjectMeta - yyv1811.CodecDecodeSelf(d) + yyv1834 := &x.ObjectMeta + yyv1834.CodecDecodeSelf(d) } - yyj1808++ - if yyhl1808 { - yyb1808 = yyj1808 > l + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1808 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1808 { + if yyb1831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24146,21 +24417,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1812 := &x.Status - yyv1812.CodecDecodeSelf(d) + yyv1835 := &x.Status + yyv1835.CodecDecodeSelf(d) } for { - yyj1808++ - if yyhl1808 { - yyb1808 = yyj1808 > l + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1808 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1808 { + if yyb1831 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1808-1, "") + z.DecStructFieldNotFound(yyj1831-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24172,39 +24443,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1813 := z.EncBinary() - _ = yym1813 + yym1836 := z.EncBinary() + _ = yym1836 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1814 := !z.EncBinary() - yy2arr1814 := z.EncBasicHandle().StructToArray - var yyq1814 [5]bool - _, _, _ = yysep1814, yyq1814, yy2arr1814 - const yyr1814 bool = false - yyq1814[0] = x.Kind != "" - yyq1814[1] = x.APIVersion != "" - yyq1814[2] = true - yyq1814[3] = true - yyq1814[4] = true - var yynn1814 int - if yyr1814 || yy2arr1814 { + yysep1837 := !z.EncBinary() + yy2arr1837 := z.EncBasicHandle().StructToArray + var yyq1837 [5]bool + _, _, _ = yysep1837, yyq1837, yy2arr1837 + const yyr1837 bool = false + yyq1837[0] = x.Kind != "" + yyq1837[1] = x.APIVersion != "" + yyq1837[2] = true + yyq1837[3] = true + yyq1837[4] = true + var yynn1837 int + if yyr1837 || yy2arr1837 { r.EncodeArrayStart(5) } else { - yynn1814 = 0 - for _, b := range yyq1814 { + yynn1837 = 0 + for _, b := range yyq1837 { if b { - yynn1814++ + yynn1837++ } } - r.EncodeMapStart(yynn1814) - yynn1814 = 0 + r.EncodeMapStart(yynn1837) + yynn1837 = 0 } - if yyr1814 || yy2arr1814 { + if yyr1837 || yy2arr1837 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1814[0] { - yym1816 := z.EncBinary() - _ = yym1816 + if yyq1837[0] { + yym1839 := z.EncBinary() + _ = yym1839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -24213,23 +24484,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1814[0] { + if yyq1837[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1817 := z.EncBinary() - _ = yym1817 + yym1840 := z.EncBinary() + _ = yym1840 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1814 || yy2arr1814 { + if yyr1837 || yy2arr1837 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1814[1] { - yym1819 := z.EncBinary() - _ = yym1819 + if yyq1837[1] { + yym1842 := z.EncBinary() + _ = yym1842 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -24238,70 +24509,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1814[1] { + if yyq1837[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1820 := z.EncBinary() - _ = yym1820 + yym1843 := z.EncBinary() + _ = yym1843 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1814 || yy2arr1814 { + if yyr1837 || yy2arr1837 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1814[2] { - yy1822 := &x.ObjectMeta - yy1822.CodecEncodeSelf(e) + if yyq1837[2] { + yy1845 := &x.ObjectMeta + yy1845.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1814[2] { + if yyq1837[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1823 := &x.ObjectMeta - yy1823.CodecEncodeSelf(e) + yy1846 := &x.ObjectMeta + yy1846.CodecEncodeSelf(e) } } - if yyr1814 || yy2arr1814 { + if yyr1837 || yy2arr1837 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1814[3] { - yy1825 := &x.Spec - yy1825.CodecEncodeSelf(e) + if yyq1837[3] { + yy1848 := &x.Spec + yy1848.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1814[3] { + if yyq1837[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1826 := &x.Spec - yy1826.CodecEncodeSelf(e) + yy1849 := &x.Spec + yy1849.CodecEncodeSelf(e) } } - if yyr1814 || yy2arr1814 { + if yyr1837 || yy2arr1837 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1814[4] { - yy1828 := &x.Status - yy1828.CodecEncodeSelf(e) + if yyq1837[4] { + yy1851 := &x.Status + yy1851.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1814[4] { + if yyq1837[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1829 := &x.Status - yy1829.CodecEncodeSelf(e) + yy1852 := &x.Status + yy1852.CodecEncodeSelf(e) } } - if yyr1814 || yy2arr1814 { + if yyr1837 || yy2arr1837 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24314,25 +24585,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1830 := z.DecBinary() - _ = yym1830 + yym1853 := z.DecBinary() + _ = yym1853 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1831 := r.ContainerType() - if yyct1831 == codecSelferValueTypeMap1234 { - yyl1831 := r.ReadMapStart() - if yyl1831 == 0 { + yyct1854 := r.ContainerType() + if yyct1854 == codecSelferValueTypeMap1234 { + yyl1854 := r.ReadMapStart() + if yyl1854 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1831, d) + x.codecDecodeSelfFromMap(yyl1854, d) } - } else if yyct1831 == codecSelferValueTypeArray1234 { - yyl1831 := r.ReadArrayStart() - if yyl1831 == 0 { + } else if yyct1854 == codecSelferValueTypeArray1234 { + yyl1854 := r.ReadArrayStart() + if yyl1854 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1831, d) + x.codecDecodeSelfFromArray(yyl1854, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24344,12 +24615,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1832Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1832Slc - var yyhl1832 bool = l >= 0 - for yyj1832 := 0; ; yyj1832++ { - if yyhl1832 { - if yyj1832 >= l { + var yys1855Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1855Slc + var yyhl1855 bool = l >= 0 + for yyj1855 := 0; ; yyj1855++ { + if yyhl1855 { + if yyj1855 >= l { break } } else { @@ -24358,10 +24629,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1832Slc = r.DecodeBytes(yys1832Slc, true, true) - yys1832 := string(yys1832Slc) + yys1855Slc = r.DecodeBytes(yys1855Slc, true, true) + yys1855 := string(yys1855Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1832 { + switch yys1855 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24378,27 +24649,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1835 := &x.ObjectMeta - yyv1835.CodecDecodeSelf(d) + yyv1858 := &x.ObjectMeta + yyv1858.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1836 := &x.Spec - yyv1836.CodecDecodeSelf(d) + yyv1859 := &x.Spec + yyv1859.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1837 := &x.Status - yyv1837.CodecDecodeSelf(d) + yyv1860 := &x.Status + yyv1860.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1832) - } // end switch yys1832 - } // end for yyj1832 + z.DecStructFieldNotFound(-1, yys1855) + } // end switch yys1855 + } // end for yyj1855 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24406,16 +24677,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1838 int - var yyb1838 bool - var yyhl1838 bool = l >= 0 - yyj1838++ - if yyhl1838 { - yyb1838 = yyj1838 > l + var yyj1861 int + var yyb1861 bool + var yyhl1861 bool = l >= 0 + yyj1861++ + if yyhl1861 { + yyb1861 = yyj1861 > l } else { - yyb1838 = r.CheckBreak() + yyb1861 = r.CheckBreak() } - if yyb1838 { + if yyb1861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24425,13 +24696,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1838++ - if yyhl1838 { - yyb1838 = yyj1838 > l + yyj1861++ + if yyhl1861 { + yyb1861 = yyj1861 > l } else { - yyb1838 = r.CheckBreak() + yyb1861 = r.CheckBreak() } - if yyb1838 { + if yyb1861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24441,13 +24712,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1838++ - if yyhl1838 { - yyb1838 = yyj1838 > l + yyj1861++ + if yyhl1861 { + yyb1861 = yyj1861 > l } else { - yyb1838 = r.CheckBreak() + yyb1861 = r.CheckBreak() } - if yyb1838 { + if yyb1861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24455,16 +24726,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1841 := &x.ObjectMeta - yyv1841.CodecDecodeSelf(d) + yyv1864 := &x.ObjectMeta + yyv1864.CodecDecodeSelf(d) } - yyj1838++ - if yyhl1838 { - yyb1838 = yyj1838 > l + yyj1861++ + if yyhl1861 { + yyb1861 = yyj1861 > l } else { - yyb1838 = r.CheckBreak() + yyb1861 = r.CheckBreak() } - if yyb1838 { + if yyb1861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24472,16 +24743,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1842 := &x.Spec - yyv1842.CodecDecodeSelf(d) + yyv1865 := &x.Spec + yyv1865.CodecDecodeSelf(d) } - yyj1838++ - if yyhl1838 { - yyb1838 = yyj1838 > l + yyj1861++ + if yyhl1861 { + yyb1861 = yyj1861 > l } else { - yyb1838 = r.CheckBreak() + yyb1861 = r.CheckBreak() } - if yyb1838 { + if yyb1861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24489,21 +24760,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1843 := &x.Status - yyv1843.CodecDecodeSelf(d) + yyv1866 := &x.Status + yyv1866.CodecDecodeSelf(d) } for { - yyj1838++ - if yyhl1838 { - yyb1838 = yyj1838 > l + yyj1861++ + if yyhl1861 { + yyb1861 = yyj1861 > l } else { - yyb1838 = r.CheckBreak() + yyb1861 = r.CheckBreak() } - if yyb1838 { + if yyb1861 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1838-1, "") + z.DecStructFieldNotFound(yyj1861-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24515,66 +24786,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1844 := z.EncBinary() - _ = yym1844 + yym1867 := z.EncBinary() + _ = yym1867 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1845 := !z.EncBinary() - yy2arr1845 := z.EncBasicHandle().StructToArray - var yyq1845 [2]bool - _, _, _ = yysep1845, yyq1845, yy2arr1845 - const yyr1845 bool = false - yyq1845[0] = true - yyq1845[1] = true - var yynn1845 int - if yyr1845 || yy2arr1845 { + yysep1868 := !z.EncBinary() + yy2arr1868 := z.EncBasicHandle().StructToArray + var yyq1868 [2]bool + _, _, _ = yysep1868, yyq1868, yy2arr1868 + const yyr1868 bool = false + yyq1868[0] = true + yyq1868[1] = true + var yynn1868 int + if yyr1868 || yy2arr1868 { r.EncodeArrayStart(2) } else { - yynn1845 = 0 - for _, b := range yyq1845 { + yynn1868 = 0 + for _, b := range yyq1868 { if b { - yynn1845++ + yynn1868++ } } - r.EncodeMapStart(yynn1845) - yynn1845 = 0 + r.EncodeMapStart(yynn1868) + yynn1868 = 0 } - if yyr1845 || yy2arr1845 { + if yyr1868 || yy2arr1868 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1845[0] { - yy1847 := &x.ObjectMeta - yy1847.CodecEncodeSelf(e) + if yyq1868[0] { + yy1870 := &x.ObjectMeta + yy1870.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1845[0] { + if yyq1868[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1848 := &x.ObjectMeta - yy1848.CodecEncodeSelf(e) + yy1871 := &x.ObjectMeta + yy1871.CodecEncodeSelf(e) } } - if yyr1845 || yy2arr1845 { + if yyr1868 || yy2arr1868 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1845[1] { - yy1850 := &x.Spec - yy1850.CodecEncodeSelf(e) + if yyq1868[1] { + yy1873 := &x.Spec + yy1873.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1845[1] { + if yyq1868[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1851 := &x.Spec - yy1851.CodecEncodeSelf(e) + yy1874 := &x.Spec + yy1874.CodecEncodeSelf(e) } } - if yyr1845 || yy2arr1845 { + if yyr1868 || yy2arr1868 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24587,25 +24858,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1852 := z.DecBinary() - _ = yym1852 + yym1875 := z.DecBinary() + _ = yym1875 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1853 := r.ContainerType() - if yyct1853 == codecSelferValueTypeMap1234 { - yyl1853 := r.ReadMapStart() - if yyl1853 == 0 { + yyct1876 := r.ContainerType() + if yyct1876 == codecSelferValueTypeMap1234 { + yyl1876 := r.ReadMapStart() + if yyl1876 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1853, d) + x.codecDecodeSelfFromMap(yyl1876, d) } - } else if yyct1853 == codecSelferValueTypeArray1234 { - yyl1853 := r.ReadArrayStart() - if yyl1853 == 0 { + } else if yyct1876 == codecSelferValueTypeArray1234 { + yyl1876 := r.ReadArrayStart() + if yyl1876 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1853, d) + x.codecDecodeSelfFromArray(yyl1876, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24617,12 +24888,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1854Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1854Slc - var yyhl1854 bool = l >= 0 - for yyj1854 := 0; ; yyj1854++ { - if yyhl1854 { - if yyj1854 >= l { + var yys1877Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1877Slc + var yyhl1877 bool = l >= 0 + for yyj1877 := 0; ; yyj1877++ { + if yyhl1877 { + if yyj1877 >= l { break } } else { @@ -24631,28 +24902,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1854Slc = r.DecodeBytes(yys1854Slc, true, true) - yys1854 := string(yys1854Slc) + yys1877Slc = r.DecodeBytes(yys1877Slc, true, true) + yys1877 := string(yys1877Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1854 { + switch yys1877 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1855 := &x.ObjectMeta - yyv1855.CodecDecodeSelf(d) + yyv1878 := &x.ObjectMeta + yyv1878.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1856 := &x.Spec - yyv1856.CodecDecodeSelf(d) + yyv1879 := &x.Spec + yyv1879.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1854) - } // end switch yys1854 - } // end for yyj1854 + z.DecStructFieldNotFound(-1, yys1877) + } // end switch yys1877 + } // end for yyj1877 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24660,16 +24931,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1857 int - var yyb1857 bool - var yyhl1857 bool = l >= 0 - yyj1857++ - if yyhl1857 { - yyb1857 = yyj1857 > l + var yyj1880 int + var yyb1880 bool + var yyhl1880 bool = l >= 0 + yyj1880++ + if yyhl1880 { + yyb1880 = yyj1880 > l } else { - yyb1857 = r.CheckBreak() + yyb1880 = r.CheckBreak() } - if yyb1857 { + if yyb1880 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24677,16 +24948,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1858 := &x.ObjectMeta - yyv1858.CodecDecodeSelf(d) + yyv1881 := &x.ObjectMeta + yyv1881.CodecDecodeSelf(d) } - yyj1857++ - if yyhl1857 { - yyb1857 = yyj1857 > l + yyj1880++ + if yyhl1880 { + yyb1880 = yyj1880 > l } else { - yyb1857 = r.CheckBreak() + yyb1880 = r.CheckBreak() } - if yyb1857 { + if yyb1880 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24694,21 +24965,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1859 := &x.Spec - yyv1859.CodecDecodeSelf(d) + yyv1882 := &x.Spec + yyv1882.CodecDecodeSelf(d) } for { - yyj1857++ - if yyhl1857 { - yyb1857 = yyj1857 > l + yyj1880++ + if yyhl1880 { + yyb1880 = yyj1880 > l } else { - yyb1857 = r.CheckBreak() + yyb1880 = r.CheckBreak() } - if yyb1857 { + if yyb1880 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1857-1, "") + z.DecStructFieldNotFound(yyj1880-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24720,38 +24991,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1860 := z.EncBinary() - _ = yym1860 + yym1883 := z.EncBinary() + _ = yym1883 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1861 := !z.EncBinary() - yy2arr1861 := z.EncBasicHandle().StructToArray - var yyq1861 [4]bool - _, _, _ = yysep1861, yyq1861, yy2arr1861 - const yyr1861 bool = false - yyq1861[0] = x.Kind != "" - yyq1861[1] = x.APIVersion != "" - yyq1861[2] = true - yyq1861[3] = true - var yynn1861 int - if yyr1861 || yy2arr1861 { + yysep1884 := !z.EncBinary() + yy2arr1884 := z.EncBasicHandle().StructToArray + var yyq1884 [4]bool + _, _, _ = yysep1884, yyq1884, yy2arr1884 + const yyr1884 bool = false + yyq1884[0] = x.Kind != "" + yyq1884[1] = x.APIVersion != "" + yyq1884[2] = true + yyq1884[3] = true + var yynn1884 int + if yyr1884 || yy2arr1884 { r.EncodeArrayStart(4) } else { - yynn1861 = 0 - for _, b := range yyq1861 { + yynn1884 = 0 + for _, b := range yyq1884 { if b { - yynn1861++ + yynn1884++ } } - r.EncodeMapStart(yynn1861) - yynn1861 = 0 + r.EncodeMapStart(yynn1884) + yynn1884 = 0 } - if yyr1861 || yy2arr1861 { + if yyr1884 || yy2arr1884 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1861[0] { - yym1863 := z.EncBinary() - _ = yym1863 + if yyq1884[0] { + yym1886 := z.EncBinary() + _ = yym1886 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -24760,23 +25031,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1861[0] { + if yyq1884[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1864 := z.EncBinary() - _ = yym1864 + yym1887 := z.EncBinary() + _ = yym1887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1861 || yy2arr1861 { + if yyr1884 || yy2arr1884 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1861[1] { - yym1866 := z.EncBinary() - _ = yym1866 + if yyq1884[1] { + yym1889 := z.EncBinary() + _ = yym1889 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -24785,53 +25056,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1861[1] { + if yyq1884[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1867 := z.EncBinary() - _ = yym1867 + yym1890 := z.EncBinary() + _ = yym1890 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1861 || yy2arr1861 { + if yyr1884 || yy2arr1884 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1861[2] { - yy1869 := &x.ObjectMeta - yy1869.CodecEncodeSelf(e) + if yyq1884[2] { + yy1892 := &x.ObjectMeta + yy1892.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1861[2] { + if yyq1884[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1870 := &x.ObjectMeta - yy1870.CodecEncodeSelf(e) + yy1893 := &x.ObjectMeta + yy1893.CodecEncodeSelf(e) } } - if yyr1861 || yy2arr1861 { + if yyr1884 || yy2arr1884 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1861[3] { - yy1872 := &x.Template - yy1872.CodecEncodeSelf(e) + if yyq1884[3] { + yy1895 := &x.Template + yy1895.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1861[3] { + if yyq1884[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1873 := &x.Template - yy1873.CodecEncodeSelf(e) + yy1896 := &x.Template + yy1896.CodecEncodeSelf(e) } } - if yyr1861 || yy2arr1861 { + if yyr1884 || yy2arr1884 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24844,25 +25115,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1874 := z.DecBinary() - _ = yym1874 + yym1897 := z.DecBinary() + _ = yym1897 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1875 := r.ContainerType() - if yyct1875 == codecSelferValueTypeMap1234 { - yyl1875 := r.ReadMapStart() - if yyl1875 == 0 { + yyct1898 := r.ContainerType() + if yyct1898 == codecSelferValueTypeMap1234 { + yyl1898 := r.ReadMapStart() + if yyl1898 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1875, d) + x.codecDecodeSelfFromMap(yyl1898, d) } - } else if yyct1875 == codecSelferValueTypeArray1234 { - yyl1875 := r.ReadArrayStart() - if yyl1875 == 0 { + } else if yyct1898 == codecSelferValueTypeArray1234 { + yyl1898 := r.ReadArrayStart() + if yyl1898 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1875, d) + x.codecDecodeSelfFromArray(yyl1898, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24874,12 +25145,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1876Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1876Slc - var yyhl1876 bool = l >= 0 - for yyj1876 := 0; ; yyj1876++ { - if yyhl1876 { - if yyj1876 >= l { + var yys1899Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1899Slc + var yyhl1899 bool = l >= 0 + for yyj1899 := 0; ; yyj1899++ { + if yyhl1899 { + if yyj1899 >= l { break } } else { @@ -24888,10 +25159,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1876Slc = r.DecodeBytes(yys1876Slc, true, true) - yys1876 := string(yys1876Slc) + yys1899Slc = r.DecodeBytes(yys1899Slc, true, true) + yys1899 := string(yys1899Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1876 { + switch yys1899 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24908,20 +25179,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1879 := &x.ObjectMeta - yyv1879.CodecDecodeSelf(d) + yyv1902 := &x.ObjectMeta + yyv1902.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1880 := &x.Template - yyv1880.CodecDecodeSelf(d) + yyv1903 := &x.Template + yyv1903.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1876) - } // end switch yys1876 - } // end for yyj1876 + z.DecStructFieldNotFound(-1, yys1899) + } // end switch yys1899 + } // end for yyj1899 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24929,16 +25200,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1881 int - var yyb1881 bool - var yyhl1881 bool = l >= 0 - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + var yyj1904 int + var yyb1904 bool + var yyhl1904 bool = l >= 0 + yyj1904++ + if yyhl1904 { + yyb1904 = yyj1904 > l } else { - yyb1881 = r.CheckBreak() + yyb1904 = r.CheckBreak() } - if yyb1881 { + if yyb1904 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24948,13 +25219,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + yyj1904++ + if yyhl1904 { + yyb1904 = yyj1904 > l } else { - yyb1881 = r.CheckBreak() + yyb1904 = r.CheckBreak() } - if yyb1881 { + if yyb1904 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24964,13 +25235,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + yyj1904++ + if yyhl1904 { + yyb1904 = yyj1904 > l } else { - yyb1881 = r.CheckBreak() + yyb1904 = r.CheckBreak() } - if yyb1881 { + if yyb1904 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24978,16 +25249,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1884 := &x.ObjectMeta - yyv1884.CodecDecodeSelf(d) + yyv1907 := &x.ObjectMeta + yyv1907.CodecDecodeSelf(d) } - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + yyj1904++ + if yyhl1904 { + yyb1904 = yyj1904 > l } else { - yyb1881 = r.CheckBreak() + yyb1904 = r.CheckBreak() } - if yyb1881 { + if yyb1904 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24995,21 +25266,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1885 := &x.Template - yyv1885.CodecDecodeSelf(d) + yyv1908 := &x.Template + yyv1908.CodecDecodeSelf(d) } for { - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + yyj1904++ + if yyhl1904 { + yyb1904 = yyj1904 > l } else { - yyb1881 = r.CheckBreak() + yyb1904 = r.CheckBreak() } - if yyb1881 { + if yyb1904 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1881-1, "") + z.DecStructFieldNotFound(yyj1904-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25021,37 +25292,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1886 := z.EncBinary() - _ = yym1886 + yym1909 := z.EncBinary() + _ = yym1909 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1887 := !z.EncBinary() - yy2arr1887 := z.EncBasicHandle().StructToArray - var yyq1887 [4]bool - _, _, _ = yysep1887, yyq1887, yy2arr1887 - const yyr1887 bool = false - yyq1887[0] = x.Kind != "" - yyq1887[1] = x.APIVersion != "" - yyq1887[2] = true - var yynn1887 int - if yyr1887 || yy2arr1887 { + yysep1910 := !z.EncBinary() + yy2arr1910 := z.EncBasicHandle().StructToArray + var yyq1910 [4]bool + _, _, _ = yysep1910, yyq1910, yy2arr1910 + const yyr1910 bool = false + yyq1910[0] = x.Kind != "" + yyq1910[1] = x.APIVersion != "" + yyq1910[2] = true + var yynn1910 int + if yyr1910 || yy2arr1910 { r.EncodeArrayStart(4) } else { - yynn1887 = 1 - for _, b := range yyq1887 { + yynn1910 = 1 + for _, b := range yyq1910 { if b { - yynn1887++ + yynn1910++ } } - r.EncodeMapStart(yynn1887) - yynn1887 = 0 + r.EncodeMapStart(yynn1910) + yynn1910 = 0 } - if yyr1887 || yy2arr1887 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1887[0] { - yym1889 := z.EncBinary() - _ = yym1889 + if yyq1910[0] { + yym1912 := z.EncBinary() + _ = yym1912 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25060,23 +25331,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1887[0] { + if yyq1910[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1890 := z.EncBinary() - _ = yym1890 + yym1913 := z.EncBinary() + _ = yym1913 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1887 || yy2arr1887 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1887[1] { - yym1892 := z.EncBinary() - _ = yym1892 + if yyq1910[1] { + yym1915 := z.EncBinary() + _ = yym1915 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25085,54 +25356,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1887[1] { + if yyq1910[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1893 := z.EncBinary() - _ = yym1893 + yym1916 := z.EncBinary() + _ = yym1916 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1887 || yy2arr1887 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1887[2] { - yy1895 := &x.ListMeta - yym1896 := z.EncBinary() - _ = yym1896 + if yyq1910[2] { + yy1918 := &x.ListMeta + yym1919 := z.EncBinary() + _ = yym1919 if false { - } else if z.HasExtensions() && z.EncExt(yy1895) { + } else if z.HasExtensions() && z.EncExt(yy1918) { } else { - z.EncFallback(yy1895) + z.EncFallback(yy1918) } } else { r.EncodeNil() } } else { - if yyq1887[2] { + if yyq1910[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1897 := &x.ListMeta - yym1898 := z.EncBinary() - _ = yym1898 + yy1920 := &x.ListMeta + yym1921 := z.EncBinary() + _ = yym1921 if false { - } else if z.HasExtensions() && z.EncExt(yy1897) { + } else if z.HasExtensions() && z.EncExt(yy1920) { } else { - z.EncFallback(yy1897) + z.EncFallback(yy1920) } } } - if yyr1887 || yy2arr1887 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1900 := z.EncBinary() - _ = yym1900 + yym1923 := z.EncBinary() + _ = yym1923 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -25145,15 +25416,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1901 := z.EncBinary() - _ = yym1901 + yym1924 := z.EncBinary() + _ = yym1924 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr1887 || yy2arr1887 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25166,25 +25437,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1902 := z.DecBinary() - _ = yym1902 + yym1925 := z.DecBinary() + _ = yym1925 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1903 := r.ContainerType() - if yyct1903 == codecSelferValueTypeMap1234 { - yyl1903 := r.ReadMapStart() - if yyl1903 == 0 { + yyct1926 := r.ContainerType() + if yyct1926 == codecSelferValueTypeMap1234 { + yyl1926 := r.ReadMapStart() + if yyl1926 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1903, d) + x.codecDecodeSelfFromMap(yyl1926, d) } - } else if yyct1903 == codecSelferValueTypeArray1234 { - yyl1903 := r.ReadArrayStart() - if yyl1903 == 0 { + } else if yyct1926 == codecSelferValueTypeArray1234 { + yyl1926 := r.ReadArrayStart() + if yyl1926 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1903, d) + x.codecDecodeSelfFromArray(yyl1926, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25196,12 +25467,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1904Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1904Slc - var yyhl1904 bool = l >= 0 - for yyj1904 := 0; ; yyj1904++ { - if yyhl1904 { - if yyj1904 >= l { + var yys1927Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1927Slc + var yyhl1927 bool = l >= 0 + for yyj1927 := 0; ; yyj1927++ { + if yyhl1927 { + if yyj1927 >= l { break } } else { @@ -25210,10 +25481,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1904Slc = r.DecodeBytes(yys1904Slc, true, true) - yys1904 := string(yys1904Slc) + yys1927Slc = r.DecodeBytes(yys1927Slc, true, true) + yys1927 := string(yys1927Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1904 { + switch yys1927 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -25230,332 +25501,35 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1907 := &x.ListMeta - yym1908 := z.DecBinary() - _ = yym1908 + yyv1930 := &x.ListMeta + yym1931 := z.DecBinary() + _ = yym1931 if false { - } else if z.HasExtensions() && z.DecExt(yyv1907) { + } else if z.HasExtensions() && z.DecExt(yyv1930) { } else { - z.DecFallback(yyv1907, false) + z.DecFallback(yyv1930, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1909 := &x.Items - yym1910 := z.DecBinary() - _ = yym1910 + yyv1932 := &x.Items + yym1933 := z.DecBinary() + _ = yym1933 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1909), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1932), d) } } default: - z.DecStructFieldNotFound(-1, yys1904) - } // end switch yys1904 - } // end for yyj1904 + z.DecStructFieldNotFound(-1, yys1927) + } // end switch yys1927 + } // end for yyj1927 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1911 int - var yyb1911 bool - var yyhl1911 bool = l >= 0 - yyj1911++ - if yyhl1911 { - yyb1911 = yyj1911 > l - } else { - yyb1911 = r.CheckBreak() - } - if yyb1911 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj1911++ - if yyhl1911 { - yyb1911 = yyj1911 > l - } else { - yyb1911 = r.CheckBreak() - } - if yyb1911 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj1911++ - if yyhl1911 { - yyb1911 = yyj1911 > l - } else { - yyb1911 = r.CheckBreak() - } - if yyb1911 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv1914 := &x.ListMeta - yym1915 := z.DecBinary() - _ = yym1915 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1914) { - } else { - z.DecFallback(yyv1914, false) - } - } - yyj1911++ - if yyhl1911 { - yyb1911 = yyj1911 > l - } else { - yyb1911 = r.CheckBreak() - } - if yyb1911 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv1916 := &x.Items - yym1917 := z.DecBinary() - _ = yym1917 - if false { - } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1916), d) - } - } - for { - yyj1911++ - if yyhl1911 { - yyb1911 = yyj1911 > l - } else { - yyb1911 = r.CheckBreak() - } - if yyb1911 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1911-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1918 := z.EncBinary() - _ = yym1918 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1919 := !z.EncBinary() - yy2arr1919 := z.EncBasicHandle().StructToArray - var yyq1919 [3]bool - _, _, _ = yysep1919, yyq1919, yy2arr1919 - const yyr1919 bool = false - yyq1919[2] = x.Template != nil - var yynn1919 int - if yyr1919 || yy2arr1919 { - r.EncodeArrayStart(3) - } else { - yynn1919 = 2 - for _, b := range yyq1919 { - if b { - yynn1919++ - } - } - r.EncodeMapStart(yynn1919) - yynn1919 = 0 - } - if yyr1919 || yy2arr1919 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1921 := z.EncBinary() - _ = yym1921 - if false { - } else { - r.EncodeInt(int64(x.Replicas)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("replicas")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1922 := z.EncBinary() - _ = yym1922 - if false { - } else { - r.EncodeInt(int64(x.Replicas)) - } - } - if yyr1919 || yy2arr1919 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Selector == nil { - r.EncodeNil() - } else { - yym1924 := z.EncBinary() - _ = yym1924 - if false { - } else { - z.F.EncMapStringStringV(x.Selector, false, e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("selector")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Selector == nil { - r.EncodeNil() - } else { - yym1925 := z.EncBinary() - _ = yym1925 - if false { - } else { - z.F.EncMapStringStringV(x.Selector, false, e) - } - } - } - if yyr1919 || yy2arr1919 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1919[2] { - if x.Template == nil { - r.EncodeNil() - } else { - x.Template.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq1919[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("template")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Template == nil { - r.EncodeNil() - } else { - x.Template.CodecEncodeSelf(e) - } - } - } - if yyr1919 || yy2arr1919 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1927 := z.DecBinary() - _ = yym1927 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1928 := r.ContainerType() - if yyct1928 == codecSelferValueTypeMap1234 { - yyl1928 := r.ReadMapStart() - if yyl1928 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1928, d) - } - } else if yyct1928 == codecSelferValueTypeArray1234 { - yyl1928 := r.ReadArrayStart() - if yyl1928 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1928, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1929Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1929Slc - var yyhl1929 bool = l >= 0 - for yyj1929 := 0; ; yyj1929++ { - if yyhl1929 { - if yyj1929 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1929Slc = r.DecodeBytes(yys1929Slc, true, true) - yys1929 := string(yys1929Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1929 { - case "replicas": - if r.TryDecodeAsNil() { - x.Replicas = 0 - } else { - x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) - } - case "selector": - if r.TryDecodeAsNil() { - x.Selector = nil - } else { - yyv1931 := &x.Selector - yym1932 := z.DecBinary() - _ = yym1932 - if false { - } else { - z.F.DecMapStringStringX(yyv1931, false, d) - } - } - case "template": - if r.TryDecodeAsNil() { - if x.Template != nil { - x.Template = nil - } - } else { - if x.Template == nil { - x.Template = new(PodTemplateSpec) - } - x.Template.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys1929) - } // end switch yys1929 - } // end for yyj1929 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -25574,9 +25548,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Replicas = 0 + x.Kind = "" } else { - x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) + x.Kind = string(r.DecodeString()) } yyj1934++ if yyhl1934 { @@ -25590,37 +25564,55 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Selector = nil + x.APIVersion = "" } else { - yyv1936 := &x.Selector - yym1937 := z.DecBinary() - _ = yym1937 + x.APIVersion = string(r.DecodeString()) + } + yyj1934++ + if yyhl1934 { + yyb1934 = yyj1934 > l + } else { + yyb1934 = r.CheckBreak() + } + if yyb1934 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv1937 := &x.ListMeta + yym1938 := z.DecBinary() + _ = yym1938 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1937) { + } else { + z.DecFallback(yyv1937, false) + } + } + yyj1934++ + if yyhl1934 { + yyb1934 = yyj1934 > l + } else { + yyb1934 = r.CheckBreak() + } + if yyb1934 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv1939 := &x.Items + yym1940 := z.DecBinary() + _ = yym1940 if false { } else { - z.F.DecMapStringStringX(yyv1936, false, d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1939), d) } } - yyj1934++ - if yyhl1934 { - yyb1934 = yyj1934 > l - } else { - yyb1934 = r.CheckBreak() - } - if yyb1934 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.Template != nil { - x.Template = nil - } - } else { - if x.Template == nil { - x.Template = new(PodTemplateSpec) - } - x.Template.CodecDecodeSelf(d) - } for { yyj1934++ if yyhl1934 { @@ -25637,41 +25629,41 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym1939 := z.EncBinary() - _ = yym1939 + yym1941 := z.EncBinary() + _ = yym1941 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1940 := !z.EncBinary() - yy2arr1940 := z.EncBasicHandle().StructToArray - var yyq1940 [2]bool - _, _, _ = yysep1940, yyq1940, yy2arr1940 - const yyr1940 bool = false - yyq1940[1] = x.ObservedGeneration != 0 - var yynn1940 int - if yyr1940 || yy2arr1940 { - r.EncodeArrayStart(2) + yysep1942 := !z.EncBinary() + yy2arr1942 := z.EncBasicHandle().StructToArray + var yyq1942 [3]bool + _, _, _ = yysep1942, yyq1942, yy2arr1942 + const yyr1942 bool = false + yyq1942[2] = x.Template != nil + var yynn1942 int + if yyr1942 || yy2arr1942 { + r.EncodeArrayStart(3) } else { - yynn1940 = 1 - for _, b := range yyq1940 { + yynn1942 = 2 + for _, b := range yyq1942 { if b { - yynn1940++ + yynn1942++ } } - r.EncodeMapStart(yynn1940) - yynn1940 = 0 + r.EncodeMapStart(yynn1942) + yynn1942 = 0 } - if yyr1940 || yy2arr1940 { + if yyr1942 || yy2arr1942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1942 := z.EncBinary() - _ = yym1942 + yym1944 := z.EncBinary() + _ = yym1944 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -25680,18 +25672,297 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1943 := z.EncBinary() - _ = yym1943 + yym1945 := z.EncBinary() + _ = yym1945 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr1940 || yy2arr1940 { + if yyr1942 || yy2arr1942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1940[1] { - yym1945 := z.EncBinary() - _ = yym1945 + if x.Selector == nil { + r.EncodeNil() + } else { + yym1947 := z.EncBinary() + _ = yym1947 + if false { + } else { + z.F.EncMapStringStringV(x.Selector, false, e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("selector")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Selector == nil { + r.EncodeNil() + } else { + yym1948 := z.EncBinary() + _ = yym1948 + if false { + } else { + z.F.EncMapStringStringV(x.Selector, false, e) + } + } + } + if yyr1942 || yy2arr1942 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1942[2] { + if x.Template == nil { + r.EncodeNil() + } else { + x.Template.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq1942[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("template")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Template == nil { + r.EncodeNil() + } else { + x.Template.CodecEncodeSelf(e) + } + } + } + if yyr1942 || yy2arr1942 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1950 := z.DecBinary() + _ = yym1950 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1951 := r.ContainerType() + if yyct1951 == codecSelferValueTypeMap1234 { + yyl1951 := r.ReadMapStart() + if yyl1951 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1951, d) + } + } else if yyct1951 == codecSelferValueTypeArray1234 { + yyl1951 := r.ReadArrayStart() + if yyl1951 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1951, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1952Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1952Slc + var yyhl1952 bool = l >= 0 + for yyj1952 := 0; ; yyj1952++ { + if yyhl1952 { + if yyj1952 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1952Slc = r.DecodeBytes(yys1952Slc, true, true) + yys1952 := string(yys1952Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1952 { + case "replicas": + if r.TryDecodeAsNil() { + x.Replicas = 0 + } else { + x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) + } + case "selector": + if r.TryDecodeAsNil() { + x.Selector = nil + } else { + yyv1954 := &x.Selector + yym1955 := z.DecBinary() + _ = yym1955 + if false { + } else { + z.F.DecMapStringStringX(yyv1954, false, d) + } + } + case "template": + if r.TryDecodeAsNil() { + if x.Template != nil { + x.Template = nil + } + } else { + if x.Template == nil { + x.Template = new(PodTemplateSpec) + } + x.Template.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys1952) + } // end switch yys1952 + } // end for yyj1952 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1957 int + var yyb1957 bool + var yyhl1957 bool = l >= 0 + yyj1957++ + if yyhl1957 { + yyb1957 = yyj1957 > l + } else { + yyb1957 = r.CheckBreak() + } + if yyb1957 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Replicas = 0 + } else { + x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) + } + yyj1957++ + if yyhl1957 { + yyb1957 = yyj1957 > l + } else { + yyb1957 = r.CheckBreak() + } + if yyb1957 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Selector = nil + } else { + yyv1959 := &x.Selector + yym1960 := z.DecBinary() + _ = yym1960 + if false { + } else { + z.F.DecMapStringStringX(yyv1959, false, d) + } + } + yyj1957++ + if yyhl1957 { + yyb1957 = yyj1957 > l + } else { + yyb1957 = r.CheckBreak() + } + if yyb1957 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Template != nil { + x.Template = nil + } + } else { + if x.Template == nil { + x.Template = new(PodTemplateSpec) + } + x.Template.CodecDecodeSelf(d) + } + for { + yyj1957++ + if yyhl1957 { + yyb1957 = yyj1957 > l + } else { + yyb1957 = r.CheckBreak() + } + if yyb1957 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1957-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1962 := z.EncBinary() + _ = yym1962 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1963 := !z.EncBinary() + yy2arr1963 := z.EncBasicHandle().StructToArray + var yyq1963 [2]bool + _, _, _ = yysep1963, yyq1963, yy2arr1963 + const yyr1963 bool = false + yyq1963[1] = x.ObservedGeneration != 0 + var yynn1963 int + if yyr1963 || yy2arr1963 { + r.EncodeArrayStart(2) + } else { + yynn1963 = 1 + for _, b := range yyq1963 { + if b { + yynn1963++ + } + } + r.EncodeMapStart(yynn1963) + yynn1963 = 0 + } + if yyr1963 || yy2arr1963 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1965 := z.EncBinary() + _ = yym1965 + if false { + } else { + r.EncodeInt(int64(x.Replicas)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("replicas")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1966 := z.EncBinary() + _ = yym1966 + if false { + } else { + r.EncodeInt(int64(x.Replicas)) + } + } + if yyr1963 || yy2arr1963 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1963[1] { + yym1968 := z.EncBinary() + _ = yym1968 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -25700,19 +25971,19 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1940[1] { + if yyq1963[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1946 := z.EncBinary() - _ = yym1946 + yym1969 := z.EncBinary() + _ = yym1969 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr1940 || yy2arr1940 { + if yyr1963 || yy2arr1963 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25725,25 +25996,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1947 := z.DecBinary() - _ = yym1947 + yym1970 := z.DecBinary() + _ = yym1970 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1948 := r.ContainerType() - if yyct1948 == codecSelferValueTypeMap1234 { - yyl1948 := r.ReadMapStart() - if yyl1948 == 0 { + yyct1971 := r.ContainerType() + if yyct1971 == codecSelferValueTypeMap1234 { + yyl1971 := r.ReadMapStart() + if yyl1971 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1948, d) + x.codecDecodeSelfFromMap(yyl1971, d) } - } else if yyct1948 == codecSelferValueTypeArray1234 { - yyl1948 := r.ReadArrayStart() - if yyl1948 == 0 { + } else if yyct1971 == codecSelferValueTypeArray1234 { + yyl1971 := r.ReadArrayStart() + if yyl1971 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1948, d) + x.codecDecodeSelfFromArray(yyl1971, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25755,12 +26026,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1949Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1949Slc - var yyhl1949 bool = l >= 0 - for yyj1949 := 0; ; yyj1949++ { - if yyhl1949 { - if yyj1949 >= l { + var yys1972Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1972Slc + var yyhl1972 bool = l >= 0 + for yyj1972 := 0; ; yyj1972++ { + if yyhl1972 { + if yyj1972 >= l { break } } else { @@ -25769,10 +26040,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1949Slc = r.DecodeBytes(yys1949Slc, true, true) - yys1949 := string(yys1949Slc) + yys1972Slc = r.DecodeBytes(yys1972Slc, true, true) + yys1972 := string(yys1972Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1949 { + switch yys1972 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -25786,9 +26057,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys1949) - } // end switch yys1949 - } // end for yyj1949 + z.DecStructFieldNotFound(-1, yys1972) + } // end switch yys1972 + } // end for yyj1972 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25796,16 +26067,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1952 int - var yyb1952 bool - var yyhl1952 bool = l >= 0 - yyj1952++ - if yyhl1952 { - yyb1952 = yyj1952 > l + var yyj1975 int + var yyb1975 bool + var yyhl1975 bool = l >= 0 + yyj1975++ + if yyhl1975 { + yyb1975 = yyj1975 > l } else { - yyb1952 = r.CheckBreak() + yyb1975 = r.CheckBreak() } - if yyb1952 { + if yyb1975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25815,13 +26086,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1952++ - if yyhl1952 { - yyb1952 = yyj1952 > l + yyj1975++ + if yyhl1975 { + yyb1975 = yyj1975 > l } else { - yyb1952 = r.CheckBreak() + yyb1975 = r.CheckBreak() } - if yyb1952 { + if yyb1975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25832,17 +26103,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj1952++ - if yyhl1952 { - yyb1952 = yyj1952 > l + yyj1975++ + if yyhl1975 { + yyb1975 = yyj1975 > l } else { - yyb1952 = r.CheckBreak() + yyb1975 = r.CheckBreak() } - if yyb1952 { + if yyb1975 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1952-1, "") + z.DecStructFieldNotFound(yyj1975-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25854,39 +26125,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1955 := z.EncBinary() - _ = yym1955 + yym1978 := z.EncBinary() + _ = yym1978 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1956 := !z.EncBinary() - yy2arr1956 := z.EncBasicHandle().StructToArray - var yyq1956 [5]bool - _, _, _ = yysep1956, yyq1956, yy2arr1956 - const yyr1956 bool = false - yyq1956[0] = x.Kind != "" - yyq1956[1] = x.APIVersion != "" - yyq1956[2] = true - yyq1956[3] = true - yyq1956[4] = true - var yynn1956 int - if yyr1956 || yy2arr1956 { + yysep1979 := !z.EncBinary() + yy2arr1979 := z.EncBasicHandle().StructToArray + var yyq1979 [5]bool + _, _, _ = yysep1979, yyq1979, yy2arr1979 + const yyr1979 bool = false + yyq1979[0] = x.Kind != "" + yyq1979[1] = x.APIVersion != "" + yyq1979[2] = true + yyq1979[3] = true + yyq1979[4] = true + var yynn1979 int + if yyr1979 || yy2arr1979 { r.EncodeArrayStart(5) } else { - yynn1956 = 0 - for _, b := range yyq1956 { + yynn1979 = 0 + for _, b := range yyq1979 { if b { - yynn1956++ + yynn1979++ } } - r.EncodeMapStart(yynn1956) - yynn1956 = 0 + r.EncodeMapStart(yynn1979) + yynn1979 = 0 } - if yyr1956 || yy2arr1956 { + if yyr1979 || yy2arr1979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1956[0] { - yym1958 := z.EncBinary() - _ = yym1958 + if yyq1979[0] { + yym1981 := z.EncBinary() + _ = yym1981 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25895,23 +26166,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1956[0] { + if yyq1979[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1959 := z.EncBinary() - _ = yym1959 + yym1982 := z.EncBinary() + _ = yym1982 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1956 || yy2arr1956 { + if yyr1979 || yy2arr1979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1956[1] { - yym1961 := z.EncBinary() - _ = yym1961 + if yyq1979[1] { + yym1984 := z.EncBinary() + _ = yym1984 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25920,70 +26191,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1956[1] { + if yyq1979[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1962 := z.EncBinary() - _ = yym1962 + yym1985 := z.EncBinary() + _ = yym1985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1956 || yy2arr1956 { + if yyr1979 || yy2arr1979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1956[2] { - yy1964 := &x.ObjectMeta - yy1964.CodecEncodeSelf(e) + if yyq1979[2] { + yy1987 := &x.ObjectMeta + yy1987.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1956[2] { + if yyq1979[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1965 := &x.ObjectMeta - yy1965.CodecEncodeSelf(e) + yy1988 := &x.ObjectMeta + yy1988.CodecEncodeSelf(e) } } - if yyr1956 || yy2arr1956 { + if yyr1979 || yy2arr1979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1956[3] { - yy1967 := &x.Spec - yy1967.CodecEncodeSelf(e) + if yyq1979[3] { + yy1990 := &x.Spec + yy1990.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1956[3] { + if yyq1979[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1968 := &x.Spec - yy1968.CodecEncodeSelf(e) + yy1991 := &x.Spec + yy1991.CodecEncodeSelf(e) } } - if yyr1956 || yy2arr1956 { + if yyr1979 || yy2arr1979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1956[4] { - yy1970 := &x.Status - yy1970.CodecEncodeSelf(e) + if yyq1979[4] { + yy1993 := &x.Status + yy1993.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1956[4] { + if yyq1979[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1971 := &x.Status - yy1971.CodecEncodeSelf(e) + yy1994 := &x.Status + yy1994.CodecEncodeSelf(e) } } - if yyr1956 || yy2arr1956 { + if yyr1979 || yy2arr1979 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25996,25 +26267,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1972 := z.DecBinary() - _ = yym1972 + yym1995 := z.DecBinary() + _ = yym1995 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1973 := r.ContainerType() - if yyct1973 == codecSelferValueTypeMap1234 { - yyl1973 := r.ReadMapStart() - if yyl1973 == 0 { + yyct1996 := r.ContainerType() + if yyct1996 == codecSelferValueTypeMap1234 { + yyl1996 := r.ReadMapStart() + if yyl1996 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1973, d) + x.codecDecodeSelfFromMap(yyl1996, d) } - } else if yyct1973 == codecSelferValueTypeArray1234 { - yyl1973 := r.ReadArrayStart() - if yyl1973 == 0 { + } else if yyct1996 == codecSelferValueTypeArray1234 { + yyl1996 := r.ReadArrayStart() + if yyl1996 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1973, d) + x.codecDecodeSelfFromArray(yyl1996, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26026,12 +26297,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1974Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1974Slc - var yyhl1974 bool = l >= 0 - for yyj1974 := 0; ; yyj1974++ { - if yyhl1974 { - if yyj1974 >= l { + var yys1997Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1997Slc + var yyhl1997 bool = l >= 0 + for yyj1997 := 0; ; yyj1997++ { + if yyhl1997 { + if yyj1997 >= l { break } } else { @@ -26040,10 +26311,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1974Slc = r.DecodeBytes(yys1974Slc, true, true) - yys1974 := string(yys1974Slc) + yys1997Slc = r.DecodeBytes(yys1997Slc, true, true) + yys1997 := string(yys1997Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1974 { + switch yys1997 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26060,27 +26331,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1977 := &x.ObjectMeta - yyv1977.CodecDecodeSelf(d) + yyv2000 := &x.ObjectMeta + yyv2000.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1978 := &x.Spec - yyv1978.CodecDecodeSelf(d) + yyv2001 := &x.Spec + yyv2001.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1979 := &x.Status - yyv1979.CodecDecodeSelf(d) + yyv2002 := &x.Status + yyv2002.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1974) - } // end switch yys1974 - } // end for yyj1974 + z.DecStructFieldNotFound(-1, yys1997) + } // end switch yys1997 + } // end for yyj1997 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26088,16 +26359,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1980 int - var yyb1980 bool - var yyhl1980 bool = l >= 0 - yyj1980++ - if yyhl1980 { - yyb1980 = yyj1980 > l + var yyj2003 int + var yyb2003 bool + var yyhl2003 bool = l >= 0 + yyj2003++ + if yyhl2003 { + yyb2003 = yyj2003 > l } else { - yyb1980 = r.CheckBreak() + yyb2003 = r.CheckBreak() } - if yyb1980 { + if yyb2003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26107,13 +26378,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1980++ - if yyhl1980 { - yyb1980 = yyj1980 > l + yyj2003++ + if yyhl2003 { + yyb2003 = yyj2003 > l } else { - yyb1980 = r.CheckBreak() + yyb2003 = r.CheckBreak() } - if yyb1980 { + if yyb2003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26123,13 +26394,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1980++ - if yyhl1980 { - yyb1980 = yyj1980 > l + yyj2003++ + if yyhl2003 { + yyb2003 = yyj2003 > l } else { - yyb1980 = r.CheckBreak() + yyb2003 = r.CheckBreak() } - if yyb1980 { + if yyb2003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26137,16 +26408,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1983 := &x.ObjectMeta - yyv1983.CodecDecodeSelf(d) + yyv2006 := &x.ObjectMeta + yyv2006.CodecDecodeSelf(d) } - yyj1980++ - if yyhl1980 { - yyb1980 = yyj1980 > l + yyj2003++ + if yyhl2003 { + yyb2003 = yyj2003 > l } else { - yyb1980 = r.CheckBreak() + yyb2003 = r.CheckBreak() } - if yyb1980 { + if yyb2003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26154,16 +26425,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1984 := &x.Spec - yyv1984.CodecDecodeSelf(d) + yyv2007 := &x.Spec + yyv2007.CodecDecodeSelf(d) } - yyj1980++ - if yyhl1980 { - yyb1980 = yyj1980 > l + yyj2003++ + if yyhl2003 { + yyb2003 = yyj2003 > l } else { - yyb1980 = r.CheckBreak() + yyb2003 = r.CheckBreak() } - if yyb1980 { + if yyb2003 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26171,21 +26442,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1985 := &x.Status - yyv1985.CodecDecodeSelf(d) + yyv2008 := &x.Status + yyv2008.CodecDecodeSelf(d) } for { - yyj1980++ - if yyhl1980 { - yyb1980 = yyj1980 > l + yyj2003++ + if yyhl2003 { + yyb2003 = yyj2003 > l } else { - yyb1980 = r.CheckBreak() + yyb2003 = r.CheckBreak() } - if yyb1980 { + if yyb2003 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1980-1, "") + z.DecStructFieldNotFound(yyj2003-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26197,37 +26468,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1986 := z.EncBinary() - _ = yym1986 + yym2009 := z.EncBinary() + _ = yym2009 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1987 := !z.EncBinary() - yy2arr1987 := z.EncBasicHandle().StructToArray - var yyq1987 [4]bool - _, _, _ = yysep1987, yyq1987, yy2arr1987 - const yyr1987 bool = false - yyq1987[0] = x.Kind != "" - yyq1987[1] = x.APIVersion != "" - yyq1987[2] = true - var yynn1987 int - if yyr1987 || yy2arr1987 { + yysep2010 := !z.EncBinary() + yy2arr2010 := z.EncBasicHandle().StructToArray + var yyq2010 [4]bool + _, _, _ = yysep2010, yyq2010, yy2arr2010 + const yyr2010 bool = false + yyq2010[0] = x.Kind != "" + yyq2010[1] = x.APIVersion != "" + yyq2010[2] = true + var yynn2010 int + if yyr2010 || yy2arr2010 { r.EncodeArrayStart(4) } else { - yynn1987 = 1 - for _, b := range yyq1987 { + yynn2010 = 1 + for _, b := range yyq2010 { if b { - yynn1987++ + yynn2010++ } } - r.EncodeMapStart(yynn1987) - yynn1987 = 0 + r.EncodeMapStart(yynn2010) + yynn2010 = 0 } - if yyr1987 || yy2arr1987 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1987[0] { - yym1989 := z.EncBinary() - _ = yym1989 + if yyq2010[0] { + yym2012 := z.EncBinary() + _ = yym2012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26236,23 +26507,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1987[0] { + if yyq2010[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1990 := z.EncBinary() - _ = yym1990 + yym2013 := z.EncBinary() + _ = yym2013 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1987 || yy2arr1987 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1987[1] { - yym1992 := z.EncBinary() - _ = yym1992 + if yyq2010[1] { + yym2015 := z.EncBinary() + _ = yym2015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26261,54 +26532,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1987[1] { + if yyq2010[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1993 := z.EncBinary() - _ = yym1993 + yym2016 := z.EncBinary() + _ = yym2016 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1987 || yy2arr1987 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1987[2] { - yy1995 := &x.ListMeta - yym1996 := z.EncBinary() - _ = yym1996 + if yyq2010[2] { + yy2018 := &x.ListMeta + yym2019 := z.EncBinary() + _ = yym2019 if false { - } else if z.HasExtensions() && z.EncExt(yy1995) { + } else if z.HasExtensions() && z.EncExt(yy2018) { } else { - z.EncFallback(yy1995) + z.EncFallback(yy2018) } } else { r.EncodeNil() } } else { - if yyq1987[2] { + if yyq2010[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1997 := &x.ListMeta - yym1998 := z.EncBinary() - _ = yym1998 + yy2020 := &x.ListMeta + yym2021 := z.EncBinary() + _ = yym2021 if false { - } else if z.HasExtensions() && z.EncExt(yy1997) { + } else if z.HasExtensions() && z.EncExt(yy2020) { } else { - z.EncFallback(yy1997) + z.EncFallback(yy2020) } } } - if yyr1987 || yy2arr1987 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2000 := z.EncBinary() - _ = yym2000 + yym2023 := z.EncBinary() + _ = yym2023 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -26321,15 +26592,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2001 := z.EncBinary() - _ = yym2001 + yym2024 := z.EncBinary() + _ = yym2024 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr1987 || yy2arr1987 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26342,25 +26613,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2002 := z.DecBinary() - _ = yym2002 + yym2025 := z.DecBinary() + _ = yym2025 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2003 := r.ContainerType() - if yyct2003 == codecSelferValueTypeMap1234 { - yyl2003 := r.ReadMapStart() - if yyl2003 == 0 { + yyct2026 := r.ContainerType() + if yyct2026 == codecSelferValueTypeMap1234 { + yyl2026 := r.ReadMapStart() + if yyl2026 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2003, d) + x.codecDecodeSelfFromMap(yyl2026, d) } - } else if yyct2003 == codecSelferValueTypeArray1234 { - yyl2003 := r.ReadArrayStart() - if yyl2003 == 0 { + } else if yyct2026 == codecSelferValueTypeArray1234 { + yyl2026 := r.ReadArrayStart() + if yyl2026 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2003, d) + x.codecDecodeSelfFromArray(yyl2026, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26372,12 +26643,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2004Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2004Slc - var yyhl2004 bool = l >= 0 - for yyj2004 := 0; ; yyj2004++ { - if yyhl2004 { - if yyj2004 >= l { + var yys2027Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2027Slc + var yyhl2027 bool = l >= 0 + for yyj2027 := 0; ; yyj2027++ { + if yyhl2027 { + if yyj2027 >= l { break } } else { @@ -26386,10 +26657,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2004Slc = r.DecodeBytes(yys2004Slc, true, true) - yys2004 := string(yys2004Slc) + yys2027Slc = r.DecodeBytes(yys2027Slc, true, true) + yys2027 := string(yys2027Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2004 { + switch yys2027 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26406,31 +26677,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2007 := &x.ListMeta - yym2008 := z.DecBinary() - _ = yym2008 + yyv2030 := &x.ListMeta + yym2031 := z.DecBinary() + _ = yym2031 if false { - } else if z.HasExtensions() && z.DecExt(yyv2007) { + } else if z.HasExtensions() && z.DecExt(yyv2030) { } else { - z.DecFallback(yyv2007, false) + z.DecFallback(yyv2030, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2009 := &x.Items - yym2010 := z.DecBinary() - _ = yym2010 + yyv2032 := &x.Items + yym2033 := z.DecBinary() + _ = yym2033 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2009), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2032), d) } } default: - z.DecStructFieldNotFound(-1, yys2004) - } // end switch yys2004 - } // end for yyj2004 + z.DecStructFieldNotFound(-1, yys2027) + } // end switch yys2027 + } // end for yyj2027 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26438,16 +26709,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2011 int - var yyb2011 bool - var yyhl2011 bool = l >= 0 - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + var yyj2034 int + var yyb2034 bool + var yyhl2034 bool = l >= 0 + yyj2034++ + if yyhl2034 { + yyb2034 = yyj2034 > l } else { - yyb2011 = r.CheckBreak() + yyb2034 = r.CheckBreak() } - if yyb2011 { + if yyb2034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26457,13 +26728,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2034++ + if yyhl2034 { + yyb2034 = yyj2034 > l } else { - yyb2011 = r.CheckBreak() + yyb2034 = r.CheckBreak() } - if yyb2011 { + if yyb2034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26473,13 +26744,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2034++ + if yyhl2034 { + yyb2034 = yyj2034 > l } else { - yyb2011 = r.CheckBreak() + yyb2034 = r.CheckBreak() } - if yyb2011 { + if yyb2034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26487,22 +26758,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2014 := &x.ListMeta - yym2015 := z.DecBinary() - _ = yym2015 + yyv2037 := &x.ListMeta + yym2038 := z.DecBinary() + _ = yym2038 if false { - } else if z.HasExtensions() && z.DecExt(yyv2014) { + } else if z.HasExtensions() && z.DecExt(yyv2037) { } else { - z.DecFallback(yyv2014, false) + z.DecFallback(yyv2037, false) } } - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2034++ + if yyhl2034 { + yyb2034 = yyj2034 > l } else { - yyb2011 = r.CheckBreak() + yyb2034 = r.CheckBreak() } - if yyb2011 { + if yyb2034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26510,26 +26781,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2016 := &x.Items - yym2017 := z.DecBinary() - _ = yym2017 + yyv2039 := &x.Items + yym2040 := z.DecBinary() + _ = yym2040 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2016), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2039), d) } } for { - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2034++ + if yyhl2034 { + yyb2034 = yyj2034 > l } else { - yyb2011 = r.CheckBreak() + yyb2034 = r.CheckBreak() } - if yyb2011 { + if yyb2034 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2011-1, "") + z.DecStructFieldNotFound(yyj2034-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26541,37 +26812,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2018 := z.EncBinary() - _ = yym2018 + yym2041 := z.EncBinary() + _ = yym2041 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2019 := !z.EncBinary() - yy2arr2019 := z.EncBasicHandle().StructToArray - var yyq2019 [4]bool - _, _, _ = yysep2019, yyq2019, yy2arr2019 - const yyr2019 bool = false - yyq2019[0] = x.Kind != "" - yyq2019[1] = x.APIVersion != "" - yyq2019[2] = true - var yynn2019 int - if yyr2019 || yy2arr2019 { + yysep2042 := !z.EncBinary() + yy2arr2042 := z.EncBasicHandle().StructToArray + var yyq2042 [4]bool + _, _, _ = yysep2042, yyq2042, yy2arr2042 + const yyr2042 bool = false + yyq2042[0] = x.Kind != "" + yyq2042[1] = x.APIVersion != "" + yyq2042[2] = true + var yynn2042 int + if yyr2042 || yy2arr2042 { r.EncodeArrayStart(4) } else { - yynn2019 = 1 - for _, b := range yyq2019 { + yynn2042 = 1 + for _, b := range yyq2042 { if b { - yynn2019++ + yynn2042++ } } - r.EncodeMapStart(yynn2019) - yynn2019 = 0 + r.EncodeMapStart(yynn2042) + yynn2042 = 0 } - if yyr2019 || yy2arr2019 { + if yyr2042 || yy2arr2042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2019[0] { - yym2021 := z.EncBinary() - _ = yym2021 + if yyq2042[0] { + yym2044 := z.EncBinary() + _ = yym2044 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26580,23 +26851,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2019[0] { + if yyq2042[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2022 := z.EncBinary() - _ = yym2022 + yym2045 := z.EncBinary() + _ = yym2045 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2019 || yy2arr2019 { + if yyr2042 || yy2arr2042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2019[1] { - yym2024 := z.EncBinary() - _ = yym2024 + if yyq2042[1] { + yym2047 := z.EncBinary() + _ = yym2047 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26605,54 +26876,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2019[1] { + if yyq2042[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2025 := z.EncBinary() - _ = yym2025 + yym2048 := z.EncBinary() + _ = yym2048 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2019 || yy2arr2019 { + if yyr2042 || yy2arr2042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2019[2] { - yy2027 := &x.ListMeta - yym2028 := z.EncBinary() - _ = yym2028 + if yyq2042[2] { + yy2050 := &x.ListMeta + yym2051 := z.EncBinary() + _ = yym2051 if false { - } else if z.HasExtensions() && z.EncExt(yy2027) { + } else if z.HasExtensions() && z.EncExt(yy2050) { } else { - z.EncFallback(yy2027) + z.EncFallback(yy2050) } } else { r.EncodeNil() } } else { - if yyq2019[2] { + if yyq2042[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2029 := &x.ListMeta - yym2030 := z.EncBinary() - _ = yym2030 + yy2052 := &x.ListMeta + yym2053 := z.EncBinary() + _ = yym2053 if false { - } else if z.HasExtensions() && z.EncExt(yy2029) { + } else if z.HasExtensions() && z.EncExt(yy2052) { } else { - z.EncFallback(yy2029) + z.EncFallback(yy2052) } } } - if yyr2019 || yy2arr2019 { + if yyr2042 || yy2arr2042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2032 := z.EncBinary() - _ = yym2032 + yym2055 := z.EncBinary() + _ = yym2055 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -26665,15 +26936,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2033 := z.EncBinary() - _ = yym2033 + yym2056 := z.EncBinary() + _ = yym2056 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2019 || yy2arr2019 { + if yyr2042 || yy2arr2042 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26686,25 +26957,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2034 := z.DecBinary() - _ = yym2034 + yym2057 := z.DecBinary() + _ = yym2057 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2035 := r.ContainerType() - if yyct2035 == codecSelferValueTypeMap1234 { - yyl2035 := r.ReadMapStart() - if yyl2035 == 0 { + yyct2058 := r.ContainerType() + if yyct2058 == codecSelferValueTypeMap1234 { + yyl2058 := r.ReadMapStart() + if yyl2058 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2035, d) + x.codecDecodeSelfFromMap(yyl2058, d) } - } else if yyct2035 == codecSelferValueTypeArray1234 { - yyl2035 := r.ReadArrayStart() - if yyl2035 == 0 { + } else if yyct2058 == codecSelferValueTypeArray1234 { + yyl2058 := r.ReadArrayStart() + if yyl2058 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2035, d) + x.codecDecodeSelfFromArray(yyl2058, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26716,12 +26987,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2036Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2036Slc - var yyhl2036 bool = l >= 0 - for yyj2036 := 0; ; yyj2036++ { - if yyhl2036 { - if yyj2036 >= l { + var yys2059Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2059Slc + var yyhl2059 bool = l >= 0 + for yyj2059 := 0; ; yyj2059++ { + if yyhl2059 { + if yyj2059 >= l { break } } else { @@ -26730,10 +27001,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2036Slc = r.DecodeBytes(yys2036Slc, true, true) - yys2036 := string(yys2036Slc) + yys2059Slc = r.DecodeBytes(yys2059Slc, true, true) + yys2059 := string(yys2059Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2036 { + switch yys2059 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26750,31 +27021,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2039 := &x.ListMeta - yym2040 := z.DecBinary() - _ = yym2040 + yyv2062 := &x.ListMeta + yym2063 := z.DecBinary() + _ = yym2063 if false { - } else if z.HasExtensions() && z.DecExt(yyv2039) { + } else if z.HasExtensions() && z.DecExt(yyv2062) { } else { - z.DecFallback(yyv2039, false) + z.DecFallback(yyv2062, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2041 := &x.Items - yym2042 := z.DecBinary() - _ = yym2042 + yyv2064 := &x.Items + yym2065 := z.DecBinary() + _ = yym2065 if false { } else { - h.decSliceService((*[]Service)(yyv2041), d) + h.decSliceService((*[]Service)(yyv2064), d) } } default: - z.DecStructFieldNotFound(-1, yys2036) - } // end switch yys2036 - } // end for yyj2036 + z.DecStructFieldNotFound(-1, yys2059) + } // end switch yys2059 + } // end for yyj2059 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26782,16 +27053,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2043 int - var yyb2043 bool - var yyhl2043 bool = l >= 0 - yyj2043++ - if yyhl2043 { - yyb2043 = yyj2043 > l + var yyj2066 int + var yyb2066 bool + var yyhl2066 bool = l >= 0 + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2043 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2043 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26801,13 +27072,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2043++ - if yyhl2043 { - yyb2043 = yyj2043 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2043 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2043 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26817,13 +27088,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2043++ - if yyhl2043 { - yyb2043 = yyj2043 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2043 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2043 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26831,22 +27102,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2046 := &x.ListMeta - yym2047 := z.DecBinary() - _ = yym2047 + yyv2069 := &x.ListMeta + yym2070 := z.DecBinary() + _ = yym2070 if false { - } else if z.HasExtensions() && z.DecExt(yyv2046) { + } else if z.HasExtensions() && z.DecExt(yyv2069) { } else { - z.DecFallback(yyv2046, false) + z.DecFallback(yyv2069, false) } } - yyj2043++ - if yyhl2043 { - yyb2043 = yyj2043 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2043 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2043 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26854,26 +27125,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2048 := &x.Items - yym2049 := z.DecBinary() - _ = yym2049 + yyv2071 := &x.Items + yym2072 := z.DecBinary() + _ = yym2072 if false { } else { - h.decSliceService((*[]Service)(yyv2048), d) + h.decSliceService((*[]Service)(yyv2071), d) } } for { - yyj2043++ - if yyhl2043 { - yyb2043 = yyj2043 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2043 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2043 { + if yyb2066 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2043-1, "") + z.DecStructFieldNotFound(yyj2066-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26882,8 +27153,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2050 := z.EncBinary() - _ = yym2050 + yym2073 := z.EncBinary() + _ = yym2073 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -26895,8 +27166,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2051 := z.DecBinary() - _ = yym2051 + yym2074 := z.DecBinary() + _ = yym2074 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -26908,8 +27179,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2052 := z.EncBinary() - _ = yym2052 + yym2075 := z.EncBinary() + _ = yym2075 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -26921,8 +27192,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2053 := z.DecBinary() - _ = yym2053 + yym2076 := z.DecBinary() + _ = yym2076 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -26937,48 +27208,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2054 := z.EncBinary() - _ = yym2054 + yym2077 := z.EncBinary() + _ = yym2077 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2055 := !z.EncBinary() - yy2arr2055 := z.EncBasicHandle().StructToArray - var yyq2055 [1]bool - _, _, _ = yysep2055, yyq2055, yy2arr2055 - const yyr2055 bool = false - yyq2055[0] = true - var yynn2055 int - if yyr2055 || yy2arr2055 { + yysep2078 := !z.EncBinary() + yy2arr2078 := z.EncBasicHandle().StructToArray + var yyq2078 [1]bool + _, _, _ = yysep2078, yyq2078, yy2arr2078 + const yyr2078 bool = false + yyq2078[0] = true + var yynn2078 int + if yyr2078 || yy2arr2078 { r.EncodeArrayStart(1) } else { - yynn2055 = 0 - for _, b := range yyq2055 { + yynn2078 = 0 + for _, b := range yyq2078 { if b { - yynn2055++ + yynn2078++ } } - r.EncodeMapStart(yynn2055) - yynn2055 = 0 + r.EncodeMapStart(yynn2078) + yynn2078 = 0 } - if yyr2055 || yy2arr2055 { + if yyr2078 || yy2arr2078 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2055[0] { - yy2057 := &x.LoadBalancer - yy2057.CodecEncodeSelf(e) + if yyq2078[0] { + yy2080 := &x.LoadBalancer + yy2080.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2055[0] { + if yyq2078[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2058 := &x.LoadBalancer - yy2058.CodecEncodeSelf(e) + yy2081 := &x.LoadBalancer + yy2081.CodecEncodeSelf(e) } } - if yyr2055 || yy2arr2055 { + if yyr2078 || yy2arr2078 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26991,25 +27262,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2059 := z.DecBinary() - _ = yym2059 + yym2082 := z.DecBinary() + _ = yym2082 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2060 := r.ContainerType() - if yyct2060 == codecSelferValueTypeMap1234 { - yyl2060 := r.ReadMapStart() - if yyl2060 == 0 { + yyct2083 := r.ContainerType() + if yyct2083 == codecSelferValueTypeMap1234 { + yyl2083 := r.ReadMapStart() + if yyl2083 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2060, d) + x.codecDecodeSelfFromMap(yyl2083, d) } - } else if yyct2060 == codecSelferValueTypeArray1234 { - yyl2060 := r.ReadArrayStart() - if yyl2060 == 0 { + } else if yyct2083 == codecSelferValueTypeArray1234 { + yyl2083 := r.ReadArrayStart() + if yyl2083 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2060, d) + x.codecDecodeSelfFromArray(yyl2083, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27021,12 +27292,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2061Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2061Slc - var yyhl2061 bool = l >= 0 - for yyj2061 := 0; ; yyj2061++ { - if yyhl2061 { - if yyj2061 >= l { + var yys2084Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2084Slc + var yyhl2084 bool = l >= 0 + for yyj2084 := 0; ; yyj2084++ { + if yyhl2084 { + if yyj2084 >= l { break } } else { @@ -27035,21 +27306,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2061Slc = r.DecodeBytes(yys2061Slc, true, true) - yys2061 := string(yys2061Slc) + yys2084Slc = r.DecodeBytes(yys2084Slc, true, true) + yys2084 := string(yys2084Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2061 { + switch yys2084 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2062 := &x.LoadBalancer - yyv2062.CodecDecodeSelf(d) + yyv2085 := &x.LoadBalancer + yyv2085.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2061) - } // end switch yys2061 - } // end for yyj2061 + z.DecStructFieldNotFound(-1, yys2084) + } // end switch yys2084 + } // end for yyj2084 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27057,16 +27328,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2063 int - var yyb2063 bool - var yyhl2063 bool = l >= 0 - yyj2063++ - if yyhl2063 { - yyb2063 = yyj2063 > l + var yyj2086 int + var yyb2086 bool + var yyhl2086 bool = l >= 0 + yyj2086++ + if yyhl2086 { + yyb2086 = yyj2086 > l } else { - yyb2063 = r.CheckBreak() + yyb2086 = r.CheckBreak() } - if yyb2063 { + if yyb2086 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27074,21 +27345,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2064 := &x.LoadBalancer - yyv2064.CodecDecodeSelf(d) + yyv2087 := &x.LoadBalancer + yyv2087.CodecDecodeSelf(d) } for { - yyj2063++ - if yyhl2063 { - yyb2063 = yyj2063 > l + yyj2086++ + if yyhl2086 { + yyb2086 = yyj2086 > l } else { - yyb2063 = r.CheckBreak() + yyb2086 = r.CheckBreak() } - if yyb2063 { + if yyb2086 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2063-1, "") + z.DecStructFieldNotFound(yyj2086-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27100,38 +27371,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2065 := z.EncBinary() - _ = yym2065 + yym2088 := z.EncBinary() + _ = yym2088 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2066 := !z.EncBinary() - yy2arr2066 := z.EncBasicHandle().StructToArray - var yyq2066 [1]bool - _, _, _ = yysep2066, yyq2066, yy2arr2066 - const yyr2066 bool = false - yyq2066[0] = len(x.Ingress) != 0 - var yynn2066 int - if yyr2066 || yy2arr2066 { + yysep2089 := !z.EncBinary() + yy2arr2089 := z.EncBasicHandle().StructToArray + var yyq2089 [1]bool + _, _, _ = yysep2089, yyq2089, yy2arr2089 + const yyr2089 bool = false + yyq2089[0] = len(x.Ingress) != 0 + var yynn2089 int + if yyr2089 || yy2arr2089 { r.EncodeArrayStart(1) } else { - yynn2066 = 0 - for _, b := range yyq2066 { + yynn2089 = 0 + for _, b := range yyq2089 { if b { - yynn2066++ + yynn2089++ } } - r.EncodeMapStart(yynn2066) - yynn2066 = 0 + r.EncodeMapStart(yynn2089) + yynn2089 = 0 } - if yyr2066 || yy2arr2066 { + if yyr2089 || yy2arr2089 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2066[0] { + if yyq2089[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2068 := z.EncBinary() - _ = yym2068 + yym2091 := z.EncBinary() + _ = yym2091 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -27141,15 +27412,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2066[0] { + if yyq2089[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2069 := z.EncBinary() - _ = yym2069 + yym2092 := z.EncBinary() + _ = yym2092 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -27157,7 +27428,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2066 || yy2arr2066 { + if yyr2089 || yy2arr2089 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27170,25 +27441,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2070 := z.DecBinary() - _ = yym2070 + yym2093 := z.DecBinary() + _ = yym2093 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2071 := r.ContainerType() - if yyct2071 == codecSelferValueTypeMap1234 { - yyl2071 := r.ReadMapStart() - if yyl2071 == 0 { + yyct2094 := r.ContainerType() + if yyct2094 == codecSelferValueTypeMap1234 { + yyl2094 := r.ReadMapStart() + if yyl2094 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2071, d) + x.codecDecodeSelfFromMap(yyl2094, d) } - } else if yyct2071 == codecSelferValueTypeArray1234 { - yyl2071 := r.ReadArrayStart() - if yyl2071 == 0 { + } else if yyct2094 == codecSelferValueTypeArray1234 { + yyl2094 := r.ReadArrayStart() + if yyl2094 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2071, d) + x.codecDecodeSelfFromArray(yyl2094, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27200,12 +27471,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2072Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2072Slc - var yyhl2072 bool = l >= 0 - for yyj2072 := 0; ; yyj2072++ { - if yyhl2072 { - if yyj2072 >= l { + var yys2095Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2095Slc + var yyhl2095 bool = l >= 0 + for yyj2095 := 0; ; yyj2095++ { + if yyhl2095 { + if yyj2095 >= l { break } } else { @@ -27214,26 +27485,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2072Slc = r.DecodeBytes(yys2072Slc, true, true) - yys2072 := string(yys2072Slc) + yys2095Slc = r.DecodeBytes(yys2095Slc, true, true) + yys2095 := string(yys2095Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2072 { + switch yys2095 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2073 := &x.Ingress - yym2074 := z.DecBinary() - _ = yym2074 + yyv2096 := &x.Ingress + yym2097 := z.DecBinary() + _ = yym2097 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2073), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2096), d) } } default: - z.DecStructFieldNotFound(-1, yys2072) - } // end switch yys2072 - } // end for yyj2072 + z.DecStructFieldNotFound(-1, yys2095) + } // end switch yys2095 + } // end for yyj2095 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27241,16 +27512,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2075 int - var yyb2075 bool - var yyhl2075 bool = l >= 0 - yyj2075++ - if yyhl2075 { - yyb2075 = yyj2075 > l + var yyj2098 int + var yyb2098 bool + var yyhl2098 bool = l >= 0 + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2075 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2075 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27258,26 +27529,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2076 := &x.Ingress - yym2077 := z.DecBinary() - _ = yym2077 + yyv2099 := &x.Ingress + yym2100 := z.DecBinary() + _ = yym2100 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2076), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2099), d) } } for { - yyj2075++ - if yyhl2075 { - yyb2075 = yyj2075 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2075 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2075 { + if yyb2098 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2075-1, "") + z.DecStructFieldNotFound(yyj2098-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27289,36 +27560,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2078 := z.EncBinary() - _ = yym2078 + yym2101 := z.EncBinary() + _ = yym2101 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2079 := !z.EncBinary() - yy2arr2079 := z.EncBasicHandle().StructToArray - var yyq2079 [2]bool - _, _, _ = yysep2079, yyq2079, yy2arr2079 - const yyr2079 bool = false - yyq2079[0] = x.IP != "" - yyq2079[1] = x.Hostname != "" - var yynn2079 int - if yyr2079 || yy2arr2079 { + yysep2102 := !z.EncBinary() + yy2arr2102 := z.EncBasicHandle().StructToArray + var yyq2102 [2]bool + _, _, _ = yysep2102, yyq2102, yy2arr2102 + const yyr2102 bool = false + yyq2102[0] = x.IP != "" + yyq2102[1] = x.Hostname != "" + var yynn2102 int + if yyr2102 || yy2arr2102 { r.EncodeArrayStart(2) } else { - yynn2079 = 0 - for _, b := range yyq2079 { + yynn2102 = 0 + for _, b := range yyq2102 { if b { - yynn2079++ + yynn2102++ } } - r.EncodeMapStart(yynn2079) - yynn2079 = 0 + r.EncodeMapStart(yynn2102) + yynn2102 = 0 } - if yyr2079 || yy2arr2079 { + if yyr2102 || yy2arr2102 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2079[0] { - yym2081 := z.EncBinary() - _ = yym2081 + if yyq2102[0] { + yym2104 := z.EncBinary() + _ = yym2104 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -27327,23 +27598,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2079[0] { + if yyq2102[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2082 := z.EncBinary() - _ = yym2082 + yym2105 := z.EncBinary() + _ = yym2105 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2079 || yy2arr2079 { + if yyr2102 || yy2arr2102 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2079[1] { - yym2084 := z.EncBinary() - _ = yym2084 + if yyq2102[1] { + yym2107 := z.EncBinary() + _ = yym2107 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -27352,19 +27623,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2079[1] { + if yyq2102[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2085 := z.EncBinary() - _ = yym2085 + yym2108 := z.EncBinary() + _ = yym2108 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2079 || yy2arr2079 { + if yyr2102 || yy2arr2102 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27377,25 +27648,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2086 := z.DecBinary() - _ = yym2086 + yym2109 := z.DecBinary() + _ = yym2109 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2087 := r.ContainerType() - if yyct2087 == codecSelferValueTypeMap1234 { - yyl2087 := r.ReadMapStart() - if yyl2087 == 0 { + yyct2110 := r.ContainerType() + if yyct2110 == codecSelferValueTypeMap1234 { + yyl2110 := r.ReadMapStart() + if yyl2110 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2087, d) + x.codecDecodeSelfFromMap(yyl2110, d) } - } else if yyct2087 == codecSelferValueTypeArray1234 { - yyl2087 := r.ReadArrayStart() - if yyl2087 == 0 { + } else if yyct2110 == codecSelferValueTypeArray1234 { + yyl2110 := r.ReadArrayStart() + if yyl2110 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2087, d) + x.codecDecodeSelfFromArray(yyl2110, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27407,12 +27678,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2088Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2088Slc - var yyhl2088 bool = l >= 0 - for yyj2088 := 0; ; yyj2088++ { - if yyhl2088 { - if yyj2088 >= l { + var yys2111Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2111Slc + var yyhl2111 bool = l >= 0 + for yyj2111 := 0; ; yyj2111++ { + if yyhl2111 { + if yyj2111 >= l { break } } else { @@ -27421,10 +27692,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2088Slc = r.DecodeBytes(yys2088Slc, true, true) - yys2088 := string(yys2088Slc) + yys2111Slc = r.DecodeBytes(yys2111Slc, true, true) + yys2111 := string(yys2111Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2088 { + switch yys2111 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -27438,9 +27709,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2088) - } // end switch yys2088 - } // end for yyj2088 + z.DecStructFieldNotFound(-1, yys2111) + } // end switch yys2111 + } // end for yyj2111 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27448,16 +27719,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2091 int - var yyb2091 bool - var yyhl2091 bool = l >= 0 - yyj2091++ - if yyhl2091 { - yyb2091 = yyj2091 > l + var yyj2114 int + var yyb2114 bool + var yyhl2114 bool = l >= 0 + yyj2114++ + if yyhl2114 { + yyb2114 = yyj2114 > l } else { - yyb2091 = r.CheckBreak() + yyb2114 = r.CheckBreak() } - if yyb2091 { + if yyb2114 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27467,13 +27738,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2091++ - if yyhl2091 { - yyb2091 = yyj2091 > l + yyj2114++ + if yyhl2114 { + yyb2114 = yyj2114 > l } else { - yyb2091 = r.CheckBreak() + yyb2114 = r.CheckBreak() } - if yyb2091 { + if yyb2114 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27484,17 +27755,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2091++ - if yyhl2091 { - yyb2091 = yyj2091 > l + yyj2114++ + if yyhl2114 { + yyb2114 = yyj2114 > l } else { - yyb2091 = r.CheckBreak() + yyb2114 = r.CheckBreak() } - if yyb2091 { + if yyb2114 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2091-1, "") + z.DecStructFieldNotFound(yyj2114-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27506,56 +27777,56 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2094 := z.EncBinary() - _ = yym2094 + yym2117 := z.EncBinary() + _ = yym2117 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2095 := !z.EncBinary() - yy2arr2095 := z.EncBasicHandle().StructToArray - var yyq2095 [7]bool - _, _, _ = yysep2095, yyq2095, yy2arr2095 - const yyr2095 bool = false - yyq2095[0] = x.Type != "" - yyq2095[3] = x.ClusterIP != "" - yyq2095[4] = len(x.ExternalIPs) != 0 - yyq2095[5] = x.LoadBalancerIP != "" - yyq2095[6] = x.SessionAffinity != "" - var yynn2095 int - if yyr2095 || yy2arr2095 { + yysep2118 := !z.EncBinary() + yy2arr2118 := z.EncBasicHandle().StructToArray + var yyq2118 [7]bool + _, _, _ = yysep2118, yyq2118, yy2arr2118 + const yyr2118 bool = false + yyq2118[0] = x.Type != "" + yyq2118[3] = x.ClusterIP != "" + yyq2118[4] = len(x.ExternalIPs) != 0 + yyq2118[5] = x.LoadBalancerIP != "" + yyq2118[6] = x.SessionAffinity != "" + var yynn2118 int + if yyr2118 || yy2arr2118 { r.EncodeArrayStart(7) } else { - yynn2095 = 2 - for _, b := range yyq2095 { + yynn2118 = 2 + for _, b := range yyq2118 { if b { - yynn2095++ + yynn2118++ } } - r.EncodeMapStart(yynn2095) - yynn2095 = 0 + r.EncodeMapStart(yynn2118) + yynn2118 = 0 } - if yyr2095 || yy2arr2095 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2095[0] { + if yyq2118[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2095[0] { + if yyq2118[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2095 || yy2arr2095 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2098 := z.EncBinary() - _ = yym2098 + yym2121 := z.EncBinary() + _ = yym2121 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -27568,21 +27839,21 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2099 := z.EncBinary() - _ = yym2099 + yym2122 := z.EncBinary() + _ = yym2122 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr2095 || yy2arr2095 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym2101 := z.EncBinary() - _ = yym2101 + yym2124 := z.EncBinary() + _ = yym2124 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -27595,19 +27866,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym2102 := z.EncBinary() - _ = yym2102 + yym2125 := z.EncBinary() + _ = yym2125 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr2095 || yy2arr2095 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2095[3] { - yym2104 := z.EncBinary() - _ = yym2104 + if yyq2118[3] { + yym2127 := z.EncBinary() + _ = yym2127 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -27616,26 +27887,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2095[3] { + if yyq2118[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2105 := z.EncBinary() - _ = yym2105 + yym2128 := z.EncBinary() + _ = yym2128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2095 || yy2arr2095 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2095[4] { + if yyq2118[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2107 := z.EncBinary() - _ = yym2107 + yym2130 := z.EncBinary() + _ = yym2130 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -27645,15 +27916,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2095[4] { + if yyq2118[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2108 := z.EncBinary() - _ = yym2108 + yym2131 := z.EncBinary() + _ = yym2131 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -27661,11 +27932,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2095 || yy2arr2095 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2095[5] { - yym2110 := z.EncBinary() - _ = yym2110 + if yyq2118[5] { + yym2133 := z.EncBinary() + _ = yym2133 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -27674,34 +27945,34 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2095[5] { + if yyq2118[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2111 := z.EncBinary() - _ = yym2111 + yym2134 := z.EncBinary() + _ = yym2134 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2095 || yy2arr2095 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2095[6] { + if yyq2118[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2095[6] { + if yyq2118[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2095 || yy2arr2095 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27714,25 +27985,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2113 := z.DecBinary() - _ = yym2113 + yym2136 := z.DecBinary() + _ = yym2136 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2114 := r.ContainerType() - if yyct2114 == codecSelferValueTypeMap1234 { - yyl2114 := r.ReadMapStart() - if yyl2114 == 0 { + yyct2137 := r.ContainerType() + if yyct2137 == codecSelferValueTypeMap1234 { + yyl2137 := r.ReadMapStart() + if yyl2137 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2114, d) + x.codecDecodeSelfFromMap(yyl2137, d) } - } else if yyct2114 == codecSelferValueTypeArray1234 { - yyl2114 := r.ReadArrayStart() - if yyl2114 == 0 { + } else if yyct2137 == codecSelferValueTypeArray1234 { + yyl2137 := r.ReadArrayStart() + if yyl2137 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2114, d) + x.codecDecodeSelfFromArray(yyl2137, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27744,12 +28015,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2115Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2115Slc - var yyhl2115 bool = l >= 0 - for yyj2115 := 0; ; yyj2115++ { - if yyhl2115 { - if yyj2115 >= l { + var yys2138Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2138Slc + var yyhl2138 bool = l >= 0 + for yyj2138 := 0; ; yyj2138++ { + if yyhl2138 { + if yyj2138 >= l { break } } else { @@ -27758,10 +28029,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2115Slc = r.DecodeBytes(yys2115Slc, true, true) - yys2115 := string(yys2115Slc) + yys2138Slc = r.DecodeBytes(yys2138Slc, true, true) + yys2138 := string(yys2138Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2115 { + switch yys2138 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -27772,24 +28043,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2117 := &x.Ports - yym2118 := z.DecBinary() - _ = yym2118 + yyv2140 := &x.Ports + yym2141 := z.DecBinary() + _ = yym2141 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2117), d) + h.decSliceServicePort((*[]ServicePort)(yyv2140), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2119 := &x.Selector - yym2120 := z.DecBinary() - _ = yym2120 + yyv2142 := &x.Selector + yym2143 := z.DecBinary() + _ = yym2143 if false { } else { - z.F.DecMapStringStringX(yyv2119, false, d) + z.F.DecMapStringStringX(yyv2142, false, d) } } case "clusterIP": @@ -27802,12 +28073,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2122 := &x.ExternalIPs - yym2123 := z.DecBinary() - _ = yym2123 + yyv2145 := &x.ExternalIPs + yym2146 := z.DecBinary() + _ = yym2146 if false { } else { - z.F.DecSliceStringX(yyv2122, false, d) + z.F.DecSliceStringX(yyv2145, false, d) } } case "loadBalancerIP": @@ -27823,9 +28094,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2115) - } // end switch yys2115 - } // end for yyj2115 + z.DecStructFieldNotFound(-1, yys2138) + } // end switch yys2138 + } // end for yyj2138 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27833,16 +28104,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2126 int - var yyb2126 bool - var yyhl2126 bool = l >= 0 - yyj2126++ - if yyhl2126 { - yyb2126 = yyj2126 > l + var yyj2149 int + var yyb2149 bool + var yyhl2149 bool = l >= 0 + yyj2149++ + if yyhl2149 { + yyb2149 = yyj2149 > l } else { - yyb2126 = r.CheckBreak() + yyb2149 = r.CheckBreak() } - if yyb2126 { + if yyb2149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27852,13 +28123,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2126++ - if yyhl2126 { - yyb2126 = yyj2126 > l + yyj2149++ + if yyhl2149 { + yyb2149 = yyj2149 > l } else { - yyb2126 = r.CheckBreak() + yyb2149 = r.CheckBreak() } - if yyb2126 { + if yyb2149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27866,21 +28137,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2128 := &x.Ports - yym2129 := z.DecBinary() - _ = yym2129 + yyv2151 := &x.Ports + yym2152 := z.DecBinary() + _ = yym2152 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2128), d) + h.decSliceServicePort((*[]ServicePort)(yyv2151), d) } } - yyj2126++ - if yyhl2126 { - yyb2126 = yyj2126 > l + yyj2149++ + if yyhl2149 { + yyb2149 = yyj2149 > l } else { - yyb2126 = r.CheckBreak() + yyb2149 = r.CheckBreak() } - if yyb2126 { + if yyb2149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27888,21 +28159,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2130 := &x.Selector - yym2131 := z.DecBinary() - _ = yym2131 + yyv2153 := &x.Selector + yym2154 := z.DecBinary() + _ = yym2154 if false { } else { - z.F.DecMapStringStringX(yyv2130, false, d) + z.F.DecMapStringStringX(yyv2153, false, d) } } - yyj2126++ - if yyhl2126 { - yyb2126 = yyj2126 > l + yyj2149++ + if yyhl2149 { + yyb2149 = yyj2149 > l } else { - yyb2126 = r.CheckBreak() + yyb2149 = r.CheckBreak() } - if yyb2126 { + if yyb2149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27912,13 +28183,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2126++ - if yyhl2126 { - yyb2126 = yyj2126 > l + yyj2149++ + if yyhl2149 { + yyb2149 = yyj2149 > l } else { - yyb2126 = r.CheckBreak() + yyb2149 = r.CheckBreak() } - if yyb2126 { + if yyb2149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27926,21 +28197,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2133 := &x.ExternalIPs - yym2134 := z.DecBinary() - _ = yym2134 + yyv2156 := &x.ExternalIPs + yym2157 := z.DecBinary() + _ = yym2157 if false { } else { - z.F.DecSliceStringX(yyv2133, false, d) + z.F.DecSliceStringX(yyv2156, false, d) } } - yyj2126++ - if yyhl2126 { - yyb2126 = yyj2126 > l + yyj2149++ + if yyhl2149 { + yyb2149 = yyj2149 > l } else { - yyb2126 = r.CheckBreak() + yyb2149 = r.CheckBreak() } - if yyb2126 { + if yyb2149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27950,13 +28221,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2126++ - if yyhl2126 { - yyb2126 = yyj2126 > l + yyj2149++ + if yyhl2149 { + yyb2149 = yyj2149 > l } else { - yyb2126 = r.CheckBreak() + yyb2149 = r.CheckBreak() } - if yyb2126 { + if yyb2149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27967,17 +28238,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } for { - yyj2126++ - if yyhl2126 { - yyb2126 = yyj2126 > l + yyj2149++ + if yyhl2149 { + yyb2149 = yyj2149 > l } else { - yyb2126 = r.CheckBreak() + yyb2149 = r.CheckBreak() } - if yyb2126 { + if yyb2149 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2126-1, "") + z.DecStructFieldNotFound(yyj2149-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27989,33 +28260,33 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2137 := z.EncBinary() - _ = yym2137 + yym2160 := z.EncBinary() + _ = yym2160 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2138 := !z.EncBinary() - yy2arr2138 := z.EncBasicHandle().StructToArray - var yyq2138 [5]bool - _, _, _ = yysep2138, yyq2138, yy2arr2138 - const yyr2138 bool = false - var yynn2138 int - if yyr2138 || yy2arr2138 { + yysep2161 := !z.EncBinary() + yy2arr2161 := z.EncBasicHandle().StructToArray + var yyq2161 [5]bool + _, _, _ = yysep2161, yyq2161, yy2arr2161 + const yyr2161 bool = false + var yynn2161 int + if yyr2161 || yy2arr2161 { r.EncodeArrayStart(5) } else { - yynn2138 = 5 - for _, b := range yyq2138 { + yynn2161 = 5 + for _, b := range yyq2161 { if b { - yynn2138++ + yynn2161++ } } - r.EncodeMapStart(yynn2138) - yynn2138 = 0 + r.EncodeMapStart(yynn2161) + yynn2161 = 0 } - if yyr2138 || yy2arr2138 { + if yyr2161 || yy2arr2161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2140 := z.EncBinary() - _ = yym2140 + yym2163 := z.EncBinary() + _ = yym2163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -28024,14 +28295,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2141 := z.EncBinary() - _ = yym2141 + yym2164 := z.EncBinary() + _ = yym2164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2138 || yy2arr2138 { + if yyr2161 || yy2arr2161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -28040,10 +28311,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2138 || yy2arr2138 { + if yyr2161 || yy2arr2161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2144 := z.EncBinary() - _ = yym2144 + yym2167 := z.EncBinary() + _ = yym2167 if false { } else { r.EncodeInt(int64(x.Port)) @@ -28052,44 +28323,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2145 := z.EncBinary() - _ = yym2145 + yym2168 := z.EncBinary() + _ = yym2168 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2138 || yy2arr2138 { + if yyr2161 || yy2arr2161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2147 := &x.TargetPort - yym2148 := z.EncBinary() - _ = yym2148 + yy2170 := &x.TargetPort + yym2171 := z.EncBinary() + _ = yym2171 if false { - } else if z.HasExtensions() && z.EncExt(yy2147) { - } else if !yym2148 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2147) + } else if z.HasExtensions() && z.EncExt(yy2170) { + } else if !yym2171 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2170) } else { - z.EncFallback(yy2147) + z.EncFallback(yy2170) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2149 := &x.TargetPort - yym2150 := z.EncBinary() - _ = yym2150 + yy2172 := &x.TargetPort + yym2173 := z.EncBinary() + _ = yym2173 if false { - } else if z.HasExtensions() && z.EncExt(yy2149) { - } else if !yym2150 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2149) + } else if z.HasExtensions() && z.EncExt(yy2172) { + } else if !yym2173 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2172) } else { - z.EncFallback(yy2149) + z.EncFallback(yy2172) } } - if yyr2138 || yy2arr2138 { + if yyr2161 || yy2arr2161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2152 := z.EncBinary() - _ = yym2152 + yym2175 := z.EncBinary() + _ = yym2175 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -28098,14 +28369,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2153 := z.EncBinary() - _ = yym2153 + yym2176 := z.EncBinary() + _ = yym2176 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr2138 || yy2arr2138 { + if yyr2161 || yy2arr2161 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28118,25 +28389,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2154 := z.DecBinary() - _ = yym2154 + yym2177 := z.DecBinary() + _ = yym2177 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2155 := r.ContainerType() - if yyct2155 == codecSelferValueTypeMap1234 { - yyl2155 := r.ReadMapStart() - if yyl2155 == 0 { + yyct2178 := r.ContainerType() + if yyct2178 == codecSelferValueTypeMap1234 { + yyl2178 := r.ReadMapStart() + if yyl2178 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2155, d) + x.codecDecodeSelfFromMap(yyl2178, d) } - } else if yyct2155 == codecSelferValueTypeArray1234 { - yyl2155 := r.ReadArrayStart() - if yyl2155 == 0 { + } else if yyct2178 == codecSelferValueTypeArray1234 { + yyl2178 := r.ReadArrayStart() + if yyl2178 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2155, d) + x.codecDecodeSelfFromArray(yyl2178, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28148,12 +28419,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2156Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2156Slc - var yyhl2156 bool = l >= 0 - for yyj2156 := 0; ; yyj2156++ { - if yyhl2156 { - if yyj2156 >= l { + var yys2179Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2179Slc + var yyhl2179 bool = l >= 0 + for yyj2179 := 0; ; yyj2179++ { + if yyhl2179 { + if yyj2179 >= l { break } } else { @@ -28162,10 +28433,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2156Slc = r.DecodeBytes(yys2156Slc, true, true) - yys2156 := string(yys2156Slc) + yys2179Slc = r.DecodeBytes(yys2179Slc, true, true) + yys2179 := string(yys2179Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2156 { + switch yys2179 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -28188,15 +28459,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv2160 := &x.TargetPort - yym2161 := z.DecBinary() - _ = yym2161 + yyv2183 := &x.TargetPort + yym2184 := z.DecBinary() + _ = yym2184 if false { - } else if z.HasExtensions() && z.DecExt(yyv2160) { - } else if !yym2161 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2160) + } else if z.HasExtensions() && z.DecExt(yyv2183) { + } else if !yym2184 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2183) } else { - z.DecFallback(yyv2160, false) + z.DecFallback(yyv2183, false) } } case "nodePort": @@ -28206,9 +28477,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys2156) - } // end switch yys2156 - } // end for yyj2156 + z.DecStructFieldNotFound(-1, yys2179) + } // end switch yys2179 + } // end for yyj2179 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28216,16 +28487,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2163 int - var yyb2163 bool - var yyhl2163 bool = l >= 0 - yyj2163++ - if yyhl2163 { - yyb2163 = yyj2163 > l + var yyj2186 int + var yyb2186 bool + var yyhl2186 bool = l >= 0 + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2163 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2163 { + if yyb2186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28235,13 +28506,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2163++ - if yyhl2163 { - yyb2163 = yyj2163 > l + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2163 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2163 { + if yyb2186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28251,13 +28522,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2163++ - if yyhl2163 { - yyb2163 = yyj2163 > l + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2163 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2163 { + if yyb2186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28267,13 +28538,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj2163++ - if yyhl2163 { - yyb2163 = yyj2163 > l + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2163 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2163 { + if yyb2186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28281,24 +28552,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv2167 := &x.TargetPort - yym2168 := z.DecBinary() - _ = yym2168 + yyv2190 := &x.TargetPort + yym2191 := z.DecBinary() + _ = yym2191 if false { - } else if z.HasExtensions() && z.DecExt(yyv2167) { - } else if !yym2168 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2167) + } else if z.HasExtensions() && z.DecExt(yyv2190) { + } else if !yym2191 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2190) } else { - z.DecFallback(yyv2167, false) + z.DecFallback(yyv2190, false) } } - yyj2163++ - if yyhl2163 { - yyb2163 = yyj2163 > l + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2163 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2163 { + if yyb2186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28309,17 +28580,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj2163++ - if yyhl2163 { - yyb2163 = yyj2163 > l + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2163 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2163 { + if yyb2186 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2163-1, "") + z.DecStructFieldNotFound(yyj2186-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28331,39 +28602,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2170 := z.EncBinary() - _ = yym2170 + yym2193 := z.EncBinary() + _ = yym2193 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2171 := !z.EncBinary() - yy2arr2171 := z.EncBasicHandle().StructToArray - var yyq2171 [5]bool - _, _, _ = yysep2171, yyq2171, yy2arr2171 - const yyr2171 bool = false - yyq2171[0] = x.Kind != "" - yyq2171[1] = x.APIVersion != "" - yyq2171[2] = true - yyq2171[3] = true - yyq2171[4] = true - var yynn2171 int - if yyr2171 || yy2arr2171 { + yysep2194 := !z.EncBinary() + yy2arr2194 := z.EncBasicHandle().StructToArray + var yyq2194 [5]bool + _, _, _ = yysep2194, yyq2194, yy2arr2194 + const yyr2194 bool = false + yyq2194[0] = x.Kind != "" + yyq2194[1] = x.APIVersion != "" + yyq2194[2] = true + yyq2194[3] = true + yyq2194[4] = true + var yynn2194 int + if yyr2194 || yy2arr2194 { r.EncodeArrayStart(5) } else { - yynn2171 = 0 - for _, b := range yyq2171 { + yynn2194 = 0 + for _, b := range yyq2194 { if b { - yynn2171++ + yynn2194++ } } - r.EncodeMapStart(yynn2171) - yynn2171 = 0 + r.EncodeMapStart(yynn2194) + yynn2194 = 0 } - if yyr2171 || yy2arr2171 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2171[0] { - yym2173 := z.EncBinary() - _ = yym2173 + if yyq2194[0] { + yym2196 := z.EncBinary() + _ = yym2196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28372,23 +28643,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2171[0] { + if yyq2194[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2174 := z.EncBinary() - _ = yym2174 + yym2197 := z.EncBinary() + _ = yym2197 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2171 || yy2arr2171 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2171[1] { - yym2176 := z.EncBinary() - _ = yym2176 + if yyq2194[1] { + yym2199 := z.EncBinary() + _ = yym2199 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28397,70 +28668,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2171[1] { + if yyq2194[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2177 := z.EncBinary() - _ = yym2177 + yym2200 := z.EncBinary() + _ = yym2200 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2171 || yy2arr2171 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2171[2] { - yy2179 := &x.ObjectMeta - yy2179.CodecEncodeSelf(e) + if yyq2194[2] { + yy2202 := &x.ObjectMeta + yy2202.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2171[2] { + if yyq2194[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2180 := &x.ObjectMeta - yy2180.CodecEncodeSelf(e) + yy2203 := &x.ObjectMeta + yy2203.CodecEncodeSelf(e) } } - if yyr2171 || yy2arr2171 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2171[3] { - yy2182 := &x.Spec - yy2182.CodecEncodeSelf(e) + if yyq2194[3] { + yy2205 := &x.Spec + yy2205.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2171[3] { + if yyq2194[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2183 := &x.Spec - yy2183.CodecEncodeSelf(e) + yy2206 := &x.Spec + yy2206.CodecEncodeSelf(e) } } - if yyr2171 || yy2arr2171 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2171[4] { - yy2185 := &x.Status - yy2185.CodecEncodeSelf(e) + if yyq2194[4] { + yy2208 := &x.Status + yy2208.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2171[4] { + if yyq2194[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2186 := &x.Status - yy2186.CodecEncodeSelf(e) + yy2209 := &x.Status + yy2209.CodecEncodeSelf(e) } } - if yyr2171 || yy2arr2171 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28473,25 +28744,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2187 := z.DecBinary() - _ = yym2187 + yym2210 := z.DecBinary() + _ = yym2210 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2188 := r.ContainerType() - if yyct2188 == codecSelferValueTypeMap1234 { - yyl2188 := r.ReadMapStart() - if yyl2188 == 0 { + yyct2211 := r.ContainerType() + if yyct2211 == codecSelferValueTypeMap1234 { + yyl2211 := r.ReadMapStart() + if yyl2211 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2188, d) + x.codecDecodeSelfFromMap(yyl2211, d) } - } else if yyct2188 == codecSelferValueTypeArray1234 { - yyl2188 := r.ReadArrayStart() - if yyl2188 == 0 { + } else if yyct2211 == codecSelferValueTypeArray1234 { + yyl2211 := r.ReadArrayStart() + if yyl2211 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2188, d) + x.codecDecodeSelfFromArray(yyl2211, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28503,12 +28774,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2189Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2189Slc - var yyhl2189 bool = l >= 0 - for yyj2189 := 0; ; yyj2189++ { - if yyhl2189 { - if yyj2189 >= l { + var yys2212Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2212Slc + var yyhl2212 bool = l >= 0 + for yyj2212 := 0; ; yyj2212++ { + if yyhl2212 { + if yyj2212 >= l { break } } else { @@ -28517,10 +28788,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2189Slc = r.DecodeBytes(yys2189Slc, true, true) - yys2189 := string(yys2189Slc) + yys2212Slc = r.DecodeBytes(yys2212Slc, true, true) + yys2212 := string(yys2212Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2189 { + switch yys2212 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28537,27 +28808,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2192 := &x.ObjectMeta - yyv2192.CodecDecodeSelf(d) + yyv2215 := &x.ObjectMeta + yyv2215.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2193 := &x.Spec - yyv2193.CodecDecodeSelf(d) + yyv2216 := &x.Spec + yyv2216.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2194 := &x.Status - yyv2194.CodecDecodeSelf(d) + yyv2217 := &x.Status + yyv2217.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2189) - } // end switch yys2189 - } // end for yyj2189 + z.DecStructFieldNotFound(-1, yys2212) + } // end switch yys2212 + } // end for yyj2212 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28565,16 +28836,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2195 int - var yyb2195 bool - var yyhl2195 bool = l >= 0 - yyj2195++ - if yyhl2195 { - yyb2195 = yyj2195 > l + var yyj2218 int + var yyb2218 bool + var yyhl2218 bool = l >= 0 + yyj2218++ + if yyhl2218 { + yyb2218 = yyj2218 > l } else { - yyb2195 = r.CheckBreak() + yyb2218 = r.CheckBreak() } - if yyb2195 { + if yyb2218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28584,13 +28855,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2195++ - if yyhl2195 { - yyb2195 = yyj2195 > l + yyj2218++ + if yyhl2218 { + yyb2218 = yyj2218 > l } else { - yyb2195 = r.CheckBreak() + yyb2218 = r.CheckBreak() } - if yyb2195 { + if yyb2218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28600,13 +28871,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2195++ - if yyhl2195 { - yyb2195 = yyj2195 > l + yyj2218++ + if yyhl2218 { + yyb2218 = yyj2218 > l } else { - yyb2195 = r.CheckBreak() + yyb2218 = r.CheckBreak() } - if yyb2195 { + if yyb2218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28614,16 +28885,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2198 := &x.ObjectMeta - yyv2198.CodecDecodeSelf(d) + yyv2221 := &x.ObjectMeta + yyv2221.CodecDecodeSelf(d) } - yyj2195++ - if yyhl2195 { - yyb2195 = yyj2195 > l + yyj2218++ + if yyhl2218 { + yyb2218 = yyj2218 > l } else { - yyb2195 = r.CheckBreak() + yyb2218 = r.CheckBreak() } - if yyb2195 { + if yyb2218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28631,16 +28902,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2199 := &x.Spec - yyv2199.CodecDecodeSelf(d) + yyv2222 := &x.Spec + yyv2222.CodecDecodeSelf(d) } - yyj2195++ - if yyhl2195 { - yyb2195 = yyj2195 > l + yyj2218++ + if yyhl2218 { + yyb2218 = yyj2218 > l } else { - yyb2195 = r.CheckBreak() + yyb2218 = r.CheckBreak() } - if yyb2195 { + if yyb2218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28648,21 +28919,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2200 := &x.Status - yyv2200.CodecDecodeSelf(d) + yyv2223 := &x.Status + yyv2223.CodecDecodeSelf(d) } for { - yyj2195++ - if yyhl2195 { - yyb2195 = yyj2195 > l + yyj2218++ + if yyhl2218 { + yyb2218 = yyj2218 > l } else { - yyb2195 = r.CheckBreak() + yyb2218 = r.CheckBreak() } - if yyb2195 { + if yyb2218 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2195-1, "") + z.DecStructFieldNotFound(yyj2218-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28674,38 +28945,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2201 := z.EncBinary() - _ = yym2201 + yym2224 := z.EncBinary() + _ = yym2224 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2202 := !z.EncBinary() - yy2arr2202 := z.EncBasicHandle().StructToArray - var yyq2202 [5]bool - _, _, _ = yysep2202, yyq2202, yy2arr2202 - const yyr2202 bool = false - yyq2202[0] = x.Kind != "" - yyq2202[1] = x.APIVersion != "" - yyq2202[2] = true - yyq2202[4] = len(x.ImagePullSecrets) != 0 - var yynn2202 int - if yyr2202 || yy2arr2202 { + yysep2225 := !z.EncBinary() + yy2arr2225 := z.EncBasicHandle().StructToArray + var yyq2225 [5]bool + _, _, _ = yysep2225, yyq2225, yy2arr2225 + const yyr2225 bool = false + yyq2225[0] = x.Kind != "" + yyq2225[1] = x.APIVersion != "" + yyq2225[2] = true + yyq2225[4] = len(x.ImagePullSecrets) != 0 + var yynn2225 int + if yyr2225 || yy2arr2225 { r.EncodeArrayStart(5) } else { - yynn2202 = 1 - for _, b := range yyq2202 { + yynn2225 = 1 + for _, b := range yyq2225 { if b { - yynn2202++ + yynn2225++ } } - r.EncodeMapStart(yynn2202) - yynn2202 = 0 + r.EncodeMapStart(yynn2225) + yynn2225 = 0 } - if yyr2202 || yy2arr2202 { + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2202[0] { - yym2204 := z.EncBinary() - _ = yym2204 + if yyq2225[0] { + yym2227 := z.EncBinary() + _ = yym2227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28714,23 +28985,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2202[0] { + if yyq2225[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2205 := z.EncBinary() - _ = yym2205 + yym2228 := z.EncBinary() + _ = yym2228 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2202 || yy2arr2202 { + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2202[1] { - yym2207 := z.EncBinary() - _ = yym2207 + if yyq2225[1] { + yym2230 := z.EncBinary() + _ = yym2230 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28739,42 +29010,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2202[1] { + if yyq2225[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2208 := z.EncBinary() - _ = yym2208 + yym2231 := z.EncBinary() + _ = yym2231 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2202 || yy2arr2202 { + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2202[2] { - yy2210 := &x.ObjectMeta - yy2210.CodecEncodeSelf(e) + if yyq2225[2] { + yy2233 := &x.ObjectMeta + yy2233.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2202[2] { + if yyq2225[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2211 := &x.ObjectMeta - yy2211.CodecEncodeSelf(e) + yy2234 := &x.ObjectMeta + yy2234.CodecEncodeSelf(e) } } - if yyr2202 || yy2arr2202 { + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2213 := z.EncBinary() - _ = yym2213 + yym2236 := z.EncBinary() + _ = yym2236 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -28787,22 +29058,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2214 := z.EncBinary() - _ = yym2214 + yym2237 := z.EncBinary() + _ = yym2237 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2202 || yy2arr2202 { + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2202[4] { + if yyq2225[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2216 := z.EncBinary() - _ = yym2216 + yym2239 := z.EncBinary() + _ = yym2239 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -28812,15 +29083,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2202[4] { + if yyq2225[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2217 := z.EncBinary() - _ = yym2217 + yym2240 := z.EncBinary() + _ = yym2240 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -28828,7 +29099,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2202 || yy2arr2202 { + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28841,25 +29112,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2218 := z.DecBinary() - _ = yym2218 + yym2241 := z.DecBinary() + _ = yym2241 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2219 := r.ContainerType() - if yyct2219 == codecSelferValueTypeMap1234 { - yyl2219 := r.ReadMapStart() - if yyl2219 == 0 { + yyct2242 := r.ContainerType() + if yyct2242 == codecSelferValueTypeMap1234 { + yyl2242 := r.ReadMapStart() + if yyl2242 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2219, d) + x.codecDecodeSelfFromMap(yyl2242, d) } - } else if yyct2219 == codecSelferValueTypeArray1234 { - yyl2219 := r.ReadArrayStart() - if yyl2219 == 0 { + } else if yyct2242 == codecSelferValueTypeArray1234 { + yyl2242 := r.ReadArrayStart() + if yyl2242 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2219, d) + x.codecDecodeSelfFromArray(yyl2242, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28871,12 +29142,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2220Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2220Slc - var yyhl2220 bool = l >= 0 - for yyj2220 := 0; ; yyj2220++ { - if yyhl2220 { - if yyj2220 >= l { + var yys2243Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2243Slc + var yyhl2243 bool = l >= 0 + for yyj2243 := 0; ; yyj2243++ { + if yyhl2243 { + if yyj2243 >= l { break } } else { @@ -28885,10 +29156,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2220Slc = r.DecodeBytes(yys2220Slc, true, true) - yys2220 := string(yys2220Slc) + yys2243Slc = r.DecodeBytes(yys2243Slc, true, true) + yys2243 := string(yys2243Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2220 { + switch yys2243 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28905,37 +29176,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2223 := &x.ObjectMeta - yyv2223.CodecDecodeSelf(d) + yyv2246 := &x.ObjectMeta + yyv2246.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2224 := &x.Secrets - yym2225 := z.DecBinary() - _ = yym2225 + yyv2247 := &x.Secrets + yym2248 := z.DecBinary() + _ = yym2248 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2224), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2247), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2226 := &x.ImagePullSecrets - yym2227 := z.DecBinary() - _ = yym2227 + yyv2249 := &x.ImagePullSecrets + yym2250 := z.DecBinary() + _ = yym2250 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2226), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2249), d) } } default: - z.DecStructFieldNotFound(-1, yys2220) - } // end switch yys2220 - } // end for yyj2220 + z.DecStructFieldNotFound(-1, yys2243) + } // end switch yys2243 + } // end for yyj2243 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28943,16 +29214,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2228 int - var yyb2228 bool - var yyhl2228 bool = l >= 0 - yyj2228++ - if yyhl2228 { - yyb2228 = yyj2228 > l + var yyj2251 int + var yyb2251 bool + var yyhl2251 bool = l >= 0 + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2228 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2228 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28962,13 +29233,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2228++ - if yyhl2228 { - yyb2228 = yyj2228 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2228 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2228 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28978,13 +29249,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2228++ - if yyhl2228 { - yyb2228 = yyj2228 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2228 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2228 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28992,16 +29263,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2231 := &x.ObjectMeta - yyv2231.CodecDecodeSelf(d) + yyv2254 := &x.ObjectMeta + yyv2254.CodecDecodeSelf(d) } - yyj2228++ - if yyhl2228 { - yyb2228 = yyj2228 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2228 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2228 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29009,21 +29280,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2232 := &x.Secrets - yym2233 := z.DecBinary() - _ = yym2233 + yyv2255 := &x.Secrets + yym2256 := z.DecBinary() + _ = yym2256 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2232), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2255), d) } } - yyj2228++ - if yyhl2228 { - yyb2228 = yyj2228 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2228 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2228 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29031,26 +29302,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2234 := &x.ImagePullSecrets - yym2235 := z.DecBinary() - _ = yym2235 + yyv2257 := &x.ImagePullSecrets + yym2258 := z.DecBinary() + _ = yym2258 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2234), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2257), d) } } for { - yyj2228++ - if yyhl2228 { - yyb2228 = yyj2228 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2228 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2228 { + if yyb2251 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2228-1, "") + z.DecStructFieldNotFound(yyj2251-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29062,37 +29333,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2236 := z.EncBinary() - _ = yym2236 + yym2259 := z.EncBinary() + _ = yym2259 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2237 := !z.EncBinary() - yy2arr2237 := z.EncBasicHandle().StructToArray - var yyq2237 [4]bool - _, _, _ = yysep2237, yyq2237, yy2arr2237 - const yyr2237 bool = false - yyq2237[0] = x.Kind != "" - yyq2237[1] = x.APIVersion != "" - yyq2237[2] = true - var yynn2237 int - if yyr2237 || yy2arr2237 { + yysep2260 := !z.EncBinary() + yy2arr2260 := z.EncBasicHandle().StructToArray + var yyq2260 [4]bool + _, _, _ = yysep2260, yyq2260, yy2arr2260 + const yyr2260 bool = false + yyq2260[0] = x.Kind != "" + yyq2260[1] = x.APIVersion != "" + yyq2260[2] = true + var yynn2260 int + if yyr2260 || yy2arr2260 { r.EncodeArrayStart(4) } else { - yynn2237 = 1 - for _, b := range yyq2237 { + yynn2260 = 1 + for _, b := range yyq2260 { if b { - yynn2237++ + yynn2260++ } } - r.EncodeMapStart(yynn2237) - yynn2237 = 0 + r.EncodeMapStart(yynn2260) + yynn2260 = 0 } - if yyr2237 || yy2arr2237 { + if yyr2260 || yy2arr2260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2237[0] { - yym2239 := z.EncBinary() - _ = yym2239 + if yyq2260[0] { + yym2262 := z.EncBinary() + _ = yym2262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29101,23 +29372,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2237[0] { + if yyq2260[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2240 := z.EncBinary() - _ = yym2240 + yym2263 := z.EncBinary() + _ = yym2263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2237 || yy2arr2237 { + if yyr2260 || yy2arr2260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2237[1] { - yym2242 := z.EncBinary() - _ = yym2242 + if yyq2260[1] { + yym2265 := z.EncBinary() + _ = yym2265 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29126,54 +29397,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2237[1] { + if yyq2260[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2243 := z.EncBinary() - _ = yym2243 + yym2266 := z.EncBinary() + _ = yym2266 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2237 || yy2arr2237 { + if yyr2260 || yy2arr2260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2237[2] { - yy2245 := &x.ListMeta - yym2246 := z.EncBinary() - _ = yym2246 + if yyq2260[2] { + yy2268 := &x.ListMeta + yym2269 := z.EncBinary() + _ = yym2269 if false { - } else if z.HasExtensions() && z.EncExt(yy2245) { + } else if z.HasExtensions() && z.EncExt(yy2268) { } else { - z.EncFallback(yy2245) + z.EncFallback(yy2268) } } else { r.EncodeNil() } } else { - if yyq2237[2] { + if yyq2260[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2247 := &x.ListMeta - yym2248 := z.EncBinary() - _ = yym2248 + yy2270 := &x.ListMeta + yym2271 := z.EncBinary() + _ = yym2271 if false { - } else if z.HasExtensions() && z.EncExt(yy2247) { + } else if z.HasExtensions() && z.EncExt(yy2270) { } else { - z.EncFallback(yy2247) + z.EncFallback(yy2270) } } } - if yyr2237 || yy2arr2237 { + if yyr2260 || yy2arr2260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2250 := z.EncBinary() - _ = yym2250 + yym2273 := z.EncBinary() + _ = yym2273 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -29186,15 +29457,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2251 := z.EncBinary() - _ = yym2251 + yym2274 := z.EncBinary() + _ = yym2274 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2237 || yy2arr2237 { + if yyr2260 || yy2arr2260 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29207,25 +29478,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2252 := z.DecBinary() - _ = yym2252 + yym2275 := z.DecBinary() + _ = yym2275 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2253 := r.ContainerType() - if yyct2253 == codecSelferValueTypeMap1234 { - yyl2253 := r.ReadMapStart() - if yyl2253 == 0 { + yyct2276 := r.ContainerType() + if yyct2276 == codecSelferValueTypeMap1234 { + yyl2276 := r.ReadMapStart() + if yyl2276 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2253, d) + x.codecDecodeSelfFromMap(yyl2276, d) } - } else if yyct2253 == codecSelferValueTypeArray1234 { - yyl2253 := r.ReadArrayStart() - if yyl2253 == 0 { + } else if yyct2276 == codecSelferValueTypeArray1234 { + yyl2276 := r.ReadArrayStart() + if yyl2276 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2253, d) + x.codecDecodeSelfFromArray(yyl2276, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29237,12 +29508,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2254Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2254Slc - var yyhl2254 bool = l >= 0 - for yyj2254 := 0; ; yyj2254++ { - if yyhl2254 { - if yyj2254 >= l { + var yys2277Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2277Slc + var yyhl2277 bool = l >= 0 + for yyj2277 := 0; ; yyj2277++ { + if yyhl2277 { + if yyj2277 >= l { break } } else { @@ -29251,10 +29522,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2254Slc = r.DecodeBytes(yys2254Slc, true, true) - yys2254 := string(yys2254Slc) + yys2277Slc = r.DecodeBytes(yys2277Slc, true, true) + yys2277 := string(yys2277Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2254 { + switch yys2277 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29271,31 +29542,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2257 := &x.ListMeta - yym2258 := z.DecBinary() - _ = yym2258 + yyv2280 := &x.ListMeta + yym2281 := z.DecBinary() + _ = yym2281 if false { - } else if z.HasExtensions() && z.DecExt(yyv2257) { + } else if z.HasExtensions() && z.DecExt(yyv2280) { } else { - z.DecFallback(yyv2257, false) + z.DecFallback(yyv2280, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2259 := &x.Items - yym2260 := z.DecBinary() - _ = yym2260 + yyv2282 := &x.Items + yym2283 := z.DecBinary() + _ = yym2283 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2259), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2282), d) } } default: - z.DecStructFieldNotFound(-1, yys2254) - } // end switch yys2254 - } // end for yyj2254 + z.DecStructFieldNotFound(-1, yys2277) + } // end switch yys2277 + } // end for yyj2277 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29303,16 +29574,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2261 int - var yyb2261 bool - var yyhl2261 bool = l >= 0 - yyj2261++ - if yyhl2261 { - yyb2261 = yyj2261 > l + var yyj2284 int + var yyb2284 bool + var yyhl2284 bool = l >= 0 + yyj2284++ + if yyhl2284 { + yyb2284 = yyj2284 > l } else { - yyb2261 = r.CheckBreak() + yyb2284 = r.CheckBreak() } - if yyb2261 { + if yyb2284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29322,13 +29593,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2261++ - if yyhl2261 { - yyb2261 = yyj2261 > l + yyj2284++ + if yyhl2284 { + yyb2284 = yyj2284 > l } else { - yyb2261 = r.CheckBreak() + yyb2284 = r.CheckBreak() } - if yyb2261 { + if yyb2284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29338,13 +29609,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2261++ - if yyhl2261 { - yyb2261 = yyj2261 > l + yyj2284++ + if yyhl2284 { + yyb2284 = yyj2284 > l } else { - yyb2261 = r.CheckBreak() + yyb2284 = r.CheckBreak() } - if yyb2261 { + if yyb2284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29352,22 +29623,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2264 := &x.ListMeta - yym2265 := z.DecBinary() - _ = yym2265 + yyv2287 := &x.ListMeta + yym2288 := z.DecBinary() + _ = yym2288 if false { - } else if z.HasExtensions() && z.DecExt(yyv2264) { + } else if z.HasExtensions() && z.DecExt(yyv2287) { } else { - z.DecFallback(yyv2264, false) + z.DecFallback(yyv2287, false) } } - yyj2261++ - if yyhl2261 { - yyb2261 = yyj2261 > l + yyj2284++ + if yyhl2284 { + yyb2284 = yyj2284 > l } else { - yyb2261 = r.CheckBreak() + yyb2284 = r.CheckBreak() } - if yyb2261 { + if yyb2284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29375,26 +29646,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2266 := &x.Items - yym2267 := z.DecBinary() - _ = yym2267 + yyv2289 := &x.Items + yym2290 := z.DecBinary() + _ = yym2290 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2266), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2289), d) } } for { - yyj2261++ - if yyhl2261 { - yyb2261 = yyj2261 > l + yyj2284++ + if yyhl2284 { + yyb2284 = yyj2284 > l } else { - yyb2261 = r.CheckBreak() + yyb2284 = r.CheckBreak() } - if yyb2261 { + if yyb2284 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2261-1, "") + z.DecStructFieldNotFound(yyj2284-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29406,37 +29677,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2268 := z.EncBinary() - _ = yym2268 + yym2291 := z.EncBinary() + _ = yym2291 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2269 := !z.EncBinary() - yy2arr2269 := z.EncBasicHandle().StructToArray - var yyq2269 [4]bool - _, _, _ = yysep2269, yyq2269, yy2arr2269 - const yyr2269 bool = false - yyq2269[0] = x.Kind != "" - yyq2269[1] = x.APIVersion != "" - yyq2269[2] = true - var yynn2269 int - if yyr2269 || yy2arr2269 { + yysep2292 := !z.EncBinary() + yy2arr2292 := z.EncBasicHandle().StructToArray + var yyq2292 [4]bool + _, _, _ = yysep2292, yyq2292, yy2arr2292 + const yyr2292 bool = false + yyq2292[0] = x.Kind != "" + yyq2292[1] = x.APIVersion != "" + yyq2292[2] = true + var yynn2292 int + if yyr2292 || yy2arr2292 { r.EncodeArrayStart(4) } else { - yynn2269 = 1 - for _, b := range yyq2269 { + yynn2292 = 1 + for _, b := range yyq2292 { if b { - yynn2269++ + yynn2292++ } } - r.EncodeMapStart(yynn2269) - yynn2269 = 0 + r.EncodeMapStart(yynn2292) + yynn2292 = 0 } - if yyr2269 || yy2arr2269 { + if yyr2292 || yy2arr2292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2269[0] { - yym2271 := z.EncBinary() - _ = yym2271 + if yyq2292[0] { + yym2294 := z.EncBinary() + _ = yym2294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29445,23 +29716,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2269[0] { + if yyq2292[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2272 := z.EncBinary() - _ = yym2272 + yym2295 := z.EncBinary() + _ = yym2295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2269 || yy2arr2269 { + if yyr2292 || yy2arr2292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2269[1] { - yym2274 := z.EncBinary() - _ = yym2274 + if yyq2292[1] { + yym2297 := z.EncBinary() + _ = yym2297 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29470,42 +29741,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2269[1] { + if yyq2292[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2275 := z.EncBinary() - _ = yym2275 + yym2298 := z.EncBinary() + _ = yym2298 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2269 || yy2arr2269 { + if yyr2292 || yy2arr2292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2269[2] { - yy2277 := &x.ObjectMeta - yy2277.CodecEncodeSelf(e) + if yyq2292[2] { + yy2300 := &x.ObjectMeta + yy2300.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2269[2] { + if yyq2292[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2278 := &x.ObjectMeta - yy2278.CodecEncodeSelf(e) + yy2301 := &x.ObjectMeta + yy2301.CodecEncodeSelf(e) } } - if yyr2269 || yy2arr2269 { + if yyr2292 || yy2arr2292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2280 := z.EncBinary() - _ = yym2280 + yym2303 := z.EncBinary() + _ = yym2303 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -29518,15 +29789,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2281 := z.EncBinary() - _ = yym2281 + yym2304 := z.EncBinary() + _ = yym2304 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2269 || yy2arr2269 { + if yyr2292 || yy2arr2292 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29539,25 +29810,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2282 := z.DecBinary() - _ = yym2282 + yym2305 := z.DecBinary() + _ = yym2305 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2283 := r.ContainerType() - if yyct2283 == codecSelferValueTypeMap1234 { - yyl2283 := r.ReadMapStart() - if yyl2283 == 0 { + yyct2306 := r.ContainerType() + if yyct2306 == codecSelferValueTypeMap1234 { + yyl2306 := r.ReadMapStart() + if yyl2306 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2283, d) + x.codecDecodeSelfFromMap(yyl2306, d) } - } else if yyct2283 == codecSelferValueTypeArray1234 { - yyl2283 := r.ReadArrayStart() - if yyl2283 == 0 { + } else if yyct2306 == codecSelferValueTypeArray1234 { + yyl2306 := r.ReadArrayStart() + if yyl2306 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2283, d) + x.codecDecodeSelfFromArray(yyl2306, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29569,12 +29840,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2284Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2284Slc - var yyhl2284 bool = l >= 0 - for yyj2284 := 0; ; yyj2284++ { - if yyhl2284 { - if yyj2284 >= l { + var yys2307Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2307Slc + var yyhl2307 bool = l >= 0 + for yyj2307 := 0; ; yyj2307++ { + if yyhl2307 { + if yyj2307 >= l { break } } else { @@ -29583,10 +29854,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2284Slc = r.DecodeBytes(yys2284Slc, true, true) - yys2284 := string(yys2284Slc) + yys2307Slc = r.DecodeBytes(yys2307Slc, true, true) + yys2307 := string(yys2307Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2284 { + switch yys2307 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29603,25 +29874,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2287 := &x.ObjectMeta - yyv2287.CodecDecodeSelf(d) + yyv2310 := &x.ObjectMeta + yyv2310.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2288 := &x.Subsets - yym2289 := z.DecBinary() - _ = yym2289 + yyv2311 := &x.Subsets + yym2312 := z.DecBinary() + _ = yym2312 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2288), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2311), d) } } default: - z.DecStructFieldNotFound(-1, yys2284) - } // end switch yys2284 - } // end for yyj2284 + z.DecStructFieldNotFound(-1, yys2307) + } // end switch yys2307 + } // end for yyj2307 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29629,16 +29900,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2290 int - var yyb2290 bool - var yyhl2290 bool = l >= 0 - yyj2290++ - if yyhl2290 { - yyb2290 = yyj2290 > l + var yyj2313 int + var yyb2313 bool + var yyhl2313 bool = l >= 0 + yyj2313++ + if yyhl2313 { + yyb2313 = yyj2313 > l } else { - yyb2290 = r.CheckBreak() + yyb2313 = r.CheckBreak() } - if yyb2290 { + if yyb2313 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29648,13 +29919,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2290++ - if yyhl2290 { - yyb2290 = yyj2290 > l + yyj2313++ + if yyhl2313 { + yyb2313 = yyj2313 > l } else { - yyb2290 = r.CheckBreak() + yyb2313 = r.CheckBreak() } - if yyb2290 { + if yyb2313 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29664,13 +29935,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2290++ - if yyhl2290 { - yyb2290 = yyj2290 > l + yyj2313++ + if yyhl2313 { + yyb2313 = yyj2313 > l } else { - yyb2290 = r.CheckBreak() + yyb2313 = r.CheckBreak() } - if yyb2290 { + if yyb2313 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29678,16 +29949,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2293 := &x.ObjectMeta - yyv2293.CodecDecodeSelf(d) + yyv2316 := &x.ObjectMeta + yyv2316.CodecDecodeSelf(d) } - yyj2290++ - if yyhl2290 { - yyb2290 = yyj2290 > l + yyj2313++ + if yyhl2313 { + yyb2313 = yyj2313 > l } else { - yyb2290 = r.CheckBreak() + yyb2313 = r.CheckBreak() } - if yyb2290 { + if yyb2313 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29695,26 +29966,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2294 := &x.Subsets - yym2295 := z.DecBinary() - _ = yym2295 + yyv2317 := &x.Subsets + yym2318 := z.DecBinary() + _ = yym2318 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2294), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2317), d) } } for { - yyj2290++ - if yyhl2290 { - yyb2290 = yyj2290 > l + yyj2313++ + if yyhl2313 { + yyb2313 = yyj2313 > l } else { - yyb2290 = r.CheckBreak() + yyb2313 = r.CheckBreak() } - if yyb2290 { + if yyb2313 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2290-1, "") + z.DecStructFieldNotFound(yyj2313-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29726,36 +29997,36 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2296 := z.EncBinary() - _ = yym2296 + yym2319 := z.EncBinary() + _ = yym2319 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2297 := !z.EncBinary() - yy2arr2297 := z.EncBasicHandle().StructToArray - var yyq2297 [3]bool - _, _, _ = yysep2297, yyq2297, yy2arr2297 - const yyr2297 bool = false - var yynn2297 int - if yyr2297 || yy2arr2297 { + yysep2320 := !z.EncBinary() + yy2arr2320 := z.EncBasicHandle().StructToArray + var yyq2320 [3]bool + _, _, _ = yysep2320, yyq2320, yy2arr2320 + const yyr2320 bool = false + var yynn2320 int + if yyr2320 || yy2arr2320 { r.EncodeArrayStart(3) } else { - yynn2297 = 3 - for _, b := range yyq2297 { + yynn2320 = 3 + for _, b := range yyq2320 { if b { - yynn2297++ + yynn2320++ } } - r.EncodeMapStart(yynn2297) - yynn2297 = 0 + r.EncodeMapStart(yynn2320) + yynn2320 = 0 } - if yyr2297 || yy2arr2297 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2299 := z.EncBinary() - _ = yym2299 + yym2322 := z.EncBinary() + _ = yym2322 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -29768,21 +30039,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2300 := z.EncBinary() - _ = yym2300 + yym2323 := z.EncBinary() + _ = yym2323 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2297 || yy2arr2297 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2302 := z.EncBinary() - _ = yym2302 + yym2325 := z.EncBinary() + _ = yym2325 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -29795,21 +30066,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2303 := z.EncBinary() - _ = yym2303 + yym2326 := z.EncBinary() + _ = yym2326 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2297 || yy2arr2297 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2305 := z.EncBinary() - _ = yym2305 + yym2328 := z.EncBinary() + _ = yym2328 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -29822,15 +30093,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2306 := z.EncBinary() - _ = yym2306 + yym2329 := z.EncBinary() + _ = yym2329 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2297 || yy2arr2297 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29843,25 +30114,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2307 := z.DecBinary() - _ = yym2307 + yym2330 := z.DecBinary() + _ = yym2330 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2308 := r.ContainerType() - if yyct2308 == codecSelferValueTypeMap1234 { - yyl2308 := r.ReadMapStart() - if yyl2308 == 0 { + yyct2331 := r.ContainerType() + if yyct2331 == codecSelferValueTypeMap1234 { + yyl2331 := r.ReadMapStart() + if yyl2331 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2308, d) + x.codecDecodeSelfFromMap(yyl2331, d) } - } else if yyct2308 == codecSelferValueTypeArray1234 { - yyl2308 := r.ReadArrayStart() - if yyl2308 == 0 { + } else if yyct2331 == codecSelferValueTypeArray1234 { + yyl2331 := r.ReadArrayStart() + if yyl2331 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2308, d) + x.codecDecodeSelfFromArray(yyl2331, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29873,12 +30144,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2309Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2309Slc - var yyhl2309 bool = l >= 0 - for yyj2309 := 0; ; yyj2309++ { - if yyhl2309 { - if yyj2309 >= l { + var yys2332Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2332Slc + var yyhl2332 bool = l >= 0 + for yyj2332 := 0; ; yyj2332++ { + if yyhl2332 { + if yyj2332 >= l { break } } else { @@ -29887,50 +30158,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2309Slc = r.DecodeBytes(yys2309Slc, true, true) - yys2309 := string(yys2309Slc) + yys2332Slc = r.DecodeBytes(yys2332Slc, true, true) + yys2332 := string(yys2332Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2309 { + switch yys2332 { case "Addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2310 := &x.Addresses - yym2311 := z.DecBinary() - _ = yym2311 + yyv2333 := &x.Addresses + yym2334 := z.DecBinary() + _ = yym2334 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2310), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2333), d) } } case "NotReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2312 := &x.NotReadyAddresses - yym2313 := z.DecBinary() - _ = yym2313 + yyv2335 := &x.NotReadyAddresses + yym2336 := z.DecBinary() + _ = yym2336 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2312), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2335), d) } } case "Ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2314 := &x.Ports - yym2315 := z.DecBinary() - _ = yym2315 + yyv2337 := &x.Ports + yym2338 := z.DecBinary() + _ = yym2338 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2314), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2337), d) } } default: - z.DecStructFieldNotFound(-1, yys2309) - } // end switch yys2309 - } // end for yyj2309 + z.DecStructFieldNotFound(-1, yys2332) + } // end switch yys2332 + } // end for yyj2332 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29938,16 +30209,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2316 int - var yyb2316 bool - var yyhl2316 bool = l >= 0 - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + var yyj2339 int + var yyb2339 bool + var yyhl2339 bool = l >= 0 + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2316 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2316 { + if yyb2339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29955,21 +30226,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2317 := &x.Addresses - yym2318 := z.DecBinary() - _ = yym2318 + yyv2340 := &x.Addresses + yym2341 := z.DecBinary() + _ = yym2341 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2317), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2340), d) } } - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2316 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2316 { + if yyb2339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29977,21 +30248,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2319 := &x.NotReadyAddresses - yym2320 := z.DecBinary() - _ = yym2320 + yyv2342 := &x.NotReadyAddresses + yym2343 := z.DecBinary() + _ = yym2343 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2319), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2342), d) } } - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2316 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2316 { + if yyb2339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29999,26 +30270,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2321 := &x.Ports - yym2322 := z.DecBinary() - _ = yym2322 + yyv2344 := &x.Ports + yym2345 := z.DecBinary() + _ = yym2345 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2321), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2344), d) } } for { - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2316 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2316 { + if yyb2339 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2316-1, "") + z.DecStructFieldNotFound(yyj2339-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30030,33 +30301,33 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2323 := z.EncBinary() - _ = yym2323 + yym2346 := z.EncBinary() + _ = yym2346 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2324 := !z.EncBinary() - yy2arr2324 := z.EncBasicHandle().StructToArray - var yyq2324 [2]bool - _, _, _ = yysep2324, yyq2324, yy2arr2324 - const yyr2324 bool = false - var yynn2324 int - if yyr2324 || yy2arr2324 { + yysep2347 := !z.EncBinary() + yy2arr2347 := z.EncBasicHandle().StructToArray + var yyq2347 [2]bool + _, _, _ = yysep2347, yyq2347, yy2arr2347 + const yyr2347 bool = false + var yynn2347 int + if yyr2347 || yy2arr2347 { r.EncodeArrayStart(2) } else { - yynn2324 = 2 - for _, b := range yyq2324 { + yynn2347 = 2 + for _, b := range yyq2347 { if b { - yynn2324++ + yynn2347++ } } - r.EncodeMapStart(yynn2324) - yynn2324 = 0 + r.EncodeMapStart(yynn2347) + yynn2347 = 0 } - if yyr2324 || yy2arr2324 { + if yyr2347 || yy2arr2347 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2326 := z.EncBinary() - _ = yym2326 + yym2349 := z.EncBinary() + _ = yym2349 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -30065,14 +30336,14 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("IP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2327 := z.EncBinary() - _ = yym2327 + yym2350 := z.EncBinary() + _ = yym2350 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2324 || yy2arr2324 { + if yyr2347 || yy2arr2347 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetRef == nil { r.EncodeNil() @@ -30089,7 +30360,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { x.TargetRef.CodecEncodeSelf(e) } } - if yyr2324 || yy2arr2324 { + if yyr2347 || yy2arr2347 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30102,25 +30373,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2329 := z.DecBinary() - _ = yym2329 + yym2352 := z.DecBinary() + _ = yym2352 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2330 := r.ContainerType() - if yyct2330 == codecSelferValueTypeMap1234 { - yyl2330 := r.ReadMapStart() - if yyl2330 == 0 { + yyct2353 := r.ContainerType() + if yyct2353 == codecSelferValueTypeMap1234 { + yyl2353 := r.ReadMapStart() + if yyl2353 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2330, d) + x.codecDecodeSelfFromMap(yyl2353, d) } - } else if yyct2330 == codecSelferValueTypeArray1234 { - yyl2330 := r.ReadArrayStart() - if yyl2330 == 0 { + } else if yyct2353 == codecSelferValueTypeArray1234 { + yyl2353 := r.ReadArrayStart() + if yyl2353 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2330, d) + x.codecDecodeSelfFromArray(yyl2353, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30132,12 +30403,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2331Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2331Slc - var yyhl2331 bool = l >= 0 - for yyj2331 := 0; ; yyj2331++ { - if yyhl2331 { - if yyj2331 >= l { + var yys2354Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2354Slc + var yyhl2354 bool = l >= 0 + for yyj2354 := 0; ; yyj2354++ { + if yyhl2354 { + if yyj2354 >= l { break } } else { @@ -30146,10 +30417,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2331Slc = r.DecodeBytes(yys2331Slc, true, true) - yys2331 := string(yys2331Slc) + yys2354Slc = r.DecodeBytes(yys2354Slc, true, true) + yys2354 := string(yys2354Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2331 { + switch yys2354 { case "IP": if r.TryDecodeAsNil() { x.IP = "" @@ -30168,9 +30439,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2331) - } // end switch yys2331 - } // end for yyj2331 + z.DecStructFieldNotFound(-1, yys2354) + } // end switch yys2354 + } // end for yyj2354 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30178,16 +30449,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2334 int - var yyb2334 bool - var yyhl2334 bool = l >= 0 - yyj2334++ - if yyhl2334 { - yyb2334 = yyj2334 > l + var yyj2357 int + var yyb2357 bool + var yyhl2357 bool = l >= 0 + yyj2357++ + if yyhl2357 { + yyb2357 = yyj2357 > l } else { - yyb2334 = r.CheckBreak() + yyb2357 = r.CheckBreak() } - if yyb2334 { + if yyb2357 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30197,13 +30468,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2334++ - if yyhl2334 { - yyb2334 = yyj2334 > l + yyj2357++ + if yyhl2357 { + yyb2357 = yyj2357 > l } else { - yyb2334 = r.CheckBreak() + yyb2357 = r.CheckBreak() } - if yyb2334 { + if yyb2357 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30219,17 +30490,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2334++ - if yyhl2334 { - yyb2334 = yyj2334 > l + yyj2357++ + if yyhl2357 { + yyb2357 = yyj2357 > l } else { - yyb2334 = r.CheckBreak() + yyb2357 = r.CheckBreak() } - if yyb2334 { + if yyb2357 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2334-1, "") + z.DecStructFieldNotFound(yyj2357-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30241,33 +30512,33 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2337 := z.EncBinary() - _ = yym2337 + yym2360 := z.EncBinary() + _ = yym2360 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2338 := !z.EncBinary() - yy2arr2338 := z.EncBasicHandle().StructToArray - var yyq2338 [3]bool - _, _, _ = yysep2338, yyq2338, yy2arr2338 - const yyr2338 bool = false - var yynn2338 int - if yyr2338 || yy2arr2338 { + yysep2361 := !z.EncBinary() + yy2arr2361 := z.EncBasicHandle().StructToArray + var yyq2361 [3]bool + _, _, _ = yysep2361, yyq2361, yy2arr2361 + const yyr2361 bool = false + var yynn2361 int + if yyr2361 || yy2arr2361 { r.EncodeArrayStart(3) } else { - yynn2338 = 3 - for _, b := range yyq2338 { + yynn2361 = 3 + for _, b := range yyq2361 { if b { - yynn2338++ + yynn2361++ } } - r.EncodeMapStart(yynn2338) - yynn2338 = 0 + r.EncodeMapStart(yynn2361) + yynn2361 = 0 } - if yyr2338 || yy2arr2338 { + if yyr2361 || yy2arr2361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2340 := z.EncBinary() - _ = yym2340 + yym2363 := z.EncBinary() + _ = yym2363 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -30276,17 +30547,17 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2341 := z.EncBinary() - _ = yym2341 + yym2364 := z.EncBinary() + _ = yym2364 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2338 || yy2arr2338 { + if yyr2361 || yy2arr2361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2343 := z.EncBinary() - _ = yym2343 + yym2366 := z.EncBinary() + _ = yym2366 if false { } else { r.EncodeInt(int64(x.Port)) @@ -30295,14 +30566,14 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2344 := z.EncBinary() - _ = yym2344 + yym2367 := z.EncBinary() + _ = yym2367 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2338 || yy2arr2338 { + if yyr2361 || yy2arr2361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -30311,7 +30582,7 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2338 || yy2arr2338 { + if yyr2361 || yy2arr2361 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30324,25 +30595,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2346 := z.DecBinary() - _ = yym2346 + yym2369 := z.DecBinary() + _ = yym2369 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2347 := r.ContainerType() - if yyct2347 == codecSelferValueTypeMap1234 { - yyl2347 := r.ReadMapStart() - if yyl2347 == 0 { + yyct2370 := r.ContainerType() + if yyct2370 == codecSelferValueTypeMap1234 { + yyl2370 := r.ReadMapStart() + if yyl2370 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2347, d) + x.codecDecodeSelfFromMap(yyl2370, d) } - } else if yyct2347 == codecSelferValueTypeArray1234 { - yyl2347 := r.ReadArrayStart() - if yyl2347 == 0 { + } else if yyct2370 == codecSelferValueTypeArray1234 { + yyl2370 := r.ReadArrayStart() + if yyl2370 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2347, d) + x.codecDecodeSelfFromArray(yyl2370, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30354,12 +30625,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2348Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2348Slc - var yyhl2348 bool = l >= 0 - for yyj2348 := 0; ; yyj2348++ { - if yyhl2348 { - if yyj2348 >= l { + var yys2371Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2371Slc + var yyhl2371 bool = l >= 0 + for yyj2371 := 0; ; yyj2371++ { + if yyhl2371 { + if yyj2371 >= l { break } } else { @@ -30368,10 +30639,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2348Slc = r.DecodeBytes(yys2348Slc, true, true) - yys2348 := string(yys2348Slc) + yys2371Slc = r.DecodeBytes(yys2371Slc, true, true) + yys2371 := string(yys2371Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2348 { + switch yys2371 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -30391,9 +30662,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2348) - } // end switch yys2348 - } // end for yyj2348 + z.DecStructFieldNotFound(-1, yys2371) + } // end switch yys2371 + } // end for yyj2371 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30401,16 +30672,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2352 int - var yyb2352 bool - var yyhl2352 bool = l >= 0 - yyj2352++ - if yyhl2352 { - yyb2352 = yyj2352 > l + var yyj2375 int + var yyb2375 bool + var yyhl2375 bool = l >= 0 + yyj2375++ + if yyhl2375 { + yyb2375 = yyj2375 > l } else { - yyb2352 = r.CheckBreak() + yyb2375 = r.CheckBreak() } - if yyb2352 { + if yyb2375 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30420,13 +30691,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2352++ - if yyhl2352 { - yyb2352 = yyj2352 > l + yyj2375++ + if yyhl2375 { + yyb2375 = yyj2375 > l } else { - yyb2352 = r.CheckBreak() + yyb2375 = r.CheckBreak() } - if yyb2352 { + if yyb2375 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30436,13 +30707,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj2352++ - if yyhl2352 { - yyb2352 = yyj2352 > l + yyj2375++ + if yyhl2375 { + yyb2375 = yyj2375 > l } else { - yyb2352 = r.CheckBreak() + yyb2375 = r.CheckBreak() } - if yyb2352 { + if yyb2375 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30453,17 +30724,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2352++ - if yyhl2352 { - yyb2352 = yyj2352 > l + yyj2375++ + if yyhl2375 { + yyb2375 = yyj2375 > l } else { - yyb2352 = r.CheckBreak() + yyb2375 = r.CheckBreak() } - if yyb2352 { + if yyb2375 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2352-1, "") + z.DecStructFieldNotFound(yyj2375-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30475,37 +30746,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2356 := z.EncBinary() - _ = yym2356 + yym2379 := z.EncBinary() + _ = yym2379 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2357 := !z.EncBinary() - yy2arr2357 := z.EncBasicHandle().StructToArray - var yyq2357 [4]bool - _, _, _ = yysep2357, yyq2357, yy2arr2357 - const yyr2357 bool = false - yyq2357[0] = x.Kind != "" - yyq2357[1] = x.APIVersion != "" - yyq2357[2] = true - var yynn2357 int - if yyr2357 || yy2arr2357 { + yysep2380 := !z.EncBinary() + yy2arr2380 := z.EncBasicHandle().StructToArray + var yyq2380 [4]bool + _, _, _ = yysep2380, yyq2380, yy2arr2380 + const yyr2380 bool = false + yyq2380[0] = x.Kind != "" + yyq2380[1] = x.APIVersion != "" + yyq2380[2] = true + var yynn2380 int + if yyr2380 || yy2arr2380 { r.EncodeArrayStart(4) } else { - yynn2357 = 1 - for _, b := range yyq2357 { + yynn2380 = 1 + for _, b := range yyq2380 { if b { - yynn2357++ + yynn2380++ } } - r.EncodeMapStart(yynn2357) - yynn2357 = 0 + r.EncodeMapStart(yynn2380) + yynn2380 = 0 } - if yyr2357 || yy2arr2357 { + if yyr2380 || yy2arr2380 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2357[0] { - yym2359 := z.EncBinary() - _ = yym2359 + if yyq2380[0] { + yym2382 := z.EncBinary() + _ = yym2382 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30514,23 +30785,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2357[0] { + if yyq2380[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2360 := z.EncBinary() - _ = yym2360 + yym2383 := z.EncBinary() + _ = yym2383 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2357 || yy2arr2357 { + if yyr2380 || yy2arr2380 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2357[1] { - yym2362 := z.EncBinary() - _ = yym2362 + if yyq2380[1] { + yym2385 := z.EncBinary() + _ = yym2385 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30539,54 +30810,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2357[1] { + if yyq2380[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2363 := z.EncBinary() - _ = yym2363 + yym2386 := z.EncBinary() + _ = yym2386 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2357 || yy2arr2357 { + if yyr2380 || yy2arr2380 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2357[2] { - yy2365 := &x.ListMeta - yym2366 := z.EncBinary() - _ = yym2366 + if yyq2380[2] { + yy2388 := &x.ListMeta + yym2389 := z.EncBinary() + _ = yym2389 if false { - } else if z.HasExtensions() && z.EncExt(yy2365) { + } else if z.HasExtensions() && z.EncExt(yy2388) { } else { - z.EncFallback(yy2365) + z.EncFallback(yy2388) } } else { r.EncodeNil() } } else { - if yyq2357[2] { + if yyq2380[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2367 := &x.ListMeta - yym2368 := z.EncBinary() - _ = yym2368 + yy2390 := &x.ListMeta + yym2391 := z.EncBinary() + _ = yym2391 if false { - } else if z.HasExtensions() && z.EncExt(yy2367) { + } else if z.HasExtensions() && z.EncExt(yy2390) { } else { - z.EncFallback(yy2367) + z.EncFallback(yy2390) } } } - if yyr2357 || yy2arr2357 { + if yyr2380 || yy2arr2380 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2370 := z.EncBinary() - _ = yym2370 + yym2393 := z.EncBinary() + _ = yym2393 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -30599,15 +30870,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2371 := z.EncBinary() - _ = yym2371 + yym2394 := z.EncBinary() + _ = yym2394 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2357 || yy2arr2357 { + if yyr2380 || yy2arr2380 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30620,25 +30891,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2372 := z.DecBinary() - _ = yym2372 + yym2395 := z.DecBinary() + _ = yym2395 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2373 := r.ContainerType() - if yyct2373 == codecSelferValueTypeMap1234 { - yyl2373 := r.ReadMapStart() - if yyl2373 == 0 { + yyct2396 := r.ContainerType() + if yyct2396 == codecSelferValueTypeMap1234 { + yyl2396 := r.ReadMapStart() + if yyl2396 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2373, d) + x.codecDecodeSelfFromMap(yyl2396, d) } - } else if yyct2373 == codecSelferValueTypeArray1234 { - yyl2373 := r.ReadArrayStart() - if yyl2373 == 0 { + } else if yyct2396 == codecSelferValueTypeArray1234 { + yyl2396 := r.ReadArrayStart() + if yyl2396 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2373, d) + x.codecDecodeSelfFromArray(yyl2396, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30650,12 +30921,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2374Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2374Slc - var yyhl2374 bool = l >= 0 - for yyj2374 := 0; ; yyj2374++ { - if yyhl2374 { - if yyj2374 >= l { + var yys2397Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2397Slc + var yyhl2397 bool = l >= 0 + for yyj2397 := 0; ; yyj2397++ { + if yyhl2397 { + if yyj2397 >= l { break } } else { @@ -30664,10 +30935,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2374Slc = r.DecodeBytes(yys2374Slc, true, true) - yys2374 := string(yys2374Slc) + yys2397Slc = r.DecodeBytes(yys2397Slc, true, true) + yys2397 := string(yys2397Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2374 { + switch yys2397 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30684,31 +30955,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2377 := &x.ListMeta - yym2378 := z.DecBinary() - _ = yym2378 + yyv2400 := &x.ListMeta + yym2401 := z.DecBinary() + _ = yym2401 if false { - } else if z.HasExtensions() && z.DecExt(yyv2377) { + } else if z.HasExtensions() && z.DecExt(yyv2400) { } else { - z.DecFallback(yyv2377, false) + z.DecFallback(yyv2400, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2379 := &x.Items - yym2380 := z.DecBinary() - _ = yym2380 + yyv2402 := &x.Items + yym2403 := z.DecBinary() + _ = yym2403 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2379), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2402), d) } } default: - z.DecStructFieldNotFound(-1, yys2374) - } // end switch yys2374 - } // end for yyj2374 + z.DecStructFieldNotFound(-1, yys2397) + } // end switch yys2397 + } // end for yyj2397 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30716,16 +30987,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2381 int - var yyb2381 bool - var yyhl2381 bool = l >= 0 - yyj2381++ - if yyhl2381 { - yyb2381 = yyj2381 > l + var yyj2404 int + var yyb2404 bool + var yyhl2404 bool = l >= 0 + yyj2404++ + if yyhl2404 { + yyb2404 = yyj2404 > l } else { - yyb2381 = r.CheckBreak() + yyb2404 = r.CheckBreak() } - if yyb2381 { + if yyb2404 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30735,13 +31006,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2381++ - if yyhl2381 { - yyb2381 = yyj2381 > l + yyj2404++ + if yyhl2404 { + yyb2404 = yyj2404 > l } else { - yyb2381 = r.CheckBreak() + yyb2404 = r.CheckBreak() } - if yyb2381 { + if yyb2404 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30751,13 +31022,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2381++ - if yyhl2381 { - yyb2381 = yyj2381 > l + yyj2404++ + if yyhl2404 { + yyb2404 = yyj2404 > l } else { - yyb2381 = r.CheckBreak() + yyb2404 = r.CheckBreak() } - if yyb2381 { + if yyb2404 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30765,22 +31036,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2384 := &x.ListMeta - yym2385 := z.DecBinary() - _ = yym2385 + yyv2407 := &x.ListMeta + yym2408 := z.DecBinary() + _ = yym2408 if false { - } else if z.HasExtensions() && z.DecExt(yyv2384) { + } else if z.HasExtensions() && z.DecExt(yyv2407) { } else { - z.DecFallback(yyv2384, false) + z.DecFallback(yyv2407, false) } } - yyj2381++ - if yyhl2381 { - yyb2381 = yyj2381 > l + yyj2404++ + if yyhl2404 { + yyb2404 = yyj2404 > l } else { - yyb2381 = r.CheckBreak() + yyb2404 = r.CheckBreak() } - if yyb2381 { + if yyb2404 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30788,26 +31059,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2386 := &x.Items - yym2387 := z.DecBinary() - _ = yym2387 + yyv2409 := &x.Items + yym2410 := z.DecBinary() + _ = yym2410 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2386), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2409), d) } } for { - yyj2381++ - if yyhl2381 { - yyb2381 = yyj2381 > l + yyj2404++ + if yyhl2404 { + yyb2404 = yyj2404 > l } else { - yyb2381 = r.CheckBreak() + yyb2404 = r.CheckBreak() } - if yyb2381 { + if yyb2404 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2381-1, "") + z.DecStructFieldNotFound(yyj2404-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30819,38 +31090,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2388 := z.EncBinary() - _ = yym2388 + yym2411 := z.EncBinary() + _ = yym2411 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2389 := !z.EncBinary() - yy2arr2389 := z.EncBasicHandle().StructToArray - var yyq2389 [4]bool - _, _, _ = yysep2389, yyq2389, yy2arr2389 - const yyr2389 bool = false - yyq2389[0] = x.PodCIDR != "" - yyq2389[1] = x.ExternalID != "" - yyq2389[2] = x.ProviderID != "" - yyq2389[3] = x.Unschedulable != false - var yynn2389 int - if yyr2389 || yy2arr2389 { + yysep2412 := !z.EncBinary() + yy2arr2412 := z.EncBasicHandle().StructToArray + var yyq2412 [4]bool + _, _, _ = yysep2412, yyq2412, yy2arr2412 + const yyr2412 bool = false + yyq2412[0] = x.PodCIDR != "" + yyq2412[1] = x.ExternalID != "" + yyq2412[2] = x.ProviderID != "" + yyq2412[3] = x.Unschedulable != false + var yynn2412 int + if yyr2412 || yy2arr2412 { r.EncodeArrayStart(4) } else { - yynn2389 = 0 - for _, b := range yyq2389 { + yynn2412 = 0 + for _, b := range yyq2412 { if b { - yynn2389++ + yynn2412++ } } - r.EncodeMapStart(yynn2389) - yynn2389 = 0 + r.EncodeMapStart(yynn2412) + yynn2412 = 0 } - if yyr2389 || yy2arr2389 { + if yyr2412 || yy2arr2412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2389[0] { - yym2391 := z.EncBinary() - _ = yym2391 + if yyq2412[0] { + yym2414 := z.EncBinary() + _ = yym2414 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -30859,23 +31130,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2389[0] { + if yyq2412[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2392 := z.EncBinary() - _ = yym2392 + yym2415 := z.EncBinary() + _ = yym2415 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2389 || yy2arr2389 { + if yyr2412 || yy2arr2412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2389[1] { - yym2394 := z.EncBinary() - _ = yym2394 + if yyq2412[1] { + yym2417 := z.EncBinary() + _ = yym2417 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -30884,23 +31155,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2389[1] { + if yyq2412[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2395 := z.EncBinary() - _ = yym2395 + yym2418 := z.EncBinary() + _ = yym2418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2389 || yy2arr2389 { + if yyr2412 || yy2arr2412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2389[2] { - yym2397 := z.EncBinary() - _ = yym2397 + if yyq2412[2] { + yym2420 := z.EncBinary() + _ = yym2420 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -30909,23 +31180,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2389[2] { + if yyq2412[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2398 := z.EncBinary() - _ = yym2398 + yym2421 := z.EncBinary() + _ = yym2421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2389 || yy2arr2389 { + if yyr2412 || yy2arr2412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2389[3] { - yym2400 := z.EncBinary() - _ = yym2400 + if yyq2412[3] { + yym2423 := z.EncBinary() + _ = yym2423 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -30934,19 +31205,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2389[3] { + if yyq2412[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2401 := z.EncBinary() - _ = yym2401 + yym2424 := z.EncBinary() + _ = yym2424 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2389 || yy2arr2389 { + if yyr2412 || yy2arr2412 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30959,25 +31230,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2402 := z.DecBinary() - _ = yym2402 + yym2425 := z.DecBinary() + _ = yym2425 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2403 := r.ContainerType() - if yyct2403 == codecSelferValueTypeMap1234 { - yyl2403 := r.ReadMapStart() - if yyl2403 == 0 { + yyct2426 := r.ContainerType() + if yyct2426 == codecSelferValueTypeMap1234 { + yyl2426 := r.ReadMapStart() + if yyl2426 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2403, d) + x.codecDecodeSelfFromMap(yyl2426, d) } - } else if yyct2403 == codecSelferValueTypeArray1234 { - yyl2403 := r.ReadArrayStart() - if yyl2403 == 0 { + } else if yyct2426 == codecSelferValueTypeArray1234 { + yyl2426 := r.ReadArrayStart() + if yyl2426 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2403, d) + x.codecDecodeSelfFromArray(yyl2426, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30989,12 +31260,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2404Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2404Slc - var yyhl2404 bool = l >= 0 - for yyj2404 := 0; ; yyj2404++ { - if yyhl2404 { - if yyj2404 >= l { + var yys2427Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2427Slc + var yyhl2427 bool = l >= 0 + for yyj2427 := 0; ; yyj2427++ { + if yyhl2427 { + if yyj2427 >= l { break } } else { @@ -31003,10 +31274,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2404Slc = r.DecodeBytes(yys2404Slc, true, true) - yys2404 := string(yys2404Slc) + yys2427Slc = r.DecodeBytes(yys2427Slc, true, true) + yys2427 := string(yys2427Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2404 { + switch yys2427 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -31032,9 +31303,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2404) - } // end switch yys2404 - } // end for yyj2404 + z.DecStructFieldNotFound(-1, yys2427) + } // end switch yys2427 + } // end for yyj2427 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31042,16 +31313,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2409 int - var yyb2409 bool - var yyhl2409 bool = l >= 0 - yyj2409++ - if yyhl2409 { - yyb2409 = yyj2409 > l + var yyj2432 int + var yyb2432 bool + var yyhl2432 bool = l >= 0 + yyj2432++ + if yyhl2432 { + yyb2432 = yyj2432 > l } else { - yyb2409 = r.CheckBreak() + yyb2432 = r.CheckBreak() } - if yyb2409 { + if yyb2432 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31061,13 +31332,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2409++ - if yyhl2409 { - yyb2409 = yyj2409 > l + yyj2432++ + if yyhl2432 { + yyb2432 = yyj2432 > l } else { - yyb2409 = r.CheckBreak() + yyb2432 = r.CheckBreak() } - if yyb2409 { + if yyb2432 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31077,13 +31348,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2409++ - if yyhl2409 { - yyb2409 = yyj2409 > l + yyj2432++ + if yyhl2432 { + yyb2432 = yyj2432 > l } else { - yyb2409 = r.CheckBreak() + yyb2432 = r.CheckBreak() } - if yyb2409 { + if yyb2432 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31093,13 +31364,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2409++ - if yyhl2409 { - yyb2409 = yyj2409 > l + yyj2432++ + if yyhl2432 { + yyb2432 = yyj2432 > l } else { - yyb2409 = r.CheckBreak() + yyb2432 = r.CheckBreak() } - if yyb2409 { + if yyb2432 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31110,17 +31381,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2409++ - if yyhl2409 { - yyb2409 = yyj2409 > l + yyj2432++ + if yyhl2432 { + yyb2432 = yyj2432 > l } else { - yyb2409 = r.CheckBreak() + yyb2432 = r.CheckBreak() } - if yyb2409 { + if yyb2432 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2409-1, "") + z.DecStructFieldNotFound(yyj2432-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31132,33 +31403,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2414 := z.EncBinary() - _ = yym2414 + yym2437 := z.EncBinary() + _ = yym2437 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2415 := !z.EncBinary() - yy2arr2415 := z.EncBasicHandle().StructToArray - var yyq2415 [1]bool - _, _, _ = yysep2415, yyq2415, yy2arr2415 - const yyr2415 bool = false - var yynn2415 int - if yyr2415 || yy2arr2415 { + yysep2438 := !z.EncBinary() + yy2arr2438 := z.EncBasicHandle().StructToArray + var yyq2438 [1]bool + _, _, _ = yysep2438, yyq2438, yy2arr2438 + const yyr2438 bool = false + var yynn2438 int + if yyr2438 || yy2arr2438 { r.EncodeArrayStart(1) } else { - yynn2415 = 1 - for _, b := range yyq2415 { + yynn2438 = 1 + for _, b := range yyq2438 { if b { - yynn2415++ + yynn2438++ } } - r.EncodeMapStart(yynn2415) - yynn2415 = 0 + r.EncodeMapStart(yynn2438) + yynn2438 = 0 } - if yyr2415 || yy2arr2415 { + if yyr2438 || yy2arr2438 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2417 := z.EncBinary() - _ = yym2417 + yym2440 := z.EncBinary() + _ = yym2440 if false { } else { r.EncodeInt(int64(x.Port)) @@ -31167,14 +31438,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2418 := z.EncBinary() - _ = yym2418 + yym2441 := z.EncBinary() + _ = yym2441 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2415 || yy2arr2415 { + if yyr2438 || yy2arr2438 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31187,25 +31458,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2419 := z.DecBinary() - _ = yym2419 + yym2442 := z.DecBinary() + _ = yym2442 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2420 := r.ContainerType() - if yyct2420 == codecSelferValueTypeMap1234 { - yyl2420 := r.ReadMapStart() - if yyl2420 == 0 { + yyct2443 := r.ContainerType() + if yyct2443 == codecSelferValueTypeMap1234 { + yyl2443 := r.ReadMapStart() + if yyl2443 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2420, d) + x.codecDecodeSelfFromMap(yyl2443, d) } - } else if yyct2420 == codecSelferValueTypeArray1234 { - yyl2420 := r.ReadArrayStart() - if yyl2420 == 0 { + } else if yyct2443 == codecSelferValueTypeArray1234 { + yyl2443 := r.ReadArrayStart() + if yyl2443 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2420, d) + x.codecDecodeSelfFromArray(yyl2443, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31217,12 +31488,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2421Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2421Slc - var yyhl2421 bool = l >= 0 - for yyj2421 := 0; ; yyj2421++ { - if yyhl2421 { - if yyj2421 >= l { + var yys2444Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2444Slc + var yyhl2444 bool = l >= 0 + for yyj2444 := 0; ; yyj2444++ { + if yyhl2444 { + if yyj2444 >= l { break } } else { @@ -31231,10 +31502,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2421Slc = r.DecodeBytes(yys2421Slc, true, true) - yys2421 := string(yys2421Slc) + yys2444Slc = r.DecodeBytes(yys2444Slc, true, true) + yys2444 := string(yys2444Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2421 { + switch yys2444 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -31242,9 +31513,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys2421) - } // end switch yys2421 - } // end for yyj2421 + z.DecStructFieldNotFound(-1, yys2444) + } // end switch yys2444 + } // end for yyj2444 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31252,16 +31523,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2423 int - var yyb2423 bool - var yyhl2423 bool = l >= 0 - yyj2423++ - if yyhl2423 { - yyb2423 = yyj2423 > l + var yyj2446 int + var yyb2446 bool + var yyhl2446 bool = l >= 0 + yyj2446++ + if yyhl2446 { + yyb2446 = yyj2446 > l } else { - yyb2423 = r.CheckBreak() + yyb2446 = r.CheckBreak() } - if yyb2423 { + if yyb2446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31272,17 +31543,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj2423++ - if yyhl2423 { - yyb2423 = yyj2423 > l + yyj2446++ + if yyhl2446 { + yyb2446 = yyj2446 > l } else { - yyb2423 = r.CheckBreak() + yyb2446 = r.CheckBreak() } - if yyb2423 { + if yyb2446 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2423-1, "") + z.DecStructFieldNotFound(yyj2446-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31294,48 +31565,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2425 := z.EncBinary() - _ = yym2425 + yym2448 := z.EncBinary() + _ = yym2448 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2426 := !z.EncBinary() - yy2arr2426 := z.EncBasicHandle().StructToArray - var yyq2426 [1]bool - _, _, _ = yysep2426, yyq2426, yy2arr2426 - const yyr2426 bool = false - yyq2426[0] = true - var yynn2426 int - if yyr2426 || yy2arr2426 { + yysep2449 := !z.EncBinary() + yy2arr2449 := z.EncBasicHandle().StructToArray + var yyq2449 [1]bool + _, _, _ = yysep2449, yyq2449, yy2arr2449 + const yyr2449 bool = false + yyq2449[0] = true + var yynn2449 int + if yyr2449 || yy2arr2449 { r.EncodeArrayStart(1) } else { - yynn2426 = 0 - for _, b := range yyq2426 { + yynn2449 = 0 + for _, b := range yyq2449 { if b { - yynn2426++ + yynn2449++ } } - r.EncodeMapStart(yynn2426) - yynn2426 = 0 + r.EncodeMapStart(yynn2449) + yynn2449 = 0 } - if yyr2426 || yy2arr2426 { + if yyr2449 || yy2arr2449 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2426[0] { - yy2428 := &x.KubeletEndpoint - yy2428.CodecEncodeSelf(e) + if yyq2449[0] { + yy2451 := &x.KubeletEndpoint + yy2451.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2426[0] { + if yyq2449[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2429 := &x.KubeletEndpoint - yy2429.CodecEncodeSelf(e) + yy2452 := &x.KubeletEndpoint + yy2452.CodecEncodeSelf(e) } } - if yyr2426 || yy2arr2426 { + if yyr2449 || yy2arr2449 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31348,25 +31619,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2430 := z.DecBinary() - _ = yym2430 + yym2453 := z.DecBinary() + _ = yym2453 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2431 := r.ContainerType() - if yyct2431 == codecSelferValueTypeMap1234 { - yyl2431 := r.ReadMapStart() - if yyl2431 == 0 { + yyct2454 := r.ContainerType() + if yyct2454 == codecSelferValueTypeMap1234 { + yyl2454 := r.ReadMapStart() + if yyl2454 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2431, d) + x.codecDecodeSelfFromMap(yyl2454, d) } - } else if yyct2431 == codecSelferValueTypeArray1234 { - yyl2431 := r.ReadArrayStart() - if yyl2431 == 0 { + } else if yyct2454 == codecSelferValueTypeArray1234 { + yyl2454 := r.ReadArrayStart() + if yyl2454 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2431, d) + x.codecDecodeSelfFromArray(yyl2454, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31378,12 +31649,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2432Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2432Slc - var yyhl2432 bool = l >= 0 - for yyj2432 := 0; ; yyj2432++ { - if yyhl2432 { - if yyj2432 >= l { + var yys2455Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2455Slc + var yyhl2455 bool = l >= 0 + for yyj2455 := 0; ; yyj2455++ { + if yyhl2455 { + if yyj2455 >= l { break } } else { @@ -31392,21 +31663,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2432Slc = r.DecodeBytes(yys2432Slc, true, true) - yys2432 := string(yys2432Slc) + yys2455Slc = r.DecodeBytes(yys2455Slc, true, true) + yys2455 := string(yys2455Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2432 { + switch yys2455 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2433 := &x.KubeletEndpoint - yyv2433.CodecDecodeSelf(d) + yyv2456 := &x.KubeletEndpoint + yyv2456.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2432) - } // end switch yys2432 - } // end for yyj2432 + z.DecStructFieldNotFound(-1, yys2455) + } // end switch yys2455 + } // end for yyj2455 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31414,16 +31685,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2434 int - var yyb2434 bool - var yyhl2434 bool = l >= 0 - yyj2434++ - if yyhl2434 { - yyb2434 = yyj2434 > l + var yyj2457 int + var yyb2457 bool + var yyhl2457 bool = l >= 0 + yyj2457++ + if yyhl2457 { + yyb2457 = yyj2457 > l } else { - yyb2434 = r.CheckBreak() + yyb2457 = r.CheckBreak() } - if yyb2434 { + if yyb2457 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31431,21 +31702,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2435 := &x.KubeletEndpoint - yyv2435.CodecDecodeSelf(d) + yyv2458 := &x.KubeletEndpoint + yyv2458.CodecDecodeSelf(d) } for { - yyj2434++ - if yyhl2434 { - yyb2434 = yyj2434 > l + yyj2457++ + if yyhl2457 { + yyb2457 = yyj2457 > l } else { - yyb2434 = r.CheckBreak() + yyb2457 = r.CheckBreak() } - if yyb2434 { + if yyb2457 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2434-1, "") + z.DecStructFieldNotFound(yyj2457-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31457,33 +31728,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2436 := z.EncBinary() - _ = yym2436 + yym2459 := z.EncBinary() + _ = yym2459 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2437 := !z.EncBinary() - yy2arr2437 := z.EncBasicHandle().StructToArray - var yyq2437 [8]bool - _, _, _ = yysep2437, yyq2437, yy2arr2437 - const yyr2437 bool = false - var yynn2437 int - if yyr2437 || yy2arr2437 { + yysep2460 := !z.EncBinary() + yy2arr2460 := z.EncBasicHandle().StructToArray + var yyq2460 [8]bool + _, _, _ = yysep2460, yyq2460, yy2arr2460 + const yyr2460 bool = false + var yynn2460 int + if yyr2460 || yy2arr2460 { r.EncodeArrayStart(8) } else { - yynn2437 = 8 - for _, b := range yyq2437 { + yynn2460 = 8 + for _, b := range yyq2460 { if b { - yynn2437++ + yynn2460++ } } - r.EncodeMapStart(yynn2437) - yynn2437 = 0 + r.EncodeMapStart(yynn2460) + yynn2460 = 0 } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2439 := z.EncBinary() - _ = yym2439 + yym2462 := z.EncBinary() + _ = yym2462 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -31492,17 +31763,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2440 := z.EncBinary() - _ = yym2440 + yym2463 := z.EncBinary() + _ = yym2463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2442 := z.EncBinary() - _ = yym2442 + yym2465 := z.EncBinary() + _ = yym2465 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -31511,17 +31782,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2443 := z.EncBinary() - _ = yym2443 + yym2466 := z.EncBinary() + _ = yym2466 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2445 := z.EncBinary() - _ = yym2445 + yym2468 := z.EncBinary() + _ = yym2468 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -31530,17 +31801,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2446 := z.EncBinary() - _ = yym2446 + yym2469 := z.EncBinary() + _ = yym2469 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2448 := z.EncBinary() - _ = yym2448 + yym2471 := z.EncBinary() + _ = yym2471 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -31549,17 +31820,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2449 := z.EncBinary() - _ = yym2449 + yym2472 := z.EncBinary() + _ = yym2472 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2451 := z.EncBinary() - _ = yym2451 + yym2474 := z.EncBinary() + _ = yym2474 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -31568,17 +31839,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2452 := z.EncBinary() - _ = yym2452 + yym2475 := z.EncBinary() + _ = yym2475 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2454 := z.EncBinary() - _ = yym2454 + yym2477 := z.EncBinary() + _ = yym2477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -31587,17 +31858,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2455 := z.EncBinary() - _ = yym2455 + yym2478 := z.EncBinary() + _ = yym2478 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2457 := z.EncBinary() - _ = yym2457 + yym2480 := z.EncBinary() + _ = yym2480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -31606,17 +31877,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2458 := z.EncBinary() - _ = yym2458 + yym2481 := z.EncBinary() + _ = yym2481 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2460 := z.EncBinary() - _ = yym2460 + yym2483 := z.EncBinary() + _ = yym2483 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -31625,14 +31896,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2461 := z.EncBinary() - _ = yym2461 + yym2484 := z.EncBinary() + _ = yym2484 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2437 || yy2arr2437 { + if yyr2460 || yy2arr2460 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31645,25 +31916,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2462 := z.DecBinary() - _ = yym2462 + yym2485 := z.DecBinary() + _ = yym2485 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2463 := r.ContainerType() - if yyct2463 == codecSelferValueTypeMap1234 { - yyl2463 := r.ReadMapStart() - if yyl2463 == 0 { + yyct2486 := r.ContainerType() + if yyct2486 == codecSelferValueTypeMap1234 { + yyl2486 := r.ReadMapStart() + if yyl2486 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2463, d) + x.codecDecodeSelfFromMap(yyl2486, d) } - } else if yyct2463 == codecSelferValueTypeArray1234 { - yyl2463 := r.ReadArrayStart() - if yyl2463 == 0 { + } else if yyct2486 == codecSelferValueTypeArray1234 { + yyl2486 := r.ReadArrayStart() + if yyl2486 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2463, d) + x.codecDecodeSelfFromArray(yyl2486, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31675,12 +31946,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2464Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2464Slc - var yyhl2464 bool = l >= 0 - for yyj2464 := 0; ; yyj2464++ { - if yyhl2464 { - if yyj2464 >= l { + var yys2487Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2487Slc + var yyhl2487 bool = l >= 0 + for yyj2487 := 0; ; yyj2487++ { + if yyhl2487 { + if yyj2487 >= l { break } } else { @@ -31689,10 +31960,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2464Slc = r.DecodeBytes(yys2464Slc, true, true) - yys2464 := string(yys2464Slc) + yys2487Slc = r.DecodeBytes(yys2487Slc, true, true) + yys2487 := string(yys2487Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2464 { + switch yys2487 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -31742,9 +32013,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2464) - } // end switch yys2464 - } // end for yyj2464 + z.DecStructFieldNotFound(-1, yys2487) + } // end switch yys2487 + } // end for yyj2487 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31752,16 +32023,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2473 int - var yyb2473 bool - var yyhl2473 bool = l >= 0 - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + var yyj2496 int + var yyb2496 bool + var yyhl2496 bool = l >= 0 + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31771,13 +32042,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31787,13 +32058,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31803,13 +32074,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31819,13 +32090,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31835,13 +32106,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31851,13 +32122,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31867,13 +32138,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31884,17 +32155,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } for { - yyj2473++ - if yyhl2473 { - yyb2473 = yyj2473 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2473 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2473 { + if yyb2496 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2473-1, "") + z.DecStructFieldNotFound(yyj2496-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31906,39 +32177,39 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2482 := z.EncBinary() - _ = yym2482 + yym2505 := z.EncBinary() + _ = yym2505 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2483 := !z.EncBinary() - yy2arr2483 := z.EncBasicHandle().StructToArray - var yyq2483 [8]bool - _, _, _ = yysep2483, yyq2483, yy2arr2483 - const yyr2483 bool = false - yyq2483[0] = len(x.Capacity) != 0 - yyq2483[1] = len(x.Allocatable) != 0 - yyq2483[2] = x.Phase != "" - yyq2483[3] = len(x.Conditions) != 0 - yyq2483[4] = len(x.Addresses) != 0 - yyq2483[5] = true - yyq2483[6] = true - var yynn2483 int - if yyr2483 || yy2arr2483 { + yysep2506 := !z.EncBinary() + yy2arr2506 := z.EncBasicHandle().StructToArray + var yyq2506 [8]bool + _, _, _ = yysep2506, yyq2506, yy2arr2506 + const yyr2506 bool = false + yyq2506[0] = len(x.Capacity) != 0 + yyq2506[1] = len(x.Allocatable) != 0 + yyq2506[2] = x.Phase != "" + yyq2506[3] = len(x.Conditions) != 0 + yyq2506[4] = len(x.Addresses) != 0 + yyq2506[5] = true + yyq2506[6] = true + var yynn2506 int + if yyr2506 || yy2arr2506 { r.EncodeArrayStart(8) } else { - yynn2483 = 1 - for _, b := range yyq2483 { + yynn2506 = 1 + for _, b := range yyq2506 { if b { - yynn2483++ + yynn2506++ } } - r.EncodeMapStart(yynn2483) - yynn2483 = 0 + r.EncodeMapStart(yynn2506) + yynn2506 = 0 } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2483[0] { + if yyq2506[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -31948,7 +32219,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2483[0] { + if yyq2506[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -31959,9 +32230,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2483[1] { + if yyq2506[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -31971,7 +32242,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2483[1] { + if yyq2506[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -31982,29 +32253,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2483[2] { + if yyq2506[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2483[2] { + if yyq2506[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2483[3] { + if yyq2506[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2488 := z.EncBinary() - _ = yym2488 + yym2511 := z.EncBinary() + _ = yym2511 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -32014,15 +32285,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2483[3] { + if yyq2506[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2489 := z.EncBinary() - _ = yym2489 + yym2512 := z.EncBinary() + _ = yym2512 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -32030,14 +32301,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2483[4] { + if yyq2506[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2491 := z.EncBinary() - _ = yym2491 + yym2514 := z.EncBinary() + _ = yym2514 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -32047,15 +32318,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2483[4] { + if yyq2506[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2492 := z.EncBinary() - _ = yym2492 + yym2515 := z.EncBinary() + _ = yym2515 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -32063,47 +32334,47 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2483[5] { - yy2494 := &x.DaemonEndpoints - yy2494.CodecEncodeSelf(e) + if yyq2506[5] { + yy2517 := &x.DaemonEndpoints + yy2517.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2483[5] { + if yyq2506[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2495 := &x.DaemonEndpoints - yy2495.CodecEncodeSelf(e) + yy2518 := &x.DaemonEndpoints + yy2518.CodecEncodeSelf(e) } } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2483[6] { - yy2497 := &x.NodeInfo - yy2497.CodecEncodeSelf(e) + if yyq2506[6] { + yy2520 := &x.NodeInfo + yy2520.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2483[6] { + if yyq2506[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2498 := &x.NodeInfo - yy2498.CodecEncodeSelf(e) + yy2521 := &x.NodeInfo + yy2521.CodecEncodeSelf(e) } } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Images == nil { r.EncodeNil() } else { - yym2500 := z.EncBinary() - _ = yym2500 + yym2523 := z.EncBinary() + _ = yym2523 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -32116,15 +32387,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x.Images == nil { r.EncodeNil() } else { - yym2501 := z.EncBinary() - _ = yym2501 + yym2524 := z.EncBinary() + _ = yym2524 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) } } } - if yyr2483 || yy2arr2483 { + if yyr2506 || yy2arr2506 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32137,25 +32408,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2502 := z.DecBinary() - _ = yym2502 + yym2525 := z.DecBinary() + _ = yym2525 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2503 := r.ContainerType() - if yyct2503 == codecSelferValueTypeMap1234 { - yyl2503 := r.ReadMapStart() - if yyl2503 == 0 { + yyct2526 := r.ContainerType() + if yyct2526 == codecSelferValueTypeMap1234 { + yyl2526 := r.ReadMapStart() + if yyl2526 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2503, d) + x.codecDecodeSelfFromMap(yyl2526, d) } - } else if yyct2503 == codecSelferValueTypeArray1234 { - yyl2503 := r.ReadArrayStart() - if yyl2503 == 0 { + } else if yyct2526 == codecSelferValueTypeArray1234 { + yyl2526 := r.ReadArrayStart() + if yyl2526 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2503, d) + x.codecDecodeSelfFromArray(yyl2526, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32167,12 +32438,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2504Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2504Slc - var yyhl2504 bool = l >= 0 - for yyj2504 := 0; ; yyj2504++ { - if yyhl2504 { - if yyj2504 >= l { + var yys2527Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2527Slc + var yyhl2527 bool = l >= 0 + for yyj2527 := 0; ; yyj2527++ { + if yyhl2527 { + if yyj2527 >= l { break } } else { @@ -32181,23 +32452,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2504Slc = r.DecodeBytes(yys2504Slc, true, true) - yys2504 := string(yys2504Slc) + yys2527Slc = r.DecodeBytes(yys2527Slc, true, true) + yys2527 := string(yys2527Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2504 { + switch yys2527 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2505 := &x.Capacity - yyv2505.CodecDecodeSelf(d) + yyv2528 := &x.Capacity + yyv2528.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2506 := &x.Allocatable - yyv2506.CodecDecodeSelf(d) + yyv2529 := &x.Allocatable + yyv2529.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -32209,56 +32480,56 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2508 := &x.Conditions - yym2509 := z.DecBinary() - _ = yym2509 + yyv2531 := &x.Conditions + yym2532 := z.DecBinary() + _ = yym2532 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2508), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2531), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2510 := &x.Addresses - yym2511 := z.DecBinary() - _ = yym2511 + yyv2533 := &x.Addresses + yym2534 := z.DecBinary() + _ = yym2534 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2510), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2533), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2512 := &x.DaemonEndpoints - yyv2512.CodecDecodeSelf(d) + yyv2535 := &x.DaemonEndpoints + yyv2535.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2513 := &x.NodeInfo - yyv2513.CodecDecodeSelf(d) + yyv2536 := &x.NodeInfo + yyv2536.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2514 := &x.Images - yym2515 := z.DecBinary() - _ = yym2515 + yyv2537 := &x.Images + yym2538 := z.DecBinary() + _ = yym2538 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2514), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2537), d) } } default: - z.DecStructFieldNotFound(-1, yys2504) - } // end switch yys2504 - } // end for yyj2504 + z.DecStructFieldNotFound(-1, yys2527) + } // end switch yys2527 + } // end for yyj2527 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32266,16 +32537,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2516 int - var yyb2516 bool - var yyhl2516 bool = l >= 0 - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + var yyj2539 int + var yyb2539 bool + var yyhl2539 bool = l >= 0 + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32283,16 +32554,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2517 := &x.Capacity - yyv2517.CodecDecodeSelf(d) + yyv2540 := &x.Capacity + yyv2540.CodecDecodeSelf(d) } - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32300,16 +32571,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2518 := &x.Allocatable - yyv2518.CodecDecodeSelf(d) + yyv2541 := &x.Allocatable + yyv2541.CodecDecodeSelf(d) } - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32319,13 +32590,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32333,21 +32604,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2520 := &x.Conditions - yym2521 := z.DecBinary() - _ = yym2521 + yyv2543 := &x.Conditions + yym2544 := z.DecBinary() + _ = yym2544 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2520), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2543), d) } } - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32355,21 +32626,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2522 := &x.Addresses - yym2523 := z.DecBinary() - _ = yym2523 + yyv2545 := &x.Addresses + yym2546 := z.DecBinary() + _ = yym2546 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2522), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2545), d) } } - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32377,16 +32648,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2524 := &x.DaemonEndpoints - yyv2524.CodecDecodeSelf(d) + yyv2547 := &x.DaemonEndpoints + yyv2547.CodecDecodeSelf(d) } - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32394,16 +32665,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2525 := &x.NodeInfo - yyv2525.CodecDecodeSelf(d) + yyv2548 := &x.NodeInfo + yyv2548.CodecDecodeSelf(d) } - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32411,26 +32682,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2526 := &x.Images - yym2527 := z.DecBinary() - _ = yym2527 + yyv2549 := &x.Images + yym2550 := z.DecBinary() + _ = yym2550 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2526), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2549), d) } } for { - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2539++ + if yyhl2539 { + yyb2539 = yyj2539 > l } else { - yyb2516 = r.CheckBreak() + yyb2539 = r.CheckBreak() } - if yyb2516 { + if yyb2539 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2516-1, "") + z.DecStructFieldNotFound(yyj2539-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32442,37 +32713,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2528 := z.EncBinary() - _ = yym2528 + yym2551 := z.EncBinary() + _ = yym2551 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2529 := !z.EncBinary() - yy2arr2529 := z.EncBasicHandle().StructToArray - var yyq2529 [2]bool - _, _, _ = yysep2529, yyq2529, yy2arr2529 - const yyr2529 bool = false - yyq2529[1] = x.Size != 0 - var yynn2529 int - if yyr2529 || yy2arr2529 { + yysep2552 := !z.EncBinary() + yy2arr2552 := z.EncBasicHandle().StructToArray + var yyq2552 [2]bool + _, _, _ = yysep2552, yyq2552, yy2arr2552 + const yyr2552 bool = false + yyq2552[1] = x.Size != 0 + var yynn2552 int + if yyr2552 || yy2arr2552 { r.EncodeArrayStart(2) } else { - yynn2529 = 1 - for _, b := range yyq2529 { + yynn2552 = 1 + for _, b := range yyq2552 { if b { - yynn2529++ + yynn2552++ } } - r.EncodeMapStart(yynn2529) - yynn2529 = 0 + r.EncodeMapStart(yynn2552) + yynn2552 = 0 } - if yyr2529 || yy2arr2529 { + if yyr2552 || yy2arr2552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.RepoTags == nil { r.EncodeNil() } else { - yym2531 := z.EncBinary() - _ = yym2531 + yym2554 := z.EncBinary() + _ = yym2554 if false { } else { z.F.EncSliceStringV(x.RepoTags, false, e) @@ -32485,19 +32756,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.RepoTags == nil { r.EncodeNil() } else { - yym2532 := z.EncBinary() - _ = yym2532 + yym2555 := z.EncBinary() + _ = yym2555 if false { } else { z.F.EncSliceStringV(x.RepoTags, false, e) } } } - if yyr2529 || yy2arr2529 { + if yyr2552 || yy2arr2552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2529[1] { - yym2534 := z.EncBinary() - _ = yym2534 + if yyq2552[1] { + yym2557 := z.EncBinary() + _ = yym2557 if false { } else { r.EncodeInt(int64(x.Size)) @@ -32506,19 +32777,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2529[1] { + if yyq2552[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("size")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2535 := z.EncBinary() - _ = yym2535 + yym2558 := z.EncBinary() + _ = yym2558 if false { } else { r.EncodeInt(int64(x.Size)) } } } - if yyr2529 || yy2arr2529 { + if yyr2552 || yy2arr2552 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32531,25 +32802,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2536 := z.DecBinary() - _ = yym2536 + yym2559 := z.DecBinary() + _ = yym2559 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2537 := r.ContainerType() - if yyct2537 == codecSelferValueTypeMap1234 { - yyl2537 := r.ReadMapStart() - if yyl2537 == 0 { + yyct2560 := r.ContainerType() + if yyct2560 == codecSelferValueTypeMap1234 { + yyl2560 := r.ReadMapStart() + if yyl2560 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2537, d) + x.codecDecodeSelfFromMap(yyl2560, d) } - } else if yyct2537 == codecSelferValueTypeArray1234 { - yyl2537 := r.ReadArrayStart() - if yyl2537 == 0 { + } else if yyct2560 == codecSelferValueTypeArray1234 { + yyl2560 := r.ReadArrayStart() + if yyl2560 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2537, d) + x.codecDecodeSelfFromArray(yyl2560, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32561,12 +32832,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2538Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2538Slc - var yyhl2538 bool = l >= 0 - for yyj2538 := 0; ; yyj2538++ { - if yyhl2538 { - if yyj2538 >= l { + var yys2561Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2561Slc + var yyhl2561 bool = l >= 0 + for yyj2561 := 0; ; yyj2561++ { + if yyhl2561 { + if yyj2561 >= l { break } } else { @@ -32575,20 +32846,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2538Slc = r.DecodeBytes(yys2538Slc, true, true) - yys2538 := string(yys2538Slc) + yys2561Slc = r.DecodeBytes(yys2561Slc, true, true) + yys2561 := string(yys2561Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2538 { + switch yys2561 { case "repoTags": if r.TryDecodeAsNil() { x.RepoTags = nil } else { - yyv2539 := &x.RepoTags - yym2540 := z.DecBinary() - _ = yym2540 + yyv2562 := &x.RepoTags + yym2563 := z.DecBinary() + _ = yym2563 if false { } else { - z.F.DecSliceStringX(yyv2539, false, d) + z.F.DecSliceStringX(yyv2562, false, d) } } case "size": @@ -32598,9 +32869,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Size = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2538) - } // end switch yys2538 - } // end for yyj2538 + z.DecStructFieldNotFound(-1, yys2561) + } // end switch yys2561 + } // end for yyj2561 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32608,16 +32879,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2542 int - var yyb2542 bool - var yyhl2542 bool = l >= 0 - yyj2542++ - if yyhl2542 { - yyb2542 = yyj2542 > l + var yyj2565 int + var yyb2565 bool + var yyhl2565 bool = l >= 0 + yyj2565++ + if yyhl2565 { + yyb2565 = yyj2565 > l } else { - yyb2542 = r.CheckBreak() + yyb2565 = r.CheckBreak() } - if yyb2542 { + if yyb2565 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32625,21 +32896,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RepoTags = nil } else { - yyv2543 := &x.RepoTags - yym2544 := z.DecBinary() - _ = yym2544 + yyv2566 := &x.RepoTags + yym2567 := z.DecBinary() + _ = yym2567 if false { } else { - z.F.DecSliceStringX(yyv2543, false, d) + z.F.DecSliceStringX(yyv2566, false, d) } } - yyj2542++ - if yyhl2542 { - yyb2542 = yyj2542 > l + yyj2565++ + if yyhl2565 { + yyb2565 = yyj2565 > l } else { - yyb2542 = r.CheckBreak() + yyb2565 = r.CheckBreak() } - if yyb2542 { + if yyb2565 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32650,17 +32921,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Size = int64(r.DecodeInt(64)) } for { - yyj2542++ - if yyhl2542 { - yyb2542 = yyj2542 > l + yyj2565++ + if yyhl2565 { + yyb2565 = yyj2565 > l } else { - yyb2542 = r.CheckBreak() + yyb2565 = r.CheckBreak() } - if yyb2542 { + if yyb2565 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2542-1, "") + z.DecStructFieldNotFound(yyj2565-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32669,8 +32940,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2546 := z.EncBinary() - _ = yym2546 + yym2569 := z.EncBinary() + _ = yym2569 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32682,8 +32953,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2547 := z.DecBinary() - _ = yym2547 + yym2570 := z.DecBinary() + _ = yym2570 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32695,8 +32966,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2548 := z.EncBinary() - _ = yym2548 + yym2571 := z.EncBinary() + _ = yym2571 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32708,8 +32979,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2549 := z.DecBinary() - _ = yym2549 + yym2572 := z.DecBinary() + _ = yym2572 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32724,34 +32995,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2550 := z.EncBinary() - _ = yym2550 + yym2573 := z.EncBinary() + _ = yym2573 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2551 := !z.EncBinary() - yy2arr2551 := z.EncBasicHandle().StructToArray - var yyq2551 [6]bool - _, _, _ = yysep2551, yyq2551, yy2arr2551 - const yyr2551 bool = false - yyq2551[2] = true - yyq2551[3] = true - yyq2551[4] = x.Reason != "" - yyq2551[5] = x.Message != "" - var yynn2551 int - if yyr2551 || yy2arr2551 { + yysep2574 := !z.EncBinary() + yy2arr2574 := z.EncBasicHandle().StructToArray + var yyq2574 [6]bool + _, _, _ = yysep2574, yyq2574, yy2arr2574 + const yyr2574 bool = false + yyq2574[2] = true + yyq2574[3] = true + yyq2574[4] = x.Reason != "" + yyq2574[5] = x.Message != "" + var yynn2574 int + if yyr2574 || yy2arr2574 { r.EncodeArrayStart(6) } else { - yynn2551 = 2 - for _, b := range yyq2551 { + yynn2574 = 2 + for _, b := range yyq2574 { if b { - yynn2551++ + yynn2574++ } } - r.EncodeMapStart(yynn2551) - yynn2551 = 0 + r.EncodeMapStart(yynn2574) + yynn2574 = 0 } - if yyr2551 || yy2arr2551 { + if yyr2574 || yy2arr2574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -32760,7 +33031,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2551 || yy2arr2551 { + if yyr2574 || yy2arr2574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -32769,85 +33040,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2551 || yy2arr2551 { + if yyr2574 || yy2arr2574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[2] { - yy2555 := &x.LastHeartbeatTime - yym2556 := z.EncBinary() - _ = yym2556 + if yyq2574[2] { + yy2578 := &x.LastHeartbeatTime + yym2579 := z.EncBinary() + _ = yym2579 if false { - } else if z.HasExtensions() && z.EncExt(yy2555) { - } else if yym2556 { - z.EncBinaryMarshal(yy2555) - } else if !yym2556 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2555) + } else if z.HasExtensions() && z.EncExt(yy2578) { + } else if yym2579 { + z.EncBinaryMarshal(yy2578) + } else if !yym2579 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2578) } else { - z.EncFallback(yy2555) + z.EncFallback(yy2578) } } else { r.EncodeNil() } } else { - if yyq2551[2] { + if yyq2574[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2557 := &x.LastHeartbeatTime - yym2558 := z.EncBinary() - _ = yym2558 + yy2580 := &x.LastHeartbeatTime + yym2581 := z.EncBinary() + _ = yym2581 if false { - } else if z.HasExtensions() && z.EncExt(yy2557) { - } else if yym2558 { - z.EncBinaryMarshal(yy2557) - } else if !yym2558 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2557) + } else if z.HasExtensions() && z.EncExt(yy2580) { + } else if yym2581 { + z.EncBinaryMarshal(yy2580) + } else if !yym2581 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2580) } else { - z.EncFallback(yy2557) + z.EncFallback(yy2580) } } } - if yyr2551 || yy2arr2551 { + if yyr2574 || yy2arr2574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[3] { - yy2560 := &x.LastTransitionTime - yym2561 := z.EncBinary() - _ = yym2561 + if yyq2574[3] { + yy2583 := &x.LastTransitionTime + yym2584 := z.EncBinary() + _ = yym2584 if false { - } else if z.HasExtensions() && z.EncExt(yy2560) { - } else if yym2561 { - z.EncBinaryMarshal(yy2560) - } else if !yym2561 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2560) + } else if z.HasExtensions() && z.EncExt(yy2583) { + } else if yym2584 { + z.EncBinaryMarshal(yy2583) + } else if !yym2584 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2583) } else { - z.EncFallback(yy2560) + z.EncFallback(yy2583) } } else { r.EncodeNil() } } else { - if yyq2551[3] { + if yyq2574[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2562 := &x.LastTransitionTime - yym2563 := z.EncBinary() - _ = yym2563 + yy2585 := &x.LastTransitionTime + yym2586 := z.EncBinary() + _ = yym2586 if false { - } else if z.HasExtensions() && z.EncExt(yy2562) { - } else if yym2563 { - z.EncBinaryMarshal(yy2562) - } else if !yym2563 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2562) + } else if z.HasExtensions() && z.EncExt(yy2585) { + } else if yym2586 { + z.EncBinaryMarshal(yy2585) + } else if !yym2586 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2585) } else { - z.EncFallback(yy2562) + z.EncFallback(yy2585) } } } - if yyr2551 || yy2arr2551 { + if yyr2574 || yy2arr2574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[4] { - yym2565 := z.EncBinary() - _ = yym2565 + if yyq2574[4] { + yym2588 := z.EncBinary() + _ = yym2588 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -32856,23 +33127,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2551[4] { + if yyq2574[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2566 := z.EncBinary() - _ = yym2566 + yym2589 := z.EncBinary() + _ = yym2589 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2551 || yy2arr2551 { + if yyr2574 || yy2arr2574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[5] { - yym2568 := z.EncBinary() - _ = yym2568 + if yyq2574[5] { + yym2591 := z.EncBinary() + _ = yym2591 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -32881,19 +33152,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2551[5] { + if yyq2574[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2569 := z.EncBinary() - _ = yym2569 + yym2592 := z.EncBinary() + _ = yym2592 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2551 || yy2arr2551 { + if yyr2574 || yy2arr2574 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32906,25 +33177,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2570 := z.DecBinary() - _ = yym2570 + yym2593 := z.DecBinary() + _ = yym2593 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2571 := r.ContainerType() - if yyct2571 == codecSelferValueTypeMap1234 { - yyl2571 := r.ReadMapStart() - if yyl2571 == 0 { + yyct2594 := r.ContainerType() + if yyct2594 == codecSelferValueTypeMap1234 { + yyl2594 := r.ReadMapStart() + if yyl2594 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2571, d) + x.codecDecodeSelfFromMap(yyl2594, d) } - } else if yyct2571 == codecSelferValueTypeArray1234 { - yyl2571 := r.ReadArrayStart() - if yyl2571 == 0 { + } else if yyct2594 == codecSelferValueTypeArray1234 { + yyl2594 := r.ReadArrayStart() + if yyl2594 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2571, d) + x.codecDecodeSelfFromArray(yyl2594, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32936,12 +33207,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2572Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2572Slc - var yyhl2572 bool = l >= 0 - for yyj2572 := 0; ; yyj2572++ { - if yyhl2572 { - if yyj2572 >= l { + var yys2595Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2595Slc + var yyhl2595 bool = l >= 0 + for yyj2595 := 0; ; yyj2595++ { + if yyhl2595 { + if yyj2595 >= l { break } } else { @@ -32950,10 +33221,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2572Slc = r.DecodeBytes(yys2572Slc, true, true) - yys2572 := string(yys2572Slc) + yys2595Slc = r.DecodeBytes(yys2595Slc, true, true) + yys2595 := string(yys2595Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2572 { + switch yys2595 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -32970,34 +33241,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2575 := &x.LastHeartbeatTime - yym2576 := z.DecBinary() - _ = yym2576 + yyv2598 := &x.LastHeartbeatTime + yym2599 := z.DecBinary() + _ = yym2599 if false { - } else if z.HasExtensions() && z.DecExt(yyv2575) { - } else if yym2576 { - z.DecBinaryUnmarshal(yyv2575) - } else if !yym2576 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2575) + } else if z.HasExtensions() && z.DecExt(yyv2598) { + } else if yym2599 { + z.DecBinaryUnmarshal(yyv2598) + } else if !yym2599 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2598) } else { - z.DecFallback(yyv2575, false) + z.DecFallback(yyv2598, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2577 := &x.LastTransitionTime - yym2578 := z.DecBinary() - _ = yym2578 + yyv2600 := &x.LastTransitionTime + yym2601 := z.DecBinary() + _ = yym2601 if false { - } else if z.HasExtensions() && z.DecExt(yyv2577) { - } else if yym2578 { - z.DecBinaryUnmarshal(yyv2577) - } else if !yym2578 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2577) + } else if z.HasExtensions() && z.DecExt(yyv2600) { + } else if yym2601 { + z.DecBinaryUnmarshal(yyv2600) + } else if !yym2601 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2600) } else { - z.DecFallback(yyv2577, false) + z.DecFallback(yyv2600, false) } } case "reason": @@ -33013,9 +33284,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2572) - } // end switch yys2572 - } // end for yyj2572 + z.DecStructFieldNotFound(-1, yys2595) + } // end switch yys2595 + } // end for yyj2595 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33023,16 +33294,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2581 int - var yyb2581 bool - var yyhl2581 bool = l >= 0 - yyj2581++ - if yyhl2581 { - yyb2581 = yyj2581 > l + var yyj2604 int + var yyb2604 bool + var yyhl2604 bool = l >= 0 + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2581 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2581 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33042,13 +33313,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj2581++ - if yyhl2581 { - yyb2581 = yyj2581 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2581 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2581 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33058,13 +33329,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj2581++ - if yyhl2581 { - yyb2581 = yyj2581 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2581 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2581 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33072,26 +33343,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2584 := &x.LastHeartbeatTime - yym2585 := z.DecBinary() - _ = yym2585 + yyv2607 := &x.LastHeartbeatTime + yym2608 := z.DecBinary() + _ = yym2608 if false { - } else if z.HasExtensions() && z.DecExt(yyv2584) { - } else if yym2585 { - z.DecBinaryUnmarshal(yyv2584) - } else if !yym2585 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2584) + } else if z.HasExtensions() && z.DecExt(yyv2607) { + } else if yym2608 { + z.DecBinaryUnmarshal(yyv2607) + } else if !yym2608 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2607) } else { - z.DecFallback(yyv2584, false) + z.DecFallback(yyv2607, false) } } - yyj2581++ - if yyhl2581 { - yyb2581 = yyj2581 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2581 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2581 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33099,26 +33370,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2586 := &x.LastTransitionTime - yym2587 := z.DecBinary() - _ = yym2587 + yyv2609 := &x.LastTransitionTime + yym2610 := z.DecBinary() + _ = yym2610 if false { - } else if z.HasExtensions() && z.DecExt(yyv2586) { - } else if yym2587 { - z.DecBinaryUnmarshal(yyv2586) - } else if !yym2587 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2586) + } else if z.HasExtensions() && z.DecExt(yyv2609) { + } else if yym2610 { + z.DecBinaryUnmarshal(yyv2609) + } else if !yym2610 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2609) } else { - z.DecFallback(yyv2586, false) + z.DecFallback(yyv2609, false) } } - yyj2581++ - if yyhl2581 { - yyb2581 = yyj2581 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2581 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2581 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33128,13 +33399,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2581++ - if yyhl2581 { - yyb2581 = yyj2581 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2581 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2581 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33145,17 +33416,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj2581++ - if yyhl2581 { - yyb2581 = yyj2581 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2581 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2581 { + if yyb2604 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2581-1, "") + z.DecStructFieldNotFound(yyj2604-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33164,8 +33435,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2590 := z.EncBinary() - _ = yym2590 + yym2613 := z.EncBinary() + _ = yym2613 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33177,8 +33448,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2591 := z.DecBinary() - _ = yym2591 + yym2614 := z.DecBinary() + _ = yym2614 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33193,30 +33464,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2592 := z.EncBinary() - _ = yym2592 + yym2615 := z.EncBinary() + _ = yym2615 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2593 := !z.EncBinary() - yy2arr2593 := z.EncBasicHandle().StructToArray - var yyq2593 [2]bool - _, _, _ = yysep2593, yyq2593, yy2arr2593 - const yyr2593 bool = false - var yynn2593 int - if yyr2593 || yy2arr2593 { + yysep2616 := !z.EncBinary() + yy2arr2616 := z.EncBasicHandle().StructToArray + var yyq2616 [2]bool + _, _, _ = yysep2616, yyq2616, yy2arr2616 + const yyr2616 bool = false + var yynn2616 int + if yyr2616 || yy2arr2616 { r.EncodeArrayStart(2) } else { - yynn2593 = 2 - for _, b := range yyq2593 { + yynn2616 = 2 + for _, b := range yyq2616 { if b { - yynn2593++ + yynn2616++ } } - r.EncodeMapStart(yynn2593) - yynn2593 = 0 + r.EncodeMapStart(yynn2616) + yynn2616 = 0 } - if yyr2593 || yy2arr2593 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -33225,10 +33496,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2593 || yy2arr2593 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2596 := z.EncBinary() - _ = yym2596 + yym2619 := z.EncBinary() + _ = yym2619 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -33237,14 +33508,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2597 := z.EncBinary() - _ = yym2597 + yym2620 := z.EncBinary() + _ = yym2620 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr2593 || yy2arr2593 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33257,25 +33528,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2598 := z.DecBinary() - _ = yym2598 + yym2621 := z.DecBinary() + _ = yym2621 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2599 := r.ContainerType() - if yyct2599 == codecSelferValueTypeMap1234 { - yyl2599 := r.ReadMapStart() - if yyl2599 == 0 { + yyct2622 := r.ContainerType() + if yyct2622 == codecSelferValueTypeMap1234 { + yyl2622 := r.ReadMapStart() + if yyl2622 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2599, d) + x.codecDecodeSelfFromMap(yyl2622, d) } - } else if yyct2599 == codecSelferValueTypeArray1234 { - yyl2599 := r.ReadArrayStart() - if yyl2599 == 0 { + } else if yyct2622 == codecSelferValueTypeArray1234 { + yyl2622 := r.ReadArrayStart() + if yyl2622 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2599, d) + x.codecDecodeSelfFromArray(yyl2622, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33287,12 +33558,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2600Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2600Slc - var yyhl2600 bool = l >= 0 - for yyj2600 := 0; ; yyj2600++ { - if yyhl2600 { - if yyj2600 >= l { + var yys2623Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2623Slc + var yyhl2623 bool = l >= 0 + for yyj2623 := 0; ; yyj2623++ { + if yyhl2623 { + if yyj2623 >= l { break } } else { @@ -33301,10 +33572,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2600Slc = r.DecodeBytes(yys2600Slc, true, true) - yys2600 := string(yys2600Slc) + yys2623Slc = r.DecodeBytes(yys2623Slc, true, true) + yys2623 := string(yys2623Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2600 { + switch yys2623 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -33318,9 +33589,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2600) - } // end switch yys2600 - } // end for yyj2600 + z.DecStructFieldNotFound(-1, yys2623) + } // end switch yys2623 + } // end for yyj2623 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33328,16 +33599,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2603 int - var yyb2603 bool - var yyhl2603 bool = l >= 0 - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + var yyj2626 int + var yyb2626 bool + var yyhl2626 bool = l >= 0 + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2603 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2603 { + if yyb2626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33347,13 +33618,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2603 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2603 { + if yyb2626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33364,17 +33635,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2626++ + if yyhl2626 { + yyb2626 = yyj2626 > l } else { - yyb2603 = r.CheckBreak() + yyb2626 = r.CheckBreak() } - if yyb2603 { + if yyb2626 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2603-1, "") + z.DecStructFieldNotFound(yyj2626-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33386,33 +33657,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2606 := z.EncBinary() - _ = yym2606 + yym2629 := z.EncBinary() + _ = yym2629 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2607 := !z.EncBinary() - yy2arr2607 := z.EncBasicHandle().StructToArray - var yyq2607 [1]bool - _, _, _ = yysep2607, yyq2607, yy2arr2607 - const yyr2607 bool = false - yyq2607[0] = len(x.Capacity) != 0 - var yynn2607 int - if yyr2607 || yy2arr2607 { + yysep2630 := !z.EncBinary() + yy2arr2630 := z.EncBasicHandle().StructToArray + var yyq2630 [1]bool + _, _, _ = yysep2630, yyq2630, yy2arr2630 + const yyr2630 bool = false + yyq2630[0] = len(x.Capacity) != 0 + var yynn2630 int + if yyr2630 || yy2arr2630 { r.EncodeArrayStart(1) } else { - yynn2607 = 0 - for _, b := range yyq2607 { + yynn2630 = 0 + for _, b := range yyq2630 { if b { - yynn2607++ + yynn2630++ } } - r.EncodeMapStart(yynn2607) - yynn2607 = 0 + r.EncodeMapStart(yynn2630) + yynn2630 = 0 } - if yyr2607 || yy2arr2607 { + if yyr2630 || yy2arr2630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2607[0] { + if yyq2630[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -33422,7 +33693,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2607[0] { + if yyq2630[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -33433,7 +33704,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2607 || yy2arr2607 { + if yyr2630 || yy2arr2630 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33446,25 +33717,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2609 := z.DecBinary() - _ = yym2609 + yym2632 := z.DecBinary() + _ = yym2632 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2610 := r.ContainerType() - if yyct2610 == codecSelferValueTypeMap1234 { - yyl2610 := r.ReadMapStart() - if yyl2610 == 0 { + yyct2633 := r.ContainerType() + if yyct2633 == codecSelferValueTypeMap1234 { + yyl2633 := r.ReadMapStart() + if yyl2633 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2610, d) + x.codecDecodeSelfFromMap(yyl2633, d) } - } else if yyct2610 == codecSelferValueTypeArray1234 { - yyl2610 := r.ReadArrayStart() - if yyl2610 == 0 { + } else if yyct2633 == codecSelferValueTypeArray1234 { + yyl2633 := r.ReadArrayStart() + if yyl2633 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2610, d) + x.codecDecodeSelfFromArray(yyl2633, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33476,12 +33747,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2611Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2611Slc - var yyhl2611 bool = l >= 0 - for yyj2611 := 0; ; yyj2611++ { - if yyhl2611 { - if yyj2611 >= l { + var yys2634Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2634Slc + var yyhl2634 bool = l >= 0 + for yyj2634 := 0; ; yyj2634++ { + if yyhl2634 { + if yyj2634 >= l { break } } else { @@ -33490,21 +33761,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2611Slc = r.DecodeBytes(yys2611Slc, true, true) - yys2611 := string(yys2611Slc) + yys2634Slc = r.DecodeBytes(yys2634Slc, true, true) + yys2634 := string(yys2634Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2611 { + switch yys2634 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2612 := &x.Capacity - yyv2612.CodecDecodeSelf(d) + yyv2635 := &x.Capacity + yyv2635.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2611) - } // end switch yys2611 - } // end for yyj2611 + z.DecStructFieldNotFound(-1, yys2634) + } // end switch yys2634 + } // end for yyj2634 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33512,16 +33783,16 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2613 int - var yyb2613 bool - var yyhl2613 bool = l >= 0 - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + var yyj2636 int + var yyb2636 bool + var yyhl2636 bool = l >= 0 + yyj2636++ + if yyhl2636 { + yyb2636 = yyj2636 > l } else { - yyb2613 = r.CheckBreak() + yyb2636 = r.CheckBreak() } - if yyb2613 { + if yyb2636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33529,21 +33800,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2614 := &x.Capacity - yyv2614.CodecDecodeSelf(d) + yyv2637 := &x.Capacity + yyv2637.CodecDecodeSelf(d) } for { - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2636++ + if yyhl2636 { + yyb2636 = yyj2636 > l } else { - yyb2613 = r.CheckBreak() + yyb2636 = r.CheckBreak() } - if yyb2613 { + if yyb2636 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2613-1, "") + z.DecStructFieldNotFound(yyj2636-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33552,8 +33823,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2615 := z.EncBinary() - _ = yym2615 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33565,8 +33836,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2616 := z.DecBinary() - _ = yym2616 + yym2639 := z.DecBinary() + _ = yym2639 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33581,8 +33852,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2617 := z.EncBinary() - _ = yym2617 + yym2640 := z.EncBinary() + _ = yym2640 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33595,8 +33866,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2618 := z.DecBinary() - _ = yym2618 + yym2641 := z.DecBinary() + _ = yym2641 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33611,39 +33882,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2619 := z.EncBinary() - _ = yym2619 + yym2642 := z.EncBinary() + _ = yym2642 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2620 := !z.EncBinary() - yy2arr2620 := z.EncBasicHandle().StructToArray - var yyq2620 [5]bool - _, _, _ = yysep2620, yyq2620, yy2arr2620 - const yyr2620 bool = false - yyq2620[0] = x.Kind != "" - yyq2620[1] = x.APIVersion != "" - yyq2620[2] = true - yyq2620[3] = true - yyq2620[4] = true - var yynn2620 int - if yyr2620 || yy2arr2620 { + yysep2643 := !z.EncBinary() + yy2arr2643 := z.EncBasicHandle().StructToArray + var yyq2643 [5]bool + _, _, _ = yysep2643, yyq2643, yy2arr2643 + const yyr2643 bool = false + yyq2643[0] = x.Kind != "" + yyq2643[1] = x.APIVersion != "" + yyq2643[2] = true + yyq2643[3] = true + yyq2643[4] = true + var yynn2643 int + if yyr2643 || yy2arr2643 { r.EncodeArrayStart(5) } else { - yynn2620 = 0 - for _, b := range yyq2620 { + yynn2643 = 0 + for _, b := range yyq2643 { if b { - yynn2620++ + yynn2643++ } } - r.EncodeMapStart(yynn2620) - yynn2620 = 0 + r.EncodeMapStart(yynn2643) + yynn2643 = 0 } - if yyr2620 || yy2arr2620 { + if yyr2643 || yy2arr2643 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[0] { - yym2622 := z.EncBinary() - _ = yym2622 + if yyq2643[0] { + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33652,23 +33923,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2620[0] { + if yyq2643[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2623 := z.EncBinary() - _ = yym2623 + yym2646 := z.EncBinary() + _ = yym2646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2620 || yy2arr2620 { + if yyr2643 || yy2arr2643 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[1] { - yym2625 := z.EncBinary() - _ = yym2625 + if yyq2643[1] { + yym2648 := z.EncBinary() + _ = yym2648 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33677,70 +33948,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2620[1] { + if yyq2643[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2626 := z.EncBinary() - _ = yym2626 + yym2649 := z.EncBinary() + _ = yym2649 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2620 || yy2arr2620 { + if yyr2643 || yy2arr2643 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[2] { - yy2628 := &x.ObjectMeta - yy2628.CodecEncodeSelf(e) + if yyq2643[2] { + yy2651 := &x.ObjectMeta + yy2651.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2620[2] { + if yyq2643[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2629 := &x.ObjectMeta - yy2629.CodecEncodeSelf(e) + yy2652 := &x.ObjectMeta + yy2652.CodecEncodeSelf(e) } } - if yyr2620 || yy2arr2620 { + if yyr2643 || yy2arr2643 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[3] { - yy2631 := &x.Spec - yy2631.CodecEncodeSelf(e) + if yyq2643[3] { + yy2654 := &x.Spec + yy2654.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2620[3] { + if yyq2643[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2632 := &x.Spec - yy2632.CodecEncodeSelf(e) + yy2655 := &x.Spec + yy2655.CodecEncodeSelf(e) } } - if yyr2620 || yy2arr2620 { + if yyr2643 || yy2arr2643 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[4] { - yy2634 := &x.Status - yy2634.CodecEncodeSelf(e) + if yyq2643[4] { + yy2657 := &x.Status + yy2657.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2620[4] { + if yyq2643[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2635 := &x.Status - yy2635.CodecEncodeSelf(e) + yy2658 := &x.Status + yy2658.CodecEncodeSelf(e) } } - if yyr2620 || yy2arr2620 { + if yyr2643 || yy2arr2643 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33753,25 +34024,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2636 := z.DecBinary() - _ = yym2636 + yym2659 := z.DecBinary() + _ = yym2659 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2637 := r.ContainerType() - if yyct2637 == codecSelferValueTypeMap1234 { - yyl2637 := r.ReadMapStart() - if yyl2637 == 0 { + yyct2660 := r.ContainerType() + if yyct2660 == codecSelferValueTypeMap1234 { + yyl2660 := r.ReadMapStart() + if yyl2660 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2637, d) + x.codecDecodeSelfFromMap(yyl2660, d) } - } else if yyct2637 == codecSelferValueTypeArray1234 { - yyl2637 := r.ReadArrayStart() - if yyl2637 == 0 { + } else if yyct2660 == codecSelferValueTypeArray1234 { + yyl2660 := r.ReadArrayStart() + if yyl2660 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2637, d) + x.codecDecodeSelfFromArray(yyl2660, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33783,12 +34054,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2638Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2638Slc - var yyhl2638 bool = l >= 0 - for yyj2638 := 0; ; yyj2638++ { - if yyhl2638 { - if yyj2638 >= l { + var yys2661Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2661Slc + var yyhl2661 bool = l >= 0 + for yyj2661 := 0; ; yyj2661++ { + if yyhl2661 { + if yyj2661 >= l { break } } else { @@ -33797,10 +34068,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2638Slc = r.DecodeBytes(yys2638Slc, true, true) - yys2638 := string(yys2638Slc) + yys2661Slc = r.DecodeBytes(yys2661Slc, true, true) + yys2661 := string(yys2661Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2638 { + switch yys2661 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33817,27 +34088,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2641 := &x.ObjectMeta - yyv2641.CodecDecodeSelf(d) + yyv2664 := &x.ObjectMeta + yyv2664.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2642 := &x.Spec - yyv2642.CodecDecodeSelf(d) + yyv2665 := &x.Spec + yyv2665.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2643 := &x.Status - yyv2643.CodecDecodeSelf(d) + yyv2666 := &x.Status + yyv2666.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2638) - } // end switch yys2638 - } // end for yyj2638 + z.DecStructFieldNotFound(-1, yys2661) + } // end switch yys2661 + } // end for yyj2661 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33845,16 +34116,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2644 int - var yyb2644 bool - var yyhl2644 bool = l >= 0 - yyj2644++ - if yyhl2644 { - yyb2644 = yyj2644 > l + var yyj2667 int + var yyb2667 bool + var yyhl2667 bool = l >= 0 + yyj2667++ + if yyhl2667 { + yyb2667 = yyj2667 > l } else { - yyb2644 = r.CheckBreak() + yyb2667 = r.CheckBreak() } - if yyb2644 { + if yyb2667 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33864,13 +34135,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2644++ - if yyhl2644 { - yyb2644 = yyj2644 > l + yyj2667++ + if yyhl2667 { + yyb2667 = yyj2667 > l } else { - yyb2644 = r.CheckBreak() + yyb2667 = r.CheckBreak() } - if yyb2644 { + if yyb2667 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33880,13 +34151,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2644++ - if yyhl2644 { - yyb2644 = yyj2644 > l + yyj2667++ + if yyhl2667 { + yyb2667 = yyj2667 > l } else { - yyb2644 = r.CheckBreak() + yyb2667 = r.CheckBreak() } - if yyb2644 { + if yyb2667 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33894,16 +34165,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2647 := &x.ObjectMeta - yyv2647.CodecDecodeSelf(d) + yyv2670 := &x.ObjectMeta + yyv2670.CodecDecodeSelf(d) } - yyj2644++ - if yyhl2644 { - yyb2644 = yyj2644 > l + yyj2667++ + if yyhl2667 { + yyb2667 = yyj2667 > l } else { - yyb2644 = r.CheckBreak() + yyb2667 = r.CheckBreak() } - if yyb2644 { + if yyb2667 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33911,16 +34182,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2648 := &x.Spec - yyv2648.CodecDecodeSelf(d) + yyv2671 := &x.Spec + yyv2671.CodecDecodeSelf(d) } - yyj2644++ - if yyhl2644 { - yyb2644 = yyj2644 > l + yyj2667++ + if yyhl2667 { + yyb2667 = yyj2667 > l } else { - yyb2644 = r.CheckBreak() + yyb2667 = r.CheckBreak() } - if yyb2644 { + if yyb2667 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33928,21 +34199,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2649 := &x.Status - yyv2649.CodecDecodeSelf(d) + yyv2672 := &x.Status + yyv2672.CodecDecodeSelf(d) } for { - yyj2644++ - if yyhl2644 { - yyb2644 = yyj2644 > l + yyj2667++ + if yyhl2667 { + yyb2667 = yyj2667 > l } else { - yyb2644 = r.CheckBreak() + yyb2667 = r.CheckBreak() } - if yyb2644 { + if yyb2667 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2644-1, "") + z.DecStructFieldNotFound(yyj2667-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33954,37 +34225,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2650 := z.EncBinary() - _ = yym2650 + yym2673 := z.EncBinary() + _ = yym2673 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2651 := !z.EncBinary() - yy2arr2651 := z.EncBasicHandle().StructToArray - var yyq2651 [4]bool - _, _, _ = yysep2651, yyq2651, yy2arr2651 - const yyr2651 bool = false - yyq2651[0] = x.Kind != "" - yyq2651[1] = x.APIVersion != "" - yyq2651[2] = true - var yynn2651 int - if yyr2651 || yy2arr2651 { + yysep2674 := !z.EncBinary() + yy2arr2674 := z.EncBasicHandle().StructToArray + var yyq2674 [4]bool + _, _, _ = yysep2674, yyq2674, yy2arr2674 + const yyr2674 bool = false + yyq2674[0] = x.Kind != "" + yyq2674[1] = x.APIVersion != "" + yyq2674[2] = true + var yynn2674 int + if yyr2674 || yy2arr2674 { r.EncodeArrayStart(4) } else { - yynn2651 = 1 - for _, b := range yyq2651 { + yynn2674 = 1 + for _, b := range yyq2674 { if b { - yynn2651++ + yynn2674++ } } - r.EncodeMapStart(yynn2651) - yynn2651 = 0 + r.EncodeMapStart(yynn2674) + yynn2674 = 0 } - if yyr2651 || yy2arr2651 { + if yyr2674 || yy2arr2674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2651[0] { - yym2653 := z.EncBinary() - _ = yym2653 + if yyq2674[0] { + yym2676 := z.EncBinary() + _ = yym2676 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33993,23 +34264,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2651[0] { + if yyq2674[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2654 := z.EncBinary() - _ = yym2654 + yym2677 := z.EncBinary() + _ = yym2677 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2651 || yy2arr2651 { + if yyr2674 || yy2arr2674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2651[1] { - yym2656 := z.EncBinary() - _ = yym2656 + if yyq2674[1] { + yym2679 := z.EncBinary() + _ = yym2679 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34018,54 +34289,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2651[1] { + if yyq2674[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2657 := z.EncBinary() - _ = yym2657 + yym2680 := z.EncBinary() + _ = yym2680 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2651 || yy2arr2651 { + if yyr2674 || yy2arr2674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2651[2] { - yy2659 := &x.ListMeta - yym2660 := z.EncBinary() - _ = yym2660 + if yyq2674[2] { + yy2682 := &x.ListMeta + yym2683 := z.EncBinary() + _ = yym2683 if false { - } else if z.HasExtensions() && z.EncExt(yy2659) { + } else if z.HasExtensions() && z.EncExt(yy2682) { } else { - z.EncFallback(yy2659) + z.EncFallback(yy2682) } } else { r.EncodeNil() } } else { - if yyq2651[2] { + if yyq2674[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2661 := &x.ListMeta - yym2662 := z.EncBinary() - _ = yym2662 + yy2684 := &x.ListMeta + yym2685 := z.EncBinary() + _ = yym2685 if false { - } else if z.HasExtensions() && z.EncExt(yy2661) { + } else if z.HasExtensions() && z.EncExt(yy2684) { } else { - z.EncFallback(yy2661) + z.EncFallback(yy2684) } } } - if yyr2651 || yy2arr2651 { + if yyr2674 || yy2arr2674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2664 := z.EncBinary() - _ = yym2664 + yym2687 := z.EncBinary() + _ = yym2687 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -34078,15 +34349,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2665 := z.EncBinary() - _ = yym2665 + yym2688 := z.EncBinary() + _ = yym2688 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr2651 || yy2arr2651 { + if yyr2674 || yy2arr2674 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34099,25 +34370,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2666 := z.DecBinary() - _ = yym2666 + yym2689 := z.DecBinary() + _ = yym2689 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2667 := r.ContainerType() - if yyct2667 == codecSelferValueTypeMap1234 { - yyl2667 := r.ReadMapStart() - if yyl2667 == 0 { + yyct2690 := r.ContainerType() + if yyct2690 == codecSelferValueTypeMap1234 { + yyl2690 := r.ReadMapStart() + if yyl2690 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2667, d) + x.codecDecodeSelfFromMap(yyl2690, d) } - } else if yyct2667 == codecSelferValueTypeArray1234 { - yyl2667 := r.ReadArrayStart() - if yyl2667 == 0 { + } else if yyct2690 == codecSelferValueTypeArray1234 { + yyl2690 := r.ReadArrayStart() + if yyl2690 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2667, d) + x.codecDecodeSelfFromArray(yyl2690, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34129,12 +34400,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2668Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2668Slc - var yyhl2668 bool = l >= 0 - for yyj2668 := 0; ; yyj2668++ { - if yyhl2668 { - if yyj2668 >= l { + var yys2691Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2691Slc + var yyhl2691 bool = l >= 0 + for yyj2691 := 0; ; yyj2691++ { + if yyhl2691 { + if yyj2691 >= l { break } } else { @@ -34143,10 +34414,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2668Slc = r.DecodeBytes(yys2668Slc, true, true) - yys2668 := string(yys2668Slc) + yys2691Slc = r.DecodeBytes(yys2691Slc, true, true) + yys2691 := string(yys2691Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2668 { + switch yys2691 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34163,31 +34434,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2671 := &x.ListMeta - yym2672 := z.DecBinary() - _ = yym2672 + yyv2694 := &x.ListMeta + yym2695 := z.DecBinary() + _ = yym2695 if false { - } else if z.HasExtensions() && z.DecExt(yyv2671) { + } else if z.HasExtensions() && z.DecExt(yyv2694) { } else { - z.DecFallback(yyv2671, false) + z.DecFallback(yyv2694, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2673 := &x.Items - yym2674 := z.DecBinary() - _ = yym2674 + yyv2696 := &x.Items + yym2697 := z.DecBinary() + _ = yym2697 if false { } else { - h.decSliceNode((*[]Node)(yyv2673), d) + h.decSliceNode((*[]Node)(yyv2696), d) } } default: - z.DecStructFieldNotFound(-1, yys2668) - } // end switch yys2668 - } // end for yyj2668 + z.DecStructFieldNotFound(-1, yys2691) + } // end switch yys2691 + } // end for yyj2691 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34195,16 +34466,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2675 int - var yyb2675 bool - var yyhl2675 bool = l >= 0 - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + var yyj2698 int + var yyb2698 bool + var yyhl2698 bool = l >= 0 + yyj2698++ + if yyhl2698 { + yyb2698 = yyj2698 > l } else { - yyb2675 = r.CheckBreak() + yyb2698 = r.CheckBreak() } - if yyb2675 { + if yyb2698 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34214,13 +34485,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + yyj2698++ + if yyhl2698 { + yyb2698 = yyj2698 > l } else { - yyb2675 = r.CheckBreak() + yyb2698 = r.CheckBreak() } - if yyb2675 { + if yyb2698 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34230,13 +34501,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + yyj2698++ + if yyhl2698 { + yyb2698 = yyj2698 > l } else { - yyb2675 = r.CheckBreak() + yyb2698 = r.CheckBreak() } - if yyb2675 { + if yyb2698 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34244,22 +34515,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2678 := &x.ListMeta - yym2679 := z.DecBinary() - _ = yym2679 + yyv2701 := &x.ListMeta + yym2702 := z.DecBinary() + _ = yym2702 if false { - } else if z.HasExtensions() && z.DecExt(yyv2678) { + } else if z.HasExtensions() && z.DecExt(yyv2701) { } else { - z.DecFallback(yyv2678, false) + z.DecFallback(yyv2701, false) } } - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + yyj2698++ + if yyhl2698 { + yyb2698 = yyj2698 > l } else { - yyb2675 = r.CheckBreak() + yyb2698 = r.CheckBreak() } - if yyb2675 { + if yyb2698 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34267,26 +34538,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2680 := &x.Items - yym2681 := z.DecBinary() - _ = yym2681 + yyv2703 := &x.Items + yym2704 := z.DecBinary() + _ = yym2704 if false { } else { - h.decSliceNode((*[]Node)(yyv2680), d) + h.decSliceNode((*[]Node)(yyv2703), d) } } for { - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + yyj2698++ + if yyhl2698 { + yyb2698 = yyj2698 > l } else { - yyb2675 = r.CheckBreak() + yyb2698 = r.CheckBreak() } - if yyb2675 { + if yyb2698 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2675-1, "") + z.DecStructFieldNotFound(yyj2698-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34298,36 +34569,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2682 := z.EncBinary() - _ = yym2682 + yym2705 := z.EncBinary() + _ = yym2705 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2683 := !z.EncBinary() - yy2arr2683 := z.EncBasicHandle().StructToArray - var yyq2683 [1]bool - _, _, _ = yysep2683, yyq2683, yy2arr2683 - const yyr2683 bool = false - var yynn2683 int - if yyr2683 || yy2arr2683 { + yysep2706 := !z.EncBinary() + yy2arr2706 := z.EncBasicHandle().StructToArray + var yyq2706 [1]bool + _, _, _ = yysep2706, yyq2706, yy2arr2706 + const yyr2706 bool = false + var yynn2706 int + if yyr2706 || yy2arr2706 { r.EncodeArrayStart(1) } else { - yynn2683 = 1 - for _, b := range yyq2683 { + yynn2706 = 1 + for _, b := range yyq2706 { if b { - yynn2683++ + yynn2706++ } } - r.EncodeMapStart(yynn2683) - yynn2683 = 0 + r.EncodeMapStart(yynn2706) + yynn2706 = 0 } - if yyr2683 || yy2arr2683 { + if yyr2706 || yy2arr2706 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym2685 := z.EncBinary() - _ = yym2685 + yym2708 := z.EncBinary() + _ = yym2708 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -34340,15 +34611,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym2686 := z.EncBinary() - _ = yym2686 + yym2709 := z.EncBinary() + _ = yym2709 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr2683 || yy2arr2683 { + if yyr2706 || yy2arr2706 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34361,25 +34632,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2687 := z.DecBinary() - _ = yym2687 + yym2710 := z.DecBinary() + _ = yym2710 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2688 := r.ContainerType() - if yyct2688 == codecSelferValueTypeMap1234 { - yyl2688 := r.ReadMapStart() - if yyl2688 == 0 { + yyct2711 := r.ContainerType() + if yyct2711 == codecSelferValueTypeMap1234 { + yyl2711 := r.ReadMapStart() + if yyl2711 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2688, d) + x.codecDecodeSelfFromMap(yyl2711, d) } - } else if yyct2688 == codecSelferValueTypeArray1234 { - yyl2688 := r.ReadArrayStart() - if yyl2688 == 0 { + } else if yyct2711 == codecSelferValueTypeArray1234 { + yyl2711 := r.ReadArrayStart() + if yyl2711 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2688, d) + x.codecDecodeSelfFromArray(yyl2711, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34391,12 +34662,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2689Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2689Slc - var yyhl2689 bool = l >= 0 - for yyj2689 := 0; ; yyj2689++ { - if yyhl2689 { - if yyj2689 >= l { + var yys2712Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2712Slc + var yyhl2712 bool = l >= 0 + for yyj2712 := 0; ; yyj2712++ { + if yyhl2712 { + if yyj2712 >= l { break } } else { @@ -34405,26 +34676,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2689Slc = r.DecodeBytes(yys2689Slc, true, true) - yys2689 := string(yys2689Slc) + yys2712Slc = r.DecodeBytes(yys2712Slc, true, true) + yys2712 := string(yys2712Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2689 { + switch yys2712 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv2690 := &x.Finalizers - yym2691 := z.DecBinary() - _ = yym2691 + yyv2713 := &x.Finalizers + yym2714 := z.DecBinary() + _ = yym2714 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2690), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv2713), d) } } default: - z.DecStructFieldNotFound(-1, yys2689) - } // end switch yys2689 - } // end for yyj2689 + z.DecStructFieldNotFound(-1, yys2712) + } // end switch yys2712 + } // end for yyj2712 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34432,16 +34703,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2692 int - var yyb2692 bool - var yyhl2692 bool = l >= 0 - yyj2692++ - if yyhl2692 { - yyb2692 = yyj2692 > l + var yyj2715 int + var yyb2715 bool + var yyhl2715 bool = l >= 0 + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2692 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2692 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34449,26 +34720,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv2693 := &x.Finalizers - yym2694 := z.DecBinary() - _ = yym2694 + yyv2716 := &x.Finalizers + yym2717 := z.DecBinary() + _ = yym2717 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2693), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv2716), d) } } for { - yyj2692++ - if yyhl2692 { - yyb2692 = yyj2692 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2692 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2692 { + if yyb2715 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2692-1, "") + z.DecStructFieldNotFound(yyj2715-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34477,8 +34748,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2695 := z.EncBinary() - _ = yym2695 + yym2718 := z.EncBinary() + _ = yym2718 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -34490,8 +34761,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2696 := z.DecBinary() - _ = yym2696 + yym2719 := z.DecBinary() + _ = yym2719 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -34506,46 +34777,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2697 := z.EncBinary() - _ = yym2697 + yym2720 := z.EncBinary() + _ = yym2720 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2698 := !z.EncBinary() - yy2arr2698 := z.EncBasicHandle().StructToArray - var yyq2698 [1]bool - _, _, _ = yysep2698, yyq2698, yy2arr2698 - const yyr2698 bool = false - yyq2698[0] = x.Phase != "" - var yynn2698 int - if yyr2698 || yy2arr2698 { + yysep2721 := !z.EncBinary() + yy2arr2721 := z.EncBasicHandle().StructToArray + var yyq2721 [1]bool + _, _, _ = yysep2721, yyq2721, yy2arr2721 + const yyr2721 bool = false + yyq2721[0] = x.Phase != "" + var yynn2721 int + if yyr2721 || yy2arr2721 { r.EncodeArrayStart(1) } else { - yynn2698 = 0 - for _, b := range yyq2698 { + yynn2721 = 0 + for _, b := range yyq2721 { if b { - yynn2698++ + yynn2721++ } } - r.EncodeMapStart(yynn2698) - yynn2698 = 0 + r.EncodeMapStart(yynn2721) + yynn2721 = 0 } - if yyr2698 || yy2arr2698 { + if yyr2721 || yy2arr2721 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2698[0] { + if yyq2721[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2698[0] { + if yyq2721[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2698 || yy2arr2698 { + if yyr2721 || yy2arr2721 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34558,25 +34829,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2700 := z.DecBinary() - _ = yym2700 + yym2723 := z.DecBinary() + _ = yym2723 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2701 := r.ContainerType() - if yyct2701 == codecSelferValueTypeMap1234 { - yyl2701 := r.ReadMapStart() - if yyl2701 == 0 { + yyct2724 := r.ContainerType() + if yyct2724 == codecSelferValueTypeMap1234 { + yyl2724 := r.ReadMapStart() + if yyl2724 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2701, d) + x.codecDecodeSelfFromMap(yyl2724, d) } - } else if yyct2701 == codecSelferValueTypeArray1234 { - yyl2701 := r.ReadArrayStart() - if yyl2701 == 0 { + } else if yyct2724 == codecSelferValueTypeArray1234 { + yyl2724 := r.ReadArrayStart() + if yyl2724 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2701, d) + x.codecDecodeSelfFromArray(yyl2724, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34588,12 +34859,12 @@ func (x *NamespaceStatus) 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 yys2725Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2725Slc + var yyhl2725 bool = l >= 0 + for yyj2725 := 0; ; yyj2725++ { + if yyhl2725 { + if yyj2725 >= l { break } } else { @@ -34602,10 +34873,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2702Slc = r.DecodeBytes(yys2702Slc, true, true) - yys2702 := string(yys2702Slc) + yys2725Slc = r.DecodeBytes(yys2725Slc, true, true) + yys2725 := string(yys2725Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2702 { + switch yys2725 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -34613,9 +34884,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2702) - } // end switch yys2702 - } // end for yyj2702 + z.DecStructFieldNotFound(-1, yys2725) + } // end switch yys2725 + } // end for yyj2725 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34623,16 +34894,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2704 int - var yyb2704 bool - var yyhl2704 bool = l >= 0 - yyj2704++ - if yyhl2704 { - yyb2704 = yyj2704 > l + var yyj2727 int + var yyb2727 bool + var yyhl2727 bool = l >= 0 + yyj2727++ + if yyhl2727 { + yyb2727 = yyj2727 > l } else { - yyb2704 = r.CheckBreak() + yyb2727 = r.CheckBreak() } - if yyb2704 { + if yyb2727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34643,17 +34914,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj2704++ - if yyhl2704 { - yyb2704 = yyj2704 > l + yyj2727++ + if yyhl2727 { + yyb2727 = yyj2727 > l } else { - yyb2704 = r.CheckBreak() + yyb2727 = r.CheckBreak() } - if yyb2704 { + if yyb2727 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2704-1, "") + z.DecStructFieldNotFound(yyj2727-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34662,8 +34933,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2706 := z.EncBinary() - _ = yym2706 + yym2729 := z.EncBinary() + _ = yym2729 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -34675,8 +34946,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2707 := z.DecBinary() - _ = yym2707 + yym2730 := z.DecBinary() + _ = yym2730 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -34691,39 +34962,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2708 := z.EncBinary() - _ = yym2708 + yym2731 := z.EncBinary() + _ = yym2731 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2709 := !z.EncBinary() - yy2arr2709 := z.EncBasicHandle().StructToArray - var yyq2709 [5]bool - _, _, _ = yysep2709, yyq2709, yy2arr2709 - const yyr2709 bool = false - yyq2709[0] = x.Kind != "" - yyq2709[1] = x.APIVersion != "" - yyq2709[2] = true - yyq2709[3] = true - yyq2709[4] = true - var yynn2709 int - if yyr2709 || yy2arr2709 { + yysep2732 := !z.EncBinary() + yy2arr2732 := z.EncBasicHandle().StructToArray + var yyq2732 [5]bool + _, _, _ = yysep2732, yyq2732, yy2arr2732 + const yyr2732 bool = false + yyq2732[0] = x.Kind != "" + yyq2732[1] = x.APIVersion != "" + yyq2732[2] = true + yyq2732[3] = true + yyq2732[4] = true + var yynn2732 int + if yyr2732 || yy2arr2732 { r.EncodeArrayStart(5) } else { - yynn2709 = 0 - for _, b := range yyq2709 { + yynn2732 = 0 + for _, b := range yyq2732 { if b { - yynn2709++ + yynn2732++ } } - r.EncodeMapStart(yynn2709) - yynn2709 = 0 + r.EncodeMapStart(yynn2732) + yynn2732 = 0 } - if yyr2709 || yy2arr2709 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2709[0] { - yym2711 := z.EncBinary() - _ = yym2711 + if yyq2732[0] { + yym2734 := z.EncBinary() + _ = yym2734 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34732,23 +35003,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2709[0] { + if yyq2732[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2712 := z.EncBinary() - _ = yym2712 + yym2735 := z.EncBinary() + _ = yym2735 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2709 || yy2arr2709 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2709[1] { - yym2714 := z.EncBinary() - _ = yym2714 + if yyq2732[1] { + yym2737 := z.EncBinary() + _ = yym2737 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34757,70 +35028,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2709[1] { + if yyq2732[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2715 := z.EncBinary() - _ = yym2715 + yym2738 := z.EncBinary() + _ = yym2738 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2709 || yy2arr2709 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2709[2] { - yy2717 := &x.ObjectMeta - yy2717.CodecEncodeSelf(e) + if yyq2732[2] { + yy2740 := &x.ObjectMeta + yy2740.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2709[2] { + if yyq2732[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2718 := &x.ObjectMeta - yy2718.CodecEncodeSelf(e) + yy2741 := &x.ObjectMeta + yy2741.CodecEncodeSelf(e) } } - if yyr2709 || yy2arr2709 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2709[3] { - yy2720 := &x.Spec - yy2720.CodecEncodeSelf(e) + if yyq2732[3] { + yy2743 := &x.Spec + yy2743.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2709[3] { + if yyq2732[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2721 := &x.Spec - yy2721.CodecEncodeSelf(e) + yy2744 := &x.Spec + yy2744.CodecEncodeSelf(e) } } - if yyr2709 || yy2arr2709 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2709[4] { - yy2723 := &x.Status - yy2723.CodecEncodeSelf(e) + if yyq2732[4] { + yy2746 := &x.Status + yy2746.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2709[4] { + if yyq2732[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2724 := &x.Status - yy2724.CodecEncodeSelf(e) + yy2747 := &x.Status + yy2747.CodecEncodeSelf(e) } } - if yyr2709 || yy2arr2709 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34833,25 +35104,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2725 := z.DecBinary() - _ = yym2725 + yym2748 := z.DecBinary() + _ = yym2748 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2726 := r.ContainerType() - if yyct2726 == codecSelferValueTypeMap1234 { - yyl2726 := r.ReadMapStart() - if yyl2726 == 0 { + yyct2749 := r.ContainerType() + if yyct2749 == codecSelferValueTypeMap1234 { + yyl2749 := r.ReadMapStart() + if yyl2749 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2726, d) + x.codecDecodeSelfFromMap(yyl2749, d) } - } else if yyct2726 == codecSelferValueTypeArray1234 { - yyl2726 := r.ReadArrayStart() - if yyl2726 == 0 { + } else if yyct2749 == codecSelferValueTypeArray1234 { + yyl2749 := r.ReadArrayStart() + if yyl2749 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2726, d) + x.codecDecodeSelfFromArray(yyl2749, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34863,12 +35134,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2727Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2727Slc - var yyhl2727 bool = l >= 0 - for yyj2727 := 0; ; yyj2727++ { - if yyhl2727 { - if yyj2727 >= l { + var yys2750Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2750Slc + var yyhl2750 bool = l >= 0 + for yyj2750 := 0; ; yyj2750++ { + if yyhl2750 { + if yyj2750 >= l { break } } else { @@ -34877,10 +35148,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2727Slc = r.DecodeBytes(yys2727Slc, true, true) - yys2727 := string(yys2727Slc) + yys2750Slc = r.DecodeBytes(yys2750Slc, true, true) + yys2750 := string(yys2750Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2727 { + switch yys2750 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34897,27 +35168,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2730 := &x.ObjectMeta - yyv2730.CodecDecodeSelf(d) + yyv2753 := &x.ObjectMeta + yyv2753.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2731 := &x.Spec - yyv2731.CodecDecodeSelf(d) + yyv2754 := &x.Spec + yyv2754.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2732 := &x.Status - yyv2732.CodecDecodeSelf(d) + yyv2755 := &x.Status + yyv2755.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2727) - } // end switch yys2727 - } // end for yyj2727 + z.DecStructFieldNotFound(-1, yys2750) + } // end switch yys2750 + } // end for yyj2750 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34925,16 +35196,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2733 int - var yyb2733 bool - var yyhl2733 bool = l >= 0 - yyj2733++ - if yyhl2733 { - yyb2733 = yyj2733 > l + var yyj2756 int + var yyb2756 bool + var yyhl2756 bool = l >= 0 + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2733 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2733 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34944,13 +35215,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2733++ - if yyhl2733 { - yyb2733 = yyj2733 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2733 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2733 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34960,13 +35231,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2733++ - if yyhl2733 { - yyb2733 = yyj2733 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2733 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2733 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34974,16 +35245,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2736 := &x.ObjectMeta - yyv2736.CodecDecodeSelf(d) + yyv2759 := &x.ObjectMeta + yyv2759.CodecDecodeSelf(d) } - yyj2733++ - if yyhl2733 { - yyb2733 = yyj2733 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2733 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2733 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34991,16 +35262,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2737 := &x.Spec - yyv2737.CodecDecodeSelf(d) + yyv2760 := &x.Spec + yyv2760.CodecDecodeSelf(d) } - yyj2733++ - if yyhl2733 { - yyb2733 = yyj2733 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2733 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2733 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35008,21 +35279,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2738 := &x.Status - yyv2738.CodecDecodeSelf(d) + yyv2761 := &x.Status + yyv2761.CodecDecodeSelf(d) } for { - yyj2733++ - if yyhl2733 { - yyb2733 = yyj2733 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2733 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2733 { + if yyb2756 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2733-1, "") + z.DecStructFieldNotFound(yyj2756-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35034,37 +35305,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2739 := z.EncBinary() - _ = yym2739 + yym2762 := z.EncBinary() + _ = yym2762 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2740 := !z.EncBinary() - yy2arr2740 := z.EncBasicHandle().StructToArray - var yyq2740 [4]bool - _, _, _ = yysep2740, yyq2740, yy2arr2740 - const yyr2740 bool = false - yyq2740[0] = x.Kind != "" - yyq2740[1] = x.APIVersion != "" - yyq2740[2] = true - var yynn2740 int - if yyr2740 || yy2arr2740 { + yysep2763 := !z.EncBinary() + yy2arr2763 := z.EncBasicHandle().StructToArray + var yyq2763 [4]bool + _, _, _ = yysep2763, yyq2763, yy2arr2763 + const yyr2763 bool = false + yyq2763[0] = x.Kind != "" + yyq2763[1] = x.APIVersion != "" + yyq2763[2] = true + var yynn2763 int + if yyr2763 || yy2arr2763 { r.EncodeArrayStart(4) } else { - yynn2740 = 1 - for _, b := range yyq2740 { + yynn2763 = 1 + for _, b := range yyq2763 { if b { - yynn2740++ + yynn2763++ } } - r.EncodeMapStart(yynn2740) - yynn2740 = 0 + r.EncodeMapStart(yynn2763) + yynn2763 = 0 } - if yyr2740 || yy2arr2740 { + if yyr2763 || yy2arr2763 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2740[0] { - yym2742 := z.EncBinary() - _ = yym2742 + if yyq2763[0] { + yym2765 := z.EncBinary() + _ = yym2765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35073,23 +35344,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2740[0] { + if yyq2763[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2743 := z.EncBinary() - _ = yym2743 + yym2766 := z.EncBinary() + _ = yym2766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2740 || yy2arr2740 { + if yyr2763 || yy2arr2763 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2740[1] { - yym2745 := z.EncBinary() - _ = yym2745 + if yyq2763[1] { + yym2768 := z.EncBinary() + _ = yym2768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35098,54 +35369,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2740[1] { + if yyq2763[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2746 := z.EncBinary() - _ = yym2746 + yym2769 := z.EncBinary() + _ = yym2769 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2740 || yy2arr2740 { + if yyr2763 || yy2arr2763 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2740[2] { - yy2748 := &x.ListMeta - yym2749 := z.EncBinary() - _ = yym2749 + if yyq2763[2] { + yy2771 := &x.ListMeta + yym2772 := z.EncBinary() + _ = yym2772 if false { - } else if z.HasExtensions() && z.EncExt(yy2748) { + } else if z.HasExtensions() && z.EncExt(yy2771) { } else { - z.EncFallback(yy2748) + z.EncFallback(yy2771) } } else { r.EncodeNil() } } else { - if yyq2740[2] { + if yyq2763[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2750 := &x.ListMeta - yym2751 := z.EncBinary() - _ = yym2751 + yy2773 := &x.ListMeta + yym2774 := z.EncBinary() + _ = yym2774 if false { - } else if z.HasExtensions() && z.EncExt(yy2750) { + } else if z.HasExtensions() && z.EncExt(yy2773) { } else { - z.EncFallback(yy2750) + z.EncFallback(yy2773) } } } - if yyr2740 || yy2arr2740 { + if yyr2763 || yy2arr2763 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2753 := z.EncBinary() - _ = yym2753 + yym2776 := z.EncBinary() + _ = yym2776 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -35158,15 +35429,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2754 := z.EncBinary() - _ = yym2754 + yym2777 := z.EncBinary() + _ = yym2777 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr2740 || yy2arr2740 { + if yyr2763 || yy2arr2763 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35179,25 +35450,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2755 := z.DecBinary() - _ = yym2755 + yym2778 := z.DecBinary() + _ = yym2778 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2756 := r.ContainerType() - if yyct2756 == codecSelferValueTypeMap1234 { - yyl2756 := r.ReadMapStart() - if yyl2756 == 0 { + yyct2779 := r.ContainerType() + if yyct2779 == codecSelferValueTypeMap1234 { + yyl2779 := r.ReadMapStart() + if yyl2779 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2756, d) + x.codecDecodeSelfFromMap(yyl2779, d) } - } else if yyct2756 == codecSelferValueTypeArray1234 { - yyl2756 := r.ReadArrayStart() - if yyl2756 == 0 { + } else if yyct2779 == codecSelferValueTypeArray1234 { + yyl2779 := r.ReadArrayStart() + if yyl2779 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2756, d) + x.codecDecodeSelfFromArray(yyl2779, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35209,12 +35480,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2757Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2757Slc - var yyhl2757 bool = l >= 0 - for yyj2757 := 0; ; yyj2757++ { - if yyhl2757 { - if yyj2757 >= l { + var yys2780Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2780Slc + var yyhl2780 bool = l >= 0 + for yyj2780 := 0; ; yyj2780++ { + if yyhl2780 { + if yyj2780 >= l { break } } else { @@ -35223,10 +35494,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2757Slc = r.DecodeBytes(yys2757Slc, true, true) - yys2757 := string(yys2757Slc) + yys2780Slc = r.DecodeBytes(yys2780Slc, true, true) + yys2780 := string(yys2780Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2757 { + switch yys2780 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35243,31 +35514,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2760 := &x.ListMeta - yym2761 := z.DecBinary() - _ = yym2761 + yyv2783 := &x.ListMeta + yym2784 := z.DecBinary() + _ = yym2784 if false { - } else if z.HasExtensions() && z.DecExt(yyv2760) { + } else if z.HasExtensions() && z.DecExt(yyv2783) { } else { - z.DecFallback(yyv2760, false) + z.DecFallback(yyv2783, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2762 := &x.Items - yym2763 := z.DecBinary() - _ = yym2763 + yyv2785 := &x.Items + yym2786 := z.DecBinary() + _ = yym2786 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2762), d) + h.decSliceNamespace((*[]Namespace)(yyv2785), d) } } default: - z.DecStructFieldNotFound(-1, yys2757) - } // end switch yys2757 - } // end for yyj2757 + z.DecStructFieldNotFound(-1, yys2780) + } // end switch yys2780 + } // end for yyj2780 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35275,16 +35546,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2764 int - var yyb2764 bool - var yyhl2764 bool = l >= 0 - yyj2764++ - if yyhl2764 { - yyb2764 = yyj2764 > l + var yyj2787 int + var yyb2787 bool + var yyhl2787 bool = l >= 0 + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2764 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2764 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35294,13 +35565,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2764++ - if yyhl2764 { - yyb2764 = yyj2764 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2764 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2764 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35310,13 +35581,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2764++ - if yyhl2764 { - yyb2764 = yyj2764 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2764 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2764 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35324,22 +35595,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2767 := &x.ListMeta - yym2768 := z.DecBinary() - _ = yym2768 + yyv2790 := &x.ListMeta + yym2791 := z.DecBinary() + _ = yym2791 if false { - } else if z.HasExtensions() && z.DecExt(yyv2767) { + } else if z.HasExtensions() && z.DecExt(yyv2790) { } else { - z.DecFallback(yyv2767, false) + z.DecFallback(yyv2790, false) } } - yyj2764++ - if yyhl2764 { - yyb2764 = yyj2764 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2764 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2764 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35347,26 +35618,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2769 := &x.Items - yym2770 := z.DecBinary() - _ = yym2770 + yyv2792 := &x.Items + yym2793 := z.DecBinary() + _ = yym2793 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2769), d) + h.decSliceNamespace((*[]Namespace)(yyv2792), d) } } for { - yyj2764++ - if yyhl2764 { - yyb2764 = yyj2764 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2764 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2764 { + if yyb2787 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2764-1, "") + z.DecStructFieldNotFound(yyj2787-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35378,37 +35649,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2771 := z.EncBinary() - _ = yym2771 + yym2794 := z.EncBinary() + _ = yym2794 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2772 := !z.EncBinary() - yy2arr2772 := z.EncBasicHandle().StructToArray - var yyq2772 [4]bool - _, _, _ = yysep2772, yyq2772, yy2arr2772 - const yyr2772 bool = false - yyq2772[0] = x.Kind != "" - yyq2772[1] = x.APIVersion != "" - yyq2772[2] = true - var yynn2772 int - if yyr2772 || yy2arr2772 { + yysep2795 := !z.EncBinary() + yy2arr2795 := z.EncBasicHandle().StructToArray + var yyq2795 [4]bool + _, _, _ = yysep2795, yyq2795, yy2arr2795 + const yyr2795 bool = false + yyq2795[0] = x.Kind != "" + yyq2795[1] = x.APIVersion != "" + yyq2795[2] = true + var yynn2795 int + if yyr2795 || yy2arr2795 { r.EncodeArrayStart(4) } else { - yynn2772 = 1 - for _, b := range yyq2772 { + yynn2795 = 1 + for _, b := range yyq2795 { if b { - yynn2772++ + yynn2795++ } } - r.EncodeMapStart(yynn2772) - yynn2772 = 0 + r.EncodeMapStart(yynn2795) + yynn2795 = 0 } - if yyr2772 || yy2arr2772 { + if yyr2795 || yy2arr2795 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2772[0] { - yym2774 := z.EncBinary() - _ = yym2774 + if yyq2795[0] { + yym2797 := z.EncBinary() + _ = yym2797 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35417,23 +35688,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2772[0] { + if yyq2795[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2775 := z.EncBinary() - _ = yym2775 + yym2798 := z.EncBinary() + _ = yym2798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2772 || yy2arr2772 { + if yyr2795 || yy2arr2795 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2772[1] { - yym2777 := z.EncBinary() - _ = yym2777 + if yyq2795[1] { + yym2800 := z.EncBinary() + _ = yym2800 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35442,47 +35713,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2772[1] { + if yyq2795[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2778 := z.EncBinary() - _ = yym2778 + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2772 || yy2arr2772 { + if yyr2795 || yy2arr2795 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2772[2] { - yy2780 := &x.ObjectMeta - yy2780.CodecEncodeSelf(e) + if yyq2795[2] { + yy2803 := &x.ObjectMeta + yy2803.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2772[2] { + if yyq2795[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2781 := &x.ObjectMeta - yy2781.CodecEncodeSelf(e) + yy2804 := &x.ObjectMeta + yy2804.CodecEncodeSelf(e) } } - if yyr2772 || yy2arr2772 { + if yyr2795 || yy2arr2795 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2783 := &x.Target - yy2783.CodecEncodeSelf(e) + yy2806 := &x.Target + yy2806.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2784 := &x.Target - yy2784.CodecEncodeSelf(e) + yy2807 := &x.Target + yy2807.CodecEncodeSelf(e) } - if yyr2772 || yy2arr2772 { + if yyr2795 || yy2arr2795 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35495,25 +35766,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2785 := z.DecBinary() - _ = yym2785 + yym2808 := z.DecBinary() + _ = yym2808 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2786 := r.ContainerType() - if yyct2786 == codecSelferValueTypeMap1234 { - yyl2786 := r.ReadMapStart() - if yyl2786 == 0 { + yyct2809 := r.ContainerType() + if yyct2809 == codecSelferValueTypeMap1234 { + yyl2809 := r.ReadMapStart() + if yyl2809 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2786, d) + x.codecDecodeSelfFromMap(yyl2809, d) } - } else if yyct2786 == codecSelferValueTypeArray1234 { - yyl2786 := r.ReadArrayStart() - if yyl2786 == 0 { + } else if yyct2809 == codecSelferValueTypeArray1234 { + yyl2809 := r.ReadArrayStart() + if yyl2809 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2786, d) + x.codecDecodeSelfFromArray(yyl2809, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35525,12 +35796,12 @@ func (x *Binding) 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 yys2810Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2810Slc + var yyhl2810 bool = l >= 0 + for yyj2810 := 0; ; yyj2810++ { + if yyhl2810 { + if yyj2810 >= l { break } } else { @@ -35539,10 +35810,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2787Slc = r.DecodeBytes(yys2787Slc, true, true) - yys2787 := string(yys2787Slc) + yys2810Slc = r.DecodeBytes(yys2810Slc, true, true) + yys2810 := string(yys2810Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2787 { + switch yys2810 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35559,20 +35830,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2790 := &x.ObjectMeta - yyv2790.CodecDecodeSelf(d) + yyv2813 := &x.ObjectMeta + yyv2813.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2791 := &x.Target - yyv2791.CodecDecodeSelf(d) + yyv2814 := &x.Target + yyv2814.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2787) - } // end switch yys2787 - } // end for yyj2787 + z.DecStructFieldNotFound(-1, yys2810) + } // end switch yys2810 + } // end for yyj2810 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35580,16 +35851,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2792 int - var yyb2792 bool - var yyhl2792 bool = l >= 0 - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + var yyj2815 int + var yyb2815 bool + var yyhl2815 bool = l >= 0 + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2792 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2792 { + if yyb2815 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35599,13 +35870,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2792 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2792 { + if yyb2815 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35615,13 +35886,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2792 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2792 { + if yyb2815 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35629,16 +35900,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2795 := &x.ObjectMeta - yyv2795.CodecDecodeSelf(d) + yyv2818 := &x.ObjectMeta + yyv2818.CodecDecodeSelf(d) } - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2792 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2792 { + if yyb2815 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35646,21 +35917,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2796 := &x.Target - yyv2796.CodecDecodeSelf(d) + yyv2819 := &x.Target + yyv2819.CodecDecodeSelf(d) } for { - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2792 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2792 { + if yyb2815 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2792-1, "") + z.DecStructFieldNotFound(yyj2815-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35672,36 +35943,36 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2797 := z.EncBinary() - _ = yym2797 + yym2820 := z.EncBinary() + _ = yym2820 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2798 := !z.EncBinary() - yy2arr2798 := z.EncBasicHandle().StructToArray - var yyq2798 [3]bool - _, _, _ = yysep2798, yyq2798, yy2arr2798 - const yyr2798 bool = false - yyq2798[0] = x.Kind != "" - yyq2798[1] = x.APIVersion != "" - var yynn2798 int - if yyr2798 || yy2arr2798 { + yysep2821 := !z.EncBinary() + yy2arr2821 := z.EncBasicHandle().StructToArray + var yyq2821 [3]bool + _, _, _ = yysep2821, yyq2821, yy2arr2821 + const yyr2821 bool = false + yyq2821[0] = x.Kind != "" + yyq2821[1] = x.APIVersion != "" + var yynn2821 int + if yyr2821 || yy2arr2821 { r.EncodeArrayStart(3) } else { - yynn2798 = 1 - for _, b := range yyq2798 { + yynn2821 = 1 + for _, b := range yyq2821 { if b { - yynn2798++ + yynn2821++ } } - r.EncodeMapStart(yynn2798) - yynn2798 = 0 + r.EncodeMapStart(yynn2821) + yynn2821 = 0 } - if yyr2798 || yy2arr2798 { + if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2798[0] { - yym2800 := z.EncBinary() - _ = yym2800 + if yyq2821[0] { + yym2823 := z.EncBinary() + _ = yym2823 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35710,23 +35981,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2798[0] { + if yyq2821[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2801 := z.EncBinary() - _ = yym2801 + yym2824 := z.EncBinary() + _ = yym2824 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2798 || yy2arr2798 { + if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2798[1] { - yym2803 := z.EncBinary() - _ = yym2803 + if yyq2821[1] { + yym2826 := z.EncBinary() + _ = yym2826 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35735,29 +36006,29 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2798[1] { + if yyq2821[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2804 := z.EncBinary() - _ = yym2804 + yym2827 := z.EncBinary() + _ = yym2827 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2798 || yy2arr2798 { + if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2806 := *x.GracePeriodSeconds - yym2807 := z.EncBinary() - _ = yym2807 + yy2829 := *x.GracePeriodSeconds + yym2830 := z.EncBinary() + _ = yym2830 if false { } else { - r.EncodeInt(int64(yy2806)) + r.EncodeInt(int64(yy2829)) } } } else { @@ -35767,16 +36038,16 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2808 := *x.GracePeriodSeconds - yym2809 := z.EncBinary() - _ = yym2809 + yy2831 := *x.GracePeriodSeconds + yym2832 := z.EncBinary() + _ = yym2832 if false { } else { - r.EncodeInt(int64(yy2808)) + r.EncodeInt(int64(yy2831)) } } } - if yyr2798 || yy2arr2798 { + if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35789,25 +36060,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2810 := z.DecBinary() - _ = yym2810 + yym2833 := z.DecBinary() + _ = yym2833 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2811 := r.ContainerType() - if yyct2811 == codecSelferValueTypeMap1234 { - yyl2811 := r.ReadMapStart() - if yyl2811 == 0 { + yyct2834 := r.ContainerType() + if yyct2834 == codecSelferValueTypeMap1234 { + yyl2834 := r.ReadMapStart() + if yyl2834 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2811, d) + x.codecDecodeSelfFromMap(yyl2834, d) } - } else if yyct2811 == codecSelferValueTypeArray1234 { - yyl2811 := r.ReadArrayStart() - if yyl2811 == 0 { + } else if yyct2834 == codecSelferValueTypeArray1234 { + yyl2834 := r.ReadArrayStart() + if yyl2834 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2811, d) + x.codecDecodeSelfFromArray(yyl2834, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35819,12 +36090,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2812Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2812Slc - var yyhl2812 bool = l >= 0 - for yyj2812 := 0; ; yyj2812++ { - if yyhl2812 { - if yyj2812 >= l { + var yys2835Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2835Slc + var yyhl2835 bool = l >= 0 + for yyj2835 := 0; ; yyj2835++ { + if yyhl2835 { + if yyj2835 >= l { break } } else { @@ -35833,10 +36104,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2812Slc = r.DecodeBytes(yys2812Slc, true, true) - yys2812 := string(yys2812Slc) + yys2835Slc = r.DecodeBytes(yys2835Slc, true, true) + yys2835 := string(yys2835Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2812 { + switch yys2835 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35858,17 +36129,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2816 := z.DecBinary() - _ = yym2816 + yym2839 := z.DecBinary() + _ = yym2839 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2812) - } // end switch yys2812 - } // end for yyj2812 + z.DecStructFieldNotFound(-1, yys2835) + } // end switch yys2835 + } // end for yyj2835 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35876,16 +36147,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2817 int - var yyb2817 bool - var yyhl2817 bool = l >= 0 - yyj2817++ - if yyhl2817 { - yyb2817 = yyj2817 > l + var yyj2840 int + var yyb2840 bool + var yyhl2840 bool = l >= 0 + yyj2840++ + if yyhl2840 { + yyb2840 = yyj2840 > l } else { - yyb2817 = r.CheckBreak() + yyb2840 = r.CheckBreak() } - if yyb2817 { + if yyb2840 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35895,13 +36166,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2817++ - if yyhl2817 { - yyb2817 = yyj2817 > l + yyj2840++ + if yyhl2840 { + yyb2840 = yyj2840 > l } else { - yyb2817 = r.CheckBreak() + yyb2840 = r.CheckBreak() } - if yyb2817 { + if yyb2840 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35911,13 +36182,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2817++ - if yyhl2817 { - yyb2817 = yyj2817 > l + yyj2840++ + if yyhl2840 { + yyb2840 = yyj2840 > l } else { - yyb2817 = r.CheckBreak() + yyb2840 = r.CheckBreak() } - if yyb2817 { + if yyb2840 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35930,25 +36201,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2821 := z.DecBinary() - _ = yym2821 + yym2844 := z.DecBinary() + _ = yym2844 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2817++ - if yyhl2817 { - yyb2817 = yyj2817 > l + yyj2840++ + if yyhl2840 { + yyb2840 = yyj2840 > l } else { - yyb2817 = r.CheckBreak() + yyb2840 = r.CheckBreak() } - if yyb2817 { + if yyb2840 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2817-1, "") + z.DecStructFieldNotFound(yyj2840-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35960,36 +36231,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2822 := z.EncBinary() - _ = yym2822 + yym2845 := z.EncBinary() + _ = yym2845 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2823 := !z.EncBinary() - yy2arr2823 := z.EncBasicHandle().StructToArray - var yyq2823 [4]bool - _, _, _ = yysep2823, yyq2823, yy2arr2823 - const yyr2823 bool = false - yyq2823[0] = x.Kind != "" - yyq2823[1] = x.APIVersion != "" - var yynn2823 int - if yyr2823 || yy2arr2823 { + yysep2846 := !z.EncBinary() + yy2arr2846 := z.EncBasicHandle().StructToArray + var yyq2846 [4]bool + _, _, _ = yysep2846, yyq2846, yy2arr2846 + const yyr2846 bool = false + yyq2846[0] = x.Kind != "" + yyq2846[1] = x.APIVersion != "" + var yynn2846 int + if yyr2846 || yy2arr2846 { r.EncodeArrayStart(4) } else { - yynn2823 = 2 - for _, b := range yyq2823 { + yynn2846 = 2 + for _, b := range yyq2846 { if b { - yynn2823++ + yynn2846++ } } - r.EncodeMapStart(yynn2823) - yynn2823 = 0 + r.EncodeMapStart(yynn2846) + yynn2846 = 0 } - if yyr2823 || yy2arr2823 { + if yyr2846 || yy2arr2846 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2823[0] { - yym2825 := z.EncBinary() - _ = yym2825 + if yyq2846[0] { + yym2848 := z.EncBinary() + _ = yym2848 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35998,23 +36269,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2823[0] { + if yyq2846[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2826 := z.EncBinary() - _ = yym2826 + yym2849 := z.EncBinary() + _ = yym2849 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2823 || yy2arr2823 { + if yyr2846 || yy2arr2846 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2823[1] { - yym2828 := z.EncBinary() - _ = yym2828 + if yyq2846[1] { + yym2851 := z.EncBinary() + _ = yym2851 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36023,22 +36294,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2823[1] { + if yyq2846[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2829 := z.EncBinary() - _ = yym2829 + yym2852 := z.EncBinary() + _ = yym2852 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2823 || yy2arr2823 { + if yyr2846 || yy2arr2846 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2831 := z.EncBinary() - _ = yym2831 + yym2854 := z.EncBinary() + _ = yym2854 if false { } else { r.EncodeBool(bool(x.Export)) @@ -36047,17 +36318,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2832 := z.EncBinary() - _ = yym2832 + yym2855 := z.EncBinary() + _ = yym2855 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr2823 || yy2arr2823 { + if yyr2846 || yy2arr2846 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2834 := z.EncBinary() - _ = yym2834 + yym2857 := z.EncBinary() + _ = yym2857 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -36066,14 +36337,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2835 := z.EncBinary() - _ = yym2835 + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr2823 || yy2arr2823 { + if yyr2846 || yy2arr2846 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36086,25 +36357,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2836 := z.DecBinary() - _ = yym2836 + yym2859 := z.DecBinary() + _ = yym2859 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2837 := r.ContainerType() - if yyct2837 == codecSelferValueTypeMap1234 { - yyl2837 := r.ReadMapStart() - if yyl2837 == 0 { + yyct2860 := r.ContainerType() + if yyct2860 == codecSelferValueTypeMap1234 { + yyl2860 := r.ReadMapStart() + if yyl2860 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2837, d) + x.codecDecodeSelfFromMap(yyl2860, d) } - } else if yyct2837 == codecSelferValueTypeArray1234 { - yyl2837 := r.ReadArrayStart() - if yyl2837 == 0 { + } else if yyct2860 == codecSelferValueTypeArray1234 { + yyl2860 := r.ReadArrayStart() + if yyl2860 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2837, d) + x.codecDecodeSelfFromArray(yyl2860, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36116,12 +36387,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2838Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2838Slc - var yyhl2838 bool = l >= 0 - for yyj2838 := 0; ; yyj2838++ { - if yyhl2838 { - if yyj2838 >= l { + var yys2861Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2861Slc + var yyhl2861 bool = l >= 0 + for yyj2861 := 0; ; yyj2861++ { + if yyhl2861 { + if yyj2861 >= l { break } } else { @@ -36130,10 +36401,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2838Slc = r.DecodeBytes(yys2838Slc, true, true) - yys2838 := string(yys2838Slc) + yys2861Slc = r.DecodeBytes(yys2861Slc, true, true) + yys2861 := string(yys2861Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2838 { + switch yys2861 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36159,9 +36430,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2838) - } // end switch yys2838 - } // end for yyj2838 + z.DecStructFieldNotFound(-1, yys2861) + } // end switch yys2861 + } // end for yyj2861 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36169,16 +36440,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2843 int - var yyb2843 bool - var yyhl2843 bool = l >= 0 - yyj2843++ - if yyhl2843 { - yyb2843 = yyj2843 > l + var yyj2866 int + var yyb2866 bool + var yyhl2866 bool = l >= 0 + yyj2866++ + if yyhl2866 { + yyb2866 = yyj2866 > l } else { - yyb2843 = r.CheckBreak() + yyb2866 = r.CheckBreak() } - if yyb2843 { + if yyb2866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36188,13 +36459,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2843++ - if yyhl2843 { - yyb2843 = yyj2843 > l + yyj2866++ + if yyhl2866 { + yyb2866 = yyj2866 > l } else { - yyb2843 = r.CheckBreak() + yyb2866 = r.CheckBreak() } - if yyb2843 { + if yyb2866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36204,13 +36475,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2843++ - if yyhl2843 { - yyb2843 = yyj2843 > l + yyj2866++ + if yyhl2866 { + yyb2866 = yyj2866 > l } else { - yyb2843 = r.CheckBreak() + yyb2866 = r.CheckBreak() } - if yyb2843 { + if yyb2866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36220,13 +36491,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj2843++ - if yyhl2843 { - yyb2843 = yyj2843 > l + yyj2866++ + if yyhl2866 { + yyb2866 = yyj2866 > l } else { - yyb2843 = r.CheckBreak() + yyb2866 = r.CheckBreak() } - if yyb2843 { + if yyb2866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36237,17 +36508,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj2843++ - if yyhl2843 { - yyb2843 = yyj2843 > l + yyj2866++ + if yyhl2866 { + yyb2866 = yyj2866 > l } else { - yyb2843 = r.CheckBreak() + yyb2866 = r.CheckBreak() } - if yyb2843 { + if yyb2866 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2843-1, "") + z.DecStructFieldNotFound(yyj2866-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36259,36 +36530,36 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2848 := z.EncBinary() - _ = yym2848 + yym2871 := z.EncBinary() + _ = yym2871 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2849 := !z.EncBinary() - yy2arr2849 := z.EncBasicHandle().StructToArray - var yyq2849 [7]bool - _, _, _ = yysep2849, yyq2849, yy2arr2849 - const yyr2849 bool = false - yyq2849[0] = x.Kind != "" - yyq2849[1] = x.APIVersion != "" - var yynn2849 int - if yyr2849 || yy2arr2849 { + yysep2872 := !z.EncBinary() + yy2arr2872 := z.EncBasicHandle().StructToArray + var yyq2872 [7]bool + _, _, _ = yysep2872, yyq2872, yy2arr2872 + const yyr2872 bool = false + yyq2872[0] = x.Kind != "" + yyq2872[1] = x.APIVersion != "" + var yynn2872 int + if yyr2872 || yy2arr2872 { r.EncodeArrayStart(7) } else { - yynn2849 = 5 - for _, b := range yyq2849 { + yynn2872 = 5 + for _, b := range yyq2872 { if b { - yynn2849++ + yynn2872++ } } - r.EncodeMapStart(yynn2849) - yynn2849 = 0 + r.EncodeMapStart(yynn2872) + yynn2872 = 0 } - if yyr2849 || yy2arr2849 { + if yyr2872 || yy2arr2872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2849[0] { - yym2851 := z.EncBinary() - _ = yym2851 + if yyq2872[0] { + yym2874 := z.EncBinary() + _ = yym2874 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36297,23 +36568,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2849[0] { + if yyq2872[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2852 := z.EncBinary() - _ = yym2852 + yym2875 := z.EncBinary() + _ = yym2875 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2849 || yy2arr2849 { + if yyr2872 || yy2arr2872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2849[1] { - yym2854 := z.EncBinary() - _ = yym2854 + if yyq2872[1] { + yym2877 := z.EncBinary() + _ = yym2877 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36322,25 +36593,25 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2849[1] { + if yyq2872[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2855 := z.EncBinary() - _ = yym2855 + yym2878 := z.EncBinary() + _ = yym2878 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2849 || yy2arr2849 { + if yyr2872 || yy2arr2872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym2857 := z.EncBinary() - _ = yym2857 + yym2880 := z.EncBinary() + _ = yym2880 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -36354,8 +36625,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym2858 := z.EncBinary() - _ = yym2858 + yym2881 := z.EncBinary() + _ = yym2881 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -36363,13 +36634,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2849 || yy2arr2849 { + if yyr2872 || yy2arr2872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym2860 := z.EncBinary() - _ = yym2860 + yym2883 := z.EncBinary() + _ = yym2883 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -36383,8 +36654,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym2861 := z.EncBinary() - _ = yym2861 + yym2884 := z.EncBinary() + _ = yym2884 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -36392,10 +36663,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2849 || yy2arr2849 { + if yyr2872 || yy2arr2872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2863 := z.EncBinary() - _ = yym2863 + yym2886 := z.EncBinary() + _ = yym2886 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -36404,17 +36675,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2864 := z.EncBinary() - _ = yym2864 + yym2887 := z.EncBinary() + _ = yym2887 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr2849 || yy2arr2849 { + if yyr2872 || yy2arr2872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2866 := z.EncBinary() - _ = yym2866 + yym2889 := z.EncBinary() + _ = yym2889 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -36423,24 +36694,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2867 := z.EncBinary() - _ = yym2867 + yym2890 := z.EncBinary() + _ = yym2890 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr2849 || yy2arr2849 { + if yyr2872 || yy2arr2872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2869 := *x.TimeoutSeconds - yym2870 := z.EncBinary() - _ = yym2870 + yy2892 := *x.TimeoutSeconds + yym2893 := z.EncBinary() + _ = yym2893 if false { } else { - r.EncodeInt(int64(yy2869)) + r.EncodeInt(int64(yy2892)) } } } else { @@ -36450,16 +36721,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2871 := *x.TimeoutSeconds - yym2872 := z.EncBinary() - _ = yym2872 + yy2894 := *x.TimeoutSeconds + yym2895 := z.EncBinary() + _ = yym2895 if false { } else { - r.EncodeInt(int64(yy2871)) + r.EncodeInt(int64(yy2894)) } } } - if yyr2849 || yy2arr2849 { + if yyr2872 || yy2arr2872 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36472,25 +36743,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2873 := z.DecBinary() - _ = yym2873 + yym2896 := z.DecBinary() + _ = yym2896 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2874 := r.ContainerType() - if yyct2874 == codecSelferValueTypeMap1234 { - yyl2874 := r.ReadMapStart() - if yyl2874 == 0 { + yyct2897 := r.ContainerType() + if yyct2897 == codecSelferValueTypeMap1234 { + yyl2897 := r.ReadMapStart() + if yyl2897 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2874, d) + x.codecDecodeSelfFromMap(yyl2897, d) } - } else if yyct2874 == codecSelferValueTypeArray1234 { - yyl2874 := r.ReadArrayStart() - if yyl2874 == 0 { + } else if yyct2897 == codecSelferValueTypeArray1234 { + yyl2897 := r.ReadArrayStart() + if yyl2897 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2874, d) + x.codecDecodeSelfFromArray(yyl2897, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36502,12 +36773,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2875Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2875Slc - var yyhl2875 bool = l >= 0 - for yyj2875 := 0; ; yyj2875++ { - if yyhl2875 { - if yyj2875 >= l { + var yys2898Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2898Slc + var yyhl2898 bool = l >= 0 + for yyj2898 := 0; ; yyj2898++ { + if yyhl2898 { + if yyj2898 >= l { break } } else { @@ -36516,10 +36787,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2875Slc = r.DecodeBytes(yys2875Slc, true, true) - yys2875 := string(yys2875Slc) + yys2898Slc = r.DecodeBytes(yys2898Slc, true, true) + yys2898 := string(yys2898Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2875 { + switch yys2898 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36536,26 +36807,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv2878 := &x.LabelSelector - yym2879 := z.DecBinary() - _ = yym2879 + yyv2901 := &x.LabelSelector + yym2902 := z.DecBinary() + _ = yym2902 if false { - } else if z.HasExtensions() && z.DecExt(yyv2878) { + } else if z.HasExtensions() && z.DecExt(yyv2901) { } else { - z.DecFallback(yyv2878, true) + z.DecFallback(yyv2901, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv2880 := &x.FieldSelector - yym2881 := z.DecBinary() - _ = yym2881 + yyv2903 := &x.FieldSelector + yym2904 := z.DecBinary() + _ = yym2904 if false { - } else if z.HasExtensions() && z.DecExt(yyv2880) { + } else if z.HasExtensions() && z.DecExt(yyv2903) { } else { - z.DecFallback(yyv2880, true) + z.DecFallback(yyv2903, true) } } case "Watch": @@ -36579,17 +36850,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2885 := z.DecBinary() - _ = yym2885 + yym2908 := z.DecBinary() + _ = yym2908 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2875) - } // end switch yys2875 - } // end for yyj2875 + z.DecStructFieldNotFound(-1, yys2898) + } // end switch yys2898 + } // end for yyj2898 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36597,16 +36868,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2886 int - var yyb2886 bool - var yyhl2886 bool = l >= 0 - yyj2886++ - if yyhl2886 { - yyb2886 = yyj2886 > l + var yyj2909 int + var yyb2909 bool + var yyhl2909 bool = l >= 0 + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2886 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2886 { + if yyb2909 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36616,13 +36887,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2886++ - if yyhl2886 { - yyb2886 = yyj2886 > l + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2886 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2886 { + if yyb2909 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36632,13 +36903,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2886++ - if yyhl2886 { - yyb2886 = yyj2886 > l + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2886 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2886 { + if yyb2909 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36646,22 +36917,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv2889 := &x.LabelSelector - yym2890 := z.DecBinary() - _ = yym2890 + yyv2912 := &x.LabelSelector + yym2913 := z.DecBinary() + _ = yym2913 if false { - } else if z.HasExtensions() && z.DecExt(yyv2889) { + } else if z.HasExtensions() && z.DecExt(yyv2912) { } else { - z.DecFallback(yyv2889, true) + z.DecFallback(yyv2912, true) } } - yyj2886++ - if yyhl2886 { - yyb2886 = yyj2886 > l + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2886 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2886 { + if yyb2909 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36669,22 +36940,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv2891 := &x.FieldSelector - yym2892 := z.DecBinary() - _ = yym2892 + yyv2914 := &x.FieldSelector + yym2915 := z.DecBinary() + _ = yym2915 if false { - } else if z.HasExtensions() && z.DecExt(yyv2891) { + } else if z.HasExtensions() && z.DecExt(yyv2914) { } else { - z.DecFallback(yyv2891, true) + z.DecFallback(yyv2914, true) } } - yyj2886++ - if yyhl2886 { - yyb2886 = yyj2886 > l + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2886 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2886 { + if yyb2909 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36694,13 +36965,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj2886++ - if yyhl2886 { - yyb2886 = yyj2886 > l + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2886 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2886 { + if yyb2909 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36710,13 +36981,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2886++ - if yyhl2886 { - yyb2886 = yyj2886 > l + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2886 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2886 { + if yyb2909 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36729,25 +37000,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2896 := z.DecBinary() - _ = yym2896 + yym2919 := z.DecBinary() + _ = yym2919 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2886++ - if yyhl2886 { - yyb2886 = yyj2886 > l + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2886 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2886 { + if yyb2909 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2886-1, "") + z.DecStructFieldNotFound(yyj2909-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36759,36 +37030,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2897 := z.EncBinary() - _ = yym2897 + yym2920 := z.EncBinary() + _ = yym2920 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2898 := !z.EncBinary() - yy2arr2898 := z.EncBasicHandle().StructToArray - var yyq2898 [10]bool - _, _, _ = yysep2898, yyq2898, yy2arr2898 - const yyr2898 bool = false - yyq2898[0] = x.Kind != "" - yyq2898[1] = x.APIVersion != "" - var yynn2898 int - if yyr2898 || yy2arr2898 { + yysep2921 := !z.EncBinary() + yy2arr2921 := z.EncBasicHandle().StructToArray + var yyq2921 [10]bool + _, _, _ = yysep2921, yyq2921, yy2arr2921 + const yyr2921 bool = false + yyq2921[0] = x.Kind != "" + yyq2921[1] = x.APIVersion != "" + var yynn2921 int + if yyr2921 || yy2arr2921 { r.EncodeArrayStart(10) } else { - yynn2898 = 8 - for _, b := range yyq2898 { + yynn2921 = 8 + for _, b := range yyq2921 { if b { - yynn2898++ + yynn2921++ } } - r.EncodeMapStart(yynn2898) - yynn2898 = 0 + r.EncodeMapStart(yynn2921) + yynn2921 = 0 } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2898[0] { - yym2900 := z.EncBinary() - _ = yym2900 + if yyq2921[0] { + yym2923 := z.EncBinary() + _ = yym2923 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36797,23 +37068,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2898[0] { + if yyq2921[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2901 := z.EncBinary() - _ = yym2901 + yym2924 := z.EncBinary() + _ = yym2924 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2898[1] { - yym2903 := z.EncBinary() - _ = yym2903 + if yyq2921[1] { + yym2926 := z.EncBinary() + _ = yym2926 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36822,22 +37093,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2898[1] { + if yyq2921[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2904 := z.EncBinary() - _ = yym2904 + yym2927 := z.EncBinary() + _ = yym2927 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2906 := z.EncBinary() - _ = yym2906 + yym2929 := z.EncBinary() + _ = yym2929 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -36846,17 +37117,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2907 := z.EncBinary() - _ = yym2907 + yym2930 := z.EncBinary() + _ = yym2930 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2909 := z.EncBinary() - _ = yym2909 + yym2932 := z.EncBinary() + _ = yym2932 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -36865,17 +37136,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2910 := z.EncBinary() - _ = yym2910 + yym2933 := z.EncBinary() + _ = yym2933 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2912 := z.EncBinary() - _ = yym2912 + yym2935 := z.EncBinary() + _ = yym2935 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -36884,24 +37155,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2913 := z.EncBinary() - _ = yym2913 + yym2936 := z.EncBinary() + _ = yym2936 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2915 := *x.SinceSeconds - yym2916 := z.EncBinary() - _ = yym2916 + yy2938 := *x.SinceSeconds + yym2939 := z.EncBinary() + _ = yym2939 if false { } else { - r.EncodeInt(int64(yy2915)) + r.EncodeInt(int64(yy2938)) } } } else { @@ -36911,27 +37182,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2917 := *x.SinceSeconds - yym2918 := z.EncBinary() - _ = yym2918 + yy2940 := *x.SinceSeconds + yym2941 := z.EncBinary() + _ = yym2941 if false { } else { - r.EncodeInt(int64(yy2917)) + r.EncodeInt(int64(yy2940)) } } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym2920 := z.EncBinary() - _ = yym2920 + yym2943 := z.EncBinary() + _ = yym2943 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2920 { + } else if yym2943 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2920 && z.IsJSONHandle() { + } else if !yym2943 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -36944,23 +37215,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym2921 := z.EncBinary() - _ = yym2921 + yym2944 := z.EncBinary() + _ = yym2944 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2921 { + } else if yym2944 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2921 && z.IsJSONHandle() { + } else if !yym2944 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2923 := z.EncBinary() - _ = yym2923 + yym2946 := z.EncBinary() + _ = yym2946 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -36969,24 +37240,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2924 := z.EncBinary() - _ = yym2924 + yym2947 := z.EncBinary() + _ = yym2947 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy2926 := *x.TailLines - yym2927 := z.EncBinary() - _ = yym2927 + yy2949 := *x.TailLines + yym2950 := z.EncBinary() + _ = yym2950 if false { } else { - r.EncodeInt(int64(yy2926)) + r.EncodeInt(int64(yy2949)) } } } else { @@ -36996,26 +37267,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy2928 := *x.TailLines - yym2929 := z.EncBinary() - _ = yym2929 + yy2951 := *x.TailLines + yym2952 := z.EncBinary() + _ = yym2952 if false { } else { - r.EncodeInt(int64(yy2928)) + r.EncodeInt(int64(yy2951)) } } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy2931 := *x.LimitBytes - yym2932 := z.EncBinary() - _ = yym2932 + yy2954 := *x.LimitBytes + yym2955 := z.EncBinary() + _ = yym2955 if false { } else { - r.EncodeInt(int64(yy2931)) + r.EncodeInt(int64(yy2954)) } } } else { @@ -37025,16 +37296,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy2933 := *x.LimitBytes - yym2934 := z.EncBinary() - _ = yym2934 + yy2956 := *x.LimitBytes + yym2957 := z.EncBinary() + _ = yym2957 if false { } else { - r.EncodeInt(int64(yy2933)) + r.EncodeInt(int64(yy2956)) } } } - if yyr2898 || yy2arr2898 { + if yyr2921 || yy2arr2921 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37047,25 +37318,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2935 := z.DecBinary() - _ = yym2935 + yym2958 := z.DecBinary() + _ = yym2958 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2936 := r.ContainerType() - if yyct2936 == codecSelferValueTypeMap1234 { - yyl2936 := r.ReadMapStart() - if yyl2936 == 0 { + yyct2959 := r.ContainerType() + if yyct2959 == codecSelferValueTypeMap1234 { + yyl2959 := r.ReadMapStart() + if yyl2959 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2936, d) + x.codecDecodeSelfFromMap(yyl2959, d) } - } else if yyct2936 == codecSelferValueTypeArray1234 { - yyl2936 := r.ReadArrayStart() - if yyl2936 == 0 { + } else if yyct2959 == codecSelferValueTypeArray1234 { + yyl2959 := r.ReadArrayStart() + if yyl2959 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2936, d) + x.codecDecodeSelfFromArray(yyl2959, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37077,12 +37348,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2937Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2937Slc - var yyhl2937 bool = l >= 0 - for yyj2937 := 0; ; yyj2937++ { - if yyhl2937 { - if yyj2937 >= l { + var yys2960Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2960Slc + var yyhl2960 bool = l >= 0 + for yyj2960 := 0; ; yyj2960++ { + if yyhl2960 { + if yyj2960 >= l { break } } else { @@ -37091,10 +37362,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2937Slc = r.DecodeBytes(yys2937Slc, true, true) - yys2937 := string(yys2937Slc) + yys2960Slc = r.DecodeBytes(yys2960Slc, true, true) + yys2960 := string(yys2960Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2937 { + switch yys2960 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37134,8 +37405,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2944 := z.DecBinary() - _ = yym2944 + yym2967 := z.DecBinary() + _ = yym2967 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -37150,13 +37421,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2946 := z.DecBinary() - _ = yym2946 + yym2969 := z.DecBinary() + _ = yym2969 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2946 { + } else if yym2969 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2946 && z.IsJSONHandle() { + } else if !yym2969 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -37177,8 +37448,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2949 := z.DecBinary() - _ = yym2949 + yym2972 := z.DecBinary() + _ = yym2972 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -37193,17 +37464,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2951 := z.DecBinary() - _ = yym2951 + yym2974 := z.DecBinary() + _ = yym2974 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2937) - } // end switch yys2937 - } // end for yyj2937 + z.DecStructFieldNotFound(-1, yys2960) + } // end switch yys2960 + } // end for yyj2960 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37211,16 +37482,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2952 int - var yyb2952 bool - var yyhl2952 bool = l >= 0 - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + var yyj2975 int + var yyb2975 bool + var yyhl2975 bool = l >= 0 + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37230,13 +37501,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37246,13 +37517,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37262,13 +37533,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37278,13 +37549,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37294,13 +37565,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37313,20 +37584,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2959 := z.DecBinary() - _ = yym2959 + yym2982 := z.DecBinary() + _ = yym2982 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37339,25 +37610,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2961 := z.DecBinary() - _ = yym2961 + yym2984 := z.DecBinary() + _ = yym2984 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2961 { + } else if yym2984 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2961 && z.IsJSONHandle() { + } else if !yym2984 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37367,13 +37638,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37386,20 +37657,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2964 := z.DecBinary() - _ = yym2964 + yym2987 := z.DecBinary() + _ = yym2987 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37412,25 +37683,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2966 := z.DecBinary() - _ = yym2966 + yym2989 := z.DecBinary() + _ = yym2989 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj2952++ - if yyhl2952 { - yyb2952 = yyj2952 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2952 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2952 { + if yyb2975 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2952-1, "") + z.DecStructFieldNotFound(yyj2975-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37442,41 +37713,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2967 := z.EncBinary() - _ = yym2967 + yym2990 := z.EncBinary() + _ = yym2990 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2968 := !z.EncBinary() - yy2arr2968 := z.EncBasicHandle().StructToArray - var yyq2968 [7]bool - _, _, _ = yysep2968, yyq2968, yy2arr2968 - const yyr2968 bool = false - yyq2968[0] = x.Kind != "" - yyq2968[1] = x.APIVersion != "" - yyq2968[2] = x.Stdin != false - yyq2968[3] = x.Stdout != false - yyq2968[4] = x.Stderr != false - yyq2968[5] = x.TTY != false - yyq2968[6] = x.Container != "" - var yynn2968 int - if yyr2968 || yy2arr2968 { + yysep2991 := !z.EncBinary() + yy2arr2991 := z.EncBasicHandle().StructToArray + var yyq2991 [7]bool + _, _, _ = yysep2991, yyq2991, yy2arr2991 + const yyr2991 bool = false + yyq2991[0] = x.Kind != "" + yyq2991[1] = x.APIVersion != "" + yyq2991[2] = x.Stdin != false + yyq2991[3] = x.Stdout != false + yyq2991[4] = x.Stderr != false + yyq2991[5] = x.TTY != false + yyq2991[6] = x.Container != "" + var yynn2991 int + if yyr2991 || yy2arr2991 { r.EncodeArrayStart(7) } else { - yynn2968 = 0 - for _, b := range yyq2968 { + yynn2991 = 0 + for _, b := range yyq2991 { if b { - yynn2968++ + yynn2991++ } } - r.EncodeMapStart(yynn2968) - yynn2968 = 0 + r.EncodeMapStart(yynn2991) + yynn2991 = 0 } - if yyr2968 || yy2arr2968 { + if yyr2991 || yy2arr2991 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[0] { - yym2970 := z.EncBinary() - _ = yym2970 + if yyq2991[0] { + yym2993 := z.EncBinary() + _ = yym2993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37485,23 +37756,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2968[0] { + if yyq2991[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2971 := z.EncBinary() - _ = yym2971 + yym2994 := z.EncBinary() + _ = yym2994 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2968 || yy2arr2968 { + if yyr2991 || yy2arr2991 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[1] { - yym2973 := z.EncBinary() - _ = yym2973 + if yyq2991[1] { + yym2996 := z.EncBinary() + _ = yym2996 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37510,23 +37781,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2968[1] { + if yyq2991[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2974 := z.EncBinary() - _ = yym2974 + yym2997 := z.EncBinary() + _ = yym2997 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2968 || yy2arr2968 { + if yyr2991 || yy2arr2991 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[2] { - yym2976 := z.EncBinary() - _ = yym2976 + if yyq2991[2] { + yym2999 := z.EncBinary() + _ = yym2999 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -37535,23 +37806,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2968[2] { + if yyq2991[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2977 := z.EncBinary() - _ = yym2977 + yym3000 := z.EncBinary() + _ = yym3000 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr2968 || yy2arr2968 { + if yyr2991 || yy2arr2991 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[3] { - yym2979 := z.EncBinary() - _ = yym2979 + if yyq2991[3] { + yym3002 := z.EncBinary() + _ = yym3002 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -37560,23 +37831,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2968[3] { + if yyq2991[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2980 := z.EncBinary() - _ = yym2980 + yym3003 := z.EncBinary() + _ = yym3003 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr2968 || yy2arr2968 { + if yyr2991 || yy2arr2991 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[4] { - yym2982 := z.EncBinary() - _ = yym2982 + if yyq2991[4] { + yym3005 := z.EncBinary() + _ = yym3005 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -37585,23 +37856,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2968[4] { + if yyq2991[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2983 := z.EncBinary() - _ = yym2983 + yym3006 := z.EncBinary() + _ = yym3006 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr2968 || yy2arr2968 { + if yyr2991 || yy2arr2991 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[5] { - yym2985 := z.EncBinary() - _ = yym2985 + if yyq2991[5] { + yym3008 := z.EncBinary() + _ = yym3008 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -37610,23 +37881,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2968[5] { + if yyq2991[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2986 := z.EncBinary() - _ = yym2986 + yym3009 := z.EncBinary() + _ = yym3009 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr2968 || yy2arr2968 { + if yyr2991 || yy2arr2991 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[6] { - yym2988 := z.EncBinary() - _ = yym2988 + if yyq2991[6] { + yym3011 := z.EncBinary() + _ = yym3011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -37635,19 +37906,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2968[6] { + if yyq2991[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2989 := z.EncBinary() - _ = yym2989 + yym3012 := z.EncBinary() + _ = yym3012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2968 || yy2arr2968 { + if yyr2991 || yy2arr2991 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37660,25 +37931,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2990 := z.DecBinary() - _ = yym2990 + yym3013 := z.DecBinary() + _ = yym3013 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2991 := r.ContainerType() - if yyct2991 == codecSelferValueTypeMap1234 { - yyl2991 := r.ReadMapStart() - if yyl2991 == 0 { + yyct3014 := r.ContainerType() + if yyct3014 == codecSelferValueTypeMap1234 { + yyl3014 := r.ReadMapStart() + if yyl3014 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2991, d) + x.codecDecodeSelfFromMap(yyl3014, d) } - } else if yyct2991 == codecSelferValueTypeArray1234 { - yyl2991 := r.ReadArrayStart() - if yyl2991 == 0 { + } else if yyct3014 == codecSelferValueTypeArray1234 { + yyl3014 := r.ReadArrayStart() + if yyl3014 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2991, d) + x.codecDecodeSelfFromArray(yyl3014, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37690,12 +37961,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2992Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2992Slc - var yyhl2992 bool = l >= 0 - for yyj2992 := 0; ; yyj2992++ { - if yyhl2992 { - if yyj2992 >= l { + var yys3015Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3015Slc + var yyhl3015 bool = l >= 0 + for yyj3015 := 0; ; yyj3015++ { + if yyhl3015 { + if yyj3015 >= l { break } } else { @@ -37704,10 +37975,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2992Slc = r.DecodeBytes(yys2992Slc, true, true) - yys2992 := string(yys2992Slc) + yys3015Slc = r.DecodeBytes(yys3015Slc, true, true) + yys3015 := string(yys3015Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2992 { + switch yys3015 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37751,9 +38022,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2992) - } // end switch yys2992 - } // end for yyj2992 + z.DecStructFieldNotFound(-1, yys3015) + } // end switch yys3015 + } // end for yyj3015 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37761,16 +38032,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3000 int - var yyb3000 bool - var yyhl3000 bool = l >= 0 - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + var yyj3023 int + var yyb3023 bool + var yyhl3023 bool = l >= 0 + yyj3023++ + if yyhl3023 { + yyb3023 = yyj3023 > l } else { - yyb3000 = r.CheckBreak() + yyb3023 = r.CheckBreak() } - if yyb3000 { + if yyb3023 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37780,13 +38051,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + yyj3023++ + if yyhl3023 { + yyb3023 = yyj3023 > l } else { - yyb3000 = r.CheckBreak() + yyb3023 = r.CheckBreak() } - if yyb3000 { + if yyb3023 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37796,13 +38067,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + yyj3023++ + if yyhl3023 { + yyb3023 = yyj3023 > l } else { - yyb3000 = r.CheckBreak() + yyb3023 = r.CheckBreak() } - if yyb3000 { + if yyb3023 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37812,13 +38083,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + yyj3023++ + if yyhl3023 { + yyb3023 = yyj3023 > l } else { - yyb3000 = r.CheckBreak() + yyb3023 = r.CheckBreak() } - if yyb3000 { + if yyb3023 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37828,13 +38099,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + yyj3023++ + if yyhl3023 { + yyb3023 = yyj3023 > l } else { - yyb3000 = r.CheckBreak() + yyb3023 = r.CheckBreak() } - if yyb3000 { + if yyb3023 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37844,13 +38115,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + yyj3023++ + if yyhl3023 { + yyb3023 = yyj3023 > l } else { - yyb3000 = r.CheckBreak() + yyb3023 = r.CheckBreak() } - if yyb3000 { + if yyb3023 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37860,13 +38131,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + yyj3023++ + if yyhl3023 { + yyb3023 = yyj3023 > l } else { - yyb3000 = r.CheckBreak() + yyb3023 = r.CheckBreak() } - if yyb3000 { + if yyb3023 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37877,17 +38148,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + yyj3023++ + if yyhl3023 { + yyb3023 = yyj3023 > l } else { - yyb3000 = r.CheckBreak() + yyb3023 = r.CheckBreak() } - if yyb3000 { + if yyb3023 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3000-1, "") + z.DecStructFieldNotFound(yyj3023-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37899,36 +38170,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3008 := z.EncBinary() - _ = yym3008 + yym3031 := z.EncBinary() + _ = yym3031 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3009 := !z.EncBinary() - yy2arr3009 := z.EncBasicHandle().StructToArray - var yyq3009 [8]bool - _, _, _ = yysep3009, yyq3009, yy2arr3009 - const yyr3009 bool = false - yyq3009[0] = x.Kind != "" - yyq3009[1] = x.APIVersion != "" - var yynn3009 int - if yyr3009 || yy2arr3009 { + yysep3032 := !z.EncBinary() + yy2arr3032 := z.EncBasicHandle().StructToArray + var yyq3032 [8]bool + _, _, _ = yysep3032, yyq3032, yy2arr3032 + const yyr3032 bool = false + yyq3032[0] = x.Kind != "" + yyq3032[1] = x.APIVersion != "" + var yynn3032 int + if yyr3032 || yy2arr3032 { r.EncodeArrayStart(8) } else { - yynn3009 = 6 - for _, b := range yyq3009 { + yynn3032 = 6 + for _, b := range yyq3032 { if b { - yynn3009++ + yynn3032++ } } - r.EncodeMapStart(yynn3009) - yynn3009 = 0 + r.EncodeMapStart(yynn3032) + yynn3032 = 0 } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3009[0] { - yym3011 := z.EncBinary() - _ = yym3011 + if yyq3032[0] { + yym3034 := z.EncBinary() + _ = yym3034 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37937,23 +38208,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3009[0] { + if yyq3032[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3012 := z.EncBinary() - _ = yym3012 + yym3035 := z.EncBinary() + _ = yym3035 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3009[1] { - yym3014 := z.EncBinary() - _ = yym3014 + if yyq3032[1] { + yym3037 := z.EncBinary() + _ = yym3037 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37962,22 +38233,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3009[1] { + if yyq3032[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3015 := z.EncBinary() - _ = yym3015 + yym3038 := z.EncBinary() + _ = yym3038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3017 := z.EncBinary() - _ = yym3017 + yym3040 := z.EncBinary() + _ = yym3040 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -37986,17 +38257,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3018 := z.EncBinary() - _ = yym3018 + yym3041 := z.EncBinary() + _ = yym3041 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3020 := z.EncBinary() - _ = yym3020 + yym3043 := z.EncBinary() + _ = yym3043 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -38005,17 +38276,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3021 := z.EncBinary() - _ = yym3021 + yym3044 := z.EncBinary() + _ = yym3044 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3023 := z.EncBinary() - _ = yym3023 + yym3046 := z.EncBinary() + _ = yym3046 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -38024,17 +38295,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3024 := z.EncBinary() - _ = yym3024 + yym3047 := z.EncBinary() + _ = yym3047 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3026 := z.EncBinary() - _ = yym3026 + yym3049 := z.EncBinary() + _ = yym3049 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -38043,17 +38314,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3027 := z.EncBinary() - _ = yym3027 + yym3050 := z.EncBinary() + _ = yym3050 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3029 := z.EncBinary() - _ = yym3029 + yym3052 := z.EncBinary() + _ = yym3052 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -38062,20 +38333,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3030 := z.EncBinary() - _ = yym3030 + yym3053 := z.EncBinary() + _ = yym3053 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3032 := z.EncBinary() - _ = yym3032 + yym3055 := z.EncBinary() + _ = yym3055 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -38088,15 +38359,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3033 := z.EncBinary() - _ = yym3033 + yym3056 := z.EncBinary() + _ = yym3056 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3009 || yy2arr3009 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38109,25 +38380,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3034 := z.DecBinary() - _ = yym3034 + yym3057 := z.DecBinary() + _ = yym3057 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3035 := r.ContainerType() - if yyct3035 == codecSelferValueTypeMap1234 { - yyl3035 := r.ReadMapStart() - if yyl3035 == 0 { + yyct3058 := r.ContainerType() + if yyct3058 == codecSelferValueTypeMap1234 { + yyl3058 := r.ReadMapStart() + if yyl3058 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3035, d) + x.codecDecodeSelfFromMap(yyl3058, d) } - } else if yyct3035 == codecSelferValueTypeArray1234 { - yyl3035 := r.ReadArrayStart() - if yyl3035 == 0 { + } else if yyct3058 == codecSelferValueTypeArray1234 { + yyl3058 := r.ReadArrayStart() + if yyl3058 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3035, d) + x.codecDecodeSelfFromArray(yyl3058, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38139,12 +38410,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3036Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3036Slc - var yyhl3036 bool = l >= 0 - for yyj3036 := 0; ; yyj3036++ { - if yyhl3036 { - if yyj3036 >= l { + var yys3059Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3059Slc + var yyhl3059 bool = l >= 0 + for yyj3059 := 0; ; yyj3059++ { + if yyhl3059 { + if yyj3059 >= l { break } } else { @@ -38153,10 +38424,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3036Slc = r.DecodeBytes(yys3036Slc, true, true) - yys3036 := string(yys3036Slc) + yys3059Slc = r.DecodeBytes(yys3059Slc, true, true) + yys3059 := string(yys3059Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3036 { + switch yys3059 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38203,18 +38474,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3044 := &x.Command - yym3045 := z.DecBinary() - _ = yym3045 + yyv3067 := &x.Command + yym3068 := z.DecBinary() + _ = yym3068 if false { } else { - z.F.DecSliceStringX(yyv3044, false, d) + z.F.DecSliceStringX(yyv3067, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3036) - } // end switch yys3036 - } // end for yyj3036 + z.DecStructFieldNotFound(-1, yys3059) + } // end switch yys3059 + } // end for yyj3059 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38222,16 +38493,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3046 int - var yyb3046 bool - var yyhl3046 bool = l >= 0 - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + var yyj3069 int + var yyb3069 bool + var yyhl3069 bool = l >= 0 + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38241,13 +38512,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38257,13 +38528,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38273,13 +38544,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38289,13 +38560,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38305,13 +38576,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38321,13 +38592,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38337,13 +38608,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38351,26 +38622,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3054 := &x.Command - yym3055 := z.DecBinary() - _ = yym3055 + yyv3077 := &x.Command + yym3078 := z.DecBinary() + _ = yym3078 if false { } else { - z.F.DecSliceStringX(yyv3054, false, d) + z.F.DecSliceStringX(yyv3077, false, d) } } for { - yyj3046++ - if yyhl3046 { - yyb3046 = yyj3046 > l + yyj3069++ + if yyhl3069 { + yyb3069 = yyj3069 > l } else { - yyb3046 = r.CheckBreak() + yyb3069 = r.CheckBreak() } - if yyb3046 { + if yyb3069 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3046-1, "") + z.DecStructFieldNotFound(yyj3069-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38382,36 +38653,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3056 := z.EncBinary() - _ = yym3056 + yym3079 := z.EncBinary() + _ = yym3079 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3057 := !z.EncBinary() - yy2arr3057 := z.EncBasicHandle().StructToArray - var yyq3057 [3]bool - _, _, _ = yysep3057, yyq3057, yy2arr3057 - const yyr3057 bool = false - yyq3057[0] = x.Kind != "" - yyq3057[1] = x.APIVersion != "" - var yynn3057 int - if yyr3057 || yy2arr3057 { + yysep3080 := !z.EncBinary() + yy2arr3080 := z.EncBasicHandle().StructToArray + var yyq3080 [3]bool + _, _, _ = yysep3080, yyq3080, yy2arr3080 + const yyr3080 bool = false + yyq3080[0] = x.Kind != "" + yyq3080[1] = x.APIVersion != "" + var yynn3080 int + if yyr3080 || yy2arr3080 { r.EncodeArrayStart(3) } else { - yynn3057 = 1 - for _, b := range yyq3057 { + yynn3080 = 1 + for _, b := range yyq3080 { if b { - yynn3057++ + yynn3080++ } } - r.EncodeMapStart(yynn3057) - yynn3057 = 0 + r.EncodeMapStart(yynn3080) + yynn3080 = 0 } - if yyr3057 || yy2arr3057 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3057[0] { - yym3059 := z.EncBinary() - _ = yym3059 + if yyq3080[0] { + yym3082 := z.EncBinary() + _ = yym3082 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38420,23 +38691,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3057[0] { + if yyq3080[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3060 := z.EncBinary() - _ = yym3060 + yym3083 := z.EncBinary() + _ = yym3083 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3057 || yy2arr3057 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3057[1] { - yym3062 := z.EncBinary() - _ = yym3062 + if yyq3080[1] { + yym3085 := z.EncBinary() + _ = yym3085 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38445,22 +38716,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3057[1] { + if yyq3080[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3063 := z.EncBinary() - _ = yym3063 + yym3086 := z.EncBinary() + _ = yym3086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3057 || yy2arr3057 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3065 := z.EncBinary() - _ = yym3065 + yym3088 := z.EncBinary() + _ = yym3088 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -38469,14 +38740,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3066 := z.EncBinary() - _ = yym3066 + yym3089 := z.EncBinary() + _ = yym3089 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3057 || yy2arr3057 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38489,25 +38760,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3067 := z.DecBinary() - _ = yym3067 + yym3090 := z.DecBinary() + _ = yym3090 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3068 := r.ContainerType() - if yyct3068 == codecSelferValueTypeMap1234 { - yyl3068 := r.ReadMapStart() - if yyl3068 == 0 { + yyct3091 := r.ContainerType() + if yyct3091 == codecSelferValueTypeMap1234 { + yyl3091 := r.ReadMapStart() + if yyl3091 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3068, d) + x.codecDecodeSelfFromMap(yyl3091, d) } - } else if yyct3068 == codecSelferValueTypeArray1234 { - yyl3068 := r.ReadArrayStart() - if yyl3068 == 0 { + } else if yyct3091 == codecSelferValueTypeArray1234 { + yyl3091 := r.ReadArrayStart() + if yyl3091 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3068, d) + x.codecDecodeSelfFromArray(yyl3091, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38519,12 +38790,12 @@ func (x *PodProxyOptions) 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 yys3092Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3092Slc + var yyhl3092 bool = l >= 0 + for yyj3092 := 0; ; yyj3092++ { + if yyhl3092 { + if yyj3092 >= l { break } } else { @@ -38533,10 +38804,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3069Slc = r.DecodeBytes(yys3069Slc, true, true) - yys3069 := string(yys3069Slc) + yys3092Slc = r.DecodeBytes(yys3092Slc, true, true) + yys3092 := string(yys3092Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3069 { + switch yys3092 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38556,9 +38827,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3069) - } // end switch yys3069 - } // end for yyj3069 + z.DecStructFieldNotFound(-1, yys3092) + } // end switch yys3092 + } // end for yyj3092 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38566,16 +38837,16 @@ func (x *PodProxyOptions) 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 yyj3096 int + var yyb3096 bool + var yyhl3096 bool = l >= 0 + yyj3096++ + if yyhl3096 { + yyb3096 = yyj3096 > l } else { - yyb3073 = r.CheckBreak() + yyb3096 = r.CheckBreak() } - if yyb3073 { + if yyb3096 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38585,13 +38856,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3073++ - if yyhl3073 { - yyb3073 = yyj3073 > l + yyj3096++ + if yyhl3096 { + yyb3096 = yyj3096 > l } else { - yyb3073 = r.CheckBreak() + yyb3096 = r.CheckBreak() } - if yyb3073 { + if yyb3096 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38601,13 +38872,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3073++ - if yyhl3073 { - yyb3073 = yyj3073 > l + yyj3096++ + if yyhl3096 { + yyb3096 = yyj3096 > l } else { - yyb3073 = r.CheckBreak() + yyb3096 = r.CheckBreak() } - if yyb3073 { + if yyb3096 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38618,17 +38889,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3073++ - if yyhl3073 { - yyb3073 = yyj3073 > l + yyj3096++ + if yyhl3096 { + yyb3096 = yyj3096 > l } else { - yyb3073 = r.CheckBreak() + yyb3096 = r.CheckBreak() } - if yyb3073 { + if yyb3096 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3073-1, "") + z.DecStructFieldNotFound(yyj3096-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38640,41 +38911,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3077 := z.EncBinary() - _ = yym3077 + yym3100 := z.EncBinary() + _ = yym3100 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3078 := !z.EncBinary() - yy2arr3078 := z.EncBasicHandle().StructToArray - var yyq3078 [7]bool - _, _, _ = yysep3078, yyq3078, yy2arr3078 - const yyr3078 bool = false - yyq3078[0] = x.Kind != "" - yyq3078[1] = x.Namespace != "" - yyq3078[2] = x.Name != "" - yyq3078[3] = x.UID != "" - yyq3078[4] = x.APIVersion != "" - yyq3078[5] = x.ResourceVersion != "" - yyq3078[6] = x.FieldPath != "" - var yynn3078 int - if yyr3078 || yy2arr3078 { + yysep3101 := !z.EncBinary() + yy2arr3101 := z.EncBasicHandle().StructToArray + var yyq3101 [7]bool + _, _, _ = yysep3101, yyq3101, yy2arr3101 + const yyr3101 bool = false + yyq3101[0] = x.Kind != "" + yyq3101[1] = x.Namespace != "" + yyq3101[2] = x.Name != "" + yyq3101[3] = x.UID != "" + yyq3101[4] = x.APIVersion != "" + yyq3101[5] = x.ResourceVersion != "" + yyq3101[6] = x.FieldPath != "" + var yynn3101 int + if yyr3101 || yy2arr3101 { r.EncodeArrayStart(7) } else { - yynn3078 = 0 - for _, b := range yyq3078 { + yynn3101 = 0 + for _, b := range yyq3101 { if b { - yynn3078++ + yynn3101++ } } - r.EncodeMapStart(yynn3078) - yynn3078 = 0 + r.EncodeMapStart(yynn3101) + yynn3101 = 0 } - if yyr3078 || yy2arr3078 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[0] { - yym3080 := z.EncBinary() - _ = yym3080 + if yyq3101[0] { + yym3103 := z.EncBinary() + _ = yym3103 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38683,23 +38954,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[0] { + if yyq3101[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3081 := z.EncBinary() - _ = yym3081 + yym3104 := z.EncBinary() + _ = yym3104 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3078 || yy2arr3078 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[1] { - yym3083 := z.EncBinary() - _ = yym3083 + if yyq3101[1] { + yym3106 := z.EncBinary() + _ = yym3106 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -38708,23 +38979,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[1] { + if yyq3101[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3084 := z.EncBinary() - _ = yym3084 + yym3107 := z.EncBinary() + _ = yym3107 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3078 || yy2arr3078 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[2] { - yym3086 := z.EncBinary() - _ = yym3086 + if yyq3101[2] { + yym3109 := z.EncBinary() + _ = yym3109 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -38733,23 +39004,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[2] { + if yyq3101[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3087 := z.EncBinary() - _ = yym3087 + yym3110 := z.EncBinary() + _ = yym3110 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3078 || yy2arr3078 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[3] { - yym3089 := z.EncBinary() - _ = yym3089 + if yyq3101[3] { + yym3112 := z.EncBinary() + _ = yym3112 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -38759,12 +39030,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[3] { + if yyq3101[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3090 := z.EncBinary() - _ = yym3090 + yym3113 := z.EncBinary() + _ = yym3113 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -38772,11 +39043,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3078 || yy2arr3078 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[4] { - yym3092 := z.EncBinary() - _ = yym3092 + if yyq3101[4] { + yym3115 := z.EncBinary() + _ = yym3115 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38785,23 +39056,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[4] { + if yyq3101[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3093 := z.EncBinary() - _ = yym3093 + yym3116 := z.EncBinary() + _ = yym3116 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3078 || yy2arr3078 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[5] { - yym3095 := z.EncBinary() - _ = yym3095 + if yyq3101[5] { + yym3118 := z.EncBinary() + _ = yym3118 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -38810,23 +39081,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[5] { + if yyq3101[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3096 := z.EncBinary() - _ = yym3096 + yym3119 := z.EncBinary() + _ = yym3119 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3078 || yy2arr3078 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[6] { - yym3098 := z.EncBinary() - _ = yym3098 + if yyq3101[6] { + yym3121 := z.EncBinary() + _ = yym3121 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -38835,19 +39106,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[6] { + if yyq3101[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3099 := z.EncBinary() - _ = yym3099 + yym3122 := z.EncBinary() + _ = yym3122 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3078 || yy2arr3078 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38860,25 +39131,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3100 := z.DecBinary() - _ = yym3100 + yym3123 := z.DecBinary() + _ = yym3123 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3101 := r.ContainerType() - if yyct3101 == codecSelferValueTypeMap1234 { - yyl3101 := r.ReadMapStart() - if yyl3101 == 0 { + yyct3124 := r.ContainerType() + if yyct3124 == codecSelferValueTypeMap1234 { + yyl3124 := r.ReadMapStart() + if yyl3124 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3101, d) + x.codecDecodeSelfFromMap(yyl3124, d) } - } else if yyct3101 == codecSelferValueTypeArray1234 { - yyl3101 := r.ReadArrayStart() - if yyl3101 == 0 { + } else if yyct3124 == codecSelferValueTypeArray1234 { + yyl3124 := r.ReadArrayStart() + if yyl3124 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3101, d) + x.codecDecodeSelfFromArray(yyl3124, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38890,12 +39161,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3102Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3102Slc - var yyhl3102 bool = l >= 0 - for yyj3102 := 0; ; yyj3102++ { - if yyhl3102 { - if yyj3102 >= l { + var yys3125Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3125Slc + var yyhl3125 bool = l >= 0 + for yyj3125 := 0; ; yyj3125++ { + if yyhl3125 { + if yyj3125 >= l { break } } else { @@ -38904,10 +39175,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3102Slc = r.DecodeBytes(yys3102Slc, true, true) - yys3102 := string(yys3102Slc) + yys3125Slc = r.DecodeBytes(yys3125Slc, true, true) + yys3125 := string(yys3125Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3102 { + switch yys3125 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38951,9 +39222,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3102) - } // end switch yys3102 - } // end for yyj3102 + z.DecStructFieldNotFound(-1, yys3125) + } // end switch yys3125 + } // end for yyj3125 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38961,16 +39232,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3110 int - var yyb3110 bool - var yyhl3110 bool = l >= 0 - yyj3110++ - if yyhl3110 { - yyb3110 = yyj3110 > l + var yyj3133 int + var yyb3133 bool + var yyhl3133 bool = l >= 0 + yyj3133++ + if yyhl3133 { + yyb3133 = yyj3133 > l } else { - yyb3110 = r.CheckBreak() + yyb3133 = r.CheckBreak() } - if yyb3110 { + if yyb3133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38980,13 +39251,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3110++ - if yyhl3110 { - yyb3110 = yyj3110 > l + yyj3133++ + if yyhl3133 { + yyb3133 = yyj3133 > l } else { - yyb3110 = r.CheckBreak() + yyb3133 = r.CheckBreak() } - if yyb3110 { + if yyb3133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38996,13 +39267,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3110++ - if yyhl3110 { - yyb3110 = yyj3110 > l + yyj3133++ + if yyhl3133 { + yyb3133 = yyj3133 > l } else { - yyb3110 = r.CheckBreak() + yyb3133 = r.CheckBreak() } - if yyb3110 { + if yyb3133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39012,13 +39283,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3110++ - if yyhl3110 { - yyb3110 = yyj3110 > l + yyj3133++ + if yyhl3133 { + yyb3133 = yyj3133 > l } else { - yyb3110 = r.CheckBreak() + yyb3133 = r.CheckBreak() } - if yyb3110 { + if yyb3133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39028,13 +39299,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3110++ - if yyhl3110 { - yyb3110 = yyj3110 > l + yyj3133++ + if yyhl3133 { + yyb3133 = yyj3133 > l } else { - yyb3110 = r.CheckBreak() + yyb3133 = r.CheckBreak() } - if yyb3110 { + if yyb3133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39044,13 +39315,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3110++ - if yyhl3110 { - yyb3110 = yyj3110 > l + yyj3133++ + if yyhl3133 { + yyb3133 = yyj3133 > l } else { - yyb3110 = r.CheckBreak() + yyb3133 = r.CheckBreak() } - if yyb3110 { + if yyb3133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39060,13 +39331,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3110++ - if yyhl3110 { - yyb3110 = yyj3110 > l + yyj3133++ + if yyhl3133 { + yyb3133 = yyj3133 > l } else { - yyb3110 = r.CheckBreak() + yyb3133 = r.CheckBreak() } - if yyb3110 { + if yyb3133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39077,17 +39348,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3110++ - if yyhl3110 { - yyb3110 = yyj3110 > l + yyj3133++ + if yyhl3133 { + yyb3133 = yyj3133 > l } else { - yyb3110 = r.CheckBreak() + yyb3133 = r.CheckBreak() } - if yyb3110 { + if yyb3133 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3110-1, "") + z.DecStructFieldNotFound(yyj3133-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39099,33 +39370,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3118 := z.EncBinary() - _ = yym3118 + yym3141 := z.EncBinary() + _ = yym3141 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3119 := !z.EncBinary() - yy2arr3119 := z.EncBasicHandle().StructToArray - var yyq3119 [1]bool - _, _, _ = yysep3119, yyq3119, yy2arr3119 - const yyr3119 bool = false - var yynn3119 int - if yyr3119 || yy2arr3119 { + yysep3142 := !z.EncBinary() + yy2arr3142 := z.EncBasicHandle().StructToArray + var yyq3142 [1]bool + _, _, _ = yysep3142, yyq3142, yy2arr3142 + const yyr3142 bool = false + var yynn3142 int + if yyr3142 || yy2arr3142 { r.EncodeArrayStart(1) } else { - yynn3119 = 1 - for _, b := range yyq3119 { + yynn3142 = 1 + for _, b := range yyq3142 { if b { - yynn3119++ + yynn3142++ } } - r.EncodeMapStart(yynn3119) - yynn3119 = 0 + r.EncodeMapStart(yynn3142) + yynn3142 = 0 } - if yyr3119 || yy2arr3119 { + if yyr3142 || yy2arr3142 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3121 := z.EncBinary() - _ = yym3121 + yym3144 := z.EncBinary() + _ = yym3144 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -39134,14 +39405,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3122 := z.EncBinary() - _ = yym3122 + yym3145 := z.EncBinary() + _ = yym3145 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3119 || yy2arr3119 { + if yyr3142 || yy2arr3142 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39154,25 +39425,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3123 := z.DecBinary() - _ = yym3123 + yym3146 := z.DecBinary() + _ = yym3146 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3124 := r.ContainerType() - if yyct3124 == codecSelferValueTypeMap1234 { - yyl3124 := r.ReadMapStart() - if yyl3124 == 0 { + yyct3147 := r.ContainerType() + if yyct3147 == codecSelferValueTypeMap1234 { + yyl3147 := r.ReadMapStart() + if yyl3147 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3124, d) + x.codecDecodeSelfFromMap(yyl3147, d) } - } else if yyct3124 == codecSelferValueTypeArray1234 { - yyl3124 := r.ReadArrayStart() - if yyl3124 == 0 { + } else if yyct3147 == codecSelferValueTypeArray1234 { + yyl3147 := r.ReadArrayStart() + if yyl3147 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3124, d) + x.codecDecodeSelfFromArray(yyl3147, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39184,12 +39455,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3125Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3125Slc - var yyhl3125 bool = l >= 0 - for yyj3125 := 0; ; yyj3125++ { - if yyhl3125 { - if yyj3125 >= l { + var yys3148Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3148Slc + var yyhl3148 bool = l >= 0 + for yyj3148 := 0; ; yyj3148++ { + if yyhl3148 { + if yyj3148 >= l { break } } else { @@ -39198,10 +39469,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3125Slc = r.DecodeBytes(yys3125Slc, true, true) - yys3125 := string(yys3125Slc) + yys3148Slc = r.DecodeBytes(yys3148Slc, true, true) + yys3148 := string(yys3148Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3125 { + switch yys3148 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -39209,9 +39480,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3125) - } // end switch yys3125 - } // end for yyj3125 + z.DecStructFieldNotFound(-1, yys3148) + } // end switch yys3148 + } // end for yyj3148 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39219,16 +39490,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3127 int - var yyb3127 bool - var yyhl3127 bool = l >= 0 - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + var yyj3150 int + var yyb3150 bool + var yyhl3150 bool = l >= 0 + yyj3150++ + if yyhl3150 { + yyb3150 = yyj3150 > l } else { - yyb3127 = r.CheckBreak() + yyb3150 = r.CheckBreak() } - if yyb3127 { + if yyb3150 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39239,17 +39510,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3150++ + if yyhl3150 { + yyb3150 = yyj3150 > l } else { - yyb3127 = r.CheckBreak() + yyb3150 = r.CheckBreak() } - if yyb3127 { + if yyb3150 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3127-1, "") + z.DecStructFieldNotFound(yyj3150-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39261,37 +39532,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3129 := z.EncBinary() - _ = yym3129 + yym3152 := z.EncBinary() + _ = yym3152 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3130 := !z.EncBinary() - yy2arr3130 := z.EncBasicHandle().StructToArray - var yyq3130 [3]bool - _, _, _ = yysep3130, yyq3130, yy2arr3130 - const yyr3130 bool = false - yyq3130[0] = x.Kind != "" - yyq3130[1] = x.APIVersion != "" - yyq3130[2] = true - var yynn3130 int - if yyr3130 || yy2arr3130 { + yysep3153 := !z.EncBinary() + yy2arr3153 := z.EncBasicHandle().StructToArray + var yyq3153 [3]bool + _, _, _ = yysep3153, yyq3153, yy2arr3153 + const yyr3153 bool = false + yyq3153[0] = x.Kind != "" + yyq3153[1] = x.APIVersion != "" + yyq3153[2] = true + var yynn3153 int + if yyr3153 || yy2arr3153 { r.EncodeArrayStart(3) } else { - yynn3130 = 0 - for _, b := range yyq3130 { + yynn3153 = 0 + for _, b := range yyq3153 { if b { - yynn3130++ + yynn3153++ } } - r.EncodeMapStart(yynn3130) - yynn3130 = 0 + r.EncodeMapStart(yynn3153) + yynn3153 = 0 } - if yyr3130 || yy2arr3130 { + if yyr3153 || yy2arr3153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3130[0] { - yym3132 := z.EncBinary() - _ = yym3132 + if yyq3153[0] { + yym3155 := z.EncBinary() + _ = yym3155 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39300,23 +39571,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3130[0] { + if yyq3153[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3133 := z.EncBinary() - _ = yym3133 + yym3156 := z.EncBinary() + _ = yym3156 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3130 || yy2arr3130 { + if yyr3153 || yy2arr3153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3130[1] { - yym3135 := z.EncBinary() - _ = yym3135 + if yyq3153[1] { + yym3158 := z.EncBinary() + _ = yym3158 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39325,36 +39596,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3130[1] { + if yyq3153[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3136 := z.EncBinary() - _ = yym3136 + yym3159 := z.EncBinary() + _ = yym3159 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3130 || yy2arr3130 { + if yyr3153 || yy2arr3153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3130[2] { - yy3138 := &x.Reference - yy3138.CodecEncodeSelf(e) + if yyq3153[2] { + yy3161 := &x.Reference + yy3161.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3130[2] { + if yyq3153[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3139 := &x.Reference - yy3139.CodecEncodeSelf(e) + yy3162 := &x.Reference + yy3162.CodecEncodeSelf(e) } } - if yyr3130 || yy2arr3130 { + if yyr3153 || yy2arr3153 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39367,25 +39638,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3140 := z.DecBinary() - _ = yym3140 + yym3163 := z.DecBinary() + _ = yym3163 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3141 := r.ContainerType() - if yyct3141 == codecSelferValueTypeMap1234 { - yyl3141 := r.ReadMapStart() - if yyl3141 == 0 { + yyct3164 := r.ContainerType() + if yyct3164 == codecSelferValueTypeMap1234 { + yyl3164 := r.ReadMapStart() + if yyl3164 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3141, d) + x.codecDecodeSelfFromMap(yyl3164, d) } - } else if yyct3141 == codecSelferValueTypeArray1234 { - yyl3141 := r.ReadArrayStart() - if yyl3141 == 0 { + } else if yyct3164 == codecSelferValueTypeArray1234 { + yyl3164 := r.ReadArrayStart() + if yyl3164 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3141, d) + x.codecDecodeSelfFromArray(yyl3164, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39397,12 +39668,12 @@ func (x *SerializedReference) 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 yys3165Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3165Slc + var yyhl3165 bool = l >= 0 + for yyj3165 := 0; ; yyj3165++ { + if yyhl3165 { + if yyj3165 >= l { break } } else { @@ -39411,10 +39682,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3142Slc = r.DecodeBytes(yys3142Slc, true, true) - yys3142 := string(yys3142Slc) + yys3165Slc = r.DecodeBytes(yys3165Slc, true, true) + yys3165 := string(yys3165Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3142 { + switch yys3165 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39431,13 +39702,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3145 := &x.Reference - yyv3145.CodecDecodeSelf(d) + yyv3168 := &x.Reference + yyv3168.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3142) - } // end switch yys3142 - } // end for yyj3142 + z.DecStructFieldNotFound(-1, yys3165) + } // end switch yys3165 + } // end for yyj3165 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39445,16 +39716,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3146 int - var yyb3146 bool - var yyhl3146 bool = l >= 0 - yyj3146++ - if yyhl3146 { - yyb3146 = yyj3146 > l + var yyj3169 int + var yyb3169 bool + var yyhl3169 bool = l >= 0 + yyj3169++ + if yyhl3169 { + yyb3169 = yyj3169 > l } else { - yyb3146 = r.CheckBreak() + yyb3169 = r.CheckBreak() } - if yyb3146 { + if yyb3169 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39464,13 +39735,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3146++ - if yyhl3146 { - yyb3146 = yyj3146 > l + yyj3169++ + if yyhl3169 { + yyb3169 = yyj3169 > l } else { - yyb3146 = r.CheckBreak() + yyb3169 = r.CheckBreak() } - if yyb3146 { + if yyb3169 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39480,13 +39751,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3146++ - if yyhl3146 { - yyb3146 = yyj3146 > l + yyj3169++ + if yyhl3169 { + yyb3169 = yyj3169 > l } else { - yyb3146 = r.CheckBreak() + yyb3169 = r.CheckBreak() } - if yyb3146 { + if yyb3169 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39494,21 +39765,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3149 := &x.Reference - yyv3149.CodecDecodeSelf(d) + yyv3172 := &x.Reference + yyv3172.CodecDecodeSelf(d) } for { - yyj3146++ - if yyhl3146 { - yyb3146 = yyj3146 > l + yyj3169++ + if yyhl3169 { + yyb3169 = yyj3169 > l } else { - yyb3146 = r.CheckBreak() + yyb3169 = r.CheckBreak() } - if yyb3146 { + if yyb3169 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3146-1, "") + z.DecStructFieldNotFound(yyj3169-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39520,36 +39791,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3150 := z.EncBinary() - _ = yym3150 + yym3173 := z.EncBinary() + _ = yym3173 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3151 := !z.EncBinary() - yy2arr3151 := z.EncBasicHandle().StructToArray - var yyq3151 [2]bool - _, _, _ = yysep3151, yyq3151, yy2arr3151 - const yyr3151 bool = false - yyq3151[0] = x.Component != "" - yyq3151[1] = x.Host != "" - var yynn3151 int - if yyr3151 || yy2arr3151 { + yysep3174 := !z.EncBinary() + yy2arr3174 := z.EncBasicHandle().StructToArray + var yyq3174 [2]bool + _, _, _ = yysep3174, yyq3174, yy2arr3174 + const yyr3174 bool = false + yyq3174[0] = x.Component != "" + yyq3174[1] = x.Host != "" + var yynn3174 int + if yyr3174 || yy2arr3174 { r.EncodeArrayStart(2) } else { - yynn3151 = 0 - for _, b := range yyq3151 { + yynn3174 = 0 + for _, b := range yyq3174 { if b { - yynn3151++ + yynn3174++ } } - r.EncodeMapStart(yynn3151) - yynn3151 = 0 + r.EncodeMapStart(yynn3174) + yynn3174 = 0 } - if yyr3151 || yy2arr3151 { + if yyr3174 || yy2arr3174 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[0] { - yym3153 := z.EncBinary() - _ = yym3153 + if yyq3174[0] { + yym3176 := z.EncBinary() + _ = yym3176 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -39558,23 +39829,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3151[0] { + if yyq3174[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3154 := z.EncBinary() - _ = yym3154 + yym3177 := z.EncBinary() + _ = yym3177 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3151 || yy2arr3151 { + if yyr3174 || yy2arr3174 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[1] { - yym3156 := z.EncBinary() - _ = yym3156 + if yyq3174[1] { + yym3179 := z.EncBinary() + _ = yym3179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -39583,19 +39854,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3151[1] { + if yyq3174[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3157 := z.EncBinary() - _ = yym3157 + yym3180 := z.EncBinary() + _ = yym3180 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3151 || yy2arr3151 { + if yyr3174 || yy2arr3174 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39608,25 +39879,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3158 := z.DecBinary() - _ = yym3158 + yym3181 := z.DecBinary() + _ = yym3181 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3159 := r.ContainerType() - if yyct3159 == codecSelferValueTypeMap1234 { - yyl3159 := r.ReadMapStart() - if yyl3159 == 0 { + yyct3182 := r.ContainerType() + if yyct3182 == codecSelferValueTypeMap1234 { + yyl3182 := r.ReadMapStart() + if yyl3182 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3159, d) + x.codecDecodeSelfFromMap(yyl3182, d) } - } else if yyct3159 == codecSelferValueTypeArray1234 { - yyl3159 := r.ReadArrayStart() - if yyl3159 == 0 { + } else if yyct3182 == codecSelferValueTypeArray1234 { + yyl3182 := r.ReadArrayStart() + if yyl3182 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3159, d) + x.codecDecodeSelfFromArray(yyl3182, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39638,12 +39909,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3160Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3160Slc - var yyhl3160 bool = l >= 0 - for yyj3160 := 0; ; yyj3160++ { - if yyhl3160 { - if yyj3160 >= l { + var yys3183Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3183Slc + var yyhl3183 bool = l >= 0 + for yyj3183 := 0; ; yyj3183++ { + if yyhl3183 { + if yyj3183 >= l { break } } else { @@ -39652,10 +39923,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3160Slc = r.DecodeBytes(yys3160Slc, true, true) - yys3160 := string(yys3160Slc) + yys3183Slc = r.DecodeBytes(yys3183Slc, true, true) + yys3183 := string(yys3183Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3160 { + switch yys3183 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -39669,9 +39940,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3160) - } // end switch yys3160 - } // end for yyj3160 + z.DecStructFieldNotFound(-1, yys3183) + } // end switch yys3183 + } // end for yyj3183 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39679,16 +39950,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3163 int - var yyb3163 bool - var yyhl3163 bool = l >= 0 - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + var yyj3186 int + var yyb3186 bool + var yyhl3186 bool = l >= 0 + yyj3186++ + if yyhl3186 { + yyb3186 = yyj3186 > l } else { - yyb3163 = r.CheckBreak() + yyb3186 = r.CheckBreak() } - if yyb3163 { + if yyb3186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39698,13 +39969,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3186++ + if yyhl3186 { + yyb3186 = yyj3186 > l } else { - yyb3163 = r.CheckBreak() + yyb3186 = r.CheckBreak() } - if yyb3163 { + if yyb3186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39715,17 +39986,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3186++ + if yyhl3186 { + yyb3186 = yyj3186 > l } else { - yyb3163 = r.CheckBreak() + yyb3186 = r.CheckBreak() } - if yyb3163 { + if yyb3186 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3163-1, "") + z.DecStructFieldNotFound(yyj3186-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39737,45 +40008,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3166 := z.EncBinary() - _ = yym3166 + yym3189 := z.EncBinary() + _ = yym3189 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3167 := !z.EncBinary() - yy2arr3167 := z.EncBasicHandle().StructToArray - var yyq3167 [11]bool - _, _, _ = yysep3167, yyq3167, yy2arr3167 - const yyr3167 bool = false - yyq3167[0] = x.Kind != "" - yyq3167[1] = x.APIVersion != "" - yyq3167[2] = true - yyq3167[3] = true - yyq3167[4] = x.Reason != "" - yyq3167[5] = x.Message != "" - yyq3167[6] = true - yyq3167[7] = true - yyq3167[8] = true - yyq3167[9] = x.Count != 0 - yyq3167[10] = x.Type != "" - var yynn3167 int - if yyr3167 || yy2arr3167 { + yysep3190 := !z.EncBinary() + yy2arr3190 := z.EncBasicHandle().StructToArray + var yyq3190 [11]bool + _, _, _ = yysep3190, yyq3190, yy2arr3190 + const yyr3190 bool = false + yyq3190[0] = x.Kind != "" + yyq3190[1] = x.APIVersion != "" + yyq3190[2] = true + yyq3190[3] = true + yyq3190[4] = x.Reason != "" + yyq3190[5] = x.Message != "" + yyq3190[6] = true + yyq3190[7] = true + yyq3190[8] = true + yyq3190[9] = x.Count != 0 + yyq3190[10] = x.Type != "" + var yynn3190 int + if yyr3190 || yy2arr3190 { r.EncodeArrayStart(11) } else { - yynn3167 = 0 - for _, b := range yyq3167 { + yynn3190 = 0 + for _, b := range yyq3190 { if b { - yynn3167++ + yynn3190++ } } - r.EncodeMapStart(yynn3167) - yynn3167 = 0 + r.EncodeMapStart(yynn3190) + yynn3190 = 0 } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[0] { - yym3169 := z.EncBinary() - _ = yym3169 + if yyq3190[0] { + yym3192 := z.EncBinary() + _ = yym3192 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39784,23 +40055,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3167[0] { + if yyq3190[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3170 := z.EncBinary() - _ = yym3170 + yym3193 := z.EncBinary() + _ = yym3193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[1] { - yym3172 := z.EncBinary() - _ = yym3172 + if yyq3190[1] { + yym3195 := z.EncBinary() + _ = yym3195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39809,57 +40080,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3167[1] { + if yyq3190[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3173 := z.EncBinary() - _ = yym3173 + yym3196 := z.EncBinary() + _ = yym3196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[2] { - yy3175 := &x.ObjectMeta - yy3175.CodecEncodeSelf(e) + if yyq3190[2] { + yy3198 := &x.ObjectMeta + yy3198.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3167[2] { + if yyq3190[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3176 := &x.ObjectMeta - yy3176.CodecEncodeSelf(e) + yy3199 := &x.ObjectMeta + yy3199.CodecEncodeSelf(e) } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[3] { - yy3178 := &x.InvolvedObject - yy3178.CodecEncodeSelf(e) + if yyq3190[3] { + yy3201 := &x.InvolvedObject + yy3201.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3167[3] { + if yyq3190[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3179 := &x.InvolvedObject - yy3179.CodecEncodeSelf(e) + yy3202 := &x.InvolvedObject + yy3202.CodecEncodeSelf(e) } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[4] { - yym3181 := z.EncBinary() - _ = yym3181 + if yyq3190[4] { + yym3204 := z.EncBinary() + _ = yym3204 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -39868,23 +40139,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3167[4] { + if yyq3190[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3182 := z.EncBinary() - _ = yym3182 + yym3205 := z.EncBinary() + _ = yym3205 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[5] { - yym3184 := z.EncBinary() - _ = yym3184 + if yyq3190[5] { + yym3207 := z.EncBinary() + _ = yym3207 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39893,114 +40164,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3167[5] { + if yyq3190[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3185 := z.EncBinary() - _ = yym3185 + yym3208 := z.EncBinary() + _ = yym3208 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[6] { - yy3187 := &x.Source - yy3187.CodecEncodeSelf(e) + if yyq3190[6] { + yy3210 := &x.Source + yy3210.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3167[6] { + if yyq3190[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3188 := &x.Source - yy3188.CodecEncodeSelf(e) + yy3211 := &x.Source + yy3211.CodecEncodeSelf(e) } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[7] { - yy3190 := &x.FirstTimestamp - yym3191 := z.EncBinary() - _ = yym3191 + if yyq3190[7] { + yy3213 := &x.FirstTimestamp + yym3214 := z.EncBinary() + _ = yym3214 if false { - } else if z.HasExtensions() && z.EncExt(yy3190) { - } else if yym3191 { - z.EncBinaryMarshal(yy3190) - } else if !yym3191 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3190) + } else if z.HasExtensions() && z.EncExt(yy3213) { + } else if yym3214 { + z.EncBinaryMarshal(yy3213) + } else if !yym3214 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3213) } else { - z.EncFallback(yy3190) + z.EncFallback(yy3213) } } else { r.EncodeNil() } } else { - if yyq3167[7] { + if yyq3190[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3192 := &x.FirstTimestamp - yym3193 := z.EncBinary() - _ = yym3193 + yy3215 := &x.FirstTimestamp + yym3216 := z.EncBinary() + _ = yym3216 if false { - } else if z.HasExtensions() && z.EncExt(yy3192) { - } else if yym3193 { - z.EncBinaryMarshal(yy3192) - } else if !yym3193 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3192) + } else if z.HasExtensions() && z.EncExt(yy3215) { + } else if yym3216 { + z.EncBinaryMarshal(yy3215) + } else if !yym3216 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3215) } else { - z.EncFallback(yy3192) + z.EncFallback(yy3215) } } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[8] { - yy3195 := &x.LastTimestamp - yym3196 := z.EncBinary() - _ = yym3196 + if yyq3190[8] { + yy3218 := &x.LastTimestamp + yym3219 := z.EncBinary() + _ = yym3219 if false { - } else if z.HasExtensions() && z.EncExt(yy3195) { - } else if yym3196 { - z.EncBinaryMarshal(yy3195) - } else if !yym3196 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3195) + } else if z.HasExtensions() && z.EncExt(yy3218) { + } else if yym3219 { + z.EncBinaryMarshal(yy3218) + } else if !yym3219 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3218) } else { - z.EncFallback(yy3195) + z.EncFallback(yy3218) } } else { r.EncodeNil() } } else { - if yyq3167[8] { + if yyq3190[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3197 := &x.LastTimestamp - yym3198 := z.EncBinary() - _ = yym3198 + yy3220 := &x.LastTimestamp + yym3221 := z.EncBinary() + _ = yym3221 if false { - } else if z.HasExtensions() && z.EncExt(yy3197) { - } else if yym3198 { - z.EncBinaryMarshal(yy3197) - } else if !yym3198 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3197) + } else if z.HasExtensions() && z.EncExt(yy3220) { + } else if yym3221 { + z.EncBinaryMarshal(yy3220) + } else if !yym3221 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3220) } else { - z.EncFallback(yy3197) + z.EncFallback(yy3220) } } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[9] { - yym3200 := z.EncBinary() - _ = yym3200 + if yyq3190[9] { + yym3223 := z.EncBinary() + _ = yym3223 if false { } else { r.EncodeInt(int64(x.Count)) @@ -40009,23 +40280,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3167[9] { + if yyq3190[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3201 := z.EncBinary() - _ = yym3201 + yym3224 := z.EncBinary() + _ = yym3224 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3167[10] { - yym3203 := z.EncBinary() - _ = yym3203 + if yyq3190[10] { + yym3226 := z.EncBinary() + _ = yym3226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -40034,19 +40305,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3167[10] { + if yyq3190[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3204 := z.EncBinary() - _ = yym3204 + yym3227 := z.EncBinary() + _ = yym3227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3167 || yy2arr3167 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40059,25 +40330,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3205 := z.DecBinary() - _ = yym3205 + yym3228 := z.DecBinary() + _ = yym3228 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3206 := r.ContainerType() - if yyct3206 == codecSelferValueTypeMap1234 { - yyl3206 := r.ReadMapStart() - if yyl3206 == 0 { + yyct3229 := r.ContainerType() + if yyct3229 == codecSelferValueTypeMap1234 { + yyl3229 := r.ReadMapStart() + if yyl3229 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3206, d) + x.codecDecodeSelfFromMap(yyl3229, d) } - } else if yyct3206 == codecSelferValueTypeArray1234 { - yyl3206 := r.ReadArrayStart() - if yyl3206 == 0 { + } else if yyct3229 == codecSelferValueTypeArray1234 { + yyl3229 := r.ReadArrayStart() + if yyl3229 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3206, d) + x.codecDecodeSelfFromArray(yyl3229, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40089,12 +40360,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3207Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3207Slc - var yyhl3207 bool = l >= 0 - for yyj3207 := 0; ; yyj3207++ { - if yyhl3207 { - if yyj3207 >= l { + var yys3230Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3230Slc + var yyhl3230 bool = l >= 0 + for yyj3230 := 0; ; yyj3230++ { + if yyhl3230 { + if yyj3230 >= l { break } } else { @@ -40103,10 +40374,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3207Slc = r.DecodeBytes(yys3207Slc, true, true) - yys3207 := string(yys3207Slc) + yys3230Slc = r.DecodeBytes(yys3230Slc, true, true) + yys3230 := string(yys3230Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3207 { + switch yys3230 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40123,15 +40394,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3210 := &x.ObjectMeta - yyv3210.CodecDecodeSelf(d) + yyv3233 := &x.ObjectMeta + yyv3233.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3211 := &x.InvolvedObject - yyv3211.CodecDecodeSelf(d) + yyv3234 := &x.InvolvedObject + yyv3234.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -40149,41 +40420,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3214 := &x.Source - yyv3214.CodecDecodeSelf(d) + yyv3237 := &x.Source + yyv3237.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3215 := &x.FirstTimestamp - yym3216 := z.DecBinary() - _ = yym3216 + yyv3238 := &x.FirstTimestamp + yym3239 := z.DecBinary() + _ = yym3239 if false { - } else if z.HasExtensions() && z.DecExt(yyv3215) { - } else if yym3216 { - z.DecBinaryUnmarshal(yyv3215) - } else if !yym3216 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3215) + } else if z.HasExtensions() && z.DecExt(yyv3238) { + } else if yym3239 { + z.DecBinaryUnmarshal(yyv3238) + } else if !yym3239 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3238) } else { - z.DecFallback(yyv3215, false) + z.DecFallback(yyv3238, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3217 := &x.LastTimestamp - yym3218 := z.DecBinary() - _ = yym3218 + yyv3240 := &x.LastTimestamp + yym3241 := z.DecBinary() + _ = yym3241 if false { - } else if z.HasExtensions() && z.DecExt(yyv3217) { - } else if yym3218 { - z.DecBinaryUnmarshal(yyv3217) - } else if !yym3218 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3217) + } else if z.HasExtensions() && z.DecExt(yyv3240) { + } else if yym3241 { + z.DecBinaryUnmarshal(yyv3240) + } else if !yym3241 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3240) } else { - z.DecFallback(yyv3217, false) + z.DecFallback(yyv3240, false) } } case "count": @@ -40199,9 +40470,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3207) - } // end switch yys3207 - } // end for yyj3207 + z.DecStructFieldNotFound(-1, yys3230) + } // end switch yys3230 + } // end for yyj3230 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40209,16 +40480,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3221 int - var yyb3221 bool - var yyhl3221 bool = l >= 0 - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + var yyj3244 int + var yyb3244 bool + var yyhl3244 bool = l >= 0 + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40228,13 +40499,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40244,13 +40515,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40258,16 +40529,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3224 := &x.ObjectMeta - yyv3224.CodecDecodeSelf(d) + yyv3247 := &x.ObjectMeta + yyv3247.CodecDecodeSelf(d) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40275,16 +40546,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3225 := &x.InvolvedObject - yyv3225.CodecDecodeSelf(d) + yyv3248 := &x.InvolvedObject + yyv3248.CodecDecodeSelf(d) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40294,13 +40565,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40310,13 +40581,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40324,16 +40595,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3228 := &x.Source - yyv3228.CodecDecodeSelf(d) + yyv3251 := &x.Source + yyv3251.CodecDecodeSelf(d) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40341,26 +40612,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3229 := &x.FirstTimestamp - yym3230 := z.DecBinary() - _ = yym3230 + yyv3252 := &x.FirstTimestamp + yym3253 := z.DecBinary() + _ = yym3253 if false { - } else if z.HasExtensions() && z.DecExt(yyv3229) { - } else if yym3230 { - z.DecBinaryUnmarshal(yyv3229) - } else if !yym3230 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3229) + } else if z.HasExtensions() && z.DecExt(yyv3252) { + } else if yym3253 { + z.DecBinaryUnmarshal(yyv3252) + } else if !yym3253 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3252) } else { - z.DecFallback(yyv3229, false) + z.DecFallback(yyv3252, false) } } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40368,26 +40639,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3231 := &x.LastTimestamp - yym3232 := z.DecBinary() - _ = yym3232 + yyv3254 := &x.LastTimestamp + yym3255 := z.DecBinary() + _ = yym3255 if false { - } else if z.HasExtensions() && z.DecExt(yyv3231) { - } else if yym3232 { - z.DecBinaryUnmarshal(yyv3231) - } else if !yym3232 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3231) + } else if z.HasExtensions() && z.DecExt(yyv3254) { + } else if yym3255 { + z.DecBinaryUnmarshal(yyv3254) + } else if !yym3255 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3254) } else { - z.DecFallback(yyv3231, false) + z.DecFallback(yyv3254, false) } } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40397,13 +40668,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40414,17 +40685,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3244++ + if yyhl3244 { + yyb3244 = yyj3244 > l } else { - yyb3221 = r.CheckBreak() + yyb3244 = r.CheckBreak() } - if yyb3221 { + if yyb3244 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3221-1, "") + z.DecStructFieldNotFound(yyj3244-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40436,37 +40707,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3235 := z.EncBinary() - _ = yym3235 + yym3258 := z.EncBinary() + _ = yym3258 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3236 := !z.EncBinary() - yy2arr3236 := z.EncBasicHandle().StructToArray - var yyq3236 [4]bool - _, _, _ = yysep3236, yyq3236, yy2arr3236 - const yyr3236 bool = false - yyq3236[0] = x.Kind != "" - yyq3236[1] = x.APIVersion != "" - yyq3236[2] = true - var yynn3236 int - if yyr3236 || yy2arr3236 { + yysep3259 := !z.EncBinary() + yy2arr3259 := z.EncBasicHandle().StructToArray + var yyq3259 [4]bool + _, _, _ = yysep3259, yyq3259, yy2arr3259 + const yyr3259 bool = false + yyq3259[0] = x.Kind != "" + yyq3259[1] = x.APIVersion != "" + yyq3259[2] = true + var yynn3259 int + if yyr3259 || yy2arr3259 { r.EncodeArrayStart(4) } else { - yynn3236 = 1 - for _, b := range yyq3236 { + yynn3259 = 1 + for _, b := range yyq3259 { if b { - yynn3236++ + yynn3259++ } } - r.EncodeMapStart(yynn3236) - yynn3236 = 0 + r.EncodeMapStart(yynn3259) + yynn3259 = 0 } - if yyr3236 || yy2arr3236 { + if yyr3259 || yy2arr3259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3236[0] { - yym3238 := z.EncBinary() - _ = yym3238 + if yyq3259[0] { + yym3261 := z.EncBinary() + _ = yym3261 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40475,23 +40746,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3236[0] { + if yyq3259[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3239 := z.EncBinary() - _ = yym3239 + yym3262 := z.EncBinary() + _ = yym3262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3236 || yy2arr3236 { + if yyr3259 || yy2arr3259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3236[1] { - yym3241 := z.EncBinary() - _ = yym3241 + if yyq3259[1] { + yym3264 := z.EncBinary() + _ = yym3264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40500,54 +40771,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3236[1] { + if yyq3259[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3242 := z.EncBinary() - _ = yym3242 + yym3265 := z.EncBinary() + _ = yym3265 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3236 || yy2arr3236 { + if yyr3259 || yy2arr3259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3236[2] { - yy3244 := &x.ListMeta - yym3245 := z.EncBinary() - _ = yym3245 + if yyq3259[2] { + yy3267 := &x.ListMeta + yym3268 := z.EncBinary() + _ = yym3268 if false { - } else if z.HasExtensions() && z.EncExt(yy3244) { + } else if z.HasExtensions() && z.EncExt(yy3267) { } else { - z.EncFallback(yy3244) + z.EncFallback(yy3267) } } else { r.EncodeNil() } } else { - if yyq3236[2] { + if yyq3259[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3246 := &x.ListMeta - yym3247 := z.EncBinary() - _ = yym3247 + yy3269 := &x.ListMeta + yym3270 := z.EncBinary() + _ = yym3270 if false { - } else if z.HasExtensions() && z.EncExt(yy3246) { + } else if z.HasExtensions() && z.EncExt(yy3269) { } else { - z.EncFallback(yy3246) + z.EncFallback(yy3269) } } } - if yyr3236 || yy2arr3236 { + if yyr3259 || yy2arr3259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3249 := z.EncBinary() - _ = yym3249 + yym3272 := z.EncBinary() + _ = yym3272 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -40560,15 +40831,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3250 := z.EncBinary() - _ = yym3250 + yym3273 := z.EncBinary() + _ = yym3273 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3236 || yy2arr3236 { + if yyr3259 || yy2arr3259 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40581,25 +40852,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3251 := z.DecBinary() - _ = yym3251 + yym3274 := z.DecBinary() + _ = yym3274 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3252 := r.ContainerType() - if yyct3252 == codecSelferValueTypeMap1234 { - yyl3252 := r.ReadMapStart() - if yyl3252 == 0 { + yyct3275 := r.ContainerType() + if yyct3275 == codecSelferValueTypeMap1234 { + yyl3275 := r.ReadMapStart() + if yyl3275 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3252, d) + x.codecDecodeSelfFromMap(yyl3275, d) } - } else if yyct3252 == codecSelferValueTypeArray1234 { - yyl3252 := r.ReadArrayStart() - if yyl3252 == 0 { + } else if yyct3275 == codecSelferValueTypeArray1234 { + yyl3275 := r.ReadArrayStart() + if yyl3275 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3252, d) + x.codecDecodeSelfFromArray(yyl3275, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40611,12 +40882,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3253Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3253Slc - var yyhl3253 bool = l >= 0 - for yyj3253 := 0; ; yyj3253++ { - if yyhl3253 { - if yyj3253 >= l { + var yys3276Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3276Slc + var yyhl3276 bool = l >= 0 + for yyj3276 := 0; ; yyj3276++ { + if yyhl3276 { + if yyj3276 >= l { break } } else { @@ -40625,10 +40896,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3253Slc = r.DecodeBytes(yys3253Slc, true, true) - yys3253 := string(yys3253Slc) + yys3276Slc = r.DecodeBytes(yys3276Slc, true, true) + yys3276 := string(yys3276Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3253 { + switch yys3276 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40645,31 +40916,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3256 := &x.ListMeta - yym3257 := z.DecBinary() - _ = yym3257 + yyv3279 := &x.ListMeta + yym3280 := z.DecBinary() + _ = yym3280 if false { - } else if z.HasExtensions() && z.DecExt(yyv3256) { + } else if z.HasExtensions() && z.DecExt(yyv3279) { } else { - z.DecFallback(yyv3256, false) + z.DecFallback(yyv3279, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3258 := &x.Items - yym3259 := z.DecBinary() - _ = yym3259 + yyv3281 := &x.Items + yym3282 := z.DecBinary() + _ = yym3282 if false { } else { - h.decSliceEvent((*[]Event)(yyv3258), d) + h.decSliceEvent((*[]Event)(yyv3281), d) } } default: - z.DecStructFieldNotFound(-1, yys3253) - } // end switch yys3253 - } // end for yyj3253 + z.DecStructFieldNotFound(-1, yys3276) + } // end switch yys3276 + } // end for yyj3276 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40677,16 +40948,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3260 int - var yyb3260 bool - var yyhl3260 bool = l >= 0 - yyj3260++ - if yyhl3260 { - yyb3260 = yyj3260 > l + var yyj3283 int + var yyb3283 bool + var yyhl3283 bool = l >= 0 + yyj3283++ + if yyhl3283 { + yyb3283 = yyj3283 > l } else { - yyb3260 = r.CheckBreak() + yyb3283 = r.CheckBreak() } - if yyb3260 { + if yyb3283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40696,13 +40967,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3260++ - if yyhl3260 { - yyb3260 = yyj3260 > l + yyj3283++ + if yyhl3283 { + yyb3283 = yyj3283 > l } else { - yyb3260 = r.CheckBreak() + yyb3283 = r.CheckBreak() } - if yyb3260 { + if yyb3283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40712,13 +40983,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3260++ - if yyhl3260 { - yyb3260 = yyj3260 > l + yyj3283++ + if yyhl3283 { + yyb3283 = yyj3283 > l } else { - yyb3260 = r.CheckBreak() + yyb3283 = r.CheckBreak() } - if yyb3260 { + if yyb3283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40726,22 +40997,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3263 := &x.ListMeta - yym3264 := z.DecBinary() - _ = yym3264 + yyv3286 := &x.ListMeta + yym3287 := z.DecBinary() + _ = yym3287 if false { - } else if z.HasExtensions() && z.DecExt(yyv3263) { + } else if z.HasExtensions() && z.DecExt(yyv3286) { } else { - z.DecFallback(yyv3263, false) + z.DecFallback(yyv3286, false) } } - yyj3260++ - if yyhl3260 { - yyb3260 = yyj3260 > l + yyj3283++ + if yyhl3283 { + yyb3283 = yyj3283 > l } else { - yyb3260 = r.CheckBreak() + yyb3283 = r.CheckBreak() } - if yyb3260 { + if yyb3283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40749,26 +41020,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3265 := &x.Items - yym3266 := z.DecBinary() - _ = yym3266 + yyv3288 := &x.Items + yym3289 := z.DecBinary() + _ = yym3289 if false { } else { - h.decSliceEvent((*[]Event)(yyv3265), d) + h.decSliceEvent((*[]Event)(yyv3288), d) } } for { - yyj3260++ - if yyhl3260 { - yyb3260 = yyj3260 > l + yyj3283++ + if yyhl3283 { + yyb3283 = yyj3283 > l } else { - yyb3260 = r.CheckBreak() + yyb3283 = r.CheckBreak() } - if yyb3260 { + if yyb3283 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3260-1, "") + z.DecStructFieldNotFound(yyj3283-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40780,37 +41051,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3267 := z.EncBinary() - _ = yym3267 + yym3290 := z.EncBinary() + _ = yym3290 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3268 := !z.EncBinary() - yy2arr3268 := z.EncBasicHandle().StructToArray - var yyq3268 [4]bool - _, _, _ = yysep3268, yyq3268, yy2arr3268 - const yyr3268 bool = false - yyq3268[0] = x.Kind != "" - yyq3268[1] = x.APIVersion != "" - yyq3268[2] = true - var yynn3268 int - if yyr3268 || yy2arr3268 { + yysep3291 := !z.EncBinary() + yy2arr3291 := z.EncBasicHandle().StructToArray + var yyq3291 [4]bool + _, _, _ = yysep3291, yyq3291, yy2arr3291 + const yyr3291 bool = false + yyq3291[0] = x.Kind != "" + yyq3291[1] = x.APIVersion != "" + yyq3291[2] = true + var yynn3291 int + if yyr3291 || yy2arr3291 { r.EncodeArrayStart(4) } else { - yynn3268 = 1 - for _, b := range yyq3268 { + yynn3291 = 1 + for _, b := range yyq3291 { if b { - yynn3268++ + yynn3291++ } } - r.EncodeMapStart(yynn3268) - yynn3268 = 0 + r.EncodeMapStart(yynn3291) + yynn3291 = 0 } - if yyr3268 || yy2arr3268 { + if yyr3291 || yy2arr3291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3268[0] { - yym3270 := z.EncBinary() - _ = yym3270 + if yyq3291[0] { + yym3293 := z.EncBinary() + _ = yym3293 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40819,23 +41090,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3268[0] { + if yyq3291[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3271 := z.EncBinary() - _ = yym3271 + yym3294 := z.EncBinary() + _ = yym3294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3268 || yy2arr3268 { + if yyr3291 || yy2arr3291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3268[1] { - yym3273 := z.EncBinary() - _ = yym3273 + if yyq3291[1] { + yym3296 := z.EncBinary() + _ = yym3296 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40844,54 +41115,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3268[1] { + if yyq3291[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3274 := z.EncBinary() - _ = yym3274 + yym3297 := z.EncBinary() + _ = yym3297 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3268 || yy2arr3268 { + if yyr3291 || yy2arr3291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3268[2] { - yy3276 := &x.ListMeta - yym3277 := z.EncBinary() - _ = yym3277 + if yyq3291[2] { + yy3299 := &x.ListMeta + yym3300 := z.EncBinary() + _ = yym3300 if false { - } else if z.HasExtensions() && z.EncExt(yy3276) { + } else if z.HasExtensions() && z.EncExt(yy3299) { } else { - z.EncFallback(yy3276) + z.EncFallback(yy3299) } } else { r.EncodeNil() } } else { - if yyq3268[2] { + if yyq3291[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3278 := &x.ListMeta - yym3279 := z.EncBinary() - _ = yym3279 + yy3301 := &x.ListMeta + yym3302 := z.EncBinary() + _ = yym3302 if false { - } else if z.HasExtensions() && z.EncExt(yy3278) { + } else if z.HasExtensions() && z.EncExt(yy3301) { } else { - z.EncFallback(yy3278) + z.EncFallback(yy3301) } } } - if yyr3268 || yy2arr3268 { + if yyr3291 || yy2arr3291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3281 := z.EncBinary() - _ = yym3281 + yym3304 := z.EncBinary() + _ = yym3304 if false { } else { h.encSliceruntime_Object(([]pkg8_runtime.Object)(x.Items), e) @@ -40904,15 +41175,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3282 := z.EncBinary() - _ = yym3282 + yym3305 := z.EncBinary() + _ = yym3305 if false { } else { h.encSliceruntime_Object(([]pkg8_runtime.Object)(x.Items), e) } } } - if yyr3268 || yy2arr3268 { + if yyr3291 || yy2arr3291 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40925,25 +41196,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3283 := z.DecBinary() - _ = yym3283 + yym3306 := z.DecBinary() + _ = yym3306 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3284 := r.ContainerType() - if yyct3284 == codecSelferValueTypeMap1234 { - yyl3284 := r.ReadMapStart() - if yyl3284 == 0 { + yyct3307 := r.ContainerType() + if yyct3307 == codecSelferValueTypeMap1234 { + yyl3307 := r.ReadMapStart() + if yyl3307 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3284, d) + x.codecDecodeSelfFromMap(yyl3307, d) } - } else if yyct3284 == codecSelferValueTypeArray1234 { - yyl3284 := r.ReadArrayStart() - if yyl3284 == 0 { + } else if yyct3307 == codecSelferValueTypeArray1234 { + yyl3307 := r.ReadArrayStart() + if yyl3307 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3284, d) + x.codecDecodeSelfFromArray(yyl3307, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40955,12 +41226,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3285Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3285Slc - var yyhl3285 bool = l >= 0 - for yyj3285 := 0; ; yyj3285++ { - if yyhl3285 { - if yyj3285 >= l { + var yys3308Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3308Slc + var yyhl3308 bool = l >= 0 + for yyj3308 := 0; ; yyj3308++ { + if yyhl3308 { + if yyj3308 >= l { break } } else { @@ -40969,10 +41240,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3285Slc = r.DecodeBytes(yys3285Slc, true, true) - yys3285 := string(yys3285Slc) + yys3308Slc = r.DecodeBytes(yys3308Slc, true, true) + yys3308 := string(yys3308Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3285 { + switch yys3308 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40989,31 +41260,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3288 := &x.ListMeta - yym3289 := z.DecBinary() - _ = yym3289 + yyv3311 := &x.ListMeta + yym3312 := z.DecBinary() + _ = yym3312 if false { - } else if z.HasExtensions() && z.DecExt(yyv3288) { + } else if z.HasExtensions() && z.DecExt(yyv3311) { } else { - z.DecFallback(yyv3288, false) + z.DecFallback(yyv3311, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3290 := &x.Items - yym3291 := z.DecBinary() - _ = yym3291 + yyv3313 := &x.Items + yym3314 := z.DecBinary() + _ = yym3314 if false { } else { - h.decSliceruntime_Object((*[]pkg8_runtime.Object)(yyv3290), d) + h.decSliceruntime_Object((*[]pkg8_runtime.Object)(yyv3313), d) } } default: - z.DecStructFieldNotFound(-1, yys3285) - } // end switch yys3285 - } // end for yyj3285 + z.DecStructFieldNotFound(-1, yys3308) + } // end switch yys3308 + } // end for yyj3308 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41021,16 +41292,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3292 int - var yyb3292 bool - var yyhl3292 bool = l >= 0 - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + var yyj3315 int + var yyb3315 bool + var yyhl3315 bool = l >= 0 + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41040,13 +41311,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41056,13 +41327,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41070,22 +41341,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3295 := &x.ListMeta - yym3296 := z.DecBinary() - _ = yym3296 + yyv3318 := &x.ListMeta + yym3319 := z.DecBinary() + _ = yym3319 if false { - } else if z.HasExtensions() && z.DecExt(yyv3295) { + } else if z.HasExtensions() && z.DecExt(yyv3318) { } else { - z.DecFallback(yyv3295, false) + z.DecFallback(yyv3318, false) } } - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41093,26 +41364,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3297 := &x.Items - yym3298 := z.DecBinary() - _ = yym3298 + yyv3320 := &x.Items + yym3321 := z.DecBinary() + _ = yym3321 if false { } else { - h.decSliceruntime_Object((*[]pkg8_runtime.Object)(yyv3297), d) + h.decSliceruntime_Object((*[]pkg8_runtime.Object)(yyv3320), d) } } for { - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3292-1, "") + z.DecStructFieldNotFound(yyj3315-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41121,8 +41392,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3299 := z.EncBinary() - _ = yym3299 + yym3322 := z.EncBinary() + _ = yym3322 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41134,8 +41405,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3300 := z.DecBinary() - _ = yym3300 + yym3323 := z.DecBinary() + _ = yym3323 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41150,53 +41421,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3301 := z.EncBinary() - _ = yym3301 + yym3324 := z.EncBinary() + _ = yym3324 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3302 := !z.EncBinary() - yy2arr3302 := z.EncBasicHandle().StructToArray - var yyq3302 [6]bool - _, _, _ = yysep3302, yyq3302, yy2arr3302 - const yyr3302 bool = false - yyq3302[0] = x.Type != "" - yyq3302[1] = len(x.Max) != 0 - yyq3302[2] = len(x.Min) != 0 - yyq3302[3] = len(x.Default) != 0 - yyq3302[4] = len(x.DefaultRequest) != 0 - yyq3302[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3302 int - if yyr3302 || yy2arr3302 { + yysep3325 := !z.EncBinary() + yy2arr3325 := z.EncBasicHandle().StructToArray + var yyq3325 [6]bool + _, _, _ = yysep3325, yyq3325, yy2arr3325 + const yyr3325 bool = false + yyq3325[0] = x.Type != "" + yyq3325[1] = len(x.Max) != 0 + yyq3325[2] = len(x.Min) != 0 + yyq3325[3] = len(x.Default) != 0 + yyq3325[4] = len(x.DefaultRequest) != 0 + yyq3325[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3325 int + if yyr3325 || yy2arr3325 { r.EncodeArrayStart(6) } else { - yynn3302 = 0 - for _, b := range yyq3302 { + yynn3325 = 0 + for _, b := range yyq3325 { if b { - yynn3302++ + yynn3325++ } } - r.EncodeMapStart(yynn3302) - yynn3302 = 0 + r.EncodeMapStart(yynn3325) + yynn3325 = 0 } - if yyr3302 || yy2arr3302 { + if yyr3325 || yy2arr3325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3302[0] { + if yyq3325[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3302[0] { + if yyq3325[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3302 || yy2arr3302 { + if yyr3325 || yy2arr3325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3302[1] { + if yyq3325[1] { if x.Max == nil { r.EncodeNil() } else { @@ -41206,7 +41477,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3302[1] { + if yyq3325[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41217,9 +41488,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3302 || yy2arr3302 { + if yyr3325 || yy2arr3325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3302[2] { + if yyq3325[2] { if x.Min == nil { r.EncodeNil() } else { @@ -41229,7 +41500,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3302[2] { + if yyq3325[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41240,9 +41511,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3302 || yy2arr3302 { + if yyr3325 || yy2arr3325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3302[3] { + if yyq3325[3] { if x.Default == nil { r.EncodeNil() } else { @@ -41252,7 +41523,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3302[3] { + if yyq3325[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41263,9 +41534,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3302 || yy2arr3302 { + if yyr3325 || yy2arr3325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3302[4] { + if yyq3325[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -41275,7 +41546,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3302[4] { + if yyq3325[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41286,9 +41557,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3302 || yy2arr3302 { + if yyr3325 || yy2arr3325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3302[5] { + if yyq3325[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -41298,7 +41569,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3302[5] { + if yyq3325[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41309,7 +41580,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3302 || yy2arr3302 { + if yyr3325 || yy2arr3325 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41322,25 +41593,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3309 := z.DecBinary() - _ = yym3309 + yym3332 := z.DecBinary() + _ = yym3332 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3310 := r.ContainerType() - if yyct3310 == codecSelferValueTypeMap1234 { - yyl3310 := r.ReadMapStart() - if yyl3310 == 0 { + yyct3333 := r.ContainerType() + if yyct3333 == codecSelferValueTypeMap1234 { + yyl3333 := r.ReadMapStart() + if yyl3333 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3310, d) + x.codecDecodeSelfFromMap(yyl3333, d) } - } else if yyct3310 == codecSelferValueTypeArray1234 { - yyl3310 := r.ReadArrayStart() - if yyl3310 == 0 { + } else if yyct3333 == codecSelferValueTypeArray1234 { + yyl3333 := r.ReadArrayStart() + if yyl3333 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3310, d) + x.codecDecodeSelfFromArray(yyl3333, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41352,12 +41623,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3311Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3311Slc - var yyhl3311 bool = l >= 0 - for yyj3311 := 0; ; yyj3311++ { - if yyhl3311 { - if yyj3311 >= l { + var yys3334Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3334Slc + var yyhl3334 bool = l >= 0 + for yyj3334 := 0; ; yyj3334++ { + if yyhl3334 { + if yyj3334 >= l { break } } else { @@ -41366,10 +41637,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3311Slc = r.DecodeBytes(yys3311Slc, true, true) - yys3311 := string(yys3311Slc) + yys3334Slc = r.DecodeBytes(yys3334Slc, true, true) + yys3334 := string(yys3334Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3311 { + switch yys3334 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -41380,41 +41651,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3313 := &x.Max - yyv3313.CodecDecodeSelf(d) + yyv3336 := &x.Max + yyv3336.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3314 := &x.Min - yyv3314.CodecDecodeSelf(d) + yyv3337 := &x.Min + yyv3337.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3315 := &x.Default - yyv3315.CodecDecodeSelf(d) + yyv3338 := &x.Default + yyv3338.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3316 := &x.DefaultRequest - yyv3316.CodecDecodeSelf(d) + yyv3339 := &x.DefaultRequest + yyv3339.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3317 := &x.MaxLimitRequestRatio - yyv3317.CodecDecodeSelf(d) + yyv3340 := &x.MaxLimitRequestRatio + yyv3340.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3311) - } // end switch yys3311 - } // end for yyj3311 + z.DecStructFieldNotFound(-1, yys3334) + } // end switch yys3334 + } // end for yyj3334 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41422,16 +41693,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3318 int - var yyb3318 bool - var yyhl3318 bool = l >= 0 - yyj3318++ - if yyhl3318 { - yyb3318 = yyj3318 > l + var yyj3341 int + var yyb3341 bool + var yyhl3341 bool = l >= 0 + yyj3341++ + if yyhl3341 { + yyb3341 = yyj3341 > l } else { - yyb3318 = r.CheckBreak() + yyb3341 = r.CheckBreak() } - if yyb3318 { + if yyb3341 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41441,13 +41712,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3318++ - if yyhl3318 { - yyb3318 = yyj3318 > l + yyj3341++ + if yyhl3341 { + yyb3341 = yyj3341 > l } else { - yyb3318 = r.CheckBreak() + yyb3341 = r.CheckBreak() } - if yyb3318 { + if yyb3341 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41455,16 +41726,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3320 := &x.Max - yyv3320.CodecDecodeSelf(d) + yyv3343 := &x.Max + yyv3343.CodecDecodeSelf(d) } - yyj3318++ - if yyhl3318 { - yyb3318 = yyj3318 > l + yyj3341++ + if yyhl3341 { + yyb3341 = yyj3341 > l } else { - yyb3318 = r.CheckBreak() + yyb3341 = r.CheckBreak() } - if yyb3318 { + if yyb3341 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41472,16 +41743,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3321 := &x.Min - yyv3321.CodecDecodeSelf(d) + yyv3344 := &x.Min + yyv3344.CodecDecodeSelf(d) } - yyj3318++ - if yyhl3318 { - yyb3318 = yyj3318 > l + yyj3341++ + if yyhl3341 { + yyb3341 = yyj3341 > l } else { - yyb3318 = r.CheckBreak() + yyb3341 = r.CheckBreak() } - if yyb3318 { + if yyb3341 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41489,16 +41760,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3322 := &x.Default - yyv3322.CodecDecodeSelf(d) + yyv3345 := &x.Default + yyv3345.CodecDecodeSelf(d) } - yyj3318++ - if yyhl3318 { - yyb3318 = yyj3318 > l + yyj3341++ + if yyhl3341 { + yyb3341 = yyj3341 > l } else { - yyb3318 = r.CheckBreak() + yyb3341 = r.CheckBreak() } - if yyb3318 { + if yyb3341 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41506,16 +41777,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3323 := &x.DefaultRequest - yyv3323.CodecDecodeSelf(d) + yyv3346 := &x.DefaultRequest + yyv3346.CodecDecodeSelf(d) } - yyj3318++ - if yyhl3318 { - yyb3318 = yyj3318 > l + yyj3341++ + if yyhl3341 { + yyb3341 = yyj3341 > l } else { - yyb3318 = r.CheckBreak() + yyb3341 = r.CheckBreak() } - if yyb3318 { + if yyb3341 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41523,21 +41794,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3324 := &x.MaxLimitRequestRatio - yyv3324.CodecDecodeSelf(d) + yyv3347 := &x.MaxLimitRequestRatio + yyv3347.CodecDecodeSelf(d) } for { - yyj3318++ - if yyhl3318 { - yyb3318 = yyj3318 > l + yyj3341++ + if yyhl3341 { + yyb3341 = yyj3341 > l } else { - yyb3318 = r.CheckBreak() + yyb3341 = r.CheckBreak() } - if yyb3318 { + if yyb3341 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3318-1, "") + z.DecStructFieldNotFound(yyj3341-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41549,36 +41820,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3325 := z.EncBinary() - _ = yym3325 + yym3348 := z.EncBinary() + _ = yym3348 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3326 := !z.EncBinary() - yy2arr3326 := z.EncBasicHandle().StructToArray - var yyq3326 [1]bool - _, _, _ = yysep3326, yyq3326, yy2arr3326 - const yyr3326 bool = false - var yynn3326 int - if yyr3326 || yy2arr3326 { + yysep3349 := !z.EncBinary() + yy2arr3349 := z.EncBasicHandle().StructToArray + var yyq3349 [1]bool + _, _, _ = yysep3349, yyq3349, yy2arr3349 + const yyr3349 bool = false + var yynn3349 int + if yyr3349 || yy2arr3349 { r.EncodeArrayStart(1) } else { - yynn3326 = 1 - for _, b := range yyq3326 { + yynn3349 = 1 + for _, b := range yyq3349 { if b { - yynn3326++ + yynn3349++ } } - r.EncodeMapStart(yynn3326) - yynn3326 = 0 + r.EncodeMapStart(yynn3349) + yynn3349 = 0 } - if yyr3326 || yy2arr3326 { + if yyr3349 || yy2arr3349 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3328 := z.EncBinary() - _ = yym3328 + yym3351 := z.EncBinary() + _ = yym3351 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -41591,15 +41862,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3329 := z.EncBinary() - _ = yym3329 + yym3352 := z.EncBinary() + _ = yym3352 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3326 || yy2arr3326 { + if yyr3349 || yy2arr3349 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41612,25 +41883,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3330 := z.DecBinary() - _ = yym3330 + yym3353 := z.DecBinary() + _ = yym3353 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3331 := r.ContainerType() - if yyct3331 == codecSelferValueTypeMap1234 { - yyl3331 := r.ReadMapStart() - if yyl3331 == 0 { + yyct3354 := r.ContainerType() + if yyct3354 == codecSelferValueTypeMap1234 { + yyl3354 := r.ReadMapStart() + if yyl3354 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3331, d) + x.codecDecodeSelfFromMap(yyl3354, d) } - } else if yyct3331 == codecSelferValueTypeArray1234 { - yyl3331 := r.ReadArrayStart() - if yyl3331 == 0 { + } else if yyct3354 == codecSelferValueTypeArray1234 { + yyl3354 := r.ReadArrayStart() + if yyl3354 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3331, d) + x.codecDecodeSelfFromArray(yyl3354, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41642,12 +41913,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3332Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3332Slc - var yyhl3332 bool = l >= 0 - for yyj3332 := 0; ; yyj3332++ { - if yyhl3332 { - if yyj3332 >= l { + var yys3355Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3355Slc + var yyhl3355 bool = l >= 0 + for yyj3355 := 0; ; yyj3355++ { + if yyhl3355 { + if yyj3355 >= l { break } } else { @@ -41656,26 +41927,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3332Slc = r.DecodeBytes(yys3332Slc, true, true) - yys3332 := string(yys3332Slc) + yys3355Slc = r.DecodeBytes(yys3355Slc, true, true) + yys3355 := string(yys3355Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3332 { + switch yys3355 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3333 := &x.Limits - yym3334 := z.DecBinary() - _ = yym3334 + yyv3356 := &x.Limits + yym3357 := z.DecBinary() + _ = yym3357 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3333), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3356), d) } } default: - z.DecStructFieldNotFound(-1, yys3332) - } // end switch yys3332 - } // end for yyj3332 + z.DecStructFieldNotFound(-1, yys3355) + } // end switch yys3355 + } // end for yyj3355 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41683,16 +41954,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3335 int - var yyb3335 bool - var yyhl3335 bool = l >= 0 - yyj3335++ - if yyhl3335 { - yyb3335 = yyj3335 > l + var yyj3358 int + var yyb3358 bool + var yyhl3358 bool = l >= 0 + yyj3358++ + if yyhl3358 { + yyb3358 = yyj3358 > l } else { - yyb3335 = r.CheckBreak() + yyb3358 = r.CheckBreak() } - if yyb3335 { + if yyb3358 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41700,26 +41971,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3336 := &x.Limits - yym3337 := z.DecBinary() - _ = yym3337 + yyv3359 := &x.Limits + yym3360 := z.DecBinary() + _ = yym3360 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3336), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3359), d) } } for { - yyj3335++ - if yyhl3335 { - yyb3335 = yyj3335 > l + yyj3358++ + if yyhl3358 { + yyb3358 = yyj3358 > l } else { - yyb3335 = r.CheckBreak() + yyb3358 = r.CheckBreak() } - if yyb3335 { + if yyb3358 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3335-1, "") + z.DecStructFieldNotFound(yyj3358-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41731,38 +42002,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3338 := z.EncBinary() - _ = yym3338 + yym3361 := z.EncBinary() + _ = yym3361 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3339 := !z.EncBinary() - yy2arr3339 := z.EncBasicHandle().StructToArray - var yyq3339 [4]bool - _, _, _ = yysep3339, yyq3339, yy2arr3339 - const yyr3339 bool = false - yyq3339[0] = x.Kind != "" - yyq3339[1] = x.APIVersion != "" - yyq3339[2] = true - yyq3339[3] = true - var yynn3339 int - if yyr3339 || yy2arr3339 { + yysep3362 := !z.EncBinary() + yy2arr3362 := z.EncBasicHandle().StructToArray + var yyq3362 [4]bool + _, _, _ = yysep3362, yyq3362, yy2arr3362 + const yyr3362 bool = false + yyq3362[0] = x.Kind != "" + yyq3362[1] = x.APIVersion != "" + yyq3362[2] = true + yyq3362[3] = true + var yynn3362 int + if yyr3362 || yy2arr3362 { r.EncodeArrayStart(4) } else { - yynn3339 = 0 - for _, b := range yyq3339 { + yynn3362 = 0 + for _, b := range yyq3362 { if b { - yynn3339++ + yynn3362++ } } - r.EncodeMapStart(yynn3339) - yynn3339 = 0 + r.EncodeMapStart(yynn3362) + yynn3362 = 0 } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[0] { - yym3341 := z.EncBinary() - _ = yym3341 + if yyq3362[0] { + yym3364 := z.EncBinary() + _ = yym3364 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41771,23 +42042,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3339[0] { + if yyq3362[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3342 := z.EncBinary() - _ = yym3342 + yym3365 := z.EncBinary() + _ = yym3365 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[1] { - yym3344 := z.EncBinary() - _ = yym3344 + if yyq3362[1] { + yym3367 := z.EncBinary() + _ = yym3367 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41796,53 +42067,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3339[1] { + if yyq3362[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3345 := z.EncBinary() - _ = yym3345 + yym3368 := z.EncBinary() + _ = yym3368 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[2] { - yy3347 := &x.ObjectMeta - yy3347.CodecEncodeSelf(e) + if yyq3362[2] { + yy3370 := &x.ObjectMeta + yy3370.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3339[2] { + if yyq3362[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3348 := &x.ObjectMeta - yy3348.CodecEncodeSelf(e) + yy3371 := &x.ObjectMeta + yy3371.CodecEncodeSelf(e) } } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[3] { - yy3350 := &x.Spec - yy3350.CodecEncodeSelf(e) + if yyq3362[3] { + yy3373 := &x.Spec + yy3373.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3339[3] { + if yyq3362[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3351 := &x.Spec - yy3351.CodecEncodeSelf(e) + yy3374 := &x.Spec + yy3374.CodecEncodeSelf(e) } } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41855,25 +42126,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3352 := z.DecBinary() - _ = yym3352 + yym3375 := z.DecBinary() + _ = yym3375 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3353 := r.ContainerType() - if yyct3353 == codecSelferValueTypeMap1234 { - yyl3353 := r.ReadMapStart() - if yyl3353 == 0 { + yyct3376 := r.ContainerType() + if yyct3376 == codecSelferValueTypeMap1234 { + yyl3376 := r.ReadMapStart() + if yyl3376 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3353, d) + x.codecDecodeSelfFromMap(yyl3376, d) } - } else if yyct3353 == codecSelferValueTypeArray1234 { - yyl3353 := r.ReadArrayStart() - if yyl3353 == 0 { + } else if yyct3376 == codecSelferValueTypeArray1234 { + yyl3376 := r.ReadArrayStart() + if yyl3376 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3353, d) + x.codecDecodeSelfFromArray(yyl3376, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41885,12 +42156,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3354Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3354Slc - var yyhl3354 bool = l >= 0 - for yyj3354 := 0; ; yyj3354++ { - if yyhl3354 { - if yyj3354 >= l { + var yys3377Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3377Slc + var yyhl3377 bool = l >= 0 + for yyj3377 := 0; ; yyj3377++ { + if yyhl3377 { + if yyj3377 >= l { break } } else { @@ -41899,10 +42170,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3354Slc = r.DecodeBytes(yys3354Slc, true, true) - yys3354 := string(yys3354Slc) + yys3377Slc = r.DecodeBytes(yys3377Slc, true, true) + yys3377 := string(yys3377Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3354 { + switch yys3377 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41919,20 +42190,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3357 := &x.ObjectMeta - yyv3357.CodecDecodeSelf(d) + yyv3380 := &x.ObjectMeta + yyv3380.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3358 := &x.Spec - yyv3358.CodecDecodeSelf(d) + yyv3381 := &x.Spec + yyv3381.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3354) - } // end switch yys3354 - } // end for yyj3354 + z.DecStructFieldNotFound(-1, yys3377) + } // end switch yys3377 + } // end for yyj3377 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41940,16 +42211,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3359 int - var yyb3359 bool - var yyhl3359 bool = l >= 0 - yyj3359++ - if yyhl3359 { - yyb3359 = yyj3359 > l + var yyj3382 int + var yyb3382 bool + var yyhl3382 bool = l >= 0 + yyj3382++ + if yyhl3382 { + yyb3382 = yyj3382 > l } else { - yyb3359 = r.CheckBreak() + yyb3382 = r.CheckBreak() } - if yyb3359 { + if yyb3382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41959,13 +42230,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3359++ - if yyhl3359 { - yyb3359 = yyj3359 > l + yyj3382++ + if yyhl3382 { + yyb3382 = yyj3382 > l } else { - yyb3359 = r.CheckBreak() + yyb3382 = r.CheckBreak() } - if yyb3359 { + if yyb3382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41975,13 +42246,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3359++ - if yyhl3359 { - yyb3359 = yyj3359 > l + yyj3382++ + if yyhl3382 { + yyb3382 = yyj3382 > l } else { - yyb3359 = r.CheckBreak() + yyb3382 = r.CheckBreak() } - if yyb3359 { + if yyb3382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41989,16 +42260,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3362 := &x.ObjectMeta - yyv3362.CodecDecodeSelf(d) + yyv3385 := &x.ObjectMeta + yyv3385.CodecDecodeSelf(d) } - yyj3359++ - if yyhl3359 { - yyb3359 = yyj3359 > l + yyj3382++ + if yyhl3382 { + yyb3382 = yyj3382 > l } else { - yyb3359 = r.CheckBreak() + yyb3382 = r.CheckBreak() } - if yyb3359 { + if yyb3382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42006,21 +42277,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3363 := &x.Spec - yyv3363.CodecDecodeSelf(d) + yyv3386 := &x.Spec + yyv3386.CodecDecodeSelf(d) } for { - yyj3359++ - if yyhl3359 { - yyb3359 = yyj3359 > l + yyj3382++ + if yyhl3382 { + yyb3382 = yyj3382 > l } else { - yyb3359 = r.CheckBreak() + yyb3382 = r.CheckBreak() } - if yyb3359 { + if yyb3382 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3359-1, "") + z.DecStructFieldNotFound(yyj3382-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42032,37 +42303,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3364 := z.EncBinary() - _ = yym3364 + yym3387 := z.EncBinary() + _ = yym3387 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3365 := !z.EncBinary() - yy2arr3365 := z.EncBasicHandle().StructToArray - var yyq3365 [4]bool - _, _, _ = yysep3365, yyq3365, yy2arr3365 - const yyr3365 bool = false - yyq3365[0] = x.Kind != "" - yyq3365[1] = x.APIVersion != "" - yyq3365[2] = true - var yynn3365 int - if yyr3365 || yy2arr3365 { + yysep3388 := !z.EncBinary() + yy2arr3388 := z.EncBasicHandle().StructToArray + var yyq3388 [4]bool + _, _, _ = yysep3388, yyq3388, yy2arr3388 + const yyr3388 bool = false + yyq3388[0] = x.Kind != "" + yyq3388[1] = x.APIVersion != "" + yyq3388[2] = true + var yynn3388 int + if yyr3388 || yy2arr3388 { r.EncodeArrayStart(4) } else { - yynn3365 = 1 - for _, b := range yyq3365 { + yynn3388 = 1 + for _, b := range yyq3388 { if b { - yynn3365++ + yynn3388++ } } - r.EncodeMapStart(yynn3365) - yynn3365 = 0 + r.EncodeMapStart(yynn3388) + yynn3388 = 0 } - if yyr3365 || yy2arr3365 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3365[0] { - yym3367 := z.EncBinary() - _ = yym3367 + if yyq3388[0] { + yym3390 := z.EncBinary() + _ = yym3390 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42071,23 +42342,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3365[0] { + if yyq3388[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3368 := z.EncBinary() - _ = yym3368 + yym3391 := z.EncBinary() + _ = yym3391 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3365 || yy2arr3365 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3365[1] { - yym3370 := z.EncBinary() - _ = yym3370 + if yyq3388[1] { + yym3393 := z.EncBinary() + _ = yym3393 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42096,54 +42367,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3365[1] { + if yyq3388[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3371 := z.EncBinary() - _ = yym3371 + yym3394 := z.EncBinary() + _ = yym3394 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3365 || yy2arr3365 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3365[2] { - yy3373 := &x.ListMeta - yym3374 := z.EncBinary() - _ = yym3374 + if yyq3388[2] { + yy3396 := &x.ListMeta + yym3397 := z.EncBinary() + _ = yym3397 if false { - } else if z.HasExtensions() && z.EncExt(yy3373) { + } else if z.HasExtensions() && z.EncExt(yy3396) { } else { - z.EncFallback(yy3373) + z.EncFallback(yy3396) } } else { r.EncodeNil() } } else { - if yyq3365[2] { + if yyq3388[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3375 := &x.ListMeta - yym3376 := z.EncBinary() - _ = yym3376 + yy3398 := &x.ListMeta + yym3399 := z.EncBinary() + _ = yym3399 if false { - } else if z.HasExtensions() && z.EncExt(yy3375) { + } else if z.HasExtensions() && z.EncExt(yy3398) { } else { - z.EncFallback(yy3375) + z.EncFallback(yy3398) } } } - if yyr3365 || yy2arr3365 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3378 := z.EncBinary() - _ = yym3378 + yym3401 := z.EncBinary() + _ = yym3401 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -42156,15 +42427,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3379 := z.EncBinary() - _ = yym3379 + yym3402 := z.EncBinary() + _ = yym3402 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3365 || yy2arr3365 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42177,25 +42448,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3380 := z.DecBinary() - _ = yym3380 + yym3403 := z.DecBinary() + _ = yym3403 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3381 := r.ContainerType() - if yyct3381 == codecSelferValueTypeMap1234 { - yyl3381 := r.ReadMapStart() - if yyl3381 == 0 { + yyct3404 := r.ContainerType() + if yyct3404 == codecSelferValueTypeMap1234 { + yyl3404 := r.ReadMapStart() + if yyl3404 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3381, d) + x.codecDecodeSelfFromMap(yyl3404, d) } - } else if yyct3381 == codecSelferValueTypeArray1234 { - yyl3381 := r.ReadArrayStart() - if yyl3381 == 0 { + } else if yyct3404 == codecSelferValueTypeArray1234 { + yyl3404 := r.ReadArrayStart() + if yyl3404 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3381, d) + x.codecDecodeSelfFromArray(yyl3404, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42207,12 +42478,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3382Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3382Slc - var yyhl3382 bool = l >= 0 - for yyj3382 := 0; ; yyj3382++ { - if yyhl3382 { - if yyj3382 >= l { + var yys3405Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3405Slc + var yyhl3405 bool = l >= 0 + for yyj3405 := 0; ; yyj3405++ { + if yyhl3405 { + if yyj3405 >= l { break } } else { @@ -42221,10 +42492,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3382Slc = r.DecodeBytes(yys3382Slc, true, true) - yys3382 := string(yys3382Slc) + yys3405Slc = r.DecodeBytes(yys3405Slc, true, true) + yys3405 := string(yys3405Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3382 { + switch yys3405 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42241,31 +42512,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3385 := &x.ListMeta - yym3386 := z.DecBinary() - _ = yym3386 + yyv3408 := &x.ListMeta + yym3409 := z.DecBinary() + _ = yym3409 if false { - } else if z.HasExtensions() && z.DecExt(yyv3385) { + } else if z.HasExtensions() && z.DecExt(yyv3408) { } else { - z.DecFallback(yyv3385, false) + z.DecFallback(yyv3408, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3387 := &x.Items - yym3388 := z.DecBinary() - _ = yym3388 + yyv3410 := &x.Items + yym3411 := z.DecBinary() + _ = yym3411 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3387), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3410), d) } } default: - z.DecStructFieldNotFound(-1, yys3382) - } // end switch yys3382 - } // end for yyj3382 + z.DecStructFieldNotFound(-1, yys3405) + } // end switch yys3405 + } // end for yyj3405 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42273,16 +42544,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3389 int - var yyb3389 bool - var yyhl3389 bool = l >= 0 - yyj3389++ - if yyhl3389 { - yyb3389 = yyj3389 > l + var yyj3412 int + var yyb3412 bool + var yyhl3412 bool = l >= 0 + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3389 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3389 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42292,13 +42563,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3389++ - if yyhl3389 { - yyb3389 = yyj3389 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3389 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3389 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42308,13 +42579,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3389++ - if yyhl3389 { - yyb3389 = yyj3389 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3389 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3389 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42322,22 +42593,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3392 := &x.ListMeta - yym3393 := z.DecBinary() - _ = yym3393 + yyv3415 := &x.ListMeta + yym3416 := z.DecBinary() + _ = yym3416 if false { - } else if z.HasExtensions() && z.DecExt(yyv3392) { + } else if z.HasExtensions() && z.DecExt(yyv3415) { } else { - z.DecFallback(yyv3392, false) + z.DecFallback(yyv3415, false) } } - yyj3389++ - if yyhl3389 { - yyb3389 = yyj3389 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3389 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3389 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42345,26 +42616,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3394 := &x.Items - yym3395 := z.DecBinary() - _ = yym3395 + yyv3417 := &x.Items + yym3418 := z.DecBinary() + _ = yym3418 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3394), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3417), d) } } for { - yyj3389++ - if yyhl3389 { - yyb3389 = yyj3389 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3389 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3389 { + if yyb3412 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3389-1, "") + z.DecStructFieldNotFound(yyj3412-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42376,33 +42647,33 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3396 := z.EncBinary() - _ = yym3396 + yym3419 := z.EncBinary() + _ = yym3419 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3397 := !z.EncBinary() - yy2arr3397 := z.EncBasicHandle().StructToArray - var yyq3397 [1]bool - _, _, _ = yysep3397, yyq3397, yy2arr3397 - const yyr3397 bool = false - yyq3397[0] = len(x.Hard) != 0 - var yynn3397 int - if yyr3397 || yy2arr3397 { + yysep3420 := !z.EncBinary() + yy2arr3420 := z.EncBasicHandle().StructToArray + var yyq3420 [1]bool + _, _, _ = yysep3420, yyq3420, yy2arr3420 + const yyr3420 bool = false + yyq3420[0] = len(x.Hard) != 0 + var yynn3420 int + if yyr3420 || yy2arr3420 { r.EncodeArrayStart(1) } else { - yynn3397 = 0 - for _, b := range yyq3397 { + yynn3420 = 0 + for _, b := range yyq3420 { if b { - yynn3397++ + yynn3420++ } } - r.EncodeMapStart(yynn3397) - yynn3397 = 0 + r.EncodeMapStart(yynn3420) + yynn3420 = 0 } - if yyr3397 || yy2arr3397 { + if yyr3420 || yy2arr3420 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3397[0] { + if yyq3420[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -42412,7 +42683,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3397[0] { + if yyq3420[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42423,7 +42694,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3397 || yy2arr3397 { + if yyr3420 || yy2arr3420 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42436,25 +42707,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3399 := z.DecBinary() - _ = yym3399 + yym3422 := z.DecBinary() + _ = yym3422 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3400 := r.ContainerType() - if yyct3400 == codecSelferValueTypeMap1234 { - yyl3400 := r.ReadMapStart() - if yyl3400 == 0 { + yyct3423 := r.ContainerType() + if yyct3423 == codecSelferValueTypeMap1234 { + yyl3423 := r.ReadMapStart() + if yyl3423 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3400, d) + x.codecDecodeSelfFromMap(yyl3423, d) } - } else if yyct3400 == codecSelferValueTypeArray1234 { - yyl3400 := r.ReadArrayStart() - if yyl3400 == 0 { + } else if yyct3423 == codecSelferValueTypeArray1234 { + yyl3423 := r.ReadArrayStart() + if yyl3423 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3400, d) + x.codecDecodeSelfFromArray(yyl3423, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42466,12 +42737,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3401Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3401Slc - var yyhl3401 bool = l >= 0 - for yyj3401 := 0; ; yyj3401++ { - if yyhl3401 { - if yyj3401 >= l { + var yys3424Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3424Slc + var yyhl3424 bool = l >= 0 + for yyj3424 := 0; ; yyj3424++ { + if yyhl3424 { + if yyj3424 >= l { break } } else { @@ -42480,21 +42751,21 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3401Slc = r.DecodeBytes(yys3401Slc, true, true) - yys3401 := string(yys3401Slc) + yys3424Slc = r.DecodeBytes(yys3424Slc, true, true) + yys3424 := string(yys3424Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3401 { + switch yys3424 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3402 := &x.Hard - yyv3402.CodecDecodeSelf(d) + yyv3425 := &x.Hard + yyv3425.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3401) - } // end switch yys3401 - } // end for yyj3401 + z.DecStructFieldNotFound(-1, yys3424) + } // end switch yys3424 + } // end for yyj3424 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42502,16 +42773,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3403 int - var yyb3403 bool - var yyhl3403 bool = l >= 0 - yyj3403++ - if yyhl3403 { - yyb3403 = yyj3403 > l + var yyj3426 int + var yyb3426 bool + var yyhl3426 bool = l >= 0 + yyj3426++ + if yyhl3426 { + yyb3426 = yyj3426 > l } else { - yyb3403 = r.CheckBreak() + yyb3426 = r.CheckBreak() } - if yyb3403 { + if yyb3426 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42519,21 +42790,21 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3404 := &x.Hard - yyv3404.CodecDecodeSelf(d) + yyv3427 := &x.Hard + yyv3427.CodecDecodeSelf(d) } for { - yyj3403++ - if yyhl3403 { - yyb3403 = yyj3403 > l + yyj3426++ + if yyhl3426 { + yyb3426 = yyj3426 > l } else { - yyb3403 = r.CheckBreak() + yyb3426 = r.CheckBreak() } - if yyb3403 { + if yyb3426 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3403-1, "") + z.DecStructFieldNotFound(yyj3426-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42545,34 +42816,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3405 := z.EncBinary() - _ = yym3405 + yym3428 := z.EncBinary() + _ = yym3428 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3406 := !z.EncBinary() - yy2arr3406 := z.EncBasicHandle().StructToArray - var yyq3406 [2]bool - _, _, _ = yysep3406, yyq3406, yy2arr3406 - const yyr3406 bool = false - yyq3406[0] = len(x.Hard) != 0 - yyq3406[1] = len(x.Used) != 0 - var yynn3406 int - if yyr3406 || yy2arr3406 { + yysep3429 := !z.EncBinary() + yy2arr3429 := z.EncBasicHandle().StructToArray + var yyq3429 [2]bool + _, _, _ = yysep3429, yyq3429, yy2arr3429 + const yyr3429 bool = false + yyq3429[0] = len(x.Hard) != 0 + yyq3429[1] = len(x.Used) != 0 + var yynn3429 int + if yyr3429 || yy2arr3429 { r.EncodeArrayStart(2) } else { - yynn3406 = 0 - for _, b := range yyq3406 { + yynn3429 = 0 + for _, b := range yyq3429 { if b { - yynn3406++ + yynn3429++ } } - r.EncodeMapStart(yynn3406) - yynn3406 = 0 + r.EncodeMapStart(yynn3429) + yynn3429 = 0 } - if yyr3406 || yy2arr3406 { + if yyr3429 || yy2arr3429 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3406[0] { + if yyq3429[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -42582,7 +42853,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3406[0] { + if yyq3429[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42593,9 +42864,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3406 || yy2arr3406 { + if yyr3429 || yy2arr3429 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3406[1] { + if yyq3429[1] { if x.Used == nil { r.EncodeNil() } else { @@ -42605,7 +42876,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3406[1] { + if yyq3429[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42616,7 +42887,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3406 || yy2arr3406 { + if yyr3429 || yy2arr3429 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42629,25 +42900,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3409 := z.DecBinary() - _ = yym3409 + yym3432 := z.DecBinary() + _ = yym3432 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3410 := r.ContainerType() - if yyct3410 == codecSelferValueTypeMap1234 { - yyl3410 := r.ReadMapStart() - if yyl3410 == 0 { + yyct3433 := r.ContainerType() + if yyct3433 == codecSelferValueTypeMap1234 { + yyl3433 := r.ReadMapStart() + if yyl3433 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3410, d) + x.codecDecodeSelfFromMap(yyl3433, d) } - } else if yyct3410 == codecSelferValueTypeArray1234 { - yyl3410 := r.ReadArrayStart() - if yyl3410 == 0 { + } else if yyct3433 == codecSelferValueTypeArray1234 { + yyl3433 := r.ReadArrayStart() + if yyl3433 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3410, d) + x.codecDecodeSelfFromArray(yyl3433, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42659,12 +42930,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3411Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3411Slc - var yyhl3411 bool = l >= 0 - for yyj3411 := 0; ; yyj3411++ { - if yyhl3411 { - if yyj3411 >= l { + var yys3434Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3434Slc + var yyhl3434 bool = l >= 0 + for yyj3434 := 0; ; yyj3434++ { + if yyhl3434 { + if yyj3434 >= l { break } } else { @@ -42673,28 +42944,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3411Slc = r.DecodeBytes(yys3411Slc, true, true) - yys3411 := string(yys3411Slc) + yys3434Slc = r.DecodeBytes(yys3434Slc, true, true) + yys3434 := string(yys3434Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3411 { + switch yys3434 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3412 := &x.Hard - yyv3412.CodecDecodeSelf(d) + yyv3435 := &x.Hard + yyv3435.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3413 := &x.Used - yyv3413.CodecDecodeSelf(d) + yyv3436 := &x.Used + yyv3436.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3411) - } // end switch yys3411 - } // end for yyj3411 + z.DecStructFieldNotFound(-1, yys3434) + } // end switch yys3434 + } // end for yyj3434 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42702,16 +42973,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3414 int - var yyb3414 bool - var yyhl3414 bool = l >= 0 - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + var yyj3437 int + var yyb3437 bool + var yyhl3437 bool = l >= 0 + yyj3437++ + if yyhl3437 { + yyb3437 = yyj3437 > l } else { - yyb3414 = r.CheckBreak() + yyb3437 = r.CheckBreak() } - if yyb3414 { + if yyb3437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42719,16 +42990,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3415 := &x.Hard - yyv3415.CodecDecodeSelf(d) + yyv3438 := &x.Hard + yyv3438.CodecDecodeSelf(d) } - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3437++ + if yyhl3437 { + yyb3437 = yyj3437 > l } else { - yyb3414 = r.CheckBreak() + yyb3437 = r.CheckBreak() } - if yyb3414 { + if yyb3437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42736,21 +43007,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3416 := &x.Used - yyv3416.CodecDecodeSelf(d) + yyv3439 := &x.Used + yyv3439.CodecDecodeSelf(d) } for { - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3437++ + if yyhl3437 { + yyb3437 = yyj3437 > l } else { - yyb3414 = r.CheckBreak() + yyb3437 = r.CheckBreak() } - if yyb3414 { + if yyb3437 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3414-1, "") + z.DecStructFieldNotFound(yyj3437-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42762,39 +43033,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3417 := z.EncBinary() - _ = yym3417 + yym3440 := z.EncBinary() + _ = yym3440 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3418 := !z.EncBinary() - yy2arr3418 := z.EncBasicHandle().StructToArray - var yyq3418 [5]bool - _, _, _ = yysep3418, yyq3418, yy2arr3418 - const yyr3418 bool = false - yyq3418[0] = x.Kind != "" - yyq3418[1] = x.APIVersion != "" - yyq3418[2] = true - yyq3418[3] = true - yyq3418[4] = true - var yynn3418 int - if yyr3418 || yy2arr3418 { + yysep3441 := !z.EncBinary() + yy2arr3441 := z.EncBasicHandle().StructToArray + var yyq3441 [5]bool + _, _, _ = yysep3441, yyq3441, yy2arr3441 + const yyr3441 bool = false + yyq3441[0] = x.Kind != "" + yyq3441[1] = x.APIVersion != "" + yyq3441[2] = true + yyq3441[3] = true + yyq3441[4] = true + var yynn3441 int + if yyr3441 || yy2arr3441 { r.EncodeArrayStart(5) } else { - yynn3418 = 0 - for _, b := range yyq3418 { + yynn3441 = 0 + for _, b := range yyq3441 { if b { - yynn3418++ + yynn3441++ } } - r.EncodeMapStart(yynn3418) - yynn3418 = 0 + r.EncodeMapStart(yynn3441) + yynn3441 = 0 } - if yyr3418 || yy2arr3418 { + if yyr3441 || yy2arr3441 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3418[0] { - yym3420 := z.EncBinary() - _ = yym3420 + if yyq3441[0] { + yym3443 := z.EncBinary() + _ = yym3443 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42803,23 +43074,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3418[0] { + if yyq3441[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3421 := z.EncBinary() - _ = yym3421 + yym3444 := z.EncBinary() + _ = yym3444 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3418 || yy2arr3418 { + if yyr3441 || yy2arr3441 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3418[1] { - yym3423 := z.EncBinary() - _ = yym3423 + if yyq3441[1] { + yym3446 := z.EncBinary() + _ = yym3446 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42828,70 +43099,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3418[1] { + if yyq3441[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3424 := z.EncBinary() - _ = yym3424 + yym3447 := z.EncBinary() + _ = yym3447 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3418 || yy2arr3418 { + if yyr3441 || yy2arr3441 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3418[2] { - yy3426 := &x.ObjectMeta - yy3426.CodecEncodeSelf(e) + if yyq3441[2] { + yy3449 := &x.ObjectMeta + yy3449.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3418[2] { + if yyq3441[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3427 := &x.ObjectMeta - yy3427.CodecEncodeSelf(e) + yy3450 := &x.ObjectMeta + yy3450.CodecEncodeSelf(e) } } - if yyr3418 || yy2arr3418 { + if yyr3441 || yy2arr3441 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3418[3] { - yy3429 := &x.Spec - yy3429.CodecEncodeSelf(e) + if yyq3441[3] { + yy3452 := &x.Spec + yy3452.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3418[3] { + if yyq3441[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3430 := &x.Spec - yy3430.CodecEncodeSelf(e) + yy3453 := &x.Spec + yy3453.CodecEncodeSelf(e) } } - if yyr3418 || yy2arr3418 { + if yyr3441 || yy2arr3441 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3418[4] { - yy3432 := &x.Status - yy3432.CodecEncodeSelf(e) + if yyq3441[4] { + yy3455 := &x.Status + yy3455.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3418[4] { + if yyq3441[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3433 := &x.Status - yy3433.CodecEncodeSelf(e) + yy3456 := &x.Status + yy3456.CodecEncodeSelf(e) } } - if yyr3418 || yy2arr3418 { + if yyr3441 || yy2arr3441 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42904,25 +43175,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3434 := z.DecBinary() - _ = yym3434 + yym3457 := z.DecBinary() + _ = yym3457 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3435 := r.ContainerType() - if yyct3435 == codecSelferValueTypeMap1234 { - yyl3435 := r.ReadMapStart() - if yyl3435 == 0 { + yyct3458 := r.ContainerType() + if yyct3458 == codecSelferValueTypeMap1234 { + yyl3458 := r.ReadMapStart() + if yyl3458 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3435, d) + x.codecDecodeSelfFromMap(yyl3458, d) } - } else if yyct3435 == codecSelferValueTypeArray1234 { - yyl3435 := r.ReadArrayStart() - if yyl3435 == 0 { + } else if yyct3458 == codecSelferValueTypeArray1234 { + yyl3458 := r.ReadArrayStart() + if yyl3458 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3435, d) + x.codecDecodeSelfFromArray(yyl3458, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42934,12 +43205,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3436Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3436Slc - var yyhl3436 bool = l >= 0 - for yyj3436 := 0; ; yyj3436++ { - if yyhl3436 { - if yyj3436 >= l { + var yys3459Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3459Slc + var yyhl3459 bool = l >= 0 + for yyj3459 := 0; ; yyj3459++ { + if yyhl3459 { + if yyj3459 >= l { break } } else { @@ -42948,10 +43219,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3436Slc = r.DecodeBytes(yys3436Slc, true, true) - yys3436 := string(yys3436Slc) + yys3459Slc = r.DecodeBytes(yys3459Slc, true, true) + yys3459 := string(yys3459Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3436 { + switch yys3459 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42968,27 +43239,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3439 := &x.ObjectMeta - yyv3439.CodecDecodeSelf(d) + yyv3462 := &x.ObjectMeta + yyv3462.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3440 := &x.Spec - yyv3440.CodecDecodeSelf(d) + yyv3463 := &x.Spec + yyv3463.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3441 := &x.Status - yyv3441.CodecDecodeSelf(d) + yyv3464 := &x.Status + yyv3464.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3436) - } // end switch yys3436 - } // end for yyj3436 + z.DecStructFieldNotFound(-1, yys3459) + } // end switch yys3459 + } // end for yyj3459 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42996,16 +43267,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3442 int - var yyb3442 bool - var yyhl3442 bool = l >= 0 - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + var yyj3465 int + var yyb3465 bool + var yyhl3465 bool = l >= 0 + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3442 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3442 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43015,13 +43286,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3442 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3442 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43031,13 +43302,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3442 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3442 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43045,16 +43316,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3445 := &x.ObjectMeta - yyv3445.CodecDecodeSelf(d) + yyv3468 := &x.ObjectMeta + yyv3468.CodecDecodeSelf(d) } - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3442 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3442 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43062,16 +43333,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3446 := &x.Spec - yyv3446.CodecDecodeSelf(d) + yyv3469 := &x.Spec + yyv3469.CodecDecodeSelf(d) } - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3442 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3442 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43079,21 +43350,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3447 := &x.Status - yyv3447.CodecDecodeSelf(d) + yyv3470 := &x.Status + yyv3470.CodecDecodeSelf(d) } for { - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3442 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3442 { + if yyb3465 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3442-1, "") + z.DecStructFieldNotFound(yyj3465-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43105,37 +43376,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3448 := z.EncBinary() - _ = yym3448 + yym3471 := z.EncBinary() + _ = yym3471 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3449 := !z.EncBinary() - yy2arr3449 := z.EncBasicHandle().StructToArray - var yyq3449 [4]bool - _, _, _ = yysep3449, yyq3449, yy2arr3449 - const yyr3449 bool = false - yyq3449[0] = x.Kind != "" - yyq3449[1] = x.APIVersion != "" - yyq3449[2] = true - var yynn3449 int - if yyr3449 || yy2arr3449 { + yysep3472 := !z.EncBinary() + yy2arr3472 := z.EncBasicHandle().StructToArray + var yyq3472 [4]bool + _, _, _ = yysep3472, yyq3472, yy2arr3472 + const yyr3472 bool = false + yyq3472[0] = x.Kind != "" + yyq3472[1] = x.APIVersion != "" + yyq3472[2] = true + var yynn3472 int + if yyr3472 || yy2arr3472 { r.EncodeArrayStart(4) } else { - yynn3449 = 1 - for _, b := range yyq3449 { + yynn3472 = 1 + for _, b := range yyq3472 { if b { - yynn3449++ + yynn3472++ } } - r.EncodeMapStart(yynn3449) - yynn3449 = 0 + r.EncodeMapStart(yynn3472) + yynn3472 = 0 } - if yyr3449 || yy2arr3449 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[0] { - yym3451 := z.EncBinary() - _ = yym3451 + if yyq3472[0] { + yym3474 := z.EncBinary() + _ = yym3474 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43144,23 +43415,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3449[0] { + if yyq3472[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3452 := z.EncBinary() - _ = yym3452 + yym3475 := z.EncBinary() + _ = yym3475 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3449 || yy2arr3449 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[1] { - yym3454 := z.EncBinary() - _ = yym3454 + if yyq3472[1] { + yym3477 := z.EncBinary() + _ = yym3477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43169,54 +43440,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3449[1] { + if yyq3472[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3455 := z.EncBinary() - _ = yym3455 + yym3478 := z.EncBinary() + _ = yym3478 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3449 || yy2arr3449 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[2] { - yy3457 := &x.ListMeta - yym3458 := z.EncBinary() - _ = yym3458 + if yyq3472[2] { + yy3480 := &x.ListMeta + yym3481 := z.EncBinary() + _ = yym3481 if false { - } else if z.HasExtensions() && z.EncExt(yy3457) { + } else if z.HasExtensions() && z.EncExt(yy3480) { } else { - z.EncFallback(yy3457) + z.EncFallback(yy3480) } } else { r.EncodeNil() } } else { - if yyq3449[2] { + if yyq3472[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3459 := &x.ListMeta - yym3460 := z.EncBinary() - _ = yym3460 + yy3482 := &x.ListMeta + yym3483 := z.EncBinary() + _ = yym3483 if false { - } else if z.HasExtensions() && z.EncExt(yy3459) { + } else if z.HasExtensions() && z.EncExt(yy3482) { } else { - z.EncFallback(yy3459) + z.EncFallback(yy3482) } } } - if yyr3449 || yy2arr3449 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3462 := z.EncBinary() - _ = yym3462 + yym3485 := z.EncBinary() + _ = yym3485 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -43229,15 +43500,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3463 := z.EncBinary() - _ = yym3463 + yym3486 := z.EncBinary() + _ = yym3486 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr3449 || yy2arr3449 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43250,25 +43521,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3464 := z.DecBinary() - _ = yym3464 + yym3487 := z.DecBinary() + _ = yym3487 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3465 := r.ContainerType() - if yyct3465 == codecSelferValueTypeMap1234 { - yyl3465 := r.ReadMapStart() - if yyl3465 == 0 { + yyct3488 := r.ContainerType() + if yyct3488 == codecSelferValueTypeMap1234 { + yyl3488 := r.ReadMapStart() + if yyl3488 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3465, d) + x.codecDecodeSelfFromMap(yyl3488, d) } - } else if yyct3465 == codecSelferValueTypeArray1234 { - yyl3465 := r.ReadArrayStart() - if yyl3465 == 0 { + } else if yyct3488 == codecSelferValueTypeArray1234 { + yyl3488 := r.ReadArrayStart() + if yyl3488 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3465, d) + x.codecDecodeSelfFromArray(yyl3488, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43280,12 +43551,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3466Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3466Slc - var yyhl3466 bool = l >= 0 - for yyj3466 := 0; ; yyj3466++ { - if yyhl3466 { - if yyj3466 >= l { + var yys3489Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3489Slc + var yyhl3489 bool = l >= 0 + for yyj3489 := 0; ; yyj3489++ { + if yyhl3489 { + if yyj3489 >= l { break } } else { @@ -43294,10 +43565,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3466Slc = r.DecodeBytes(yys3466Slc, true, true) - yys3466 := string(yys3466Slc) + yys3489Slc = r.DecodeBytes(yys3489Slc, true, true) + yys3489 := string(yys3489Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3466 { + switch yys3489 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43314,31 +43585,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3469 := &x.ListMeta - yym3470 := z.DecBinary() - _ = yym3470 + yyv3492 := &x.ListMeta + yym3493 := z.DecBinary() + _ = yym3493 if false { - } else if z.HasExtensions() && z.DecExt(yyv3469) { + } else if z.HasExtensions() && z.DecExt(yyv3492) { } else { - z.DecFallback(yyv3469, false) + z.DecFallback(yyv3492, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3471 := &x.Items - yym3472 := z.DecBinary() - _ = yym3472 + yyv3494 := &x.Items + yym3495 := z.DecBinary() + _ = yym3495 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3471), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3494), d) } } default: - z.DecStructFieldNotFound(-1, yys3466) - } // end switch yys3466 - } // end for yyj3466 + z.DecStructFieldNotFound(-1, yys3489) + } // end switch yys3489 + } // end for yyj3489 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43346,16 +43617,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3473 int - var yyb3473 bool - var yyhl3473 bool = l >= 0 - yyj3473++ - if yyhl3473 { - yyb3473 = yyj3473 > l + var yyj3496 int + var yyb3496 bool + var yyhl3496 bool = l >= 0 + yyj3496++ + if yyhl3496 { + yyb3496 = yyj3496 > l } else { - yyb3473 = r.CheckBreak() + yyb3496 = r.CheckBreak() } - if yyb3473 { + if yyb3496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43365,13 +43636,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj3473++ - if yyhl3473 { - yyb3473 = yyj3473 > l + yyj3496++ + if yyhl3496 { + yyb3496 = yyj3496 > l } else { - yyb3473 = r.CheckBreak() + yyb3496 = r.CheckBreak() } - if yyb3473 { + if yyb3496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43381,13 +43652,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj3473++ - if yyhl3473 { - yyb3473 = yyj3473 > l + yyj3496++ + if yyhl3496 { + yyb3496 = yyj3496 > l } else { - yyb3473 = r.CheckBreak() + yyb3496 = r.CheckBreak() } - if yyb3473 { + if yyb3496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43395,22 +43666,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3476 := &x.ListMeta - yym3477 := z.DecBinary() - _ = yym3477 + yyv3499 := &x.ListMeta + yym3500 := z.DecBinary() + _ = yym3500 if false { - } else if z.HasExtensions() && z.DecExt(yyv3476) { + } else if z.HasExtensions() && z.DecExt(yyv3499) { } else { - z.DecFallback(yyv3476, false) + z.DecFallback(yyv3499, false) } } - yyj3473++ - if yyhl3473 { - yyb3473 = yyj3473 > l + yyj3496++ + if yyhl3496 { + yyb3496 = yyj3496 > l } else { - yyb3473 = r.CheckBreak() + yyb3496 = r.CheckBreak() } - if yyb3473 { + if yyb3496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43418,26 +43689,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3478 := &x.Items - yym3479 := z.DecBinary() - _ = yym3479 + yyv3501 := &x.Items + yym3502 := z.DecBinary() + _ = yym3502 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3478), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3501), d) } } for { - yyj3473++ - if yyhl3473 { - yyb3473 = yyj3473 > l + yyj3496++ + if yyhl3496 { + yyb3496 = yyj3496 > l } else { - yyb3473 = r.CheckBreak() + yyb3496 = r.CheckBreak() } - if yyb3473 { + if yyb3496 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3473-1, "") + z.DecStructFieldNotFound(yyj3496-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43449,39 +43720,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3480 := z.EncBinary() - _ = yym3480 + yym3503 := z.EncBinary() + _ = yym3503 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3481 := !z.EncBinary() - yy2arr3481 := z.EncBasicHandle().StructToArray - var yyq3481 [5]bool - _, _, _ = yysep3481, yyq3481, yy2arr3481 - const yyr3481 bool = false - yyq3481[0] = x.Kind != "" - yyq3481[1] = x.APIVersion != "" - yyq3481[2] = true - yyq3481[3] = len(x.Data) != 0 - yyq3481[4] = x.Type != "" - var yynn3481 int - if yyr3481 || yy2arr3481 { + yysep3504 := !z.EncBinary() + yy2arr3504 := z.EncBasicHandle().StructToArray + var yyq3504 [5]bool + _, _, _ = yysep3504, yyq3504, yy2arr3504 + const yyr3504 bool = false + yyq3504[0] = x.Kind != "" + yyq3504[1] = x.APIVersion != "" + yyq3504[2] = true + yyq3504[3] = len(x.Data) != 0 + yyq3504[4] = x.Type != "" + var yynn3504 int + if yyr3504 || yy2arr3504 { r.EncodeArrayStart(5) } else { - yynn3481 = 0 - for _, b := range yyq3481 { + yynn3504 = 0 + for _, b := range yyq3504 { if b { - yynn3481++ + yynn3504++ } } - r.EncodeMapStart(yynn3481) - yynn3481 = 0 + r.EncodeMapStart(yynn3504) + yynn3504 = 0 } - if yyr3481 || yy2arr3481 { + if yyr3504 || yy2arr3504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[0] { - yym3483 := z.EncBinary() - _ = yym3483 + if yyq3504[0] { + yym3506 := z.EncBinary() + _ = yym3506 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43490,23 +43761,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3481[0] { + if yyq3504[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3484 := z.EncBinary() - _ = yym3484 + yym3507 := z.EncBinary() + _ = yym3507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3481 || yy2arr3481 { + if yyr3504 || yy2arr3504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[1] { - yym3486 := z.EncBinary() - _ = yym3486 + if yyq3504[1] { + yym3509 := z.EncBinary() + _ = yym3509 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43515,43 +43786,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3481[1] { + if yyq3504[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3487 := z.EncBinary() - _ = yym3487 + yym3510 := z.EncBinary() + _ = yym3510 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3481 || yy2arr3481 { + if yyr3504 || yy2arr3504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[2] { - yy3489 := &x.ObjectMeta - yy3489.CodecEncodeSelf(e) + if yyq3504[2] { + yy3512 := &x.ObjectMeta + yy3512.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3481[2] { + if yyq3504[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3490 := &x.ObjectMeta - yy3490.CodecEncodeSelf(e) + yy3513 := &x.ObjectMeta + yy3513.CodecEncodeSelf(e) } } - if yyr3481 || yy2arr3481 { + if yyr3504 || yy2arr3504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[3] { + if yyq3504[3] { if x.Data == nil { r.EncodeNil() } else { - yym3492 := z.EncBinary() - _ = yym3492 + yym3515 := z.EncBinary() + _ = yym3515 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -43561,15 +43832,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3481[3] { + if yyq3504[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym3493 := z.EncBinary() - _ = yym3493 + yym3516 := z.EncBinary() + _ = yym3516 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -43577,22 +43848,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3481 || yy2arr3481 { + if yyr3504 || yy2arr3504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3481[4] { + if yyq3504[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3481[4] { + if yyq3504[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3481 || yy2arr3481 { + if yyr3504 || yy2arr3504 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43605,25 +43876,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3495 := z.DecBinary() - _ = yym3495 + yym3518 := z.DecBinary() + _ = yym3518 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3496 := r.ContainerType() - if yyct3496 == codecSelferValueTypeMap1234 { - yyl3496 := r.ReadMapStart() - if yyl3496 == 0 { + yyct3519 := r.ContainerType() + if yyct3519 == codecSelferValueTypeMap1234 { + yyl3519 := r.ReadMapStart() + if yyl3519 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3496, d) + x.codecDecodeSelfFromMap(yyl3519, d) } - } else if yyct3496 == codecSelferValueTypeArray1234 { - yyl3496 := r.ReadArrayStart() - if yyl3496 == 0 { + } else if yyct3519 == codecSelferValueTypeArray1234 { + yyl3519 := r.ReadArrayStart() + if yyl3519 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3496, d) + x.codecDecodeSelfFromArray(yyl3519, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43635,12 +43906,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3497Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3497Slc - var yyhl3497 bool = l >= 0 - for yyj3497 := 0; ; yyj3497++ { - if yyhl3497 { - if yyj3497 >= l { + var yys3520Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3520Slc + var yyhl3520 bool = l >= 0 + for yyj3520 := 0; ; yyj3520++ { + if yyhl3520 { + if yyj3520 >= l { break } } else { @@ -43649,10 +43920,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3497Slc = r.DecodeBytes(yys3497Slc, true, true) - yys3497 := string(yys3497Slc) + yys3520Slc = r.DecodeBytes(yys3520Slc, true, true) + yys3520 := string(yys3520Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3497 { + switch yys3520 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43669,19 +43940,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3500 := &x.ObjectMeta - yyv3500.CodecDecodeSelf(d) + yyv3523 := &x.ObjectMeta + yyv3523.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3501 := &x.Data - yym3502 := z.DecBinary() - _ = yym3502 + yyv3524 := &x.Data + yym3525 := z.DecBinary() + _ = yym3525 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3501), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3524), d) } } case "type": @@ -43691,9 +43962,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3497) - } // end switch yys3497 - } // end for yyj3497 + z.DecStructFieldNotFound(-1, yys3520) + } // end switch yys3520 + } // end for yyj3520 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43701,16 +43972,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3504 int - var yyb3504 bool - var yyhl3504 bool = l >= 0 - yyj3504++ - if yyhl3504 { - yyb3504 = yyj3504 > l + var yyj3527 int + var yyb3527 bool + var yyhl3527 bool = l >= 0 + yyj3527++ + if yyhl3527 { + yyb3527 = yyj3527 > l } else { - yyb3504 = r.CheckBreak() + yyb3527 = r.CheckBreak() } - if yyb3504 { + if yyb3527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43720,13 +43991,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3504++ - if yyhl3504 { - yyb3504 = yyj3504 > l + yyj3527++ + if yyhl3527 { + yyb3527 = yyj3527 > l } else { - yyb3504 = r.CheckBreak() + yyb3527 = r.CheckBreak() } - if yyb3504 { + if yyb3527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43736,13 +44007,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3504++ - if yyhl3504 { - yyb3504 = yyj3504 > l + yyj3527++ + if yyhl3527 { + yyb3527 = yyj3527 > l } else { - yyb3504 = r.CheckBreak() + yyb3527 = r.CheckBreak() } - if yyb3504 { + if yyb3527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43750,16 +44021,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3507 := &x.ObjectMeta - yyv3507.CodecDecodeSelf(d) + yyv3530 := &x.ObjectMeta + yyv3530.CodecDecodeSelf(d) } - yyj3504++ - if yyhl3504 { - yyb3504 = yyj3504 > l + yyj3527++ + if yyhl3527 { + yyb3527 = yyj3527 > l } else { - yyb3504 = r.CheckBreak() + yyb3527 = r.CheckBreak() } - if yyb3504 { + if yyb3527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43767,21 +44038,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3508 := &x.Data - yym3509 := z.DecBinary() - _ = yym3509 + yyv3531 := &x.Data + yym3532 := z.DecBinary() + _ = yym3532 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3508), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3531), d) } } - yyj3504++ - if yyhl3504 { - yyb3504 = yyj3504 > l + yyj3527++ + if yyhl3527 { + yyb3527 = yyj3527 > l } else { - yyb3504 = r.CheckBreak() + yyb3527 = r.CheckBreak() } - if yyb3504 { + if yyb3527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43792,17 +44063,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj3504++ - if yyhl3504 { - yyb3504 = yyj3504 > l + yyj3527++ + if yyhl3527 { + yyb3527 = yyj3527 > l } else { - yyb3504 = r.CheckBreak() + yyb3527 = r.CheckBreak() } - if yyb3504 { + if yyb3527 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3504-1, "") + z.DecStructFieldNotFound(yyj3527-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43811,8 +44082,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3511 := z.EncBinary() - _ = yym3511 + yym3534 := z.EncBinary() + _ = yym3534 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -43824,8 +44095,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3512 := z.DecBinary() - _ = yym3512 + yym3535 := z.DecBinary() + _ = yym3535 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -43840,37 +44111,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3513 := z.EncBinary() - _ = yym3513 + yym3536 := z.EncBinary() + _ = yym3536 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3514 := !z.EncBinary() - yy2arr3514 := z.EncBasicHandle().StructToArray - var yyq3514 [4]bool - _, _, _ = yysep3514, yyq3514, yy2arr3514 - const yyr3514 bool = false - yyq3514[0] = x.Kind != "" - yyq3514[1] = x.APIVersion != "" - yyq3514[2] = true - var yynn3514 int - if yyr3514 || yy2arr3514 { + yysep3537 := !z.EncBinary() + yy2arr3537 := z.EncBasicHandle().StructToArray + var yyq3537 [4]bool + _, _, _ = yysep3537, yyq3537, yy2arr3537 + const yyr3537 bool = false + yyq3537[0] = x.Kind != "" + yyq3537[1] = x.APIVersion != "" + yyq3537[2] = true + var yynn3537 int + if yyr3537 || yy2arr3537 { r.EncodeArrayStart(4) } else { - yynn3514 = 1 - for _, b := range yyq3514 { + yynn3537 = 1 + for _, b := range yyq3537 { if b { - yynn3514++ + yynn3537++ } } - r.EncodeMapStart(yynn3514) - yynn3514 = 0 + r.EncodeMapStart(yynn3537) + yynn3537 = 0 } - if yyr3514 || yy2arr3514 { + if yyr3537 || yy2arr3537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3514[0] { - yym3516 := z.EncBinary() - _ = yym3516 + if yyq3537[0] { + yym3539 := z.EncBinary() + _ = yym3539 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43879,23 +44150,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3514[0] { + if yyq3537[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3517 := z.EncBinary() - _ = yym3517 + yym3540 := z.EncBinary() + _ = yym3540 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3514 || yy2arr3514 { + if yyr3537 || yy2arr3537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3514[1] { - yym3519 := z.EncBinary() - _ = yym3519 + if yyq3537[1] { + yym3542 := z.EncBinary() + _ = yym3542 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43904,54 +44175,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3514[1] { + if yyq3537[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3520 := z.EncBinary() - _ = yym3520 + yym3543 := z.EncBinary() + _ = yym3543 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3514 || yy2arr3514 { + if yyr3537 || yy2arr3537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3514[2] { - yy3522 := &x.ListMeta - yym3523 := z.EncBinary() - _ = yym3523 + if yyq3537[2] { + yy3545 := &x.ListMeta + yym3546 := z.EncBinary() + _ = yym3546 if false { - } else if z.HasExtensions() && z.EncExt(yy3522) { + } else if z.HasExtensions() && z.EncExt(yy3545) { } else { - z.EncFallback(yy3522) + z.EncFallback(yy3545) } } else { r.EncodeNil() } } else { - if yyq3514[2] { + if yyq3537[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3524 := &x.ListMeta - yym3525 := z.EncBinary() - _ = yym3525 + yy3547 := &x.ListMeta + yym3548 := z.EncBinary() + _ = yym3548 if false { - } else if z.HasExtensions() && z.EncExt(yy3524) { + } else if z.HasExtensions() && z.EncExt(yy3547) { } else { - z.EncFallback(yy3524) + z.EncFallback(yy3547) } } } - if yyr3514 || yy2arr3514 { + if yyr3537 || yy2arr3537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3527 := z.EncBinary() - _ = yym3527 + yym3550 := z.EncBinary() + _ = yym3550 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -43964,15 +44235,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3528 := z.EncBinary() - _ = yym3528 + yym3551 := z.EncBinary() + _ = yym3551 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr3514 || yy2arr3514 { + if yyr3537 || yy2arr3537 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43985,25 +44256,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3529 := z.DecBinary() - _ = yym3529 + yym3552 := z.DecBinary() + _ = yym3552 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3530 := r.ContainerType() - if yyct3530 == codecSelferValueTypeMap1234 { - yyl3530 := r.ReadMapStart() - if yyl3530 == 0 { + yyct3553 := r.ContainerType() + if yyct3553 == codecSelferValueTypeMap1234 { + yyl3553 := r.ReadMapStart() + if yyl3553 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3530, d) + x.codecDecodeSelfFromMap(yyl3553, d) } - } else if yyct3530 == codecSelferValueTypeArray1234 { - yyl3530 := r.ReadArrayStart() - if yyl3530 == 0 { + } else if yyct3553 == codecSelferValueTypeArray1234 { + yyl3553 := r.ReadArrayStart() + if yyl3553 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3530, d) + x.codecDecodeSelfFromArray(yyl3553, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44015,12 +44286,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3531Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3531Slc - var yyhl3531 bool = l >= 0 - for yyj3531 := 0; ; yyj3531++ { - if yyhl3531 { - if yyj3531 >= 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 { @@ -44029,10 +44300,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3531Slc = r.DecodeBytes(yys3531Slc, true, true) - yys3531 := string(yys3531Slc) + yys3554Slc = r.DecodeBytes(yys3554Slc, true, true) + yys3554 := string(yys3554Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3531 { + switch yys3554 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44049,31 +44320,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3534 := &x.ListMeta - yym3535 := z.DecBinary() - _ = yym3535 + yyv3557 := &x.ListMeta + yym3558 := z.DecBinary() + _ = yym3558 if false { - } else if z.HasExtensions() && z.DecExt(yyv3534) { + } else if z.HasExtensions() && z.DecExt(yyv3557) { } else { - z.DecFallback(yyv3534, false) + z.DecFallback(yyv3557, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3536 := &x.Items - yym3537 := z.DecBinary() - _ = yym3537 + yyv3559 := &x.Items + yym3560 := z.DecBinary() + _ = yym3560 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3536), d) + h.decSliceSecret((*[]Secret)(yyv3559), d) } } default: - z.DecStructFieldNotFound(-1, yys3531) - } // end switch yys3531 - } // end for yyj3531 + z.DecStructFieldNotFound(-1, yys3554) + } // end switch yys3554 + } // end for yyj3554 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44081,16 +44352,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3538 int - var yyb3538 bool - var yyhl3538 bool = l >= 0 - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + var yyj3561 int + var yyb3561 bool + var yyhl3561 bool = l >= 0 + yyj3561++ + if yyhl3561 { + yyb3561 = yyj3561 > l } else { - yyb3538 = r.CheckBreak() + yyb3561 = r.CheckBreak() } - if yyb3538 { + if yyb3561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44100,13 +44371,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3561++ + if yyhl3561 { + yyb3561 = yyj3561 > l } else { - yyb3538 = r.CheckBreak() + yyb3561 = r.CheckBreak() } - if yyb3538 { + if yyb3561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44116,13 +44387,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3561++ + if yyhl3561 { + yyb3561 = yyj3561 > l } else { - yyb3538 = r.CheckBreak() + yyb3561 = r.CheckBreak() } - if yyb3538 { + if yyb3561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44130,22 +44401,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3541 := &x.ListMeta - yym3542 := z.DecBinary() - _ = yym3542 + yyv3564 := &x.ListMeta + yym3565 := z.DecBinary() + _ = yym3565 if false { - } else if z.HasExtensions() && z.DecExt(yyv3541) { + } else if z.HasExtensions() && z.DecExt(yyv3564) { } else { - z.DecFallback(yyv3541, false) + z.DecFallback(yyv3564, false) } } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3561++ + if yyhl3561 { + yyb3561 = yyj3561 > l } else { - yyb3538 = r.CheckBreak() + yyb3561 = r.CheckBreak() } - if yyb3538 { + if yyb3561 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44153,26 +44424,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3543 := &x.Items - yym3544 := z.DecBinary() - _ = yym3544 + yyv3566 := &x.Items + yym3567 := z.DecBinary() + _ = yym3567 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3543), d) + h.decSliceSecret((*[]Secret)(yyv3566), d) } } for { - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3561++ + if yyhl3561 { + yyb3561 = yyj3561 > l } else { - yyb3538 = r.CheckBreak() + yyb3561 = r.CheckBreak() } - if yyb3538 { + if yyb3561 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3538-1, "") + z.DecStructFieldNotFound(yyj3561-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44184,38 +44455,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3545 := z.EncBinary() - _ = yym3545 + yym3568 := z.EncBinary() + _ = yym3568 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3546 := !z.EncBinary() - yy2arr3546 := z.EncBasicHandle().StructToArray - var yyq3546 [4]bool - _, _, _ = yysep3546, yyq3546, yy2arr3546 - const yyr3546 bool = false - yyq3546[0] = x.Kind != "" - yyq3546[1] = x.APIVersion != "" - yyq3546[2] = true - yyq3546[3] = len(x.Data) != 0 - var yynn3546 int - if yyr3546 || yy2arr3546 { + yysep3569 := !z.EncBinary() + yy2arr3569 := z.EncBasicHandle().StructToArray + var yyq3569 [4]bool + _, _, _ = yysep3569, yyq3569, yy2arr3569 + const yyr3569 bool = false + yyq3569[0] = x.Kind != "" + yyq3569[1] = x.APIVersion != "" + yyq3569[2] = true + yyq3569[3] = len(x.Data) != 0 + var yynn3569 int + if yyr3569 || yy2arr3569 { r.EncodeArrayStart(4) } else { - yynn3546 = 0 - for _, b := range yyq3546 { + yynn3569 = 0 + for _, b := range yyq3569 { if b { - yynn3546++ + yynn3569++ } } - r.EncodeMapStart(yynn3546) - yynn3546 = 0 + r.EncodeMapStart(yynn3569) + yynn3569 = 0 } - if yyr3546 || yy2arr3546 { + if yyr3569 || yy2arr3569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3546[0] { - yym3548 := z.EncBinary() - _ = yym3548 + if yyq3569[0] { + yym3571 := z.EncBinary() + _ = yym3571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44224,23 +44495,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3546[0] { + if yyq3569[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3549 := z.EncBinary() - _ = yym3549 + yym3572 := z.EncBinary() + _ = yym3572 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3546 || yy2arr3546 { + if yyr3569 || yy2arr3569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3546[1] { - yym3551 := z.EncBinary() - _ = yym3551 + if yyq3569[1] { + yym3574 := z.EncBinary() + _ = yym3574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44249,43 +44520,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3546[1] { + if yyq3569[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3552 := z.EncBinary() - _ = yym3552 + yym3575 := z.EncBinary() + _ = yym3575 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3546 || yy2arr3546 { + if yyr3569 || yy2arr3569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3546[2] { - yy3554 := &x.ObjectMeta - yy3554.CodecEncodeSelf(e) + if yyq3569[2] { + yy3577 := &x.ObjectMeta + yy3577.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3546[2] { + if yyq3569[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3555 := &x.ObjectMeta - yy3555.CodecEncodeSelf(e) + yy3578 := &x.ObjectMeta + yy3578.CodecEncodeSelf(e) } } - if yyr3546 || yy2arr3546 { + if yyr3569 || yy2arr3569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3546[3] { + if yyq3569[3] { if x.Data == nil { r.EncodeNil() } else { - yym3557 := z.EncBinary() - _ = yym3557 + yym3580 := z.EncBinary() + _ = yym3580 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -44295,15 +44566,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3546[3] { + if yyq3569[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym3558 := z.EncBinary() - _ = yym3558 + yym3581 := z.EncBinary() + _ = yym3581 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -44311,7 +44582,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3546 || yy2arr3546 { + if yyr3569 || yy2arr3569 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44324,25 +44595,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3559 := z.DecBinary() - _ = yym3559 + yym3582 := z.DecBinary() + _ = yym3582 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3560 := r.ContainerType() - if yyct3560 == codecSelferValueTypeMap1234 { - yyl3560 := r.ReadMapStart() - if yyl3560 == 0 { + yyct3583 := r.ContainerType() + if yyct3583 == codecSelferValueTypeMap1234 { + yyl3583 := r.ReadMapStart() + if yyl3583 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3560, d) + x.codecDecodeSelfFromMap(yyl3583, d) } - } else if yyct3560 == codecSelferValueTypeArray1234 { - yyl3560 := r.ReadArrayStart() - if yyl3560 == 0 { + } else if yyct3583 == codecSelferValueTypeArray1234 { + yyl3583 := r.ReadArrayStart() + if yyl3583 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3560, d) + x.codecDecodeSelfFromArray(yyl3583, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44354,12 +44625,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3561Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3561Slc - var yyhl3561 bool = l >= 0 - for yyj3561 := 0; ; yyj3561++ { - if yyhl3561 { - if yyj3561 >= l { + var yys3584Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3584Slc + var yyhl3584 bool = l >= 0 + for yyj3584 := 0; ; yyj3584++ { + if yyhl3584 { + if yyj3584 >= l { break } } else { @@ -44368,10 +44639,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3561Slc = r.DecodeBytes(yys3561Slc, true, true) - yys3561 := string(yys3561Slc) + yys3584Slc = r.DecodeBytes(yys3584Slc, true, true) + yys3584 := string(yys3584Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3561 { + switch yys3584 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44388,25 +44659,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3564 := &x.ObjectMeta - yyv3564.CodecDecodeSelf(d) + yyv3587 := &x.ObjectMeta + yyv3587.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3565 := &x.Data - yym3566 := z.DecBinary() - _ = yym3566 + yyv3588 := &x.Data + yym3589 := z.DecBinary() + _ = yym3589 if false { } else { - z.F.DecMapStringStringX(yyv3565, false, d) + z.F.DecMapStringStringX(yyv3588, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3561) - } // end switch yys3561 - } // end for yyj3561 + z.DecStructFieldNotFound(-1, yys3584) + } // end switch yys3584 + } // end for yyj3584 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44414,16 +44685,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3567 int - var yyb3567 bool - var yyhl3567 bool = l >= 0 - yyj3567++ - if yyhl3567 { - yyb3567 = yyj3567 > l + var yyj3590 int + var yyb3590 bool + var yyhl3590 bool = l >= 0 + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3567 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3567 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44433,13 +44704,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3567++ - if yyhl3567 { - yyb3567 = yyj3567 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3567 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3567 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44449,13 +44720,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3567++ - if yyhl3567 { - yyb3567 = yyj3567 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3567 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3567 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44463,16 +44734,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3570 := &x.ObjectMeta - yyv3570.CodecDecodeSelf(d) + yyv3593 := &x.ObjectMeta + yyv3593.CodecDecodeSelf(d) } - yyj3567++ - if yyhl3567 { - yyb3567 = yyj3567 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3567 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3567 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44480,26 +44751,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3571 := &x.Data - yym3572 := z.DecBinary() - _ = yym3572 + yyv3594 := &x.Data + yym3595 := z.DecBinary() + _ = yym3595 if false { } else { - z.F.DecMapStringStringX(yyv3571, false, d) + z.F.DecMapStringStringX(yyv3594, false, d) } } for { - yyj3567++ - if yyhl3567 { - yyb3567 = yyj3567 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3567 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3567 { + if yyb3590 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3567-1, "") + z.DecStructFieldNotFound(yyj3590-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44511,38 +44782,38 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3573 := z.EncBinary() - _ = yym3573 + yym3596 := z.EncBinary() + _ = yym3596 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3574 := !z.EncBinary() - yy2arr3574 := z.EncBasicHandle().StructToArray - var yyq3574 [4]bool - _, _, _ = yysep3574, yyq3574, yy2arr3574 - const yyr3574 bool = false - yyq3574[0] = x.Kind != "" - yyq3574[1] = x.APIVersion != "" - yyq3574[2] = true - yyq3574[3] = len(x.Items) != 0 - var yynn3574 int - if yyr3574 || yy2arr3574 { + yysep3597 := !z.EncBinary() + yy2arr3597 := z.EncBasicHandle().StructToArray + var yyq3597 [4]bool + _, _, _ = yysep3597, yyq3597, yy2arr3597 + const yyr3597 bool = false + yyq3597[0] = x.Kind != "" + yyq3597[1] = x.APIVersion != "" + yyq3597[2] = true + yyq3597[3] = len(x.Items) != 0 + var yynn3597 int + if yyr3597 || yy2arr3597 { r.EncodeArrayStart(4) } else { - yynn3574 = 0 - for _, b := range yyq3574 { + yynn3597 = 0 + for _, b := range yyq3597 { if b { - yynn3574++ + yynn3597++ } } - r.EncodeMapStart(yynn3574) - yynn3574 = 0 + r.EncodeMapStart(yynn3597) + yynn3597 = 0 } - if yyr3574 || yy2arr3574 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3574[0] { - yym3576 := z.EncBinary() - _ = yym3576 + if yyq3597[0] { + yym3599 := z.EncBinary() + _ = yym3599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44551,23 +44822,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3574[0] { + if yyq3597[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3577 := z.EncBinary() - _ = yym3577 + yym3600 := z.EncBinary() + _ = yym3600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3574 || yy2arr3574 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3574[1] { - yym3579 := z.EncBinary() - _ = yym3579 + if yyq3597[1] { + yym3602 := z.EncBinary() + _ = yym3602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44576,55 +44847,55 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3574[1] { + if yyq3597[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3580 := z.EncBinary() - _ = yym3580 + yym3603 := z.EncBinary() + _ = yym3603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3574 || yy2arr3574 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3574[2] { - yy3582 := &x.ListMeta - yym3583 := z.EncBinary() - _ = yym3583 + if yyq3597[2] { + yy3605 := &x.ListMeta + yym3606 := z.EncBinary() + _ = yym3606 if false { - } else if z.HasExtensions() && z.EncExt(yy3582) { + } else if z.HasExtensions() && z.EncExt(yy3605) { } else { - z.EncFallback(yy3582) + z.EncFallback(yy3605) } } else { r.EncodeNil() } } else { - if yyq3574[2] { + if yyq3597[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3584 := &x.ListMeta - yym3585 := z.EncBinary() - _ = yym3585 + yy3607 := &x.ListMeta + yym3608 := z.EncBinary() + _ = yym3608 if false { - } else if z.HasExtensions() && z.EncExt(yy3584) { + } else if z.HasExtensions() && z.EncExt(yy3607) { } else { - z.EncFallback(yy3584) + z.EncFallback(yy3607) } } } - if yyr3574 || yy2arr3574 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3574[3] { + if yyq3597[3] { if x.Items == nil { r.EncodeNil() } else { - yym3587 := z.EncBinary() - _ = yym3587 + yym3610 := z.EncBinary() + _ = yym3610 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -44634,15 +44905,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3574[3] { + if yyq3597[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym3588 := z.EncBinary() - _ = yym3588 + yym3611 := z.EncBinary() + _ = yym3611 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -44650,7 +44921,7 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3574 || yy2arr3574 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44663,25 +44934,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3589 := z.DecBinary() - _ = yym3589 + yym3612 := z.DecBinary() + _ = yym3612 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3590 := r.ContainerType() - if yyct3590 == codecSelferValueTypeMap1234 { - yyl3590 := r.ReadMapStart() - if yyl3590 == 0 { + yyct3613 := r.ContainerType() + if yyct3613 == codecSelferValueTypeMap1234 { + yyl3613 := r.ReadMapStart() + if yyl3613 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3590, d) + x.codecDecodeSelfFromMap(yyl3613, d) } - } else if yyct3590 == codecSelferValueTypeArray1234 { - yyl3590 := r.ReadArrayStart() - if yyl3590 == 0 { + } else if yyct3613 == codecSelferValueTypeArray1234 { + yyl3613 := r.ReadArrayStart() + if yyl3613 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3590, d) + x.codecDecodeSelfFromArray(yyl3613, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44693,12 +44964,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3591Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3591Slc - var yyhl3591 bool = l >= 0 - for yyj3591 := 0; ; yyj3591++ { - if yyhl3591 { - if yyj3591 >= l { + var yys3614Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3614Slc + var yyhl3614 bool = l >= 0 + for yyj3614 := 0; ; yyj3614++ { + if yyhl3614 { + if yyj3614 >= l { break } } else { @@ -44707,10 +44978,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3591Slc = r.DecodeBytes(yys3591Slc, true, true) - yys3591 := string(yys3591Slc) + yys3614Slc = r.DecodeBytes(yys3614Slc, true, true) + yys3614 := string(yys3614Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3591 { + switch yys3614 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44727,31 +44998,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3594 := &x.ListMeta - yym3595 := z.DecBinary() - _ = yym3595 + yyv3617 := &x.ListMeta + yym3618 := z.DecBinary() + _ = yym3618 if false { - } else if z.HasExtensions() && z.DecExt(yyv3594) { + } else if z.HasExtensions() && z.DecExt(yyv3617) { } else { - z.DecFallback(yyv3594, false) + z.DecFallback(yyv3617, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3596 := &x.Items - yym3597 := z.DecBinary() - _ = yym3597 + yyv3619 := &x.Items + yym3620 := z.DecBinary() + _ = yym3620 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv3596), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv3619), d) } } default: - z.DecStructFieldNotFound(-1, yys3591) - } // end switch yys3591 - } // end for yyj3591 + z.DecStructFieldNotFound(-1, yys3614) + } // end switch yys3614 + } // end for yyj3614 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44759,16 +45030,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3598 int - var yyb3598 bool - var yyhl3598 bool = l >= 0 - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + var yyj3621 int + var yyb3621 bool + var yyhl3621 bool = l >= 0 + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44778,13 +45049,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44794,13 +45065,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44808,22 +45079,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3601 := &x.ListMeta - yym3602 := z.DecBinary() - _ = yym3602 + yyv3624 := &x.ListMeta + yym3625 := z.DecBinary() + _ = yym3625 if false { - } else if z.HasExtensions() && z.DecExt(yyv3601) { + } else if z.HasExtensions() && z.DecExt(yyv3624) { } else { - z.DecFallback(yyv3601, false) + z.DecFallback(yyv3624, false) } } - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44831,26 +45102,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3603 := &x.Items - yym3604 := z.DecBinary() - _ = yym3604 + yyv3626 := &x.Items + yym3627 := z.DecBinary() + _ = yym3627 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv3603), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv3626), d) } } for { - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3598-1, "") + z.DecStructFieldNotFound(yyj3621-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44859,8 +45130,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3605 := z.EncBinary() - _ = yym3605 + yym3628 := z.EncBinary() + _ = yym3628 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -44872,8 +45143,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3606 := z.DecBinary() - _ = yym3606 + yym3629 := z.DecBinary() + _ = yym3629 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -44885,8 +45156,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3607 := z.EncBinary() - _ = yym3607 + yym3630 := z.EncBinary() + _ = yym3630 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -44898,8 +45169,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3608 := z.DecBinary() - _ = yym3608 + yym3631 := z.DecBinary() + _ = yym3631 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -44914,32 +45185,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3609 := z.EncBinary() - _ = yym3609 + yym3632 := z.EncBinary() + _ = yym3632 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3610 := !z.EncBinary() - yy2arr3610 := z.EncBasicHandle().StructToArray - var yyq3610 [4]bool - _, _, _ = yysep3610, yyq3610, yy2arr3610 - const yyr3610 bool = false - yyq3610[2] = x.Message != "" - yyq3610[3] = x.Error != "" - var yynn3610 int - if yyr3610 || yy2arr3610 { + yysep3633 := !z.EncBinary() + yy2arr3633 := z.EncBasicHandle().StructToArray + var yyq3633 [4]bool + _, _, _ = yysep3633, yyq3633, yy2arr3633 + const yyr3633 bool = false + yyq3633[2] = x.Message != "" + yyq3633[3] = x.Error != "" + var yynn3633 int + if yyr3633 || yy2arr3633 { r.EncodeArrayStart(4) } else { - yynn3610 = 2 - for _, b := range yyq3610 { + yynn3633 = 2 + for _, b := range yyq3633 { if b { - yynn3610++ + yynn3633++ } } - r.EncodeMapStart(yynn3610) - yynn3610 = 0 + r.EncodeMapStart(yynn3633) + yynn3633 = 0 } - if yyr3610 || yy2arr3610 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -44948,7 +45219,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3610 || yy2arr3610 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -44957,11 +45228,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3610 || yy2arr3610 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3610[2] { - yym3614 := z.EncBinary() - _ = yym3614 + if yyq3633[2] { + yym3637 := z.EncBinary() + _ = yym3637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -44970,23 +45241,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3610[2] { + if yyq3633[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3615 := z.EncBinary() - _ = yym3615 + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3610 || yy2arr3610 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3610[3] { - yym3617 := z.EncBinary() - _ = yym3617 + if yyq3633[3] { + yym3640 := z.EncBinary() + _ = yym3640 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -44995,19 +45266,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3610[3] { + if yyq3633[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3618 := z.EncBinary() - _ = yym3618 + yym3641 := z.EncBinary() + _ = yym3641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr3610 || yy2arr3610 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45020,25 +45291,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3619 := z.DecBinary() - _ = yym3619 + yym3642 := z.DecBinary() + _ = yym3642 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3620 := r.ContainerType() - if yyct3620 == codecSelferValueTypeMap1234 { - yyl3620 := r.ReadMapStart() - if yyl3620 == 0 { + yyct3643 := r.ContainerType() + if yyct3643 == codecSelferValueTypeMap1234 { + yyl3643 := r.ReadMapStart() + if yyl3643 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3620, d) + x.codecDecodeSelfFromMap(yyl3643, d) } - } else if yyct3620 == codecSelferValueTypeArray1234 { - yyl3620 := r.ReadArrayStart() - if yyl3620 == 0 { + } else if yyct3643 == codecSelferValueTypeArray1234 { + yyl3643 := r.ReadArrayStart() + if yyl3643 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3620, d) + x.codecDecodeSelfFromArray(yyl3643, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45050,12 +45321,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3621Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3621Slc - var yyhl3621 bool = l >= 0 - for yyj3621 := 0; ; yyj3621++ { - if yyhl3621 { - if yyj3621 >= l { + var yys3644Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3644Slc + var yyhl3644 bool = l >= 0 + for yyj3644 := 0; ; yyj3644++ { + if yyhl3644 { + if yyj3644 >= l { break } } else { @@ -45064,10 +45335,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3621Slc = r.DecodeBytes(yys3621Slc, true, true) - yys3621 := string(yys3621Slc) + yys3644Slc = r.DecodeBytes(yys3644Slc, true, true) + yys3644 := string(yys3644Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3621 { + switch yys3644 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -45093,9 +45364,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3621) - } // end switch yys3621 - } // end for yyj3621 + z.DecStructFieldNotFound(-1, yys3644) + } // end switch yys3644 + } // end for yyj3644 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45103,16 +45374,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3626 int - var yyb3626 bool - var yyhl3626 bool = l >= 0 - yyj3626++ - if yyhl3626 { - yyb3626 = yyj3626 > l + var yyj3649 int + var yyb3649 bool + var yyhl3649 bool = l >= 0 + yyj3649++ + if yyhl3649 { + yyb3649 = yyj3649 > l } else { - yyb3626 = r.CheckBreak() + yyb3649 = r.CheckBreak() } - if yyb3626 { + if yyb3649 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45122,13 +45393,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj3626++ - if yyhl3626 { - yyb3626 = yyj3626 > l + yyj3649++ + if yyhl3649 { + yyb3649 = yyj3649 > l } else { - yyb3626 = r.CheckBreak() + yyb3649 = r.CheckBreak() } - if yyb3626 { + if yyb3649 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45138,13 +45409,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3626++ - if yyhl3626 { - yyb3626 = yyj3626 > l + yyj3649++ + if yyhl3649 { + yyb3649 = yyj3649 > l } else { - yyb3626 = r.CheckBreak() + yyb3649 = r.CheckBreak() } - if yyb3626 { + if yyb3649 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45154,13 +45425,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj3626++ - if yyhl3626 { - yyb3626 = yyj3626 > l + yyj3649++ + if yyhl3649 { + yyb3649 = yyj3649 > l } else { - yyb3626 = r.CheckBreak() + yyb3649 = r.CheckBreak() } - if yyb3626 { + if yyb3649 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45171,17 +45442,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj3626++ - if yyhl3626 { - yyb3626 = yyj3626 > l + yyj3649++ + if yyhl3649 { + yyb3649 = yyj3649 > l } else { - yyb3626 = r.CheckBreak() + yyb3649 = r.CheckBreak() } - if yyb3626 { + if yyb3649 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3626-1, "") + z.DecStructFieldNotFound(yyj3649-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45193,38 +45464,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3631 := z.EncBinary() - _ = yym3631 + yym3654 := z.EncBinary() + _ = yym3654 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3632 := !z.EncBinary() - yy2arr3632 := z.EncBasicHandle().StructToArray - var yyq3632 [4]bool - _, _, _ = yysep3632, yyq3632, yy2arr3632 - const yyr3632 bool = false - yyq3632[0] = x.Kind != "" - yyq3632[1] = x.APIVersion != "" - yyq3632[2] = true - yyq3632[3] = len(x.Conditions) != 0 - var yynn3632 int - if yyr3632 || yy2arr3632 { + yysep3655 := !z.EncBinary() + yy2arr3655 := z.EncBasicHandle().StructToArray + var yyq3655 [4]bool + _, _, _ = yysep3655, yyq3655, yy2arr3655 + const yyr3655 bool = false + yyq3655[0] = x.Kind != "" + yyq3655[1] = x.APIVersion != "" + yyq3655[2] = true + yyq3655[3] = len(x.Conditions) != 0 + var yynn3655 int + if yyr3655 || yy2arr3655 { r.EncodeArrayStart(4) } else { - yynn3632 = 0 - for _, b := range yyq3632 { + yynn3655 = 0 + for _, b := range yyq3655 { if b { - yynn3632++ + yynn3655++ } } - r.EncodeMapStart(yynn3632) - yynn3632 = 0 + r.EncodeMapStart(yynn3655) + yynn3655 = 0 } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[0] { - yym3634 := z.EncBinary() - _ = yym3634 + if yyq3655[0] { + yym3657 := z.EncBinary() + _ = yym3657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45233,23 +45504,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3632[0] { + if yyq3655[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3635 := z.EncBinary() - _ = yym3635 + yym3658 := z.EncBinary() + _ = yym3658 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[1] { - yym3637 := z.EncBinary() - _ = yym3637 + if yyq3655[1] { + yym3660 := z.EncBinary() + _ = yym3660 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45258,43 +45529,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3632[1] { + if yyq3655[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3638 := z.EncBinary() - _ = yym3638 + yym3661 := z.EncBinary() + _ = yym3661 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[2] { - yy3640 := &x.ObjectMeta - yy3640.CodecEncodeSelf(e) + if yyq3655[2] { + yy3663 := &x.ObjectMeta + yy3663.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3632[2] { + if yyq3655[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3641 := &x.ObjectMeta - yy3641.CodecEncodeSelf(e) + yy3664 := &x.ObjectMeta + yy3664.CodecEncodeSelf(e) } } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[3] { + if yyq3655[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym3643 := z.EncBinary() - _ = yym3643 + yym3666 := z.EncBinary() + _ = yym3666 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -45304,15 +45575,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3632[3] { + if yyq3655[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym3644 := z.EncBinary() - _ = yym3644 + yym3667 := z.EncBinary() + _ = yym3667 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -45320,7 +45591,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45333,25 +45604,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3645 := z.DecBinary() - _ = yym3645 + yym3668 := z.DecBinary() + _ = yym3668 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3646 := r.ContainerType() - if yyct3646 == codecSelferValueTypeMap1234 { - yyl3646 := r.ReadMapStart() - if yyl3646 == 0 { + yyct3669 := r.ContainerType() + if yyct3669 == codecSelferValueTypeMap1234 { + yyl3669 := r.ReadMapStart() + if yyl3669 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3646, d) + x.codecDecodeSelfFromMap(yyl3669, d) } - } else if yyct3646 == codecSelferValueTypeArray1234 { - yyl3646 := r.ReadArrayStart() - if yyl3646 == 0 { + } else if yyct3669 == codecSelferValueTypeArray1234 { + yyl3669 := r.ReadArrayStart() + if yyl3669 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3646, d) + x.codecDecodeSelfFromArray(yyl3669, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45363,12 +45634,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3647Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3647Slc - var yyhl3647 bool = l >= 0 - for yyj3647 := 0; ; yyj3647++ { - if yyhl3647 { - if yyj3647 >= l { + var yys3670Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3670Slc + var yyhl3670 bool = l >= 0 + for yyj3670 := 0; ; yyj3670++ { + if yyhl3670 { + if yyj3670 >= l { break } } else { @@ -45377,10 +45648,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3647Slc = r.DecodeBytes(yys3647Slc, true, true) - yys3647 := string(yys3647Slc) + yys3670Slc = r.DecodeBytes(yys3670Slc, true, true) + yys3670 := string(yys3670Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3647 { + switch yys3670 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45397,25 +45668,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3650 := &x.ObjectMeta - yyv3650.CodecDecodeSelf(d) + yyv3673 := &x.ObjectMeta + yyv3673.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3651 := &x.Conditions - yym3652 := z.DecBinary() - _ = yym3652 + yyv3674 := &x.Conditions + yym3675 := z.DecBinary() + _ = yym3675 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3651), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3674), d) } } default: - z.DecStructFieldNotFound(-1, yys3647) - } // end switch yys3647 - } // end for yyj3647 + z.DecStructFieldNotFound(-1, yys3670) + } // end switch yys3670 + } // end for yyj3670 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45423,16 +45694,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3653 int - var yyb3653 bool - var yyhl3653 bool = l >= 0 - yyj3653++ - if yyhl3653 { - yyb3653 = yyj3653 > l + var yyj3676 int + var yyb3676 bool + var yyhl3676 bool = l >= 0 + yyj3676++ + if yyhl3676 { + yyb3676 = yyj3676 > l } else { - yyb3653 = r.CheckBreak() + yyb3676 = r.CheckBreak() } - if yyb3653 { + if yyb3676 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45442,13 +45713,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3653++ - if yyhl3653 { - yyb3653 = yyj3653 > l + yyj3676++ + if yyhl3676 { + yyb3676 = yyj3676 > l } else { - yyb3653 = r.CheckBreak() + yyb3676 = r.CheckBreak() } - if yyb3653 { + if yyb3676 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45458,13 +45729,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3653++ - if yyhl3653 { - yyb3653 = yyj3653 > l + yyj3676++ + if yyhl3676 { + yyb3676 = yyj3676 > l } else { - yyb3653 = r.CheckBreak() + yyb3676 = r.CheckBreak() } - if yyb3653 { + if yyb3676 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45472,16 +45743,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3656 := &x.ObjectMeta - yyv3656.CodecDecodeSelf(d) + yyv3679 := &x.ObjectMeta + yyv3679.CodecDecodeSelf(d) } - yyj3653++ - if yyhl3653 { - yyb3653 = yyj3653 > l + yyj3676++ + if yyhl3676 { + yyb3676 = yyj3676 > l } else { - yyb3653 = r.CheckBreak() + yyb3676 = r.CheckBreak() } - if yyb3653 { + if yyb3676 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45489,26 +45760,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3657 := &x.Conditions - yym3658 := z.DecBinary() - _ = yym3658 + yyv3680 := &x.Conditions + yym3681 := z.DecBinary() + _ = yym3681 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3657), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3680), d) } } for { - yyj3653++ - if yyhl3653 { - yyb3653 = yyj3653 > l + yyj3676++ + if yyhl3676 { + yyb3676 = yyj3676 > l } else { - yyb3653 = r.CheckBreak() + yyb3676 = r.CheckBreak() } - if yyb3653 { + if yyb3676 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3653-1, "") + z.DecStructFieldNotFound(yyj3676-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45520,37 +45791,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3659 := z.EncBinary() - _ = yym3659 + yym3682 := z.EncBinary() + _ = yym3682 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3660 := !z.EncBinary() - yy2arr3660 := z.EncBasicHandle().StructToArray - var yyq3660 [4]bool - _, _, _ = yysep3660, yyq3660, yy2arr3660 - const yyr3660 bool = false - yyq3660[0] = x.Kind != "" - yyq3660[1] = x.APIVersion != "" - yyq3660[2] = true - var yynn3660 int - if yyr3660 || yy2arr3660 { + yysep3683 := !z.EncBinary() + yy2arr3683 := z.EncBasicHandle().StructToArray + var yyq3683 [4]bool + _, _, _ = yysep3683, yyq3683, yy2arr3683 + const yyr3683 bool = false + yyq3683[0] = x.Kind != "" + yyq3683[1] = x.APIVersion != "" + yyq3683[2] = true + var yynn3683 int + if yyr3683 || yy2arr3683 { r.EncodeArrayStart(4) } else { - yynn3660 = 1 - for _, b := range yyq3660 { + yynn3683 = 1 + for _, b := range yyq3683 { if b { - yynn3660++ + yynn3683++ } } - r.EncodeMapStart(yynn3660) - yynn3660 = 0 + r.EncodeMapStart(yynn3683) + yynn3683 = 0 } - if yyr3660 || yy2arr3660 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3660[0] { - yym3662 := z.EncBinary() - _ = yym3662 + if yyq3683[0] { + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45559,23 +45830,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3660[0] { + if yyq3683[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3663 := z.EncBinary() - _ = yym3663 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3660 || yy2arr3660 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3660[1] { - yym3665 := z.EncBinary() - _ = yym3665 + if yyq3683[1] { + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45584,54 +45855,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3660[1] { + if yyq3683[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3666 := z.EncBinary() - _ = yym3666 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3660 || yy2arr3660 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3660[2] { - yy3668 := &x.ListMeta - yym3669 := z.EncBinary() - _ = yym3669 + if yyq3683[2] { + yy3691 := &x.ListMeta + yym3692 := z.EncBinary() + _ = yym3692 if false { - } else if z.HasExtensions() && z.EncExt(yy3668) { + } else if z.HasExtensions() && z.EncExt(yy3691) { } else { - z.EncFallback(yy3668) + z.EncFallback(yy3691) } } else { r.EncodeNil() } } else { - if yyq3660[2] { + if yyq3683[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3670 := &x.ListMeta - yym3671 := z.EncBinary() - _ = yym3671 + yy3693 := &x.ListMeta + yym3694 := z.EncBinary() + _ = yym3694 if false { - } else if z.HasExtensions() && z.EncExt(yy3670) { + } else if z.HasExtensions() && z.EncExt(yy3693) { } else { - z.EncFallback(yy3670) + z.EncFallback(yy3693) } } } - if yyr3660 || yy2arr3660 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3673 := z.EncBinary() - _ = yym3673 + yym3696 := z.EncBinary() + _ = yym3696 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -45644,15 +45915,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3674 := z.EncBinary() - _ = yym3674 + yym3697 := z.EncBinary() + _ = yym3697 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr3660 || yy2arr3660 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45665,25 +45936,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3675 := z.DecBinary() - _ = yym3675 + yym3698 := z.DecBinary() + _ = yym3698 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3676 := r.ContainerType() - if yyct3676 == codecSelferValueTypeMap1234 { - yyl3676 := r.ReadMapStart() - if yyl3676 == 0 { + yyct3699 := r.ContainerType() + if yyct3699 == codecSelferValueTypeMap1234 { + yyl3699 := r.ReadMapStart() + if yyl3699 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3676, d) + x.codecDecodeSelfFromMap(yyl3699, d) } - } else if yyct3676 == codecSelferValueTypeArray1234 { - yyl3676 := r.ReadArrayStart() - if yyl3676 == 0 { + } else if yyct3699 == codecSelferValueTypeArray1234 { + yyl3699 := r.ReadArrayStart() + if yyl3699 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3676, d) + x.codecDecodeSelfFromArray(yyl3699, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45695,12 +45966,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3677Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3677Slc - var yyhl3677 bool = l >= 0 - for yyj3677 := 0; ; yyj3677++ { - if yyhl3677 { - if yyj3677 >= l { + var yys3700Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3700Slc + var yyhl3700 bool = l >= 0 + for yyj3700 := 0; ; yyj3700++ { + if yyhl3700 { + if yyj3700 >= l { break } } else { @@ -45709,10 +45980,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3677Slc = r.DecodeBytes(yys3677Slc, true, true) - yys3677 := string(yys3677Slc) + yys3700Slc = r.DecodeBytes(yys3700Slc, true, true) + yys3700 := string(yys3700Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3677 { + switch yys3700 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45729,31 +46000,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3680 := &x.ListMeta - yym3681 := z.DecBinary() - _ = yym3681 + yyv3703 := &x.ListMeta + yym3704 := z.DecBinary() + _ = yym3704 if false { - } else if z.HasExtensions() && z.DecExt(yyv3680) { + } else if z.HasExtensions() && z.DecExt(yyv3703) { } else { - z.DecFallback(yyv3680, false) + z.DecFallback(yyv3703, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3682 := &x.Items - yym3683 := z.DecBinary() - _ = yym3683 + yyv3705 := &x.Items + yym3706 := z.DecBinary() + _ = yym3706 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3682), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3705), d) } } default: - z.DecStructFieldNotFound(-1, yys3677) - } // end switch yys3677 - } // end for yyj3677 + z.DecStructFieldNotFound(-1, yys3700) + } // end switch yys3700 + } // end for yyj3700 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45761,16 +46032,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3684 int - var yyb3684 bool - var yyhl3684 bool = l >= 0 - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + var yyj3707 int + var yyb3707 bool + var yyhl3707 bool = l >= 0 + yyj3707++ + if yyhl3707 { + yyb3707 = yyj3707 > l } else { - yyb3684 = r.CheckBreak() + yyb3707 = r.CheckBreak() } - if yyb3684 { + if yyb3707 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45780,13 +46051,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + yyj3707++ + if yyhl3707 { + yyb3707 = yyj3707 > l } else { - yyb3684 = r.CheckBreak() + yyb3707 = r.CheckBreak() } - if yyb3684 { + if yyb3707 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45796,13 +46067,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + yyj3707++ + if yyhl3707 { + yyb3707 = yyj3707 > l } else { - yyb3684 = r.CheckBreak() + yyb3707 = r.CheckBreak() } - if yyb3684 { + if yyb3707 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45810,22 +46081,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3687 := &x.ListMeta - yym3688 := z.DecBinary() - _ = yym3688 + yyv3710 := &x.ListMeta + yym3711 := z.DecBinary() + _ = yym3711 if false { - } else if z.HasExtensions() && z.DecExt(yyv3687) { + } else if z.HasExtensions() && z.DecExt(yyv3710) { } else { - z.DecFallback(yyv3687, false) + z.DecFallback(yyv3710, false) } } - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + yyj3707++ + if yyhl3707 { + yyb3707 = yyj3707 > l } else { - yyb3684 = r.CheckBreak() + yyb3707 = r.CheckBreak() } - if yyb3684 { + if yyb3707 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45833,26 +46104,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3689 := &x.Items - yym3690 := z.DecBinary() - _ = yym3690 + yyv3712 := &x.Items + yym3713 := z.DecBinary() + _ = yym3713 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3689), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3712), d) } } for { - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + yyj3707++ + if yyhl3707 { + yyb3707 = yyj3707 > l } else { - yyb3684 = r.CheckBreak() + yyb3707 = r.CheckBreak() } - if yyb3684 { + if yyb3707 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3684-1, "") + z.DecStructFieldNotFound(yyj3707-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45864,37 +46135,37 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3691 := z.EncBinary() - _ = yym3691 + yym3714 := z.EncBinary() + _ = yym3714 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3692 := !z.EncBinary() - yy2arr3692 := z.EncBasicHandle().StructToArray - var yyq3692 [5]bool - _, _, _ = yysep3692, yyq3692, yy2arr3692 - const yyr3692 bool = false - yyq3692[0] = x.Capabilities != nil - yyq3692[1] = x.Privileged != nil - yyq3692[2] = x.SELinuxOptions != nil - yyq3692[3] = x.RunAsUser != nil - yyq3692[4] = x.RunAsNonRoot != nil - var yynn3692 int - if yyr3692 || yy2arr3692 { + yysep3715 := !z.EncBinary() + yy2arr3715 := z.EncBasicHandle().StructToArray + var yyq3715 [5]bool + _, _, _ = yysep3715, yyq3715, yy2arr3715 + const yyr3715 bool = false + yyq3715[0] = x.Capabilities != nil + yyq3715[1] = x.Privileged != nil + yyq3715[2] = x.SELinuxOptions != nil + yyq3715[3] = x.RunAsUser != nil + yyq3715[4] = x.RunAsNonRoot != nil + var yynn3715 int + if yyr3715 || yy2arr3715 { r.EncodeArrayStart(5) } else { - yynn3692 = 0 - for _, b := range yyq3692 { + yynn3715 = 0 + for _, b := range yyq3715 { if b { - yynn3692++ + yynn3715++ } } - r.EncodeMapStart(yynn3692) - yynn3692 = 0 + r.EncodeMapStart(yynn3715) + yynn3715 = 0 } - if yyr3692 || yy2arr3692 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3692[0] { + if yyq3715[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -45904,7 +46175,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3692[0] { + if yyq3715[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -45915,44 +46186,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3692 || yy2arr3692 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3692[1] { + if yyq3715[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy3695 := *x.Privileged - yym3696 := z.EncBinary() - _ = yym3696 + yy3718 := *x.Privileged + yym3719 := z.EncBinary() + _ = yym3719 if false { } else { - r.EncodeBool(bool(yy3695)) + r.EncodeBool(bool(yy3718)) } } } else { r.EncodeNil() } } else { - if yyq3692[1] { + if yyq3715[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy3697 := *x.Privileged - yym3698 := z.EncBinary() - _ = yym3698 + yy3720 := *x.Privileged + yym3721 := z.EncBinary() + _ = yym3721 if false { } else { - r.EncodeBool(bool(yy3697)) + r.EncodeBool(bool(yy3720)) } } } } - if yyr3692 || yy2arr3692 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3692[2] { + if yyq3715[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -45962,7 +46233,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3692[2] { + if yyq3715[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -45973,77 +46244,77 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3692 || yy2arr3692 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3692[3] { + if yyq3715[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy3701 := *x.RunAsUser - yym3702 := z.EncBinary() - _ = yym3702 + yy3724 := *x.RunAsUser + yym3725 := z.EncBinary() + _ = yym3725 if false { } else { - r.EncodeInt(int64(yy3701)) + r.EncodeInt(int64(yy3724)) } } } else { r.EncodeNil() } } else { - if yyq3692[3] { + if yyq3715[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy3703 := *x.RunAsUser - yym3704 := z.EncBinary() - _ = yym3704 + yy3726 := *x.RunAsUser + yym3727 := z.EncBinary() + _ = yym3727 if false { } else { - r.EncodeInt(int64(yy3703)) + r.EncodeInt(int64(yy3726)) } } } } - if yyr3692 || yy2arr3692 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3692[4] { + if yyq3715[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3706 := *x.RunAsNonRoot - yym3707 := z.EncBinary() - _ = yym3707 + yy3729 := *x.RunAsNonRoot + yym3730 := z.EncBinary() + _ = yym3730 if false { } else { - r.EncodeBool(bool(yy3706)) + r.EncodeBool(bool(yy3729)) } } } else { r.EncodeNil() } } else { - if yyq3692[4] { + if yyq3715[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3708 := *x.RunAsNonRoot - yym3709 := z.EncBinary() - _ = yym3709 + yy3731 := *x.RunAsNonRoot + yym3732 := z.EncBinary() + _ = yym3732 if false { } else { - r.EncodeBool(bool(yy3708)) + r.EncodeBool(bool(yy3731)) } } } } - if yyr3692 || yy2arr3692 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46056,25 +46327,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3710 := z.DecBinary() - _ = yym3710 + yym3733 := z.DecBinary() + _ = yym3733 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3711 := r.ContainerType() - if yyct3711 == codecSelferValueTypeMap1234 { - yyl3711 := r.ReadMapStart() - if yyl3711 == 0 { + yyct3734 := r.ContainerType() + if yyct3734 == codecSelferValueTypeMap1234 { + yyl3734 := r.ReadMapStart() + if yyl3734 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3711, d) + x.codecDecodeSelfFromMap(yyl3734, d) } - } else if yyct3711 == codecSelferValueTypeArray1234 { - yyl3711 := r.ReadArrayStart() - if yyl3711 == 0 { + } else if yyct3734 == codecSelferValueTypeArray1234 { + yyl3734 := r.ReadArrayStart() + if yyl3734 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3711, d) + x.codecDecodeSelfFromArray(yyl3734, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46086,12 +46357,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3712Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3712Slc - var yyhl3712 bool = l >= 0 - for yyj3712 := 0; ; yyj3712++ { - if yyhl3712 { - if yyj3712 >= l { + var yys3735Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3735Slc + var yyhl3735 bool = l >= 0 + for yyj3735 := 0; ; yyj3735++ { + if yyhl3735 { + if yyj3735 >= l { break } } else { @@ -46100,10 +46371,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3712Slc = r.DecodeBytes(yys3712Slc, true, true) - yys3712 := string(yys3712Slc) + yys3735Slc = r.DecodeBytes(yys3735Slc, true, true) + yys3735 := string(yys3735Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3712 { + switch yys3735 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -46124,8 +46395,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym3715 := z.DecBinary() - _ = yym3715 + yym3738 := z.DecBinary() + _ = yym3738 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -46151,8 +46422,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3718 := z.DecBinary() - _ = yym3718 + yym3741 := z.DecBinary() + _ = yym3741 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -46167,17 +46438,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3720 := z.DecBinary() - _ = yym3720 + yym3743 := z.DecBinary() + _ = yym3743 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3712) - } // end switch yys3712 - } // end for yyj3712 + z.DecStructFieldNotFound(-1, yys3735) + } // end switch yys3735 + } // end for yyj3735 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46185,16 +46456,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3721 int - var yyb3721 bool - var yyhl3721 bool = l >= 0 - yyj3721++ - if yyhl3721 { - yyb3721 = yyj3721 > l + var yyj3744 int + var yyb3744 bool + var yyhl3744 bool = l >= 0 + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3721 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3721 { + if yyb3744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46209,13 +46480,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj3721++ - if yyhl3721 { - yyb3721 = yyj3721 > l + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3721 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3721 { + if yyb3744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46228,20 +46499,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym3724 := z.DecBinary() - _ = yym3724 + yym3747 := z.DecBinary() + _ = yym3747 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj3721++ - if yyhl3721 { - yyb3721 = yyj3721 > l + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3721 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3721 { + if yyb3744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46256,13 +46527,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj3721++ - if yyhl3721 { - yyb3721 = yyj3721 > l + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3721 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3721 { + if yyb3744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46275,20 +46546,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3727 := z.DecBinary() - _ = yym3727 + yym3750 := z.DecBinary() + _ = yym3750 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj3721++ - if yyhl3721 { - yyb3721 = yyj3721 > l + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3721 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3721 { + if yyb3744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46301,25 +46572,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3729 := z.DecBinary() - _ = yym3729 + yym3752 := z.DecBinary() + _ = yym3752 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } for { - yyj3721++ - if yyhl3721 { - yyb3721 = yyj3721 > l + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3721 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3721 { + if yyb3744 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3721-1, "") + z.DecStructFieldNotFound(yyj3744-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46331,38 +46602,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3730 := z.EncBinary() - _ = yym3730 + yym3753 := z.EncBinary() + _ = yym3753 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3731 := !z.EncBinary() - yy2arr3731 := z.EncBasicHandle().StructToArray - var yyq3731 [4]bool - _, _, _ = yysep3731, yyq3731, yy2arr3731 - const yyr3731 bool = false - yyq3731[0] = x.User != "" - yyq3731[1] = x.Role != "" - yyq3731[2] = x.Type != "" - yyq3731[3] = x.Level != "" - var yynn3731 int - if yyr3731 || yy2arr3731 { + yysep3754 := !z.EncBinary() + yy2arr3754 := z.EncBasicHandle().StructToArray + var yyq3754 [4]bool + _, _, _ = yysep3754, yyq3754, yy2arr3754 + const yyr3754 bool = false + yyq3754[0] = x.User != "" + yyq3754[1] = x.Role != "" + yyq3754[2] = x.Type != "" + yyq3754[3] = x.Level != "" + var yynn3754 int + if yyr3754 || yy2arr3754 { r.EncodeArrayStart(4) } else { - yynn3731 = 0 - for _, b := range yyq3731 { + yynn3754 = 0 + for _, b := range yyq3754 { if b { - yynn3731++ + yynn3754++ } } - r.EncodeMapStart(yynn3731) - yynn3731 = 0 + r.EncodeMapStart(yynn3754) + yynn3754 = 0 } - if yyr3731 || yy2arr3731 { + if yyr3754 || yy2arr3754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3731[0] { - yym3733 := z.EncBinary() - _ = yym3733 + if yyq3754[0] { + yym3756 := z.EncBinary() + _ = yym3756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -46371,23 +46642,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3731[0] { + if yyq3754[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3734 := z.EncBinary() - _ = yym3734 + yym3757 := z.EncBinary() + _ = yym3757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr3731 || yy2arr3731 { + if yyr3754 || yy2arr3754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3731[1] { - yym3736 := z.EncBinary() - _ = yym3736 + if yyq3754[1] { + yym3759 := z.EncBinary() + _ = yym3759 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -46396,23 +46667,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3731[1] { + if yyq3754[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3737 := z.EncBinary() - _ = yym3737 + yym3760 := z.EncBinary() + _ = yym3760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr3731 || yy2arr3731 { + if yyr3754 || yy2arr3754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3731[2] { - yym3739 := z.EncBinary() - _ = yym3739 + if yyq3754[2] { + yym3762 := z.EncBinary() + _ = yym3762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -46421,23 +46692,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3731[2] { + if yyq3754[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3740 := z.EncBinary() - _ = yym3740 + yym3763 := z.EncBinary() + _ = yym3763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3731 || yy2arr3731 { + if yyr3754 || yy2arr3754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3731[3] { - yym3742 := z.EncBinary() - _ = yym3742 + if yyq3754[3] { + yym3765 := z.EncBinary() + _ = yym3765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -46446,19 +46717,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3731[3] { + if yyq3754[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3743 := z.EncBinary() - _ = yym3743 + yym3766 := z.EncBinary() + _ = yym3766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr3731 || yy2arr3731 { + if yyr3754 || yy2arr3754 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46471,25 +46742,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3744 := z.DecBinary() - _ = yym3744 + yym3767 := z.DecBinary() + _ = yym3767 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3745 := r.ContainerType() - if yyct3745 == codecSelferValueTypeMap1234 { - yyl3745 := r.ReadMapStart() - if yyl3745 == 0 { + yyct3768 := r.ContainerType() + if yyct3768 == codecSelferValueTypeMap1234 { + yyl3768 := r.ReadMapStart() + if yyl3768 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3745, d) + x.codecDecodeSelfFromMap(yyl3768, d) } - } else if yyct3745 == codecSelferValueTypeArray1234 { - yyl3745 := r.ReadArrayStart() - if yyl3745 == 0 { + } else if yyct3768 == codecSelferValueTypeArray1234 { + yyl3768 := r.ReadArrayStart() + if yyl3768 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3745, d) + x.codecDecodeSelfFromArray(yyl3768, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46501,12 +46772,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3746Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3746Slc - var yyhl3746 bool = l >= 0 - for yyj3746 := 0; ; yyj3746++ { - if yyhl3746 { - if yyj3746 >= l { + var yys3769Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3769Slc + var yyhl3769 bool = l >= 0 + for yyj3769 := 0; ; yyj3769++ { + if yyhl3769 { + if yyj3769 >= l { break } } else { @@ -46515,10 +46786,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3746Slc = r.DecodeBytes(yys3746Slc, true, true) - yys3746 := string(yys3746Slc) + yys3769Slc = r.DecodeBytes(yys3769Slc, true, true) + yys3769 := string(yys3769Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3746 { + switch yys3769 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -46544,9 +46815,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3746) - } // end switch yys3746 - } // end for yyj3746 + z.DecStructFieldNotFound(-1, yys3769) + } // end switch yys3769 + } // end for yyj3769 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46554,16 +46825,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3751 int - var yyb3751 bool - var yyhl3751 bool = l >= 0 - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + var yyj3774 int + var yyb3774 bool + var yyhl3774 bool = l >= 0 + yyj3774++ + if yyhl3774 { + yyb3774 = yyj3774 > l } else { - yyb3751 = r.CheckBreak() + yyb3774 = r.CheckBreak() } - if yyb3751 { + if yyb3774 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46573,13 +46844,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + yyj3774++ + if yyhl3774 { + yyb3774 = yyj3774 > l } else { - yyb3751 = r.CheckBreak() + yyb3774 = r.CheckBreak() } - if yyb3751 { + if yyb3774 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46589,13 +46860,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + yyj3774++ + if yyhl3774 { + yyb3774 = yyj3774 > l } else { - yyb3751 = r.CheckBreak() + yyb3774 = r.CheckBreak() } - if yyb3751 { + if yyb3774 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46605,13 +46876,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + yyj3774++ + if yyhl3774 { + yyb3774 = yyj3774 > l } else { - yyb3751 = r.CheckBreak() + yyb3774 = r.CheckBreak() } - if yyb3751 { + if yyb3774 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46622,17 +46893,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + yyj3774++ + if yyhl3774 { + yyb3774 = yyj3774 > l } else { - yyb3751 = r.CheckBreak() + yyb3774 = r.CheckBreak() } - if yyb3751 { + if yyb3774 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3751-1, "") + z.DecStructFieldNotFound(yyj3774-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46644,37 +46915,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3756 := z.EncBinary() - _ = yym3756 + yym3779 := z.EncBinary() + _ = yym3779 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3757 := !z.EncBinary() - yy2arr3757 := z.EncBasicHandle().StructToArray - var yyq3757 [5]bool - _, _, _ = yysep3757, yyq3757, yy2arr3757 - const yyr3757 bool = false - yyq3757[0] = x.Kind != "" - yyq3757[1] = x.APIVersion != "" - yyq3757[2] = true - var yynn3757 int - if yyr3757 || yy2arr3757 { + yysep3780 := !z.EncBinary() + yy2arr3780 := z.EncBasicHandle().StructToArray + var yyq3780 [5]bool + _, _, _ = yysep3780, yyq3780, yy2arr3780 + const yyr3780 bool = false + yyq3780[0] = x.Kind != "" + yyq3780[1] = x.APIVersion != "" + yyq3780[2] = true + var yynn3780 int + if yyr3780 || yy2arr3780 { r.EncodeArrayStart(5) } else { - yynn3757 = 2 - for _, b := range yyq3757 { + yynn3780 = 2 + for _, b := range yyq3780 { if b { - yynn3757++ + yynn3780++ } } - r.EncodeMapStart(yynn3757) - yynn3757 = 0 + r.EncodeMapStart(yynn3780) + yynn3780 = 0 } - if yyr3757 || yy2arr3757 { + if yyr3780 || yy2arr3780 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[0] { - yym3759 := z.EncBinary() - _ = yym3759 + if yyq3780[0] { + yym3782 := z.EncBinary() + _ = yym3782 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46683,23 +46954,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3757[0] { + if yyq3780[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3760 := z.EncBinary() - _ = yym3760 + yym3783 := z.EncBinary() + _ = yym3783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3757 || yy2arr3757 { + if yyr3780 || yy2arr3780 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[1] { - yym3762 := z.EncBinary() - _ = yym3762 + if yyq3780[1] { + yym3785 := z.EncBinary() + _ = yym3785 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46708,39 +46979,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3757[1] { + if yyq3780[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3763 := z.EncBinary() - _ = yym3763 + yym3786 := z.EncBinary() + _ = yym3786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3757 || yy2arr3757 { + if yyr3780 || yy2arr3780 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3757[2] { - yy3765 := &x.ObjectMeta - yy3765.CodecEncodeSelf(e) + if yyq3780[2] { + yy3788 := &x.ObjectMeta + yy3788.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3757[2] { + if yyq3780[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3766 := &x.ObjectMeta - yy3766.CodecEncodeSelf(e) + yy3789 := &x.ObjectMeta + yy3789.CodecEncodeSelf(e) } } - if yyr3757 || yy2arr3757 { + if yyr3780 || yy2arr3780 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3768 := z.EncBinary() - _ = yym3768 + yym3791 := z.EncBinary() + _ = yym3791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -46749,20 +47020,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3769 := z.EncBinary() - _ = yym3769 + yym3792 := z.EncBinary() + _ = yym3792 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr3757 || yy2arr3757 { + if yyr3780 || yy2arr3780 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym3771 := z.EncBinary() - _ = yym3771 + yym3794 := z.EncBinary() + _ = yym3794 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -46775,15 +47046,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym3772 := z.EncBinary() - _ = yym3772 + yym3795 := z.EncBinary() + _ = yym3795 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr3757 || yy2arr3757 { + if yyr3780 || yy2arr3780 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46796,25 +47067,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3773 := z.DecBinary() - _ = yym3773 + yym3796 := z.DecBinary() + _ = yym3796 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3774 := r.ContainerType() - if yyct3774 == codecSelferValueTypeMap1234 { - yyl3774 := r.ReadMapStart() - if yyl3774 == 0 { + yyct3797 := r.ContainerType() + if yyct3797 == codecSelferValueTypeMap1234 { + yyl3797 := r.ReadMapStart() + if yyl3797 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3774, d) + x.codecDecodeSelfFromMap(yyl3797, d) } - } else if yyct3774 == codecSelferValueTypeArray1234 { - yyl3774 := r.ReadArrayStart() - if yyl3774 == 0 { + } else if yyct3797 == codecSelferValueTypeArray1234 { + yyl3797 := r.ReadArrayStart() + if yyl3797 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3774, d) + x.codecDecodeSelfFromArray(yyl3797, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46826,12 +47097,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3775Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3775Slc - var yyhl3775 bool = l >= 0 - for yyj3775 := 0; ; yyj3775++ { - if yyhl3775 { - if yyj3775 >= l { + var yys3798Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3798Slc + var yyhl3798 bool = l >= 0 + for yyj3798 := 0; ; yyj3798++ { + if yyhl3798 { + if yyj3798 >= l { break } } else { @@ -46840,10 +47111,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3775Slc = r.DecodeBytes(yys3775Slc, true, true) - yys3775 := string(yys3775Slc) + yys3798Slc = r.DecodeBytes(yys3798Slc, true, true) + yys3798 := string(yys3798Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3775 { + switch yys3798 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46860,8 +47131,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3778 := &x.ObjectMeta - yyv3778.CodecDecodeSelf(d) + yyv3801 := &x.ObjectMeta + yyv3801.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -46873,18 +47144,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3780 := &x.Data - yym3781 := z.DecBinary() - _ = yym3781 + yyv3803 := &x.Data + yym3804 := z.DecBinary() + _ = yym3804 if false { } else { - *yyv3780 = r.DecodeBytes(*(*[]byte)(yyv3780), false, false) + *yyv3803 = r.DecodeBytes(*(*[]byte)(yyv3803), false, false) } } default: - z.DecStructFieldNotFound(-1, yys3775) - } // end switch yys3775 - } // end for yyj3775 + z.DecStructFieldNotFound(-1, yys3798) + } // end switch yys3798 + } // end for yyj3798 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46892,16 +47163,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3782 int - var yyb3782 bool - var yyhl3782 bool = l >= 0 - yyj3782++ - if yyhl3782 { - yyb3782 = yyj3782 > l + var yyj3805 int + var yyb3805 bool + var yyhl3805 bool = l >= 0 + yyj3805++ + if yyhl3805 { + yyb3805 = yyj3805 > l } else { - yyb3782 = r.CheckBreak() + yyb3805 = r.CheckBreak() } - if yyb3782 { + if yyb3805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46911,13 +47182,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3782++ - if yyhl3782 { - yyb3782 = yyj3782 > l + yyj3805++ + if yyhl3805 { + yyb3805 = yyj3805 > l } else { - yyb3782 = r.CheckBreak() + yyb3805 = r.CheckBreak() } - if yyb3782 { + if yyb3805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46927,13 +47198,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3782++ - if yyhl3782 { - yyb3782 = yyj3782 > l + yyj3805++ + if yyhl3805 { + yyb3805 = yyj3805 > l } else { - yyb3782 = r.CheckBreak() + yyb3805 = r.CheckBreak() } - if yyb3782 { + if yyb3805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46941,16 +47212,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3785 := &x.ObjectMeta - yyv3785.CodecDecodeSelf(d) + yyv3808 := &x.ObjectMeta + yyv3808.CodecDecodeSelf(d) } - yyj3782++ - if yyhl3782 { - yyb3782 = yyj3782 > l + yyj3805++ + if yyhl3805 { + yyb3805 = yyj3805 > l } else { - yyb3782 = r.CheckBreak() + yyb3805 = r.CheckBreak() } - if yyb3782 { + if yyb3805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46960,13 +47231,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj3782++ - if yyhl3782 { - yyb3782 = yyj3782 > l + yyj3805++ + if yyhl3805 { + yyb3805 = yyj3805 > l } else { - yyb3782 = r.CheckBreak() + yyb3805 = r.CheckBreak() } - if yyb3782 { + if yyb3805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46974,486 +47245,31 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3787 := &x.Data - yym3788 := z.DecBinary() - _ = yym3788 + yyv3810 := &x.Data + yym3811 := z.DecBinary() + _ = yym3811 if false { } else { - *yyv3787 = r.DecodeBytes(*(*[]byte)(yyv3787), false, false) + *yyv3810 = r.DecodeBytes(*(*[]byte)(yyv3810), false, false) } } for { - yyj3782++ - if yyhl3782 { - yyb3782 = yyj3782 > l + yyj3805++ + if yyhl3805 { + yyb3805 = yyj3805 > l } else { - yyb3782 = r.CheckBreak() + yyb3805 = r.CheckBreak() } - if yyb3782 { + if yyb3805 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3782-1, "") + z.DecStructFieldNotFound(yyj3805-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } 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 _, yyv3789 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3789.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 - - yyv3790 := *v - yyh3790, yyl3790 := z.DecSliceHelperStart() - var yyc3790 bool - if yyl3790 == 0 { - if yyv3790 == nil { - yyv3790 = []PersistentVolumeAccessMode{} - yyc3790 = true - } else if len(yyv3790) != 0 { - yyv3790 = yyv3790[:0] - yyc3790 = true - } - } else if yyl3790 > 0 { - var yyrr3790, yyrl3790 int - var yyrt3790 bool - if yyl3790 > cap(yyv3790) { - - yyrl3790, yyrt3790 = z.DecInferLen(yyl3790, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3790 { - if yyrl3790 <= cap(yyv3790) { - yyv3790 = yyv3790[:yyrl3790] - } else { - yyv3790 = make([]PersistentVolumeAccessMode, yyrl3790) - } - } else { - yyv3790 = make([]PersistentVolumeAccessMode, yyrl3790) - } - yyc3790 = true - yyrr3790 = len(yyv3790) - } else if yyl3790 != len(yyv3790) { - yyv3790 = yyv3790[:yyl3790] - yyc3790 = true - } - yyj3790 := 0 - for ; yyj3790 < yyrr3790; yyj3790++ { - yyh3790.ElemContainerState(yyj3790) - if r.TryDecodeAsNil() { - yyv3790[yyj3790] = "" - } else { - yyv3790[yyj3790] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - if yyrt3790 { - for ; yyj3790 < yyl3790; yyj3790++ { - yyv3790 = append(yyv3790, "") - yyh3790.ElemContainerState(yyj3790) - if r.TryDecodeAsNil() { - yyv3790[yyj3790] = "" - } else { - yyv3790[yyj3790] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - } - - } else { - yyj3790 := 0 - for ; !r.CheckBreak(); yyj3790++ { - - if yyj3790 >= len(yyv3790) { - yyv3790 = append(yyv3790, "") // var yyz3790 PersistentVolumeAccessMode - yyc3790 = true - } - yyh3790.ElemContainerState(yyj3790) - if yyj3790 < len(yyv3790) { - if r.TryDecodeAsNil() { - yyv3790[yyj3790] = "" - } else { - yyv3790[yyj3790] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj3790 < len(yyv3790) { - yyv3790 = yyv3790[:yyj3790] - yyc3790 = true - } else if yyj3790 == 0 && yyv3790 == nil { - yyv3790 = []PersistentVolumeAccessMode{} - yyc3790 = true - } - } - yyh3790.End() - if yyc3790 { - *v = yyv3790 - } -} - -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 _, yyv3794 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3795 := &yyv3794 - yy3795.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3796 := *v - yyh3796, yyl3796 := z.DecSliceHelperStart() - var yyc3796 bool - if yyl3796 == 0 { - if yyv3796 == nil { - yyv3796 = []PersistentVolume{} - yyc3796 = true - } else if len(yyv3796) != 0 { - yyv3796 = yyv3796[:0] - yyc3796 = true - } - } else if yyl3796 > 0 { - var yyrr3796, yyrl3796 int - var yyrt3796 bool - if yyl3796 > cap(yyv3796) { - - yyrg3796 := len(yyv3796) > 0 - yyv23796 := yyv3796 - yyrl3796, yyrt3796 = z.DecInferLen(yyl3796, z.DecBasicHandle().MaxInitLen, 392) - if yyrt3796 { - if yyrl3796 <= cap(yyv3796) { - yyv3796 = yyv3796[:yyrl3796] - } else { - yyv3796 = make([]PersistentVolume, yyrl3796) - } - } else { - yyv3796 = make([]PersistentVolume, yyrl3796) - } - yyc3796 = true - yyrr3796 = len(yyv3796) - if yyrg3796 { - copy(yyv3796, yyv23796) - } - } else if yyl3796 != len(yyv3796) { - yyv3796 = yyv3796[:yyl3796] - yyc3796 = true - } - yyj3796 := 0 - for ; yyj3796 < yyrr3796; yyj3796++ { - yyh3796.ElemContainerState(yyj3796) - if r.TryDecodeAsNil() { - yyv3796[yyj3796] = PersistentVolume{} - } else { - yyv3797 := &yyv3796[yyj3796] - yyv3797.CodecDecodeSelf(d) - } - - } - if yyrt3796 { - for ; yyj3796 < yyl3796; yyj3796++ { - yyv3796 = append(yyv3796, PersistentVolume{}) - yyh3796.ElemContainerState(yyj3796) - if r.TryDecodeAsNil() { - yyv3796[yyj3796] = PersistentVolume{} - } else { - yyv3798 := &yyv3796[yyj3796] - yyv3798.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3796 := 0 - for ; !r.CheckBreak(); yyj3796++ { - - if yyj3796 >= len(yyv3796) { - yyv3796 = append(yyv3796, PersistentVolume{}) // var yyz3796 PersistentVolume - yyc3796 = true - } - yyh3796.ElemContainerState(yyj3796) - if yyj3796 < len(yyv3796) { - if r.TryDecodeAsNil() { - yyv3796[yyj3796] = PersistentVolume{} - } else { - yyv3799 := &yyv3796[yyj3796] - yyv3799.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3796 < len(yyv3796) { - yyv3796 = yyv3796[:yyj3796] - yyc3796 = true - } else if yyj3796 == 0 && yyv3796 == nil { - yyv3796 = []PersistentVolume{} - yyc3796 = true - } - } - yyh3796.End() - if yyc3796 { - *v = yyv3796 - } -} - -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 _, yyv3800 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3801 := &yyv3800 - yy3801.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3802 := *v - yyh3802, yyl3802 := z.DecSliceHelperStart() - var yyc3802 bool - if yyl3802 == 0 { - if yyv3802 == nil { - yyv3802 = []PersistentVolumeClaim{} - yyc3802 = true - } else if len(yyv3802) != 0 { - yyv3802 = yyv3802[:0] - yyc3802 = true - } - } else if yyl3802 > 0 { - var yyrr3802, yyrl3802 int - var yyrt3802 bool - if yyl3802 > cap(yyv3802) { - - yyrg3802 := len(yyv3802) > 0 - yyv23802 := yyv3802 - yyrl3802, yyrt3802 = z.DecInferLen(yyl3802, z.DecBasicHandle().MaxInitLen, 296) - if yyrt3802 { - if yyrl3802 <= cap(yyv3802) { - yyv3802 = yyv3802[:yyrl3802] - } else { - yyv3802 = make([]PersistentVolumeClaim, yyrl3802) - } - } else { - yyv3802 = make([]PersistentVolumeClaim, yyrl3802) - } - yyc3802 = true - yyrr3802 = len(yyv3802) - if yyrg3802 { - copy(yyv3802, yyv23802) - } - } else if yyl3802 != len(yyv3802) { - yyv3802 = yyv3802[:yyl3802] - yyc3802 = true - } - yyj3802 := 0 - for ; yyj3802 < yyrr3802; yyj3802++ { - yyh3802.ElemContainerState(yyj3802) - if r.TryDecodeAsNil() { - yyv3802[yyj3802] = PersistentVolumeClaim{} - } else { - yyv3803 := &yyv3802[yyj3802] - yyv3803.CodecDecodeSelf(d) - } - - } - if yyrt3802 { - for ; yyj3802 < yyl3802; yyj3802++ { - yyv3802 = append(yyv3802, PersistentVolumeClaim{}) - yyh3802.ElemContainerState(yyj3802) - if r.TryDecodeAsNil() { - yyv3802[yyj3802] = PersistentVolumeClaim{} - } else { - yyv3804 := &yyv3802[yyj3802] - yyv3804.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3802 := 0 - for ; !r.CheckBreak(); yyj3802++ { - - if yyj3802 >= len(yyv3802) { - yyv3802 = append(yyv3802, PersistentVolumeClaim{}) // var yyz3802 PersistentVolumeClaim - yyc3802 = true - } - yyh3802.ElemContainerState(yyj3802) - if yyj3802 < len(yyv3802) { - if r.TryDecodeAsNil() { - yyv3802[yyj3802] = PersistentVolumeClaim{} - } else { - yyv3805 := &yyv3802[yyj3802] - yyv3805.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3802 < len(yyv3802) { - yyv3802 = yyv3802[:yyj3802] - yyc3802 = true - } else if yyj3802 == 0 && yyv3802 == nil { - yyv3802 = []PersistentVolumeClaim{} - yyc3802 = true - } - } - yyh3802.End() - if yyc3802 { - *v = yyv3802 - } -} - -func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv3806 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3807 := &yyv3806 - yy3807.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFile, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3808 := *v - yyh3808, yyl3808 := z.DecSliceHelperStart() - var yyc3808 bool - if yyl3808 == 0 { - if yyv3808 == nil { - yyv3808 = []DownwardAPIVolumeFile{} - yyc3808 = true - } else if len(yyv3808) != 0 { - yyv3808 = yyv3808[:0] - yyc3808 = true - } - } else if yyl3808 > 0 { - var yyrr3808, yyrl3808 int - var yyrt3808 bool - if yyl3808 > cap(yyv3808) { - - yyrg3808 := len(yyv3808) > 0 - yyv23808 := yyv3808 - yyrl3808, yyrt3808 = z.DecInferLen(yyl3808, z.DecBasicHandle().MaxInitLen, 48) - if yyrt3808 { - if yyrl3808 <= cap(yyv3808) { - yyv3808 = yyv3808[:yyrl3808] - } else { - yyv3808 = make([]DownwardAPIVolumeFile, yyrl3808) - } - } else { - yyv3808 = make([]DownwardAPIVolumeFile, yyrl3808) - } - yyc3808 = true - yyrr3808 = len(yyv3808) - if yyrg3808 { - copy(yyv3808, yyv23808) - } - } else if yyl3808 != len(yyv3808) { - yyv3808 = yyv3808[:yyl3808] - yyc3808 = true - } - yyj3808 := 0 - for ; yyj3808 < yyrr3808; yyj3808++ { - yyh3808.ElemContainerState(yyj3808) - if r.TryDecodeAsNil() { - yyv3808[yyj3808] = DownwardAPIVolumeFile{} - } else { - yyv3809 := &yyv3808[yyj3808] - yyv3809.CodecDecodeSelf(d) - } - - } - if yyrt3808 { - for ; yyj3808 < yyl3808; yyj3808++ { - yyv3808 = append(yyv3808, DownwardAPIVolumeFile{}) - yyh3808.ElemContainerState(yyj3808) - if r.TryDecodeAsNil() { - yyv3808[yyj3808] = DownwardAPIVolumeFile{} - } else { - yyv3810 := &yyv3808[yyj3808] - yyv3810.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3808 := 0 - for ; !r.CheckBreak(); yyj3808++ { - - if yyj3808 >= len(yyv3808) { - yyv3808 = append(yyv3808, DownwardAPIVolumeFile{}) // var yyz3808 DownwardAPIVolumeFile - yyc3808 = true - } - yyh3808.ElemContainerState(yyj3808) - if yyj3808 < len(yyv3808) { - if r.TryDecodeAsNil() { - yyv3808[yyj3808] = DownwardAPIVolumeFile{} - } else { - yyv3811 := &yyv3808[yyj3808] - yyv3811.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3808 < len(yyv3808) { - yyv3808 = yyv3808[:yyj3808] - yyc3808 = true - } else if yyj3808 == 0 && yyv3808 == nil { - yyv3808 = []DownwardAPIVolumeFile{} - yyc3808 = true - } - } - yyh3808.End() - if yyc3808 { - *v = yyv3808 - } -} - -func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -47465,7 +47281,7 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolumeAccessMode, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47475,7 +47291,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode var yyc3813 bool if yyl3813 == 0 { if yyv3813 == nil { - yyv3813 = []Capability{} + yyv3813 = []PersistentVolumeAccessMode{} yyc3813 = true } else if len(yyv3813) != 0 { yyv3813 = yyv3813[:0] @@ -47491,10 +47307,10 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode if yyrl3813 <= cap(yyv3813) { yyv3813 = yyv3813[:yyrl3813] } else { - yyv3813 = make([]Capability, yyrl3813) + yyv3813 = make([]PersistentVolumeAccessMode, yyrl3813) } } else { - yyv3813 = make([]Capability, yyrl3813) + yyv3813 = make([]PersistentVolumeAccessMode, yyrl3813) } yyc3813 = true yyrr3813 = len(yyv3813) @@ -47508,7 +47324,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode if r.TryDecodeAsNil() { yyv3813[yyj3813] = "" } else { - yyv3813[yyj3813] = Capability(r.DecodeString()) + yyv3813[yyj3813] = PersistentVolumeAccessMode(r.DecodeString()) } } @@ -47519,7 +47335,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode if r.TryDecodeAsNil() { yyv3813[yyj3813] = "" } else { - yyv3813[yyj3813] = Capability(r.DecodeString()) + yyv3813[yyj3813] = PersistentVolumeAccessMode(r.DecodeString()) } } @@ -47530,7 +47346,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode for ; !r.CheckBreak(); yyj3813++ { if yyj3813 >= len(yyv3813) { - yyv3813 = append(yyv3813, "") // var yyz3813 Capability + yyv3813 = append(yyv3813, "") // var yyz3813 PersistentVolumeAccessMode yyc3813 = true } yyh3813.ElemContainerState(yyj3813) @@ -47538,7 +47354,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode if r.TryDecodeAsNil() { yyv3813[yyj3813] = "" } else { - yyv3813[yyj3813] = Capability(r.DecodeString()) + yyv3813[yyj3813] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -47550,7 +47366,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode yyv3813 = yyv3813[:yyj3813] yyc3813 = true } else if yyj3813 == 0 && yyv3813 == nil { - yyv3813 = []Capability{} + yyv3813 = []PersistentVolumeAccessMode{} yyc3813 = true } } @@ -47560,7 +47376,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } -func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -47573,7 +47389,7 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47583,7 +47399,7 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. var yyc3819 bool if yyl3819 == 0 { if yyv3819 == nil { - yyv3819 = []ContainerPort{} + yyv3819 = []PersistentVolume{} yyc3819 = true } else if len(yyv3819) != 0 { yyv3819 = yyv3819[:0] @@ -47596,15 +47412,15 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. yyrg3819 := len(yyv3819) > 0 yyv23819 := yyv3819 - yyrl3819, yyrt3819 = z.DecInferLen(yyl3819, z.DecBasicHandle().MaxInitLen, 64) + yyrl3819, yyrt3819 = z.DecInferLen(yyl3819, z.DecBasicHandle().MaxInitLen, 392) if yyrt3819 { if yyrl3819 <= cap(yyv3819) { yyv3819 = yyv3819[:yyrl3819] } else { - yyv3819 = make([]ContainerPort, yyrl3819) + yyv3819 = make([]PersistentVolume, yyrl3819) } } else { - yyv3819 = make([]ContainerPort, yyrl3819) + yyv3819 = make([]PersistentVolume, yyrl3819) } yyc3819 = true yyrr3819 = len(yyv3819) @@ -47619,7 +47435,7 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. for ; yyj3819 < yyrr3819; yyj3819++ { yyh3819.ElemContainerState(yyj3819) if r.TryDecodeAsNil() { - yyv3819[yyj3819] = ContainerPort{} + yyv3819[yyj3819] = PersistentVolume{} } else { yyv3820 := &yyv3819[yyj3819] yyv3820.CodecDecodeSelf(d) @@ -47628,10 +47444,10 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } if yyrt3819 { for ; yyj3819 < yyl3819; yyj3819++ { - yyv3819 = append(yyv3819, ContainerPort{}) + yyv3819 = append(yyv3819, PersistentVolume{}) yyh3819.ElemContainerState(yyj3819) if r.TryDecodeAsNil() { - yyv3819[yyj3819] = ContainerPort{} + yyv3819[yyj3819] = PersistentVolume{} } else { yyv3821 := &yyv3819[yyj3819] yyv3821.CodecDecodeSelf(d) @@ -47645,13 +47461,13 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. for ; !r.CheckBreak(); yyj3819++ { if yyj3819 >= len(yyv3819) { - yyv3819 = append(yyv3819, ContainerPort{}) // var yyz3819 ContainerPort + yyv3819 = append(yyv3819, PersistentVolume{}) // var yyz3819 PersistentVolume yyc3819 = true } yyh3819.ElemContainerState(yyj3819) if yyj3819 < len(yyv3819) { if r.TryDecodeAsNil() { - yyv3819[yyj3819] = ContainerPort{} + yyv3819[yyj3819] = PersistentVolume{} } else { yyv3822 := &yyv3819[yyj3819] yyv3822.CodecDecodeSelf(d) @@ -47666,7 +47482,7 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. yyv3819 = yyv3819[:yyj3819] yyc3819 = true } else if yyj3819 == 0 && yyv3819 == nil { - yyv3819 = []ContainerPort{} + yyv3819 = []PersistentVolume{} yyc3819 = true } } @@ -47676,7 +47492,7 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } -func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -47689,7 +47505,7 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47699,7 +47515,7 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { var yyc3825 bool if yyl3825 == 0 { if yyv3825 == nil { - yyv3825 = []EnvVar{} + yyv3825 = []PersistentVolumeClaim{} yyc3825 = true } else if len(yyv3825) != 0 { yyv3825 = yyv3825[:0] @@ -47712,15 +47528,15 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { yyrg3825 := len(yyv3825) > 0 yyv23825 := yyv3825 - yyrl3825, yyrt3825 = z.DecInferLen(yyl3825, z.DecBasicHandle().MaxInitLen, 40) + yyrl3825, yyrt3825 = z.DecInferLen(yyl3825, z.DecBasicHandle().MaxInitLen, 296) if yyrt3825 { if yyrl3825 <= cap(yyv3825) { yyv3825 = yyv3825[:yyrl3825] } else { - yyv3825 = make([]EnvVar, yyrl3825) + yyv3825 = make([]PersistentVolumeClaim, yyrl3825) } } else { - yyv3825 = make([]EnvVar, yyrl3825) + yyv3825 = make([]PersistentVolumeClaim, yyrl3825) } yyc3825 = true yyrr3825 = len(yyv3825) @@ -47735,7 +47551,7 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { for ; yyj3825 < yyrr3825; yyj3825++ { yyh3825.ElemContainerState(yyj3825) if r.TryDecodeAsNil() { - yyv3825[yyj3825] = EnvVar{} + yyv3825[yyj3825] = PersistentVolumeClaim{} } else { yyv3826 := &yyv3825[yyj3825] yyv3826.CodecDecodeSelf(d) @@ -47744,10 +47560,10 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } if yyrt3825 { for ; yyj3825 < yyl3825; yyj3825++ { - yyv3825 = append(yyv3825, EnvVar{}) + yyv3825 = append(yyv3825, PersistentVolumeClaim{}) yyh3825.ElemContainerState(yyj3825) if r.TryDecodeAsNil() { - yyv3825[yyj3825] = EnvVar{} + yyv3825[yyj3825] = PersistentVolumeClaim{} } else { yyv3827 := &yyv3825[yyj3825] yyv3827.CodecDecodeSelf(d) @@ -47761,13 +47577,13 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { for ; !r.CheckBreak(); yyj3825++ { if yyj3825 >= len(yyv3825) { - yyv3825 = append(yyv3825, EnvVar{}) // var yyz3825 EnvVar + yyv3825 = append(yyv3825, PersistentVolumeClaim{}) // var yyz3825 PersistentVolumeClaim yyc3825 = true } yyh3825.ElemContainerState(yyj3825) if yyj3825 < len(yyv3825) { if r.TryDecodeAsNil() { - yyv3825[yyj3825] = EnvVar{} + yyv3825[yyj3825] = PersistentVolumeClaim{} } else { yyv3828 := &yyv3825[yyj3825] yyv3828.CodecDecodeSelf(d) @@ -47782,7 +47598,7 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { yyv3825 = yyv3825[:yyj3825] yyc3825 = true } else if yyj3825 == 0 && yyv3825 == nil { - yyv3825 = []EnvVar{} + yyv3825 = []PersistentVolumeClaim{} yyc3825 = true } } @@ -47792,7 +47608,7 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } -func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -47805,7 +47621,7 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFile, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47815,7 +47631,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco var yyc3831 bool if yyl3831 == 0 { if yyv3831 == nil { - yyv3831 = []VolumeMount{} + yyv3831 = []DownwardAPIVolumeFile{} yyc3831 = true } else if len(yyv3831) != 0 { yyv3831 = yyv3831[:0] @@ -47828,15 +47644,15 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco yyrg3831 := len(yyv3831) > 0 yyv23831 := yyv3831 - yyrl3831, yyrt3831 = z.DecInferLen(yyl3831, z.DecBasicHandle().MaxInitLen, 40) + yyrl3831, yyrt3831 = z.DecInferLen(yyl3831, z.DecBasicHandle().MaxInitLen, 48) if yyrt3831 { if yyrl3831 <= cap(yyv3831) { yyv3831 = yyv3831[:yyrl3831] } else { - yyv3831 = make([]VolumeMount, yyrl3831) + yyv3831 = make([]DownwardAPIVolumeFile, yyrl3831) } } else { - yyv3831 = make([]VolumeMount, yyrl3831) + yyv3831 = make([]DownwardAPIVolumeFile, yyrl3831) } yyc3831 = true yyrr3831 = len(yyv3831) @@ -47851,7 +47667,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco for ; yyj3831 < yyrr3831; yyj3831++ { yyh3831.ElemContainerState(yyj3831) if r.TryDecodeAsNil() { - yyv3831[yyj3831] = VolumeMount{} + yyv3831[yyj3831] = DownwardAPIVolumeFile{} } else { yyv3832 := &yyv3831[yyj3831] yyv3832.CodecDecodeSelf(d) @@ -47860,10 +47676,10 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } if yyrt3831 { for ; yyj3831 < yyl3831; yyj3831++ { - yyv3831 = append(yyv3831, VolumeMount{}) + yyv3831 = append(yyv3831, DownwardAPIVolumeFile{}) yyh3831.ElemContainerState(yyj3831) if r.TryDecodeAsNil() { - yyv3831[yyj3831] = VolumeMount{} + yyv3831[yyj3831] = DownwardAPIVolumeFile{} } else { yyv3833 := &yyv3831[yyj3831] yyv3833.CodecDecodeSelf(d) @@ -47877,13 +47693,13 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco for ; !r.CheckBreak(); yyj3831++ { if yyj3831 >= len(yyv3831) { - yyv3831 = append(yyv3831, VolumeMount{}) // var yyz3831 VolumeMount + yyv3831 = append(yyv3831, DownwardAPIVolumeFile{}) // var yyz3831 DownwardAPIVolumeFile yyc3831 = true } yyh3831.ElemContainerState(yyj3831) if yyj3831 < len(yyv3831) { if r.TryDecodeAsNil() { - yyv3831[yyj3831] = VolumeMount{} + yyv3831[yyj3831] = DownwardAPIVolumeFile{} } else { yyv3834 := &yyv3831[yyj3831] yyv3834.CodecDecodeSelf(d) @@ -47898,7 +47714,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco yyv3831 = yyv3831[:yyj3831] yyc3831 = true } else if yyj3831 == 0 && yyv3831 == nil { - yyv3831 = []VolumeMount{} + yyv3831 = []DownwardAPIVolumeFile{} yyc3831 = true } } @@ -47908,7 +47724,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } -func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -47921,7 +47737,7 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47931,7 +47747,7 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { var yyc3837 bool if yyl3837 == 0 { if yyv3837 == nil { - yyv3837 = []Pod{} + yyv3837 = []HTTPHeader{} yyc3837 = true } else if len(yyv3837) != 0 { yyv3837 = yyv3837[:0] @@ -47944,15 +47760,15 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { yyrg3837 := len(yyv3837) > 0 yyv23837 := yyv3837 - yyrl3837, yyrt3837 = z.DecInferLen(yyl3837, z.DecBasicHandle().MaxInitLen, 496) + yyrl3837, yyrt3837 = z.DecInferLen(yyl3837, z.DecBasicHandle().MaxInitLen, 32) if yyrt3837 { if yyrl3837 <= cap(yyv3837) { yyv3837 = yyv3837[:yyrl3837] } else { - yyv3837 = make([]Pod, yyrl3837) + yyv3837 = make([]HTTPHeader, yyrl3837) } } else { - yyv3837 = make([]Pod, yyrl3837) + yyv3837 = make([]HTTPHeader, yyrl3837) } yyc3837 = true yyrr3837 = len(yyv3837) @@ -47967,7 +47783,7 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { for ; yyj3837 < yyrr3837; yyj3837++ { yyh3837.ElemContainerState(yyj3837) if r.TryDecodeAsNil() { - yyv3837[yyj3837] = Pod{} + yyv3837[yyj3837] = HTTPHeader{} } else { yyv3838 := &yyv3837[yyj3837] yyv3838.CodecDecodeSelf(d) @@ -47976,10 +47792,10 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } if yyrt3837 { for ; yyj3837 < yyl3837; yyj3837++ { - yyv3837 = append(yyv3837, Pod{}) + yyv3837 = append(yyv3837, HTTPHeader{}) yyh3837.ElemContainerState(yyj3837) if r.TryDecodeAsNil() { - yyv3837[yyj3837] = Pod{} + yyv3837[yyj3837] = HTTPHeader{} } else { yyv3839 := &yyv3837[yyj3837] yyv3839.CodecDecodeSelf(d) @@ -47993,13 +47809,13 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { for ; !r.CheckBreak(); yyj3837++ { if yyj3837 >= len(yyv3837) { - yyv3837 = append(yyv3837, Pod{}) // var yyz3837 Pod + yyv3837 = append(yyv3837, HTTPHeader{}) // var yyz3837 HTTPHeader yyc3837 = true } yyh3837.ElemContainerState(yyj3837) if yyj3837 < len(yyv3837) { if r.TryDecodeAsNil() { - yyv3837[yyj3837] = Pod{} + yyv3837[yyj3837] = HTTPHeader{} } else { yyv3840 := &yyv3837[yyj3837] yyv3840.CodecDecodeSelf(d) @@ -48014,7 +47830,7 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { yyv3837 = yyv3837[:yyj3837] yyc3837 = true } else if yyj3837 == 0 && yyv3837 == nil { - yyv3837 = []Pod{} + yyv3837 = []HTTPHeader{} yyc3837 = true } } @@ -48024,15 +47840,586 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } -func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, 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 _, yyv3841 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3842 := &yyv3841 - yy3842.CodecEncodeSelf(e) + yyv3841.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 + + yyv3842 := *v + yyh3842, yyl3842 := z.DecSliceHelperStart() + var yyc3842 bool + if yyl3842 == 0 { + if yyv3842 == nil { + yyv3842 = []Capability{} + yyc3842 = true + } else if len(yyv3842) != 0 { + yyv3842 = yyv3842[:0] + yyc3842 = true + } + } else if yyl3842 > 0 { + var yyrr3842, yyrl3842 int + var yyrt3842 bool + if yyl3842 > cap(yyv3842) { + + yyrl3842, yyrt3842 = z.DecInferLen(yyl3842, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3842 { + if yyrl3842 <= cap(yyv3842) { + yyv3842 = yyv3842[:yyrl3842] + } else { + yyv3842 = make([]Capability, yyrl3842) + } + } else { + yyv3842 = make([]Capability, yyrl3842) + } + yyc3842 = true + yyrr3842 = len(yyv3842) + } else if yyl3842 != len(yyv3842) { + yyv3842 = yyv3842[:yyl3842] + yyc3842 = true + } + yyj3842 := 0 + for ; yyj3842 < yyrr3842; yyj3842++ { + yyh3842.ElemContainerState(yyj3842) + if r.TryDecodeAsNil() { + yyv3842[yyj3842] = "" + } else { + yyv3842[yyj3842] = Capability(r.DecodeString()) + } + + } + if yyrt3842 { + for ; yyj3842 < yyl3842; yyj3842++ { + yyv3842 = append(yyv3842, "") + yyh3842.ElemContainerState(yyj3842) + if r.TryDecodeAsNil() { + yyv3842[yyj3842] = "" + } else { + yyv3842[yyj3842] = Capability(r.DecodeString()) + } + + } + } + + } else { + yyj3842 := 0 + for ; !r.CheckBreak(); yyj3842++ { + + if yyj3842 >= len(yyv3842) { + yyv3842 = append(yyv3842, "") // var yyz3842 Capability + yyc3842 = true + } + yyh3842.ElemContainerState(yyj3842) + if yyj3842 < len(yyv3842) { + if r.TryDecodeAsNil() { + yyv3842[yyj3842] = "" + } else { + yyv3842[yyj3842] = Capability(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj3842 < len(yyv3842) { + yyv3842 = yyv3842[:yyj3842] + yyc3842 = true + } else if yyj3842 == 0 && yyv3842 == nil { + yyv3842 = []Capability{} + yyc3842 = true + } + } + yyh3842.End() + if yyc3842 { + *v = yyv3842 + } +} + +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 _, yyv3846 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3847 := &yyv3846 + yy3847.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3848 := *v + yyh3848, yyl3848 := z.DecSliceHelperStart() + var yyc3848 bool + if yyl3848 == 0 { + if yyv3848 == nil { + yyv3848 = []ContainerPort{} + yyc3848 = true + } else if len(yyv3848) != 0 { + yyv3848 = yyv3848[:0] + yyc3848 = true + } + } else if yyl3848 > 0 { + var yyrr3848, yyrl3848 int + var yyrt3848 bool + if yyl3848 > cap(yyv3848) { + + yyrg3848 := len(yyv3848) > 0 + yyv23848 := yyv3848 + yyrl3848, yyrt3848 = z.DecInferLen(yyl3848, z.DecBasicHandle().MaxInitLen, 64) + if yyrt3848 { + if yyrl3848 <= cap(yyv3848) { + yyv3848 = yyv3848[:yyrl3848] + } else { + yyv3848 = make([]ContainerPort, yyrl3848) + } + } else { + yyv3848 = make([]ContainerPort, yyrl3848) + } + yyc3848 = true + yyrr3848 = len(yyv3848) + if yyrg3848 { + copy(yyv3848, yyv23848) + } + } else if yyl3848 != len(yyv3848) { + yyv3848 = yyv3848[:yyl3848] + yyc3848 = true + } + yyj3848 := 0 + for ; yyj3848 < yyrr3848; yyj3848++ { + yyh3848.ElemContainerState(yyj3848) + if r.TryDecodeAsNil() { + yyv3848[yyj3848] = ContainerPort{} + } else { + yyv3849 := &yyv3848[yyj3848] + yyv3849.CodecDecodeSelf(d) + } + + } + if yyrt3848 { + for ; yyj3848 < yyl3848; yyj3848++ { + yyv3848 = append(yyv3848, ContainerPort{}) + yyh3848.ElemContainerState(yyj3848) + if r.TryDecodeAsNil() { + yyv3848[yyj3848] = ContainerPort{} + } else { + yyv3850 := &yyv3848[yyj3848] + yyv3850.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3848 := 0 + for ; !r.CheckBreak(); yyj3848++ { + + if yyj3848 >= len(yyv3848) { + yyv3848 = append(yyv3848, ContainerPort{}) // var yyz3848 ContainerPort + yyc3848 = true + } + yyh3848.ElemContainerState(yyj3848) + if yyj3848 < len(yyv3848) { + if r.TryDecodeAsNil() { + yyv3848[yyj3848] = ContainerPort{} + } else { + yyv3851 := &yyv3848[yyj3848] + yyv3851.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3848 < len(yyv3848) { + yyv3848 = yyv3848[:yyj3848] + yyc3848 = true + } else if yyj3848 == 0 && yyv3848 == nil { + yyv3848 = []ContainerPort{} + yyc3848 = true + } + } + yyh3848.End() + if yyc3848 { + *v = yyv3848 + } +} + +func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3852 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3853 := &yyv3852 + yy3853.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3854 := *v + yyh3854, yyl3854 := z.DecSliceHelperStart() + var yyc3854 bool + if yyl3854 == 0 { + if yyv3854 == nil { + yyv3854 = []EnvVar{} + yyc3854 = true + } else if len(yyv3854) != 0 { + yyv3854 = yyv3854[:0] + yyc3854 = true + } + } else if yyl3854 > 0 { + var yyrr3854, yyrl3854 int + var yyrt3854 bool + if yyl3854 > cap(yyv3854) { + + yyrg3854 := len(yyv3854) > 0 + yyv23854 := yyv3854 + yyrl3854, yyrt3854 = z.DecInferLen(yyl3854, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3854 { + if yyrl3854 <= cap(yyv3854) { + yyv3854 = yyv3854[:yyrl3854] + } else { + yyv3854 = make([]EnvVar, yyrl3854) + } + } else { + yyv3854 = make([]EnvVar, yyrl3854) + } + yyc3854 = true + yyrr3854 = len(yyv3854) + if yyrg3854 { + copy(yyv3854, yyv23854) + } + } else if yyl3854 != len(yyv3854) { + yyv3854 = yyv3854[:yyl3854] + yyc3854 = true + } + yyj3854 := 0 + for ; yyj3854 < yyrr3854; yyj3854++ { + yyh3854.ElemContainerState(yyj3854) + if r.TryDecodeAsNil() { + yyv3854[yyj3854] = EnvVar{} + } else { + yyv3855 := &yyv3854[yyj3854] + yyv3855.CodecDecodeSelf(d) + } + + } + if yyrt3854 { + for ; yyj3854 < yyl3854; yyj3854++ { + yyv3854 = append(yyv3854, EnvVar{}) + yyh3854.ElemContainerState(yyj3854) + if r.TryDecodeAsNil() { + yyv3854[yyj3854] = EnvVar{} + } else { + yyv3856 := &yyv3854[yyj3854] + yyv3856.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3854 := 0 + for ; !r.CheckBreak(); yyj3854++ { + + if yyj3854 >= len(yyv3854) { + yyv3854 = append(yyv3854, EnvVar{}) // var yyz3854 EnvVar + yyc3854 = true + } + yyh3854.ElemContainerState(yyj3854) + if yyj3854 < len(yyv3854) { + if r.TryDecodeAsNil() { + yyv3854[yyj3854] = EnvVar{} + } else { + yyv3857 := &yyv3854[yyj3854] + yyv3857.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3854 < len(yyv3854) { + yyv3854 = yyv3854[:yyj3854] + yyc3854 = true + } else if yyj3854 == 0 && yyv3854 == nil { + yyv3854 = []EnvVar{} + yyc3854 = true + } + } + yyh3854.End() + if yyc3854 { + *v = yyv3854 + } +} + +func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3858 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3859 := &yyv3858 + yy3859.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3860 := *v + yyh3860, yyl3860 := z.DecSliceHelperStart() + var yyc3860 bool + if yyl3860 == 0 { + if yyv3860 == nil { + yyv3860 = []VolumeMount{} + yyc3860 = true + } else if len(yyv3860) != 0 { + yyv3860 = yyv3860[:0] + yyc3860 = true + } + } else if yyl3860 > 0 { + var yyrr3860, yyrl3860 int + var yyrt3860 bool + if yyl3860 > cap(yyv3860) { + + yyrg3860 := len(yyv3860) > 0 + yyv23860 := yyv3860 + yyrl3860, yyrt3860 = z.DecInferLen(yyl3860, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3860 { + if yyrl3860 <= cap(yyv3860) { + yyv3860 = yyv3860[:yyrl3860] + } else { + yyv3860 = make([]VolumeMount, yyrl3860) + } + } else { + yyv3860 = make([]VolumeMount, yyrl3860) + } + yyc3860 = true + yyrr3860 = len(yyv3860) + if yyrg3860 { + copy(yyv3860, yyv23860) + } + } else if yyl3860 != len(yyv3860) { + yyv3860 = yyv3860[:yyl3860] + yyc3860 = true + } + yyj3860 := 0 + for ; yyj3860 < yyrr3860; yyj3860++ { + yyh3860.ElemContainerState(yyj3860) + if r.TryDecodeAsNil() { + yyv3860[yyj3860] = VolumeMount{} + } else { + yyv3861 := &yyv3860[yyj3860] + yyv3861.CodecDecodeSelf(d) + } + + } + if yyrt3860 { + for ; yyj3860 < yyl3860; yyj3860++ { + yyv3860 = append(yyv3860, VolumeMount{}) + yyh3860.ElemContainerState(yyj3860) + if r.TryDecodeAsNil() { + yyv3860[yyj3860] = VolumeMount{} + } else { + yyv3862 := &yyv3860[yyj3860] + yyv3862.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3860 := 0 + for ; !r.CheckBreak(); yyj3860++ { + + if yyj3860 >= len(yyv3860) { + yyv3860 = append(yyv3860, VolumeMount{}) // var yyz3860 VolumeMount + yyc3860 = true + } + yyh3860.ElemContainerState(yyj3860) + if yyj3860 < len(yyv3860) { + if r.TryDecodeAsNil() { + yyv3860[yyj3860] = VolumeMount{} + } else { + yyv3863 := &yyv3860[yyj3860] + yyv3863.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3860 < len(yyv3860) { + yyv3860 = yyv3860[:yyj3860] + yyc3860 = true + } else if yyj3860 == 0 && yyv3860 == nil { + yyv3860 = []VolumeMount{} + yyc3860 = true + } + } + yyh3860.End() + if yyc3860 { + *v = yyv3860 + } +} + +func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3864 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3865 := &yyv3864 + yy3865.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3866 := *v + yyh3866, yyl3866 := z.DecSliceHelperStart() + var yyc3866 bool + if yyl3866 == 0 { + if yyv3866 == nil { + yyv3866 = []Pod{} + yyc3866 = true + } else if len(yyv3866) != 0 { + yyv3866 = yyv3866[:0] + yyc3866 = true + } + } else if yyl3866 > 0 { + var yyrr3866, yyrl3866 int + var yyrt3866 bool + if yyl3866 > cap(yyv3866) { + + yyrg3866 := len(yyv3866) > 0 + yyv23866 := yyv3866 + yyrl3866, yyrt3866 = z.DecInferLen(yyl3866, z.DecBasicHandle().MaxInitLen, 496) + if yyrt3866 { + if yyrl3866 <= cap(yyv3866) { + yyv3866 = yyv3866[:yyrl3866] + } else { + yyv3866 = make([]Pod, yyrl3866) + } + } else { + yyv3866 = make([]Pod, yyrl3866) + } + yyc3866 = true + yyrr3866 = len(yyv3866) + if yyrg3866 { + copy(yyv3866, yyv23866) + } + } else if yyl3866 != len(yyv3866) { + yyv3866 = yyv3866[:yyl3866] + yyc3866 = true + } + yyj3866 := 0 + for ; yyj3866 < yyrr3866; yyj3866++ { + yyh3866.ElemContainerState(yyj3866) + if r.TryDecodeAsNil() { + yyv3866[yyj3866] = Pod{} + } else { + yyv3867 := &yyv3866[yyj3866] + yyv3867.CodecDecodeSelf(d) + } + + } + if yyrt3866 { + for ; yyj3866 < yyl3866; yyj3866++ { + yyv3866 = append(yyv3866, Pod{}) + yyh3866.ElemContainerState(yyj3866) + if r.TryDecodeAsNil() { + yyv3866[yyj3866] = Pod{} + } else { + yyv3868 := &yyv3866[yyj3866] + yyv3868.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3866 := 0 + for ; !r.CheckBreak(); yyj3866++ { + + if yyj3866 >= len(yyv3866) { + yyv3866 = append(yyv3866, Pod{}) // var yyz3866 Pod + yyc3866 = true + } + yyh3866.ElemContainerState(yyj3866) + if yyj3866 < len(yyv3866) { + if r.TryDecodeAsNil() { + yyv3866[yyj3866] = Pod{} + } else { + yyv3869 := &yyv3866[yyj3866] + yyv3869.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3866 < len(yyv3866) { + yyv3866 = yyv3866[:yyj3866] + yyc3866 = true + } else if yyj3866 == 0 && yyv3866 == nil { + yyv3866 = []Pod{} + yyc3866 = true + } + } + yyh3866.End() + if yyc3866 { + *v = yyv3866 + } +} + +func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3870 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3871 := &yyv3870 + yy3871.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48042,83 +48429,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3843 := *v - yyh3843, yyl3843 := z.DecSliceHelperStart() - var yyc3843 bool - if yyl3843 == 0 { - if yyv3843 == nil { - yyv3843 = []NodeSelectorTerm{} - yyc3843 = true - } else if len(yyv3843) != 0 { - yyv3843 = yyv3843[:0] - yyc3843 = true + yyv3872 := *v + yyh3872, yyl3872 := z.DecSliceHelperStart() + var yyc3872 bool + if yyl3872 == 0 { + if yyv3872 == nil { + yyv3872 = []NodeSelectorTerm{} + yyc3872 = true + } else if len(yyv3872) != 0 { + yyv3872 = yyv3872[:0] + yyc3872 = true } - } else if yyl3843 > 0 { - var yyrr3843, yyrl3843 int - var yyrt3843 bool - if yyl3843 > cap(yyv3843) { + } else if yyl3872 > 0 { + var yyrr3872, yyrl3872 int + var yyrt3872 bool + if yyl3872 > cap(yyv3872) { - yyrg3843 := len(yyv3843) > 0 - yyv23843 := yyv3843 - yyrl3843, yyrt3843 = z.DecInferLen(yyl3843, z.DecBasicHandle().MaxInitLen, 24) - if yyrt3843 { - if yyrl3843 <= cap(yyv3843) { - yyv3843 = yyv3843[:yyrl3843] + yyrg3872 := len(yyv3872) > 0 + yyv23872 := yyv3872 + yyrl3872, yyrt3872 = z.DecInferLen(yyl3872, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3872 { + if yyrl3872 <= cap(yyv3872) { + yyv3872 = yyv3872[:yyrl3872] } else { - yyv3843 = make([]NodeSelectorTerm, yyrl3843) + yyv3872 = make([]NodeSelectorTerm, yyrl3872) } } else { - yyv3843 = make([]NodeSelectorTerm, yyrl3843) + yyv3872 = make([]NodeSelectorTerm, yyrl3872) } - yyc3843 = true - yyrr3843 = len(yyv3843) - if yyrg3843 { - copy(yyv3843, yyv23843) + yyc3872 = true + yyrr3872 = len(yyv3872) + if yyrg3872 { + copy(yyv3872, yyv23872) } - } else if yyl3843 != len(yyv3843) { - yyv3843 = yyv3843[:yyl3843] - yyc3843 = true + } else if yyl3872 != len(yyv3872) { + yyv3872 = yyv3872[:yyl3872] + yyc3872 = true } - yyj3843 := 0 - for ; yyj3843 < yyrr3843; yyj3843++ { - yyh3843.ElemContainerState(yyj3843) + yyj3872 := 0 + for ; yyj3872 < yyrr3872; yyj3872++ { + yyh3872.ElemContainerState(yyj3872) if r.TryDecodeAsNil() { - yyv3843[yyj3843] = NodeSelectorTerm{} + yyv3872[yyj3872] = NodeSelectorTerm{} } else { - yyv3844 := &yyv3843[yyj3843] - yyv3844.CodecDecodeSelf(d) + yyv3873 := &yyv3872[yyj3872] + yyv3873.CodecDecodeSelf(d) } } - if yyrt3843 { - for ; yyj3843 < yyl3843; yyj3843++ { - yyv3843 = append(yyv3843, NodeSelectorTerm{}) - yyh3843.ElemContainerState(yyj3843) + if yyrt3872 { + for ; yyj3872 < yyl3872; yyj3872++ { + yyv3872 = append(yyv3872, NodeSelectorTerm{}) + yyh3872.ElemContainerState(yyj3872) if r.TryDecodeAsNil() { - yyv3843[yyj3843] = NodeSelectorTerm{} + yyv3872[yyj3872] = NodeSelectorTerm{} } else { - yyv3845 := &yyv3843[yyj3843] - yyv3845.CodecDecodeSelf(d) + yyv3874 := &yyv3872[yyj3872] + yyv3874.CodecDecodeSelf(d) } } } } else { - yyj3843 := 0 - for ; !r.CheckBreak(); yyj3843++ { + yyj3872 := 0 + for ; !r.CheckBreak(); yyj3872++ { - if yyj3843 >= len(yyv3843) { - yyv3843 = append(yyv3843, NodeSelectorTerm{}) // var yyz3843 NodeSelectorTerm - yyc3843 = true + if yyj3872 >= len(yyv3872) { + yyv3872 = append(yyv3872, NodeSelectorTerm{}) // var yyz3872 NodeSelectorTerm + yyc3872 = true } - yyh3843.ElemContainerState(yyj3843) - if yyj3843 < len(yyv3843) { + yyh3872.ElemContainerState(yyj3872) + if yyj3872 < len(yyv3872) { if r.TryDecodeAsNil() { - yyv3843[yyj3843] = NodeSelectorTerm{} + yyv3872[yyj3872] = NodeSelectorTerm{} } else { - yyv3846 := &yyv3843[yyj3843] - yyv3846.CodecDecodeSelf(d) + yyv3875 := &yyv3872[yyj3872] + yyv3875.CodecDecodeSelf(d) } } else { @@ -48126,17 +48513,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj3843 < len(yyv3843) { - yyv3843 = yyv3843[:yyj3843] - yyc3843 = true - } else if yyj3843 == 0 && yyv3843 == nil { - yyv3843 = []NodeSelectorTerm{} - yyc3843 = true + if yyj3872 < len(yyv3872) { + yyv3872 = yyv3872[:yyj3872] + yyc3872 = true + } else if yyj3872 == 0 && yyv3872 == nil { + yyv3872 = []NodeSelectorTerm{} + yyc3872 = true } } - yyh3843.End() - if yyc3843 { - *v = yyv3843 + yyh3872.End() + if yyc3872 { + *v = yyv3872 } } @@ -48145,10 +48532,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3847 := range v { + for _, yyv3876 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3848 := &yyv3847 - yy3848.CodecEncodeSelf(e) + yy3877 := &yyv3876 + yy3877.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48158,83 +48545,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3849 := *v - yyh3849, yyl3849 := z.DecSliceHelperStart() - var yyc3849 bool - if yyl3849 == 0 { - if yyv3849 == nil { - yyv3849 = []NodeSelectorRequirement{} - yyc3849 = true - } else if len(yyv3849) != 0 { - yyv3849 = yyv3849[:0] - yyc3849 = true + yyv3878 := *v + yyh3878, yyl3878 := z.DecSliceHelperStart() + var yyc3878 bool + if yyl3878 == 0 { + if yyv3878 == nil { + yyv3878 = []NodeSelectorRequirement{} + yyc3878 = true + } else if len(yyv3878) != 0 { + yyv3878 = yyv3878[:0] + yyc3878 = true } - } else if yyl3849 > 0 { - var yyrr3849, yyrl3849 int - var yyrt3849 bool - if yyl3849 > cap(yyv3849) { + } else if yyl3878 > 0 { + var yyrr3878, yyrl3878 int + var yyrt3878 bool + if yyl3878 > cap(yyv3878) { - yyrg3849 := len(yyv3849) > 0 - yyv23849 := yyv3849 - yyrl3849, yyrt3849 = z.DecInferLen(yyl3849, z.DecBasicHandle().MaxInitLen, 56) - if yyrt3849 { - if yyrl3849 <= cap(yyv3849) { - yyv3849 = yyv3849[:yyrl3849] + yyrg3878 := len(yyv3878) > 0 + yyv23878 := yyv3878 + yyrl3878, yyrt3878 = z.DecInferLen(yyl3878, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3878 { + if yyrl3878 <= cap(yyv3878) { + yyv3878 = yyv3878[:yyrl3878] } else { - yyv3849 = make([]NodeSelectorRequirement, yyrl3849) + yyv3878 = make([]NodeSelectorRequirement, yyrl3878) } } else { - yyv3849 = make([]NodeSelectorRequirement, yyrl3849) + yyv3878 = make([]NodeSelectorRequirement, yyrl3878) } - yyc3849 = true - yyrr3849 = len(yyv3849) - if yyrg3849 { - copy(yyv3849, yyv23849) + yyc3878 = true + yyrr3878 = len(yyv3878) + if yyrg3878 { + copy(yyv3878, yyv23878) } - } else if yyl3849 != len(yyv3849) { - yyv3849 = yyv3849[:yyl3849] - yyc3849 = true + } else if yyl3878 != len(yyv3878) { + yyv3878 = yyv3878[:yyl3878] + yyc3878 = true } - yyj3849 := 0 - for ; yyj3849 < yyrr3849; yyj3849++ { - yyh3849.ElemContainerState(yyj3849) + yyj3878 := 0 + for ; yyj3878 < yyrr3878; yyj3878++ { + yyh3878.ElemContainerState(yyj3878) if r.TryDecodeAsNil() { - yyv3849[yyj3849] = NodeSelectorRequirement{} + yyv3878[yyj3878] = NodeSelectorRequirement{} } else { - yyv3850 := &yyv3849[yyj3849] - yyv3850.CodecDecodeSelf(d) + yyv3879 := &yyv3878[yyj3878] + yyv3879.CodecDecodeSelf(d) } } - if yyrt3849 { - for ; yyj3849 < yyl3849; yyj3849++ { - yyv3849 = append(yyv3849, NodeSelectorRequirement{}) - yyh3849.ElemContainerState(yyj3849) + if yyrt3878 { + for ; yyj3878 < yyl3878; yyj3878++ { + yyv3878 = append(yyv3878, NodeSelectorRequirement{}) + yyh3878.ElemContainerState(yyj3878) if r.TryDecodeAsNil() { - yyv3849[yyj3849] = NodeSelectorRequirement{} + yyv3878[yyj3878] = NodeSelectorRequirement{} } else { - yyv3851 := &yyv3849[yyj3849] - yyv3851.CodecDecodeSelf(d) + yyv3880 := &yyv3878[yyj3878] + yyv3880.CodecDecodeSelf(d) } } } } else { - yyj3849 := 0 - for ; !r.CheckBreak(); yyj3849++ { + yyj3878 := 0 + for ; !r.CheckBreak(); yyj3878++ { - if yyj3849 >= len(yyv3849) { - yyv3849 = append(yyv3849, NodeSelectorRequirement{}) // var yyz3849 NodeSelectorRequirement - yyc3849 = true + if yyj3878 >= len(yyv3878) { + yyv3878 = append(yyv3878, NodeSelectorRequirement{}) // var yyz3878 NodeSelectorRequirement + yyc3878 = true } - yyh3849.ElemContainerState(yyj3849) - if yyj3849 < len(yyv3849) { + yyh3878.ElemContainerState(yyj3878) + if yyj3878 < len(yyv3878) { if r.TryDecodeAsNil() { - yyv3849[yyj3849] = NodeSelectorRequirement{} + yyv3878[yyj3878] = NodeSelectorRequirement{} } else { - yyv3852 := &yyv3849[yyj3849] - yyv3852.CodecDecodeSelf(d) + yyv3881 := &yyv3878[yyj3878] + yyv3881.CodecDecodeSelf(d) } } else { @@ -48242,17 +48629,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj3849 < len(yyv3849) { - yyv3849 = yyv3849[:yyj3849] - yyc3849 = true - } else if yyj3849 == 0 && yyv3849 == nil { - yyv3849 = []NodeSelectorRequirement{} - yyc3849 = true + if yyj3878 < len(yyv3878) { + yyv3878 = yyv3878[:yyj3878] + yyc3878 = true + } else if yyj3878 == 0 && yyv3878 == nil { + yyv3878 = []NodeSelectorRequirement{} + yyc3878 = true } } - yyh3849.End() - if yyc3849 { - *v = yyv3849 + yyh3878.End() + if yyc3878 { + *v = yyv3878 } } @@ -48261,10 +48648,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3853 := range v { + for _, yyv3882 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3854 := &yyv3853 - yy3854.CodecEncodeSelf(e) + yy3883 := &yyv3882 + yy3883.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48274,83 +48661,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3855 := *v - yyh3855, yyl3855 := z.DecSliceHelperStart() - var yyc3855 bool - if yyl3855 == 0 { - if yyv3855 == nil { - yyv3855 = []PreferredSchedulingTerm{} - yyc3855 = true - } else if len(yyv3855) != 0 { - yyv3855 = yyv3855[:0] - yyc3855 = true + yyv3884 := *v + yyh3884, yyl3884 := z.DecSliceHelperStart() + var yyc3884 bool + if yyl3884 == 0 { + if yyv3884 == nil { + yyv3884 = []PreferredSchedulingTerm{} + yyc3884 = true + } else if len(yyv3884) != 0 { + yyv3884 = yyv3884[:0] + yyc3884 = true } - } else if yyl3855 > 0 { - var yyrr3855, yyrl3855 int - var yyrt3855 bool - if yyl3855 > cap(yyv3855) { + } else if yyl3884 > 0 { + var yyrr3884, yyrl3884 int + var yyrt3884 bool + if yyl3884 > cap(yyv3884) { - yyrg3855 := len(yyv3855) > 0 - yyv23855 := yyv3855 - yyrl3855, yyrt3855 = z.DecInferLen(yyl3855, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3855 { - if yyrl3855 <= cap(yyv3855) { - yyv3855 = yyv3855[:yyrl3855] + yyrg3884 := len(yyv3884) > 0 + yyv23884 := yyv3884 + yyrl3884, yyrt3884 = z.DecInferLen(yyl3884, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3884 { + if yyrl3884 <= cap(yyv3884) { + yyv3884 = yyv3884[:yyrl3884] } else { - yyv3855 = make([]PreferredSchedulingTerm, yyrl3855) + yyv3884 = make([]PreferredSchedulingTerm, yyrl3884) } } else { - yyv3855 = make([]PreferredSchedulingTerm, yyrl3855) + yyv3884 = make([]PreferredSchedulingTerm, yyrl3884) } - yyc3855 = true - yyrr3855 = len(yyv3855) - if yyrg3855 { - copy(yyv3855, yyv23855) + yyc3884 = true + yyrr3884 = len(yyv3884) + if yyrg3884 { + copy(yyv3884, yyv23884) } - } else if yyl3855 != len(yyv3855) { - yyv3855 = yyv3855[:yyl3855] - yyc3855 = true + } else if yyl3884 != len(yyv3884) { + yyv3884 = yyv3884[:yyl3884] + yyc3884 = true } - yyj3855 := 0 - for ; yyj3855 < yyrr3855; yyj3855++ { - yyh3855.ElemContainerState(yyj3855) + yyj3884 := 0 + for ; yyj3884 < yyrr3884; yyj3884++ { + yyh3884.ElemContainerState(yyj3884) if r.TryDecodeAsNil() { - yyv3855[yyj3855] = PreferredSchedulingTerm{} + yyv3884[yyj3884] = PreferredSchedulingTerm{} } else { - yyv3856 := &yyv3855[yyj3855] - yyv3856.CodecDecodeSelf(d) + yyv3885 := &yyv3884[yyj3884] + yyv3885.CodecDecodeSelf(d) } } - if yyrt3855 { - for ; yyj3855 < yyl3855; yyj3855++ { - yyv3855 = append(yyv3855, PreferredSchedulingTerm{}) - yyh3855.ElemContainerState(yyj3855) + if yyrt3884 { + for ; yyj3884 < yyl3884; yyj3884++ { + yyv3884 = append(yyv3884, PreferredSchedulingTerm{}) + yyh3884.ElemContainerState(yyj3884) if r.TryDecodeAsNil() { - yyv3855[yyj3855] = PreferredSchedulingTerm{} + yyv3884[yyj3884] = PreferredSchedulingTerm{} } else { - yyv3857 := &yyv3855[yyj3855] - yyv3857.CodecDecodeSelf(d) + yyv3886 := &yyv3884[yyj3884] + yyv3886.CodecDecodeSelf(d) } } } } else { - yyj3855 := 0 - for ; !r.CheckBreak(); yyj3855++ { + yyj3884 := 0 + for ; !r.CheckBreak(); yyj3884++ { - if yyj3855 >= len(yyv3855) { - yyv3855 = append(yyv3855, PreferredSchedulingTerm{}) // var yyz3855 PreferredSchedulingTerm - yyc3855 = true + if yyj3884 >= len(yyv3884) { + yyv3884 = append(yyv3884, PreferredSchedulingTerm{}) // var yyz3884 PreferredSchedulingTerm + yyc3884 = true } - yyh3855.ElemContainerState(yyj3855) - if yyj3855 < len(yyv3855) { + yyh3884.ElemContainerState(yyj3884) + if yyj3884 < len(yyv3884) { if r.TryDecodeAsNil() { - yyv3855[yyj3855] = PreferredSchedulingTerm{} + yyv3884[yyj3884] = PreferredSchedulingTerm{} } else { - yyv3858 := &yyv3855[yyj3855] - yyv3858.CodecDecodeSelf(d) + yyv3887 := &yyv3884[yyj3884] + yyv3887.CodecDecodeSelf(d) } } else { @@ -48358,17 +48745,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj3855 < len(yyv3855) { - yyv3855 = yyv3855[:yyj3855] - yyc3855 = true - } else if yyj3855 == 0 && yyv3855 == nil { - yyv3855 = []PreferredSchedulingTerm{} - yyc3855 = true + if yyj3884 < len(yyv3884) { + yyv3884 = yyv3884[:yyj3884] + yyc3884 = true + } else if yyj3884 == 0 && yyv3884 == nil { + yyv3884 = []PreferredSchedulingTerm{} + yyc3884 = true } } - yyh3855.End() - if yyc3855 { - *v = yyv3855 + yyh3884.End() + if yyc3884 { + *v = yyv3884 } } @@ -48377,10 +48764,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3859 := range v { + for _, yyv3888 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3860 := &yyv3859 - yy3860.CodecEncodeSelf(e) + yy3889 := &yyv3888 + yy3889.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48390,83 +48777,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3861 := *v - yyh3861, yyl3861 := z.DecSliceHelperStart() - var yyc3861 bool - if yyl3861 == 0 { - if yyv3861 == nil { - yyv3861 = []Volume{} - yyc3861 = true - } else if len(yyv3861) != 0 { - yyv3861 = yyv3861[:0] - yyc3861 = true + yyv3890 := *v + yyh3890, yyl3890 := z.DecSliceHelperStart() + var yyc3890 bool + if yyl3890 == 0 { + if yyv3890 == nil { + yyv3890 = []Volume{} + yyc3890 = true + } else if len(yyv3890) != 0 { + yyv3890 = yyv3890[:0] + yyc3890 = true } - } else if yyl3861 > 0 { - var yyrr3861, yyrl3861 int - var yyrt3861 bool - if yyl3861 > cap(yyv3861) { + } else if yyl3890 > 0 { + var yyrr3890, yyrl3890 int + var yyrt3890 bool + if yyl3890 > cap(yyv3890) { - yyrg3861 := len(yyv3861) > 0 - yyv23861 := yyv3861 - yyrl3861, yyrt3861 = z.DecInferLen(yyl3861, z.DecBasicHandle().MaxInitLen, 152) - if yyrt3861 { - if yyrl3861 <= cap(yyv3861) { - yyv3861 = yyv3861[:yyrl3861] + yyrg3890 := len(yyv3890) > 0 + yyv23890 := yyv3890 + yyrl3890, yyrt3890 = z.DecInferLen(yyl3890, z.DecBasicHandle().MaxInitLen, 152) + if yyrt3890 { + if yyrl3890 <= cap(yyv3890) { + yyv3890 = yyv3890[:yyrl3890] } else { - yyv3861 = make([]Volume, yyrl3861) + yyv3890 = make([]Volume, yyrl3890) } } else { - yyv3861 = make([]Volume, yyrl3861) + yyv3890 = make([]Volume, yyrl3890) } - yyc3861 = true - yyrr3861 = len(yyv3861) - if yyrg3861 { - copy(yyv3861, yyv23861) + yyc3890 = true + yyrr3890 = len(yyv3890) + if yyrg3890 { + copy(yyv3890, yyv23890) } - } else if yyl3861 != len(yyv3861) { - yyv3861 = yyv3861[:yyl3861] - yyc3861 = true + } else if yyl3890 != len(yyv3890) { + yyv3890 = yyv3890[:yyl3890] + yyc3890 = true } - yyj3861 := 0 - for ; yyj3861 < yyrr3861; yyj3861++ { - yyh3861.ElemContainerState(yyj3861) + yyj3890 := 0 + for ; yyj3890 < yyrr3890; yyj3890++ { + yyh3890.ElemContainerState(yyj3890) if r.TryDecodeAsNil() { - yyv3861[yyj3861] = Volume{} + yyv3890[yyj3890] = Volume{} } else { - yyv3862 := &yyv3861[yyj3861] - yyv3862.CodecDecodeSelf(d) + yyv3891 := &yyv3890[yyj3890] + yyv3891.CodecDecodeSelf(d) } } - if yyrt3861 { - for ; yyj3861 < yyl3861; yyj3861++ { - yyv3861 = append(yyv3861, Volume{}) - yyh3861.ElemContainerState(yyj3861) + if yyrt3890 { + for ; yyj3890 < yyl3890; yyj3890++ { + yyv3890 = append(yyv3890, Volume{}) + yyh3890.ElemContainerState(yyj3890) if r.TryDecodeAsNil() { - yyv3861[yyj3861] = Volume{} + yyv3890[yyj3890] = Volume{} } else { - yyv3863 := &yyv3861[yyj3861] - yyv3863.CodecDecodeSelf(d) + yyv3892 := &yyv3890[yyj3890] + yyv3892.CodecDecodeSelf(d) } } } } else { - yyj3861 := 0 - for ; !r.CheckBreak(); yyj3861++ { + yyj3890 := 0 + for ; !r.CheckBreak(); yyj3890++ { - if yyj3861 >= len(yyv3861) { - yyv3861 = append(yyv3861, Volume{}) // var yyz3861 Volume - yyc3861 = true + if yyj3890 >= len(yyv3890) { + yyv3890 = append(yyv3890, Volume{}) // var yyz3890 Volume + yyc3890 = true } - yyh3861.ElemContainerState(yyj3861) - if yyj3861 < len(yyv3861) { + yyh3890.ElemContainerState(yyj3890) + if yyj3890 < len(yyv3890) { if r.TryDecodeAsNil() { - yyv3861[yyj3861] = Volume{} + yyv3890[yyj3890] = Volume{} } else { - yyv3864 := &yyv3861[yyj3861] - yyv3864.CodecDecodeSelf(d) + yyv3893 := &yyv3890[yyj3890] + yyv3893.CodecDecodeSelf(d) } } else { @@ -48474,17 +48861,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj3861 < len(yyv3861) { - yyv3861 = yyv3861[:yyj3861] - yyc3861 = true - } else if yyj3861 == 0 && yyv3861 == nil { - yyv3861 = []Volume{} - yyc3861 = true + if yyj3890 < len(yyv3890) { + yyv3890 = yyv3890[:yyj3890] + yyc3890 = true + } else if yyj3890 == 0 && yyv3890 == nil { + yyv3890 = []Volume{} + yyc3890 = true } } - yyh3861.End() - if yyc3861 { - *v = yyv3861 + yyh3890.End() + if yyc3890 { + *v = yyv3890 } } @@ -48493,10 +48880,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3865 := range v { + for _, yyv3894 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3866 := &yyv3865 - yy3866.CodecEncodeSelf(e) + yy3895 := &yyv3894 + yy3895.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48506,83 +48893,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3867 := *v - yyh3867, yyl3867 := z.DecSliceHelperStart() - var yyc3867 bool - if yyl3867 == 0 { - if yyv3867 == nil { - yyv3867 = []Container{} - yyc3867 = true - } else if len(yyv3867) != 0 { - yyv3867 = yyv3867[:0] - yyc3867 = true + yyv3896 := *v + yyh3896, yyl3896 := z.DecSliceHelperStart() + var yyc3896 bool + if yyl3896 == 0 { + if yyv3896 == nil { + yyv3896 = []Container{} + yyc3896 = true + } else if len(yyv3896) != 0 { + yyv3896 = yyv3896[:0] + yyc3896 = true } - } else if yyl3867 > 0 { - var yyrr3867, yyrl3867 int - var yyrt3867 bool - if yyl3867 > cap(yyv3867) { + } else if yyl3896 > 0 { + var yyrr3896, yyrl3896 int + var yyrt3896 bool + if yyl3896 > cap(yyv3896) { - yyrg3867 := len(yyv3867) > 0 - yyv23867 := yyv3867 - yyrl3867, yyrt3867 = z.DecInferLen(yyl3867, z.DecBasicHandle().MaxInitLen, 256) - if yyrt3867 { - if yyrl3867 <= cap(yyv3867) { - yyv3867 = yyv3867[:yyrl3867] + yyrg3896 := len(yyv3896) > 0 + yyv23896 := yyv3896 + yyrl3896, yyrt3896 = z.DecInferLen(yyl3896, z.DecBasicHandle().MaxInitLen, 256) + if yyrt3896 { + if yyrl3896 <= cap(yyv3896) { + yyv3896 = yyv3896[:yyrl3896] } else { - yyv3867 = make([]Container, yyrl3867) + yyv3896 = make([]Container, yyrl3896) } } else { - yyv3867 = make([]Container, yyrl3867) + yyv3896 = make([]Container, yyrl3896) } - yyc3867 = true - yyrr3867 = len(yyv3867) - if yyrg3867 { - copy(yyv3867, yyv23867) + yyc3896 = true + yyrr3896 = len(yyv3896) + if yyrg3896 { + copy(yyv3896, yyv23896) } - } else if yyl3867 != len(yyv3867) { - yyv3867 = yyv3867[:yyl3867] - yyc3867 = true + } else if yyl3896 != len(yyv3896) { + yyv3896 = yyv3896[:yyl3896] + yyc3896 = true } - yyj3867 := 0 - for ; yyj3867 < yyrr3867; yyj3867++ { - yyh3867.ElemContainerState(yyj3867) + yyj3896 := 0 + for ; yyj3896 < yyrr3896; yyj3896++ { + yyh3896.ElemContainerState(yyj3896) if r.TryDecodeAsNil() { - yyv3867[yyj3867] = Container{} + yyv3896[yyj3896] = Container{} } else { - yyv3868 := &yyv3867[yyj3867] - yyv3868.CodecDecodeSelf(d) + yyv3897 := &yyv3896[yyj3896] + yyv3897.CodecDecodeSelf(d) } } - if yyrt3867 { - for ; yyj3867 < yyl3867; yyj3867++ { - yyv3867 = append(yyv3867, Container{}) - yyh3867.ElemContainerState(yyj3867) + if yyrt3896 { + for ; yyj3896 < yyl3896; yyj3896++ { + yyv3896 = append(yyv3896, Container{}) + yyh3896.ElemContainerState(yyj3896) if r.TryDecodeAsNil() { - yyv3867[yyj3867] = Container{} + yyv3896[yyj3896] = Container{} } else { - yyv3869 := &yyv3867[yyj3867] - yyv3869.CodecDecodeSelf(d) + yyv3898 := &yyv3896[yyj3896] + yyv3898.CodecDecodeSelf(d) } } } } else { - yyj3867 := 0 - for ; !r.CheckBreak(); yyj3867++ { + yyj3896 := 0 + for ; !r.CheckBreak(); yyj3896++ { - if yyj3867 >= len(yyv3867) { - yyv3867 = append(yyv3867, Container{}) // var yyz3867 Container - yyc3867 = true + if yyj3896 >= len(yyv3896) { + yyv3896 = append(yyv3896, Container{}) // var yyz3896 Container + yyc3896 = true } - yyh3867.ElemContainerState(yyj3867) - if yyj3867 < len(yyv3867) { + yyh3896.ElemContainerState(yyj3896) + if yyj3896 < len(yyv3896) { if r.TryDecodeAsNil() { - yyv3867[yyj3867] = Container{} + yyv3896[yyj3896] = Container{} } else { - yyv3870 := &yyv3867[yyj3867] - yyv3870.CodecDecodeSelf(d) + yyv3899 := &yyv3896[yyj3896] + yyv3899.CodecDecodeSelf(d) } } else { @@ -48590,17 +48977,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj3867 < len(yyv3867) { - yyv3867 = yyv3867[:yyj3867] - yyc3867 = true - } else if yyj3867 == 0 && yyv3867 == nil { - yyv3867 = []Container{} - yyc3867 = true + if yyj3896 < len(yyv3896) { + yyv3896 = yyv3896[:yyj3896] + yyc3896 = true + } else if yyj3896 == 0 && yyv3896 == nil { + yyv3896 = []Container{} + yyc3896 = true } } - yyh3867.End() - if yyc3867 { - *v = yyv3867 + yyh3896.End() + if yyc3896 { + *v = yyv3896 } } @@ -48609,10 +48996,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3871 := range v { + for _, yyv3900 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3872 := &yyv3871 - yy3872.CodecEncodeSelf(e) + yy3901 := &yyv3900 + yy3901.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48622,83 +49009,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3873 := *v - yyh3873, yyl3873 := z.DecSliceHelperStart() - var yyc3873 bool - if yyl3873 == 0 { - if yyv3873 == nil { - yyv3873 = []LocalObjectReference{} - yyc3873 = true - } else if len(yyv3873) != 0 { - yyv3873 = yyv3873[:0] - yyc3873 = true + yyv3902 := *v + yyh3902, yyl3902 := z.DecSliceHelperStart() + var yyc3902 bool + if yyl3902 == 0 { + if yyv3902 == nil { + yyv3902 = []LocalObjectReference{} + yyc3902 = true + } else if len(yyv3902) != 0 { + yyv3902 = yyv3902[:0] + yyc3902 = true } - } else if yyl3873 > 0 { - var yyrr3873, yyrl3873 int - var yyrt3873 bool - if yyl3873 > cap(yyv3873) { + } else if yyl3902 > 0 { + var yyrr3902, yyrl3902 int + var yyrt3902 bool + if yyl3902 > cap(yyv3902) { - yyrg3873 := len(yyv3873) > 0 - yyv23873 := yyv3873 - yyrl3873, yyrt3873 = z.DecInferLen(yyl3873, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3873 { - if yyrl3873 <= cap(yyv3873) { - yyv3873 = yyv3873[:yyrl3873] + yyrg3902 := len(yyv3902) > 0 + yyv23902 := yyv3902 + yyrl3902, yyrt3902 = z.DecInferLen(yyl3902, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3902 { + if yyrl3902 <= cap(yyv3902) { + yyv3902 = yyv3902[:yyrl3902] } else { - yyv3873 = make([]LocalObjectReference, yyrl3873) + yyv3902 = make([]LocalObjectReference, yyrl3902) } } else { - yyv3873 = make([]LocalObjectReference, yyrl3873) + yyv3902 = make([]LocalObjectReference, yyrl3902) } - yyc3873 = true - yyrr3873 = len(yyv3873) - if yyrg3873 { - copy(yyv3873, yyv23873) + yyc3902 = true + yyrr3902 = len(yyv3902) + if yyrg3902 { + copy(yyv3902, yyv23902) } - } else if yyl3873 != len(yyv3873) { - yyv3873 = yyv3873[:yyl3873] - yyc3873 = true + } else if yyl3902 != len(yyv3902) { + yyv3902 = yyv3902[:yyl3902] + yyc3902 = true } - yyj3873 := 0 - for ; yyj3873 < yyrr3873; yyj3873++ { - yyh3873.ElemContainerState(yyj3873) + yyj3902 := 0 + for ; yyj3902 < yyrr3902; yyj3902++ { + yyh3902.ElemContainerState(yyj3902) if r.TryDecodeAsNil() { - yyv3873[yyj3873] = LocalObjectReference{} + yyv3902[yyj3902] = LocalObjectReference{} } else { - yyv3874 := &yyv3873[yyj3873] - yyv3874.CodecDecodeSelf(d) + yyv3903 := &yyv3902[yyj3902] + yyv3903.CodecDecodeSelf(d) } } - if yyrt3873 { - for ; yyj3873 < yyl3873; yyj3873++ { - yyv3873 = append(yyv3873, LocalObjectReference{}) - yyh3873.ElemContainerState(yyj3873) + if yyrt3902 { + for ; yyj3902 < yyl3902; yyj3902++ { + yyv3902 = append(yyv3902, LocalObjectReference{}) + yyh3902.ElemContainerState(yyj3902) if r.TryDecodeAsNil() { - yyv3873[yyj3873] = LocalObjectReference{} + yyv3902[yyj3902] = LocalObjectReference{} } else { - yyv3875 := &yyv3873[yyj3873] - yyv3875.CodecDecodeSelf(d) + yyv3904 := &yyv3902[yyj3902] + yyv3904.CodecDecodeSelf(d) } } } } else { - yyj3873 := 0 - for ; !r.CheckBreak(); yyj3873++ { + yyj3902 := 0 + for ; !r.CheckBreak(); yyj3902++ { - if yyj3873 >= len(yyv3873) { - yyv3873 = append(yyv3873, LocalObjectReference{}) // var yyz3873 LocalObjectReference - yyc3873 = true + if yyj3902 >= len(yyv3902) { + yyv3902 = append(yyv3902, LocalObjectReference{}) // var yyz3902 LocalObjectReference + yyc3902 = true } - yyh3873.ElemContainerState(yyj3873) - if yyj3873 < len(yyv3873) { + yyh3902.ElemContainerState(yyj3902) + if yyj3902 < len(yyv3902) { if r.TryDecodeAsNil() { - yyv3873[yyj3873] = LocalObjectReference{} + yyv3902[yyj3902] = LocalObjectReference{} } else { - yyv3876 := &yyv3873[yyj3873] - yyv3876.CodecDecodeSelf(d) + yyv3905 := &yyv3902[yyj3902] + yyv3905.CodecDecodeSelf(d) } } else { @@ -48706,17 +49093,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj3873 < len(yyv3873) { - yyv3873 = yyv3873[:yyj3873] - yyc3873 = true - } else if yyj3873 == 0 && yyv3873 == nil { - yyv3873 = []LocalObjectReference{} - yyc3873 = true + if yyj3902 < len(yyv3902) { + yyv3902 = yyv3902[:yyj3902] + yyc3902 = true + } else if yyj3902 == 0 && yyv3902 == nil { + yyv3902 = []LocalObjectReference{} + yyc3902 = true } } - yyh3873.End() - if yyc3873 { - *v = yyv3873 + yyh3902.End() + if yyc3902 { + *v = yyv3902 } } @@ -48725,10 +49112,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3877 := range v { + for _, yyv3906 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3878 := &yyv3877 - yy3878.CodecEncodeSelf(e) + yy3907 := &yyv3906 + yy3907.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48738,83 +49125,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3879 := *v - yyh3879, yyl3879 := z.DecSliceHelperStart() - var yyc3879 bool - if yyl3879 == 0 { - if yyv3879 == nil { - yyv3879 = []PodCondition{} - yyc3879 = true - } else if len(yyv3879) != 0 { - yyv3879 = yyv3879[:0] - yyc3879 = true + yyv3908 := *v + yyh3908, yyl3908 := z.DecSliceHelperStart() + var yyc3908 bool + if yyl3908 == 0 { + if yyv3908 == nil { + yyv3908 = []PodCondition{} + yyc3908 = true + } else if len(yyv3908) != 0 { + yyv3908 = yyv3908[:0] + yyc3908 = true } - } else if yyl3879 > 0 { - var yyrr3879, yyrl3879 int - var yyrt3879 bool - if yyl3879 > cap(yyv3879) { + } else if yyl3908 > 0 { + var yyrr3908, yyrl3908 int + var yyrt3908 bool + if yyl3908 > cap(yyv3908) { - yyrg3879 := len(yyv3879) > 0 - yyv23879 := yyv3879 - yyrl3879, yyrt3879 = z.DecInferLen(yyl3879, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3879 { - if yyrl3879 <= cap(yyv3879) { - yyv3879 = yyv3879[:yyrl3879] + yyrg3908 := len(yyv3908) > 0 + yyv23908 := yyv3908 + yyrl3908, yyrt3908 = z.DecInferLen(yyl3908, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3908 { + if yyrl3908 <= cap(yyv3908) { + yyv3908 = yyv3908[:yyrl3908] } else { - yyv3879 = make([]PodCondition, yyrl3879) + yyv3908 = make([]PodCondition, yyrl3908) } } else { - yyv3879 = make([]PodCondition, yyrl3879) + yyv3908 = make([]PodCondition, yyrl3908) } - yyc3879 = true - yyrr3879 = len(yyv3879) - if yyrg3879 { - copy(yyv3879, yyv23879) + yyc3908 = true + yyrr3908 = len(yyv3908) + if yyrg3908 { + copy(yyv3908, yyv23908) } - } else if yyl3879 != len(yyv3879) { - yyv3879 = yyv3879[:yyl3879] - yyc3879 = true + } else if yyl3908 != len(yyv3908) { + yyv3908 = yyv3908[:yyl3908] + yyc3908 = true } - yyj3879 := 0 - for ; yyj3879 < yyrr3879; yyj3879++ { - yyh3879.ElemContainerState(yyj3879) + yyj3908 := 0 + for ; yyj3908 < yyrr3908; yyj3908++ { + yyh3908.ElemContainerState(yyj3908) if r.TryDecodeAsNil() { - yyv3879[yyj3879] = PodCondition{} + yyv3908[yyj3908] = PodCondition{} } else { - yyv3880 := &yyv3879[yyj3879] - yyv3880.CodecDecodeSelf(d) + yyv3909 := &yyv3908[yyj3908] + yyv3909.CodecDecodeSelf(d) } } - if yyrt3879 { - for ; yyj3879 < yyl3879; yyj3879++ { - yyv3879 = append(yyv3879, PodCondition{}) - yyh3879.ElemContainerState(yyj3879) + if yyrt3908 { + for ; yyj3908 < yyl3908; yyj3908++ { + yyv3908 = append(yyv3908, PodCondition{}) + yyh3908.ElemContainerState(yyj3908) if r.TryDecodeAsNil() { - yyv3879[yyj3879] = PodCondition{} + yyv3908[yyj3908] = PodCondition{} } else { - yyv3881 := &yyv3879[yyj3879] - yyv3881.CodecDecodeSelf(d) + yyv3910 := &yyv3908[yyj3908] + yyv3910.CodecDecodeSelf(d) } } } } else { - yyj3879 := 0 - for ; !r.CheckBreak(); yyj3879++ { + yyj3908 := 0 + for ; !r.CheckBreak(); yyj3908++ { - if yyj3879 >= len(yyv3879) { - yyv3879 = append(yyv3879, PodCondition{}) // var yyz3879 PodCondition - yyc3879 = true + if yyj3908 >= len(yyv3908) { + yyv3908 = append(yyv3908, PodCondition{}) // var yyz3908 PodCondition + yyc3908 = true } - yyh3879.ElemContainerState(yyj3879) - if yyj3879 < len(yyv3879) { + yyh3908.ElemContainerState(yyj3908) + if yyj3908 < len(yyv3908) { if r.TryDecodeAsNil() { - yyv3879[yyj3879] = PodCondition{} + yyv3908[yyj3908] = PodCondition{} } else { - yyv3882 := &yyv3879[yyj3879] - yyv3882.CodecDecodeSelf(d) + yyv3911 := &yyv3908[yyj3908] + yyv3911.CodecDecodeSelf(d) } } else { @@ -48822,17 +49209,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj3879 < len(yyv3879) { - yyv3879 = yyv3879[:yyj3879] - yyc3879 = true - } else if yyj3879 == 0 && yyv3879 == nil { - yyv3879 = []PodCondition{} - yyc3879 = true + if yyj3908 < len(yyv3908) { + yyv3908 = yyv3908[:yyj3908] + yyc3908 = true + } else if yyj3908 == 0 && yyv3908 == nil { + yyv3908 = []PodCondition{} + yyc3908 = true } } - yyh3879.End() - if yyc3879 { - *v = yyv3879 + yyh3908.End() + if yyc3908 { + *v = yyv3908 } } @@ -48841,10 +49228,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3883 := range v { + for _, yyv3912 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3884 := &yyv3883 - yy3884.CodecEncodeSelf(e) + yy3913 := &yyv3912 + yy3913.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48854,83 +49241,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3885 := *v - yyh3885, yyl3885 := z.DecSliceHelperStart() - var yyc3885 bool - if yyl3885 == 0 { - if yyv3885 == nil { - yyv3885 = []ContainerStatus{} - yyc3885 = true - } else if len(yyv3885) != 0 { - yyv3885 = yyv3885[:0] - yyc3885 = true + yyv3914 := *v + yyh3914, yyl3914 := z.DecSliceHelperStart() + var yyc3914 bool + if yyl3914 == 0 { + if yyv3914 == nil { + yyv3914 = []ContainerStatus{} + yyc3914 = true + } else if len(yyv3914) != 0 { + yyv3914 = yyv3914[:0] + yyc3914 = true } - } else if yyl3885 > 0 { - var yyrr3885, yyrl3885 int - var yyrt3885 bool - if yyl3885 > cap(yyv3885) { + } else if yyl3914 > 0 { + var yyrr3914, yyrl3914 int + var yyrt3914 bool + if yyl3914 > cap(yyv3914) { - yyrg3885 := len(yyv3885) > 0 - yyv23885 := yyv3885 - yyrl3885, yyrt3885 = z.DecInferLen(yyl3885, z.DecBasicHandle().MaxInitLen, 128) - if yyrt3885 { - if yyrl3885 <= cap(yyv3885) { - yyv3885 = yyv3885[:yyrl3885] + yyrg3914 := len(yyv3914) > 0 + yyv23914 := yyv3914 + yyrl3914, yyrt3914 = z.DecInferLen(yyl3914, z.DecBasicHandle().MaxInitLen, 128) + if yyrt3914 { + if yyrl3914 <= cap(yyv3914) { + yyv3914 = yyv3914[:yyrl3914] } else { - yyv3885 = make([]ContainerStatus, yyrl3885) + yyv3914 = make([]ContainerStatus, yyrl3914) } } else { - yyv3885 = make([]ContainerStatus, yyrl3885) + yyv3914 = make([]ContainerStatus, yyrl3914) } - yyc3885 = true - yyrr3885 = len(yyv3885) - if yyrg3885 { - copy(yyv3885, yyv23885) + yyc3914 = true + yyrr3914 = len(yyv3914) + if yyrg3914 { + copy(yyv3914, yyv23914) } - } else if yyl3885 != len(yyv3885) { - yyv3885 = yyv3885[:yyl3885] - yyc3885 = true + } else if yyl3914 != len(yyv3914) { + yyv3914 = yyv3914[:yyl3914] + yyc3914 = true } - yyj3885 := 0 - for ; yyj3885 < yyrr3885; yyj3885++ { - yyh3885.ElemContainerState(yyj3885) + yyj3914 := 0 + for ; yyj3914 < yyrr3914; yyj3914++ { + yyh3914.ElemContainerState(yyj3914) if r.TryDecodeAsNil() { - yyv3885[yyj3885] = ContainerStatus{} + yyv3914[yyj3914] = ContainerStatus{} } else { - yyv3886 := &yyv3885[yyj3885] - yyv3886.CodecDecodeSelf(d) + yyv3915 := &yyv3914[yyj3914] + yyv3915.CodecDecodeSelf(d) } } - if yyrt3885 { - for ; yyj3885 < yyl3885; yyj3885++ { - yyv3885 = append(yyv3885, ContainerStatus{}) - yyh3885.ElemContainerState(yyj3885) + if yyrt3914 { + for ; yyj3914 < yyl3914; yyj3914++ { + yyv3914 = append(yyv3914, ContainerStatus{}) + yyh3914.ElemContainerState(yyj3914) if r.TryDecodeAsNil() { - yyv3885[yyj3885] = ContainerStatus{} + yyv3914[yyj3914] = ContainerStatus{} } else { - yyv3887 := &yyv3885[yyj3885] - yyv3887.CodecDecodeSelf(d) + yyv3916 := &yyv3914[yyj3914] + yyv3916.CodecDecodeSelf(d) } } } } else { - yyj3885 := 0 - for ; !r.CheckBreak(); yyj3885++ { + yyj3914 := 0 + for ; !r.CheckBreak(); yyj3914++ { - if yyj3885 >= len(yyv3885) { - yyv3885 = append(yyv3885, ContainerStatus{}) // var yyz3885 ContainerStatus - yyc3885 = true + if yyj3914 >= len(yyv3914) { + yyv3914 = append(yyv3914, ContainerStatus{}) // var yyz3914 ContainerStatus + yyc3914 = true } - yyh3885.ElemContainerState(yyj3885) - if yyj3885 < len(yyv3885) { + yyh3914.ElemContainerState(yyj3914) + if yyj3914 < len(yyv3914) { if r.TryDecodeAsNil() { - yyv3885[yyj3885] = ContainerStatus{} + yyv3914[yyj3914] = ContainerStatus{} } else { - yyv3888 := &yyv3885[yyj3885] - yyv3888.CodecDecodeSelf(d) + yyv3917 := &yyv3914[yyj3914] + yyv3917.CodecDecodeSelf(d) } } else { @@ -48938,17 +49325,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj3885 < len(yyv3885) { - yyv3885 = yyv3885[:yyj3885] - yyc3885 = true - } else if yyj3885 == 0 && yyv3885 == nil { - yyv3885 = []ContainerStatus{} - yyc3885 = true + if yyj3914 < len(yyv3914) { + yyv3914 = yyv3914[:yyj3914] + yyc3914 = true + } else if yyj3914 == 0 && yyv3914 == nil { + yyv3914 = []ContainerStatus{} + yyc3914 = true } } - yyh3885.End() - if yyc3885 { - *v = yyv3885 + yyh3914.End() + if yyc3914 { + *v = yyv3914 } } @@ -48957,10 +49344,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3889 := range v { + for _, yyv3918 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3890 := &yyv3889 - yy3890.CodecEncodeSelf(e) + yy3919 := &yyv3918 + yy3919.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48970,83 +49357,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3891 := *v - yyh3891, yyl3891 := z.DecSliceHelperStart() - var yyc3891 bool - if yyl3891 == 0 { - if yyv3891 == nil { - yyv3891 = []PodTemplate{} - yyc3891 = true - } else if len(yyv3891) != 0 { - yyv3891 = yyv3891[:0] - yyc3891 = true + yyv3920 := *v + yyh3920, yyl3920 := z.DecSliceHelperStart() + var yyc3920 bool + if yyl3920 == 0 { + if yyv3920 == nil { + yyv3920 = []PodTemplate{} + yyc3920 = true + } else if len(yyv3920) != 0 { + yyv3920 = yyv3920[:0] + yyc3920 = true } - } else if yyl3891 > 0 { - var yyrr3891, yyrl3891 int - var yyrt3891 bool - if yyl3891 > cap(yyv3891) { + } else if yyl3920 > 0 { + var yyrr3920, yyrl3920 int + var yyrt3920 bool + if yyl3920 > cap(yyv3920) { - yyrg3891 := len(yyv3891) > 0 - yyv23891 := yyv3891 - yyrl3891, yyrt3891 = z.DecInferLen(yyl3891, z.DecBasicHandle().MaxInitLen, 520) - if yyrt3891 { - if yyrl3891 <= cap(yyv3891) { - yyv3891 = yyv3891[:yyrl3891] + yyrg3920 := len(yyv3920) > 0 + yyv23920 := yyv3920 + yyrl3920, yyrt3920 = z.DecInferLen(yyl3920, z.DecBasicHandle().MaxInitLen, 520) + if yyrt3920 { + if yyrl3920 <= cap(yyv3920) { + yyv3920 = yyv3920[:yyrl3920] } else { - yyv3891 = make([]PodTemplate, yyrl3891) + yyv3920 = make([]PodTemplate, yyrl3920) } } else { - yyv3891 = make([]PodTemplate, yyrl3891) + yyv3920 = make([]PodTemplate, yyrl3920) } - yyc3891 = true - yyrr3891 = len(yyv3891) - if yyrg3891 { - copy(yyv3891, yyv23891) + yyc3920 = true + yyrr3920 = len(yyv3920) + if yyrg3920 { + copy(yyv3920, yyv23920) } - } else if yyl3891 != len(yyv3891) { - yyv3891 = yyv3891[:yyl3891] - yyc3891 = true + } else if yyl3920 != len(yyv3920) { + yyv3920 = yyv3920[:yyl3920] + yyc3920 = true } - yyj3891 := 0 - for ; yyj3891 < yyrr3891; yyj3891++ { - yyh3891.ElemContainerState(yyj3891) + yyj3920 := 0 + for ; yyj3920 < yyrr3920; yyj3920++ { + yyh3920.ElemContainerState(yyj3920) if r.TryDecodeAsNil() { - yyv3891[yyj3891] = PodTemplate{} + yyv3920[yyj3920] = PodTemplate{} } else { - yyv3892 := &yyv3891[yyj3891] - yyv3892.CodecDecodeSelf(d) + yyv3921 := &yyv3920[yyj3920] + yyv3921.CodecDecodeSelf(d) } } - if yyrt3891 { - for ; yyj3891 < yyl3891; yyj3891++ { - yyv3891 = append(yyv3891, PodTemplate{}) - yyh3891.ElemContainerState(yyj3891) + if yyrt3920 { + for ; yyj3920 < yyl3920; yyj3920++ { + yyv3920 = append(yyv3920, PodTemplate{}) + yyh3920.ElemContainerState(yyj3920) if r.TryDecodeAsNil() { - yyv3891[yyj3891] = PodTemplate{} + yyv3920[yyj3920] = PodTemplate{} } else { - yyv3893 := &yyv3891[yyj3891] - yyv3893.CodecDecodeSelf(d) + yyv3922 := &yyv3920[yyj3920] + yyv3922.CodecDecodeSelf(d) } } } } else { - yyj3891 := 0 - for ; !r.CheckBreak(); yyj3891++ { + yyj3920 := 0 + for ; !r.CheckBreak(); yyj3920++ { - if yyj3891 >= len(yyv3891) { - yyv3891 = append(yyv3891, PodTemplate{}) // var yyz3891 PodTemplate - yyc3891 = true + if yyj3920 >= len(yyv3920) { + yyv3920 = append(yyv3920, PodTemplate{}) // var yyz3920 PodTemplate + yyc3920 = true } - yyh3891.ElemContainerState(yyj3891) - if yyj3891 < len(yyv3891) { + yyh3920.ElemContainerState(yyj3920) + if yyj3920 < len(yyv3920) { if r.TryDecodeAsNil() { - yyv3891[yyj3891] = PodTemplate{} + yyv3920[yyj3920] = PodTemplate{} } else { - yyv3894 := &yyv3891[yyj3891] - yyv3894.CodecDecodeSelf(d) + yyv3923 := &yyv3920[yyj3920] + yyv3923.CodecDecodeSelf(d) } } else { @@ -49054,17 +49441,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj3891 < len(yyv3891) { - yyv3891 = yyv3891[:yyj3891] - yyc3891 = true - } else if yyj3891 == 0 && yyv3891 == nil { - yyv3891 = []PodTemplate{} - yyc3891 = true + if yyj3920 < len(yyv3920) { + yyv3920 = yyv3920[:yyj3920] + yyc3920 = true + } else if yyj3920 == 0 && yyv3920 == nil { + yyv3920 = []PodTemplate{} + yyc3920 = true } } - yyh3891.End() - if yyc3891 { - *v = yyv3891 + yyh3920.End() + if yyc3920 { + *v = yyv3920 } } @@ -49073,10 +49460,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3895 := range v { + for _, yyv3924 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3896 := &yyv3895 - yy3896.CodecEncodeSelf(e) + yy3925 := &yyv3924 + yy3925.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49086,83 +49473,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3897 := *v - yyh3897, yyl3897 := z.DecSliceHelperStart() - var yyc3897 bool - if yyl3897 == 0 { - if yyv3897 == nil { - yyv3897 = []ReplicationController{} - yyc3897 = true - } else if len(yyv3897) != 0 { - yyv3897 = yyv3897[:0] - yyc3897 = true + yyv3926 := *v + yyh3926, yyl3926 := z.DecSliceHelperStart() + var yyc3926 bool + if yyl3926 == 0 { + if yyv3926 == nil { + yyv3926 = []ReplicationController{} + yyc3926 = true + } else if len(yyv3926) != 0 { + yyv3926 = yyv3926[:0] + yyc3926 = true } - } else if yyl3897 > 0 { - var yyrr3897, yyrl3897 int - var yyrt3897 bool - if yyl3897 > cap(yyv3897) { + } else if yyl3926 > 0 { + var yyrr3926, yyrl3926 int + var yyrt3926 bool + if yyl3926 > cap(yyv3926) { - yyrg3897 := len(yyv3897) > 0 - yyv23897 := yyv3897 - yyrl3897, yyrt3897 = z.DecInferLen(yyl3897, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3897 { - if yyrl3897 <= cap(yyv3897) { - yyv3897 = yyv3897[:yyrl3897] + yyrg3926 := len(yyv3926) > 0 + yyv23926 := yyv3926 + yyrl3926, yyrt3926 = z.DecInferLen(yyl3926, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3926 { + if yyrl3926 <= cap(yyv3926) { + yyv3926 = yyv3926[:yyrl3926] } else { - yyv3897 = make([]ReplicationController, yyrl3897) + yyv3926 = make([]ReplicationController, yyrl3926) } } else { - yyv3897 = make([]ReplicationController, yyrl3897) + yyv3926 = make([]ReplicationController, yyrl3926) } - yyc3897 = true - yyrr3897 = len(yyv3897) - if yyrg3897 { - copy(yyv3897, yyv23897) + yyc3926 = true + yyrr3926 = len(yyv3926) + if yyrg3926 { + copy(yyv3926, yyv23926) } - } else if yyl3897 != len(yyv3897) { - yyv3897 = yyv3897[:yyl3897] - yyc3897 = true + } else if yyl3926 != len(yyv3926) { + yyv3926 = yyv3926[:yyl3926] + yyc3926 = true } - yyj3897 := 0 - for ; yyj3897 < yyrr3897; yyj3897++ { - yyh3897.ElemContainerState(yyj3897) + yyj3926 := 0 + for ; yyj3926 < yyrr3926; yyj3926++ { + yyh3926.ElemContainerState(yyj3926) if r.TryDecodeAsNil() { - yyv3897[yyj3897] = ReplicationController{} + yyv3926[yyj3926] = ReplicationController{} } else { - yyv3898 := &yyv3897[yyj3897] - yyv3898.CodecDecodeSelf(d) + yyv3927 := &yyv3926[yyj3926] + yyv3927.CodecDecodeSelf(d) } } - if yyrt3897 { - for ; yyj3897 < yyl3897; yyj3897++ { - yyv3897 = append(yyv3897, ReplicationController{}) - yyh3897.ElemContainerState(yyj3897) + if yyrt3926 { + for ; yyj3926 < yyl3926; yyj3926++ { + yyv3926 = append(yyv3926, ReplicationController{}) + yyh3926.ElemContainerState(yyj3926) if r.TryDecodeAsNil() { - yyv3897[yyj3897] = ReplicationController{} + yyv3926[yyj3926] = ReplicationController{} } else { - yyv3899 := &yyv3897[yyj3897] - yyv3899.CodecDecodeSelf(d) + yyv3928 := &yyv3926[yyj3926] + yyv3928.CodecDecodeSelf(d) } } } } else { - yyj3897 := 0 - for ; !r.CheckBreak(); yyj3897++ { + yyj3926 := 0 + for ; !r.CheckBreak(); yyj3926++ { - if yyj3897 >= len(yyv3897) { - yyv3897 = append(yyv3897, ReplicationController{}) // var yyz3897 ReplicationController - yyc3897 = true + if yyj3926 >= len(yyv3926) { + yyv3926 = append(yyv3926, ReplicationController{}) // var yyz3926 ReplicationController + yyc3926 = true } - yyh3897.ElemContainerState(yyj3897) - if yyj3897 < len(yyv3897) { + yyh3926.ElemContainerState(yyj3926) + if yyj3926 < len(yyv3926) { if r.TryDecodeAsNil() { - yyv3897[yyj3897] = ReplicationController{} + yyv3926[yyj3926] = ReplicationController{} } else { - yyv3900 := &yyv3897[yyj3897] - yyv3900.CodecDecodeSelf(d) + yyv3929 := &yyv3926[yyj3926] + yyv3929.CodecDecodeSelf(d) } } else { @@ -49170,17 +49557,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj3897 < len(yyv3897) { - yyv3897 = yyv3897[:yyj3897] - yyc3897 = true - } else if yyj3897 == 0 && yyv3897 == nil { - yyv3897 = []ReplicationController{} - yyc3897 = true + if yyj3926 < len(yyv3926) { + yyv3926 = yyv3926[:yyj3926] + yyc3926 = true + } else if yyj3926 == 0 && yyv3926 == nil { + yyv3926 = []ReplicationController{} + yyc3926 = true } } - yyh3897.End() - if yyc3897 { - *v = yyv3897 + yyh3926.End() + if yyc3926 { + *v = yyv3926 } } @@ -49189,10 +49576,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3901 := range v { + for _, yyv3930 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3902 := &yyv3901 - yy3902.CodecEncodeSelf(e) + yy3931 := &yyv3930 + yy3931.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49202,83 +49589,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3903 := *v - yyh3903, yyl3903 := z.DecSliceHelperStart() - var yyc3903 bool - if yyl3903 == 0 { - if yyv3903 == nil { - yyv3903 = []Service{} - yyc3903 = true - } else if len(yyv3903) != 0 { - yyv3903 = yyv3903[:0] - yyc3903 = true + yyv3932 := *v + yyh3932, yyl3932 := z.DecSliceHelperStart() + var yyc3932 bool + if yyl3932 == 0 { + if yyv3932 == nil { + yyv3932 = []Service{} + yyc3932 = true + } else if len(yyv3932) != 0 { + yyv3932 = yyv3932[:0] + yyc3932 = true } - } else if yyl3903 > 0 { - var yyrr3903, yyrl3903 int - var yyrt3903 bool - if yyl3903 > cap(yyv3903) { + } else if yyl3932 > 0 { + var yyrr3932, yyrl3932 int + var yyrt3932 bool + if yyl3932 > cap(yyv3932) { - yyrg3903 := len(yyv3903) > 0 - yyv23903 := yyv3903 - yyrl3903, yyrt3903 = z.DecInferLen(yyl3903, z.DecBasicHandle().MaxInitLen, 336) - if yyrt3903 { - if yyrl3903 <= cap(yyv3903) { - yyv3903 = yyv3903[:yyrl3903] + yyrg3932 := len(yyv3932) > 0 + yyv23932 := yyv3932 + yyrl3932, yyrt3932 = z.DecInferLen(yyl3932, z.DecBasicHandle().MaxInitLen, 336) + if yyrt3932 { + if yyrl3932 <= cap(yyv3932) { + yyv3932 = yyv3932[:yyrl3932] } else { - yyv3903 = make([]Service, yyrl3903) + yyv3932 = make([]Service, yyrl3932) } } else { - yyv3903 = make([]Service, yyrl3903) + yyv3932 = make([]Service, yyrl3932) } - yyc3903 = true - yyrr3903 = len(yyv3903) - if yyrg3903 { - copy(yyv3903, yyv23903) + yyc3932 = true + yyrr3932 = len(yyv3932) + if yyrg3932 { + copy(yyv3932, yyv23932) } - } else if yyl3903 != len(yyv3903) { - yyv3903 = yyv3903[:yyl3903] - yyc3903 = true + } else if yyl3932 != len(yyv3932) { + yyv3932 = yyv3932[:yyl3932] + yyc3932 = true } - yyj3903 := 0 - for ; yyj3903 < yyrr3903; yyj3903++ { - yyh3903.ElemContainerState(yyj3903) + yyj3932 := 0 + for ; yyj3932 < yyrr3932; yyj3932++ { + yyh3932.ElemContainerState(yyj3932) if r.TryDecodeAsNil() { - yyv3903[yyj3903] = Service{} + yyv3932[yyj3932] = Service{} } else { - yyv3904 := &yyv3903[yyj3903] - yyv3904.CodecDecodeSelf(d) + yyv3933 := &yyv3932[yyj3932] + yyv3933.CodecDecodeSelf(d) } } - if yyrt3903 { - for ; yyj3903 < yyl3903; yyj3903++ { - yyv3903 = append(yyv3903, Service{}) - yyh3903.ElemContainerState(yyj3903) + if yyrt3932 { + for ; yyj3932 < yyl3932; yyj3932++ { + yyv3932 = append(yyv3932, Service{}) + yyh3932.ElemContainerState(yyj3932) if r.TryDecodeAsNil() { - yyv3903[yyj3903] = Service{} + yyv3932[yyj3932] = Service{} } else { - yyv3905 := &yyv3903[yyj3903] - yyv3905.CodecDecodeSelf(d) + yyv3934 := &yyv3932[yyj3932] + yyv3934.CodecDecodeSelf(d) } } } } else { - yyj3903 := 0 - for ; !r.CheckBreak(); yyj3903++ { + yyj3932 := 0 + for ; !r.CheckBreak(); yyj3932++ { - if yyj3903 >= len(yyv3903) { - yyv3903 = append(yyv3903, Service{}) // var yyz3903 Service - yyc3903 = true + if yyj3932 >= len(yyv3932) { + yyv3932 = append(yyv3932, Service{}) // var yyz3932 Service + yyc3932 = true } - yyh3903.ElemContainerState(yyj3903) - if yyj3903 < len(yyv3903) { + yyh3932.ElemContainerState(yyj3932) + if yyj3932 < len(yyv3932) { if r.TryDecodeAsNil() { - yyv3903[yyj3903] = Service{} + yyv3932[yyj3932] = Service{} } else { - yyv3906 := &yyv3903[yyj3903] - yyv3906.CodecDecodeSelf(d) + yyv3935 := &yyv3932[yyj3932] + yyv3935.CodecDecodeSelf(d) } } else { @@ -49286,17 +49673,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj3903 < len(yyv3903) { - yyv3903 = yyv3903[:yyj3903] - yyc3903 = true - } else if yyj3903 == 0 && yyv3903 == nil { - yyv3903 = []Service{} - yyc3903 = true + if yyj3932 < len(yyv3932) { + yyv3932 = yyv3932[:yyj3932] + yyc3932 = true + } else if yyj3932 == 0 && yyv3932 == nil { + yyv3932 = []Service{} + yyc3932 = true } } - yyh3903.End() - if yyc3903 { - *v = yyv3903 + yyh3932.End() + if yyc3932 { + *v = yyv3932 } } @@ -49305,10 +49692,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3907 := range v { + for _, yyv3936 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3908 := &yyv3907 - yy3908.CodecEncodeSelf(e) + yy3937 := &yyv3936 + yy3937.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49318,83 +49705,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3909 := *v - yyh3909, yyl3909 := z.DecSliceHelperStart() - var yyc3909 bool - if yyl3909 == 0 { - if yyv3909 == nil { - yyv3909 = []LoadBalancerIngress{} - yyc3909 = true - } else if len(yyv3909) != 0 { - yyv3909 = yyv3909[:0] - yyc3909 = true + yyv3938 := *v + yyh3938, yyl3938 := z.DecSliceHelperStart() + var yyc3938 bool + if yyl3938 == 0 { + if yyv3938 == nil { + yyv3938 = []LoadBalancerIngress{} + yyc3938 = true + } else if len(yyv3938) != 0 { + yyv3938 = yyv3938[:0] + yyc3938 = true } - } else if yyl3909 > 0 { - var yyrr3909, yyrl3909 int - var yyrt3909 bool - if yyl3909 > cap(yyv3909) { + } else if yyl3938 > 0 { + var yyrr3938, yyrl3938 int + var yyrt3938 bool + if yyl3938 > cap(yyv3938) { - yyrg3909 := len(yyv3909) > 0 - yyv23909 := yyv3909 - yyrl3909, yyrt3909 = z.DecInferLen(yyl3909, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3909 { - if yyrl3909 <= cap(yyv3909) { - yyv3909 = yyv3909[:yyrl3909] + yyrg3938 := len(yyv3938) > 0 + yyv23938 := yyv3938 + yyrl3938, yyrt3938 = z.DecInferLen(yyl3938, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3938 { + if yyrl3938 <= cap(yyv3938) { + yyv3938 = yyv3938[:yyrl3938] } else { - yyv3909 = make([]LoadBalancerIngress, yyrl3909) + yyv3938 = make([]LoadBalancerIngress, yyrl3938) } } else { - yyv3909 = make([]LoadBalancerIngress, yyrl3909) + yyv3938 = make([]LoadBalancerIngress, yyrl3938) } - yyc3909 = true - yyrr3909 = len(yyv3909) - if yyrg3909 { - copy(yyv3909, yyv23909) + yyc3938 = true + yyrr3938 = len(yyv3938) + if yyrg3938 { + copy(yyv3938, yyv23938) } - } else if yyl3909 != len(yyv3909) { - yyv3909 = yyv3909[:yyl3909] - yyc3909 = true + } else if yyl3938 != len(yyv3938) { + yyv3938 = yyv3938[:yyl3938] + yyc3938 = true } - yyj3909 := 0 - for ; yyj3909 < yyrr3909; yyj3909++ { - yyh3909.ElemContainerState(yyj3909) + yyj3938 := 0 + for ; yyj3938 < yyrr3938; yyj3938++ { + yyh3938.ElemContainerState(yyj3938) if r.TryDecodeAsNil() { - yyv3909[yyj3909] = LoadBalancerIngress{} + yyv3938[yyj3938] = LoadBalancerIngress{} } else { - yyv3910 := &yyv3909[yyj3909] - yyv3910.CodecDecodeSelf(d) + yyv3939 := &yyv3938[yyj3938] + yyv3939.CodecDecodeSelf(d) } } - if yyrt3909 { - for ; yyj3909 < yyl3909; yyj3909++ { - yyv3909 = append(yyv3909, LoadBalancerIngress{}) - yyh3909.ElemContainerState(yyj3909) + if yyrt3938 { + for ; yyj3938 < yyl3938; yyj3938++ { + yyv3938 = append(yyv3938, LoadBalancerIngress{}) + yyh3938.ElemContainerState(yyj3938) if r.TryDecodeAsNil() { - yyv3909[yyj3909] = LoadBalancerIngress{} + yyv3938[yyj3938] = LoadBalancerIngress{} } else { - yyv3911 := &yyv3909[yyj3909] - yyv3911.CodecDecodeSelf(d) + yyv3940 := &yyv3938[yyj3938] + yyv3940.CodecDecodeSelf(d) } } } } else { - yyj3909 := 0 - for ; !r.CheckBreak(); yyj3909++ { + yyj3938 := 0 + for ; !r.CheckBreak(); yyj3938++ { - if yyj3909 >= len(yyv3909) { - yyv3909 = append(yyv3909, LoadBalancerIngress{}) // var yyz3909 LoadBalancerIngress - yyc3909 = true + if yyj3938 >= len(yyv3938) { + yyv3938 = append(yyv3938, LoadBalancerIngress{}) // var yyz3938 LoadBalancerIngress + yyc3938 = true } - yyh3909.ElemContainerState(yyj3909) - if yyj3909 < len(yyv3909) { + yyh3938.ElemContainerState(yyj3938) + if yyj3938 < len(yyv3938) { if r.TryDecodeAsNil() { - yyv3909[yyj3909] = LoadBalancerIngress{} + yyv3938[yyj3938] = LoadBalancerIngress{} } else { - yyv3912 := &yyv3909[yyj3909] - yyv3912.CodecDecodeSelf(d) + yyv3941 := &yyv3938[yyj3938] + yyv3941.CodecDecodeSelf(d) } } else { @@ -49402,17 +49789,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj3909 < len(yyv3909) { - yyv3909 = yyv3909[:yyj3909] - yyc3909 = true - } else if yyj3909 == 0 && yyv3909 == nil { - yyv3909 = []LoadBalancerIngress{} - yyc3909 = true + if yyj3938 < len(yyv3938) { + yyv3938 = yyv3938[:yyj3938] + yyc3938 = true + } else if yyj3938 == 0 && yyv3938 == nil { + yyv3938 = []LoadBalancerIngress{} + yyc3938 = true } } - yyh3909.End() - if yyc3909 { - *v = yyv3909 + yyh3938.End() + if yyc3938 { + *v = yyv3938 } } @@ -49421,10 +49808,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3913 := range v { + for _, yyv3942 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3914 := &yyv3913 - yy3914.CodecEncodeSelf(e) + yy3943 := &yyv3942 + yy3943.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49434,83 +49821,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3915 := *v - yyh3915, yyl3915 := z.DecSliceHelperStart() - var yyc3915 bool - if yyl3915 == 0 { - if yyv3915 == nil { - yyv3915 = []ServicePort{} - yyc3915 = true - } else if len(yyv3915) != 0 { - yyv3915 = yyv3915[:0] - yyc3915 = true + yyv3944 := *v + yyh3944, yyl3944 := z.DecSliceHelperStart() + var yyc3944 bool + if yyl3944 == 0 { + if yyv3944 == nil { + yyv3944 = []ServicePort{} + yyc3944 = true + } else if len(yyv3944) != 0 { + yyv3944 = yyv3944[:0] + yyc3944 = true } - } else if yyl3915 > 0 { - var yyrr3915, yyrl3915 int - var yyrt3915 bool - if yyl3915 > cap(yyv3915) { + } else if yyl3944 > 0 { + var yyrr3944, yyrl3944 int + var yyrt3944 bool + if yyl3944 > cap(yyv3944) { - yyrg3915 := len(yyv3915) > 0 - yyv23915 := yyv3915 - yyrl3915, yyrt3915 = z.DecInferLen(yyl3915, z.DecBasicHandle().MaxInitLen, 80) - if yyrt3915 { - if yyrl3915 <= cap(yyv3915) { - yyv3915 = yyv3915[:yyrl3915] + yyrg3944 := len(yyv3944) > 0 + yyv23944 := yyv3944 + yyrl3944, yyrt3944 = z.DecInferLen(yyl3944, z.DecBasicHandle().MaxInitLen, 80) + if yyrt3944 { + if yyrl3944 <= cap(yyv3944) { + yyv3944 = yyv3944[:yyrl3944] } else { - yyv3915 = make([]ServicePort, yyrl3915) + yyv3944 = make([]ServicePort, yyrl3944) } } else { - yyv3915 = make([]ServicePort, yyrl3915) + yyv3944 = make([]ServicePort, yyrl3944) } - yyc3915 = true - yyrr3915 = len(yyv3915) - if yyrg3915 { - copy(yyv3915, yyv23915) + yyc3944 = true + yyrr3944 = len(yyv3944) + if yyrg3944 { + copy(yyv3944, yyv23944) } - } else if yyl3915 != len(yyv3915) { - yyv3915 = yyv3915[:yyl3915] - yyc3915 = true + } else if yyl3944 != len(yyv3944) { + yyv3944 = yyv3944[:yyl3944] + yyc3944 = true } - yyj3915 := 0 - for ; yyj3915 < yyrr3915; yyj3915++ { - yyh3915.ElemContainerState(yyj3915) + yyj3944 := 0 + for ; yyj3944 < yyrr3944; yyj3944++ { + yyh3944.ElemContainerState(yyj3944) if r.TryDecodeAsNil() { - yyv3915[yyj3915] = ServicePort{} + yyv3944[yyj3944] = ServicePort{} } else { - yyv3916 := &yyv3915[yyj3915] - yyv3916.CodecDecodeSelf(d) + yyv3945 := &yyv3944[yyj3944] + yyv3945.CodecDecodeSelf(d) } } - if yyrt3915 { - for ; yyj3915 < yyl3915; yyj3915++ { - yyv3915 = append(yyv3915, ServicePort{}) - yyh3915.ElemContainerState(yyj3915) + if yyrt3944 { + for ; yyj3944 < yyl3944; yyj3944++ { + yyv3944 = append(yyv3944, ServicePort{}) + yyh3944.ElemContainerState(yyj3944) if r.TryDecodeAsNil() { - yyv3915[yyj3915] = ServicePort{} + yyv3944[yyj3944] = ServicePort{} } else { - yyv3917 := &yyv3915[yyj3915] - yyv3917.CodecDecodeSelf(d) + yyv3946 := &yyv3944[yyj3944] + yyv3946.CodecDecodeSelf(d) } } } } else { - yyj3915 := 0 - for ; !r.CheckBreak(); yyj3915++ { + yyj3944 := 0 + for ; !r.CheckBreak(); yyj3944++ { - if yyj3915 >= len(yyv3915) { - yyv3915 = append(yyv3915, ServicePort{}) // var yyz3915 ServicePort - yyc3915 = true + if yyj3944 >= len(yyv3944) { + yyv3944 = append(yyv3944, ServicePort{}) // var yyz3944 ServicePort + yyc3944 = true } - yyh3915.ElemContainerState(yyj3915) - if yyj3915 < len(yyv3915) { + yyh3944.ElemContainerState(yyj3944) + if yyj3944 < len(yyv3944) { if r.TryDecodeAsNil() { - yyv3915[yyj3915] = ServicePort{} + yyv3944[yyj3944] = ServicePort{} } else { - yyv3918 := &yyv3915[yyj3915] - yyv3918.CodecDecodeSelf(d) + yyv3947 := &yyv3944[yyj3944] + yyv3947.CodecDecodeSelf(d) } } else { @@ -49518,17 +49905,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj3915 < len(yyv3915) { - yyv3915 = yyv3915[:yyj3915] - yyc3915 = true - } else if yyj3915 == 0 && yyv3915 == nil { - yyv3915 = []ServicePort{} - yyc3915 = true + if yyj3944 < len(yyv3944) { + yyv3944 = yyv3944[:yyj3944] + yyc3944 = true + } else if yyj3944 == 0 && yyv3944 == nil { + yyv3944 = []ServicePort{} + yyc3944 = true } } - yyh3915.End() - if yyc3915 { - *v = yyv3915 + yyh3944.End() + if yyc3944 { + *v = yyv3944 } } @@ -49537,10 +49924,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3919 := range v { + for _, yyv3948 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3920 := &yyv3919 - yy3920.CodecEncodeSelf(e) + yy3949 := &yyv3948 + yy3949.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49550,83 +49937,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3921 := *v - yyh3921, yyl3921 := z.DecSliceHelperStart() - var yyc3921 bool - if yyl3921 == 0 { - if yyv3921 == nil { - yyv3921 = []ObjectReference{} - yyc3921 = true - } else if len(yyv3921) != 0 { - yyv3921 = yyv3921[:0] - yyc3921 = true + yyv3950 := *v + yyh3950, yyl3950 := z.DecSliceHelperStart() + var yyc3950 bool + if yyl3950 == 0 { + if yyv3950 == nil { + yyv3950 = []ObjectReference{} + yyc3950 = true + } else if len(yyv3950) != 0 { + yyv3950 = yyv3950[:0] + yyc3950 = true } - } else if yyl3921 > 0 { - var yyrr3921, yyrl3921 int - var yyrt3921 bool - if yyl3921 > cap(yyv3921) { + } else if yyl3950 > 0 { + var yyrr3950, yyrl3950 int + var yyrt3950 bool + if yyl3950 > cap(yyv3950) { - yyrg3921 := len(yyv3921) > 0 - yyv23921 := yyv3921 - yyrl3921, yyrt3921 = z.DecInferLen(yyl3921, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3921 { - if yyrl3921 <= cap(yyv3921) { - yyv3921 = yyv3921[:yyrl3921] + yyrg3950 := len(yyv3950) > 0 + yyv23950 := yyv3950 + yyrl3950, yyrt3950 = z.DecInferLen(yyl3950, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3950 { + if yyrl3950 <= cap(yyv3950) { + yyv3950 = yyv3950[:yyrl3950] } else { - yyv3921 = make([]ObjectReference, yyrl3921) + yyv3950 = make([]ObjectReference, yyrl3950) } } else { - yyv3921 = make([]ObjectReference, yyrl3921) + yyv3950 = make([]ObjectReference, yyrl3950) } - yyc3921 = true - yyrr3921 = len(yyv3921) - if yyrg3921 { - copy(yyv3921, yyv23921) + yyc3950 = true + yyrr3950 = len(yyv3950) + if yyrg3950 { + copy(yyv3950, yyv23950) } - } else if yyl3921 != len(yyv3921) { - yyv3921 = yyv3921[:yyl3921] - yyc3921 = true + } else if yyl3950 != len(yyv3950) { + yyv3950 = yyv3950[:yyl3950] + yyc3950 = true } - yyj3921 := 0 - for ; yyj3921 < yyrr3921; yyj3921++ { - yyh3921.ElemContainerState(yyj3921) + yyj3950 := 0 + for ; yyj3950 < yyrr3950; yyj3950++ { + yyh3950.ElemContainerState(yyj3950) if r.TryDecodeAsNil() { - yyv3921[yyj3921] = ObjectReference{} + yyv3950[yyj3950] = ObjectReference{} } else { - yyv3922 := &yyv3921[yyj3921] - yyv3922.CodecDecodeSelf(d) + yyv3951 := &yyv3950[yyj3950] + yyv3951.CodecDecodeSelf(d) } } - if yyrt3921 { - for ; yyj3921 < yyl3921; yyj3921++ { - yyv3921 = append(yyv3921, ObjectReference{}) - yyh3921.ElemContainerState(yyj3921) + if yyrt3950 { + for ; yyj3950 < yyl3950; yyj3950++ { + yyv3950 = append(yyv3950, ObjectReference{}) + yyh3950.ElemContainerState(yyj3950) if r.TryDecodeAsNil() { - yyv3921[yyj3921] = ObjectReference{} + yyv3950[yyj3950] = ObjectReference{} } else { - yyv3923 := &yyv3921[yyj3921] - yyv3923.CodecDecodeSelf(d) + yyv3952 := &yyv3950[yyj3950] + yyv3952.CodecDecodeSelf(d) } } } } else { - yyj3921 := 0 - for ; !r.CheckBreak(); yyj3921++ { + yyj3950 := 0 + for ; !r.CheckBreak(); yyj3950++ { - if yyj3921 >= len(yyv3921) { - yyv3921 = append(yyv3921, ObjectReference{}) // var yyz3921 ObjectReference - yyc3921 = true + if yyj3950 >= len(yyv3950) { + yyv3950 = append(yyv3950, ObjectReference{}) // var yyz3950 ObjectReference + yyc3950 = true } - yyh3921.ElemContainerState(yyj3921) - if yyj3921 < len(yyv3921) { + yyh3950.ElemContainerState(yyj3950) + if yyj3950 < len(yyv3950) { if r.TryDecodeAsNil() { - yyv3921[yyj3921] = ObjectReference{} + yyv3950[yyj3950] = ObjectReference{} } else { - yyv3924 := &yyv3921[yyj3921] - yyv3924.CodecDecodeSelf(d) + yyv3953 := &yyv3950[yyj3950] + yyv3953.CodecDecodeSelf(d) } } else { @@ -49634,17 +50021,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj3921 < len(yyv3921) { - yyv3921 = yyv3921[:yyj3921] - yyc3921 = true - } else if yyj3921 == 0 && yyv3921 == nil { - yyv3921 = []ObjectReference{} - yyc3921 = true + if yyj3950 < len(yyv3950) { + yyv3950 = yyv3950[:yyj3950] + yyc3950 = true + } else if yyj3950 == 0 && yyv3950 == nil { + yyv3950 = []ObjectReference{} + yyc3950 = true } } - yyh3921.End() - if yyc3921 { - *v = yyv3921 + yyh3950.End() + if yyc3950 { + *v = yyv3950 } } @@ -49653,10 +50040,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3925 := range v { + for _, yyv3954 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3926 := &yyv3925 - yy3926.CodecEncodeSelf(e) + yy3955 := &yyv3954 + yy3955.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49666,83 +50053,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3927 := *v - yyh3927, yyl3927 := z.DecSliceHelperStart() - var yyc3927 bool - if yyl3927 == 0 { - if yyv3927 == nil { - yyv3927 = []ServiceAccount{} - yyc3927 = true - } else if len(yyv3927) != 0 { - yyv3927 = yyv3927[:0] - yyc3927 = true + yyv3956 := *v + yyh3956, yyl3956 := z.DecSliceHelperStart() + var yyc3956 bool + if yyl3956 == 0 { + if yyv3956 == nil { + yyv3956 = []ServiceAccount{} + yyc3956 = true + } else if len(yyv3956) != 0 { + yyv3956 = yyv3956[:0] + yyc3956 = true } - } else if yyl3927 > 0 { - var yyrr3927, yyrl3927 int - var yyrt3927 bool - if yyl3927 > cap(yyv3927) { + } else if yyl3956 > 0 { + var yyrr3956, yyrl3956 int + var yyrt3956 bool + if yyl3956 > cap(yyv3956) { - yyrg3927 := len(yyv3927) > 0 - yyv23927 := yyv3927 - yyrl3927, yyrt3927 = z.DecInferLen(yyl3927, z.DecBasicHandle().MaxInitLen, 240) - if yyrt3927 { - if yyrl3927 <= cap(yyv3927) { - yyv3927 = yyv3927[:yyrl3927] + yyrg3956 := len(yyv3956) > 0 + yyv23956 := yyv3956 + yyrl3956, yyrt3956 = z.DecInferLen(yyl3956, z.DecBasicHandle().MaxInitLen, 240) + if yyrt3956 { + if yyrl3956 <= cap(yyv3956) { + yyv3956 = yyv3956[:yyrl3956] } else { - yyv3927 = make([]ServiceAccount, yyrl3927) + yyv3956 = make([]ServiceAccount, yyrl3956) } } else { - yyv3927 = make([]ServiceAccount, yyrl3927) + yyv3956 = make([]ServiceAccount, yyrl3956) } - yyc3927 = true - yyrr3927 = len(yyv3927) - if yyrg3927 { - copy(yyv3927, yyv23927) + yyc3956 = true + yyrr3956 = len(yyv3956) + if yyrg3956 { + copy(yyv3956, yyv23956) } - } else if yyl3927 != len(yyv3927) { - yyv3927 = yyv3927[:yyl3927] - yyc3927 = true + } else if yyl3956 != len(yyv3956) { + yyv3956 = yyv3956[:yyl3956] + yyc3956 = true } - yyj3927 := 0 - for ; yyj3927 < yyrr3927; yyj3927++ { - yyh3927.ElemContainerState(yyj3927) + yyj3956 := 0 + for ; yyj3956 < yyrr3956; yyj3956++ { + yyh3956.ElemContainerState(yyj3956) if r.TryDecodeAsNil() { - yyv3927[yyj3927] = ServiceAccount{} + yyv3956[yyj3956] = ServiceAccount{} } else { - yyv3928 := &yyv3927[yyj3927] - yyv3928.CodecDecodeSelf(d) + yyv3957 := &yyv3956[yyj3956] + yyv3957.CodecDecodeSelf(d) } } - if yyrt3927 { - for ; yyj3927 < yyl3927; yyj3927++ { - yyv3927 = append(yyv3927, ServiceAccount{}) - yyh3927.ElemContainerState(yyj3927) + if yyrt3956 { + for ; yyj3956 < yyl3956; yyj3956++ { + yyv3956 = append(yyv3956, ServiceAccount{}) + yyh3956.ElemContainerState(yyj3956) if r.TryDecodeAsNil() { - yyv3927[yyj3927] = ServiceAccount{} + yyv3956[yyj3956] = ServiceAccount{} } else { - yyv3929 := &yyv3927[yyj3927] - yyv3929.CodecDecodeSelf(d) + yyv3958 := &yyv3956[yyj3956] + yyv3958.CodecDecodeSelf(d) } } } } else { - yyj3927 := 0 - for ; !r.CheckBreak(); yyj3927++ { + yyj3956 := 0 + for ; !r.CheckBreak(); yyj3956++ { - if yyj3927 >= len(yyv3927) { - yyv3927 = append(yyv3927, ServiceAccount{}) // var yyz3927 ServiceAccount - yyc3927 = true + if yyj3956 >= len(yyv3956) { + yyv3956 = append(yyv3956, ServiceAccount{}) // var yyz3956 ServiceAccount + yyc3956 = true } - yyh3927.ElemContainerState(yyj3927) - if yyj3927 < len(yyv3927) { + yyh3956.ElemContainerState(yyj3956) + if yyj3956 < len(yyv3956) { if r.TryDecodeAsNil() { - yyv3927[yyj3927] = ServiceAccount{} + yyv3956[yyj3956] = ServiceAccount{} } else { - yyv3930 := &yyv3927[yyj3927] - yyv3930.CodecDecodeSelf(d) + yyv3959 := &yyv3956[yyj3956] + yyv3959.CodecDecodeSelf(d) } } else { @@ -49750,17 +50137,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj3927 < len(yyv3927) { - yyv3927 = yyv3927[:yyj3927] - yyc3927 = true - } else if yyj3927 == 0 && yyv3927 == nil { - yyv3927 = []ServiceAccount{} - yyc3927 = true + if yyj3956 < len(yyv3956) { + yyv3956 = yyv3956[:yyj3956] + yyc3956 = true + } else if yyj3956 == 0 && yyv3956 == nil { + yyv3956 = []ServiceAccount{} + yyc3956 = true } } - yyh3927.End() - if yyc3927 { - *v = yyv3927 + yyh3956.End() + if yyc3956 { + *v = yyv3956 } } @@ -49769,10 +50156,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3931 := range v { + for _, yyv3960 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3932 := &yyv3931 - yy3932.CodecEncodeSelf(e) + yy3961 := &yyv3960 + yy3961.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49782,83 +50169,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3933 := *v - yyh3933, yyl3933 := z.DecSliceHelperStart() - var yyc3933 bool - if yyl3933 == 0 { - if yyv3933 == nil { - yyv3933 = []EndpointSubset{} - yyc3933 = true - } else if len(yyv3933) != 0 { - yyv3933 = yyv3933[:0] - yyc3933 = true + yyv3962 := *v + yyh3962, yyl3962 := z.DecSliceHelperStart() + var yyc3962 bool + if yyl3962 == 0 { + if yyv3962 == nil { + yyv3962 = []EndpointSubset{} + yyc3962 = true + } else if len(yyv3962) != 0 { + yyv3962 = yyv3962[:0] + yyc3962 = true } - } else if yyl3933 > 0 { - var yyrr3933, yyrl3933 int - var yyrt3933 bool - if yyl3933 > cap(yyv3933) { + } else if yyl3962 > 0 { + var yyrr3962, yyrl3962 int + var yyrt3962 bool + if yyl3962 > cap(yyv3962) { - yyrg3933 := len(yyv3933) > 0 - yyv23933 := yyv3933 - yyrl3933, yyrt3933 = z.DecInferLen(yyl3933, z.DecBasicHandle().MaxInitLen, 72) - if yyrt3933 { - if yyrl3933 <= cap(yyv3933) { - yyv3933 = yyv3933[:yyrl3933] + yyrg3962 := len(yyv3962) > 0 + yyv23962 := yyv3962 + yyrl3962, yyrt3962 = z.DecInferLen(yyl3962, z.DecBasicHandle().MaxInitLen, 72) + if yyrt3962 { + if yyrl3962 <= cap(yyv3962) { + yyv3962 = yyv3962[:yyrl3962] } else { - yyv3933 = make([]EndpointSubset, yyrl3933) + yyv3962 = make([]EndpointSubset, yyrl3962) } } else { - yyv3933 = make([]EndpointSubset, yyrl3933) + yyv3962 = make([]EndpointSubset, yyrl3962) } - yyc3933 = true - yyrr3933 = len(yyv3933) - if yyrg3933 { - copy(yyv3933, yyv23933) + yyc3962 = true + yyrr3962 = len(yyv3962) + if yyrg3962 { + copy(yyv3962, yyv23962) } - } else if yyl3933 != len(yyv3933) { - yyv3933 = yyv3933[:yyl3933] - yyc3933 = true + } else if yyl3962 != len(yyv3962) { + yyv3962 = yyv3962[:yyl3962] + yyc3962 = true } - yyj3933 := 0 - for ; yyj3933 < yyrr3933; yyj3933++ { - yyh3933.ElemContainerState(yyj3933) + yyj3962 := 0 + for ; yyj3962 < yyrr3962; yyj3962++ { + yyh3962.ElemContainerState(yyj3962) if r.TryDecodeAsNil() { - yyv3933[yyj3933] = EndpointSubset{} + yyv3962[yyj3962] = EndpointSubset{} } else { - yyv3934 := &yyv3933[yyj3933] - yyv3934.CodecDecodeSelf(d) + yyv3963 := &yyv3962[yyj3962] + yyv3963.CodecDecodeSelf(d) } } - if yyrt3933 { - for ; yyj3933 < yyl3933; yyj3933++ { - yyv3933 = append(yyv3933, EndpointSubset{}) - yyh3933.ElemContainerState(yyj3933) + if yyrt3962 { + for ; yyj3962 < yyl3962; yyj3962++ { + yyv3962 = append(yyv3962, EndpointSubset{}) + yyh3962.ElemContainerState(yyj3962) if r.TryDecodeAsNil() { - yyv3933[yyj3933] = EndpointSubset{} + yyv3962[yyj3962] = EndpointSubset{} } else { - yyv3935 := &yyv3933[yyj3933] - yyv3935.CodecDecodeSelf(d) + yyv3964 := &yyv3962[yyj3962] + yyv3964.CodecDecodeSelf(d) } } } } else { - yyj3933 := 0 - for ; !r.CheckBreak(); yyj3933++ { + yyj3962 := 0 + for ; !r.CheckBreak(); yyj3962++ { - if yyj3933 >= len(yyv3933) { - yyv3933 = append(yyv3933, EndpointSubset{}) // var yyz3933 EndpointSubset - yyc3933 = true + if yyj3962 >= len(yyv3962) { + yyv3962 = append(yyv3962, EndpointSubset{}) // var yyz3962 EndpointSubset + yyc3962 = true } - yyh3933.ElemContainerState(yyj3933) - if yyj3933 < len(yyv3933) { + yyh3962.ElemContainerState(yyj3962) + if yyj3962 < len(yyv3962) { if r.TryDecodeAsNil() { - yyv3933[yyj3933] = EndpointSubset{} + yyv3962[yyj3962] = EndpointSubset{} } else { - yyv3936 := &yyv3933[yyj3933] - yyv3936.CodecDecodeSelf(d) + yyv3965 := &yyv3962[yyj3962] + yyv3965.CodecDecodeSelf(d) } } else { @@ -49866,17 +50253,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj3933 < len(yyv3933) { - yyv3933 = yyv3933[:yyj3933] - yyc3933 = true - } else if yyj3933 == 0 && yyv3933 == nil { - yyv3933 = []EndpointSubset{} - yyc3933 = true + if yyj3962 < len(yyv3962) { + yyv3962 = yyv3962[:yyj3962] + yyc3962 = true + } else if yyj3962 == 0 && yyv3962 == nil { + yyv3962 = []EndpointSubset{} + yyc3962 = true } } - yyh3933.End() - if yyc3933 { - *v = yyv3933 + yyh3962.End() + if yyc3962 { + *v = yyv3962 } } @@ -49885,10 +50272,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3937 := range v { + for _, yyv3966 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3938 := &yyv3937 - yy3938.CodecEncodeSelf(e) + yy3967 := &yyv3966 + yy3967.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49898,83 +50285,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3939 := *v - yyh3939, yyl3939 := z.DecSliceHelperStart() - var yyc3939 bool - if yyl3939 == 0 { - if yyv3939 == nil { - yyv3939 = []EndpointAddress{} - yyc3939 = true - } else if len(yyv3939) != 0 { - yyv3939 = yyv3939[:0] - yyc3939 = true + yyv3968 := *v + yyh3968, yyl3968 := z.DecSliceHelperStart() + var yyc3968 bool + if yyl3968 == 0 { + if yyv3968 == nil { + yyv3968 = []EndpointAddress{} + yyc3968 = true + } else if len(yyv3968) != 0 { + yyv3968 = yyv3968[:0] + yyc3968 = true } - } else if yyl3939 > 0 { - var yyrr3939, yyrl3939 int - var yyrt3939 bool - if yyl3939 > cap(yyv3939) { + } else if yyl3968 > 0 { + var yyrr3968, yyrl3968 int + var yyrt3968 bool + if yyl3968 > cap(yyv3968) { - yyrg3939 := len(yyv3939) > 0 - yyv23939 := yyv3939 - yyrl3939, yyrt3939 = z.DecInferLen(yyl3939, z.DecBasicHandle().MaxInitLen, 24) - if yyrt3939 { - if yyrl3939 <= cap(yyv3939) { - yyv3939 = yyv3939[:yyrl3939] + yyrg3968 := len(yyv3968) > 0 + yyv23968 := yyv3968 + yyrl3968, yyrt3968 = z.DecInferLen(yyl3968, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3968 { + if yyrl3968 <= cap(yyv3968) { + yyv3968 = yyv3968[:yyrl3968] } else { - yyv3939 = make([]EndpointAddress, yyrl3939) + yyv3968 = make([]EndpointAddress, yyrl3968) } } else { - yyv3939 = make([]EndpointAddress, yyrl3939) + yyv3968 = make([]EndpointAddress, yyrl3968) } - yyc3939 = true - yyrr3939 = len(yyv3939) - if yyrg3939 { - copy(yyv3939, yyv23939) + yyc3968 = true + yyrr3968 = len(yyv3968) + if yyrg3968 { + copy(yyv3968, yyv23968) } - } else if yyl3939 != len(yyv3939) { - yyv3939 = yyv3939[:yyl3939] - yyc3939 = true + } else if yyl3968 != len(yyv3968) { + yyv3968 = yyv3968[:yyl3968] + yyc3968 = true } - yyj3939 := 0 - for ; yyj3939 < yyrr3939; yyj3939++ { - yyh3939.ElemContainerState(yyj3939) + yyj3968 := 0 + for ; yyj3968 < yyrr3968; yyj3968++ { + yyh3968.ElemContainerState(yyj3968) if r.TryDecodeAsNil() { - yyv3939[yyj3939] = EndpointAddress{} + yyv3968[yyj3968] = EndpointAddress{} } else { - yyv3940 := &yyv3939[yyj3939] - yyv3940.CodecDecodeSelf(d) + yyv3969 := &yyv3968[yyj3968] + yyv3969.CodecDecodeSelf(d) } } - if yyrt3939 { - for ; yyj3939 < yyl3939; yyj3939++ { - yyv3939 = append(yyv3939, EndpointAddress{}) - yyh3939.ElemContainerState(yyj3939) + if yyrt3968 { + for ; yyj3968 < yyl3968; yyj3968++ { + yyv3968 = append(yyv3968, EndpointAddress{}) + yyh3968.ElemContainerState(yyj3968) if r.TryDecodeAsNil() { - yyv3939[yyj3939] = EndpointAddress{} + yyv3968[yyj3968] = EndpointAddress{} } else { - yyv3941 := &yyv3939[yyj3939] - yyv3941.CodecDecodeSelf(d) + yyv3970 := &yyv3968[yyj3968] + yyv3970.CodecDecodeSelf(d) } } } } else { - yyj3939 := 0 - for ; !r.CheckBreak(); yyj3939++ { + yyj3968 := 0 + for ; !r.CheckBreak(); yyj3968++ { - if yyj3939 >= len(yyv3939) { - yyv3939 = append(yyv3939, EndpointAddress{}) // var yyz3939 EndpointAddress - yyc3939 = true + if yyj3968 >= len(yyv3968) { + yyv3968 = append(yyv3968, EndpointAddress{}) // var yyz3968 EndpointAddress + yyc3968 = true } - yyh3939.ElemContainerState(yyj3939) - if yyj3939 < len(yyv3939) { + yyh3968.ElemContainerState(yyj3968) + if yyj3968 < len(yyv3968) { if r.TryDecodeAsNil() { - yyv3939[yyj3939] = EndpointAddress{} + yyv3968[yyj3968] = EndpointAddress{} } else { - yyv3942 := &yyv3939[yyj3939] - yyv3942.CodecDecodeSelf(d) + yyv3971 := &yyv3968[yyj3968] + yyv3971.CodecDecodeSelf(d) } } else { @@ -49982,17 +50369,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj3939 < len(yyv3939) { - yyv3939 = yyv3939[:yyj3939] - yyc3939 = true - } else if yyj3939 == 0 && yyv3939 == nil { - yyv3939 = []EndpointAddress{} - yyc3939 = true + if yyj3968 < len(yyv3968) { + yyv3968 = yyv3968[:yyj3968] + yyc3968 = true + } else if yyj3968 == 0 && yyv3968 == nil { + yyv3968 = []EndpointAddress{} + yyc3968 = true } } - yyh3939.End() - if yyc3939 { - *v = yyv3939 + yyh3968.End() + if yyc3968 { + *v = yyv3968 } } @@ -50001,10 +50388,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3943 := range v { + for _, yyv3972 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3944 := &yyv3943 - yy3944.CodecEncodeSelf(e) + yy3973 := &yyv3972 + yy3973.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50014,83 +50401,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3945 := *v - yyh3945, yyl3945 := z.DecSliceHelperStart() - var yyc3945 bool - if yyl3945 == 0 { - if yyv3945 == nil { - yyv3945 = []EndpointPort{} - yyc3945 = true - } else if len(yyv3945) != 0 { - yyv3945 = yyv3945[:0] - yyc3945 = true + yyv3974 := *v + yyh3974, yyl3974 := z.DecSliceHelperStart() + var yyc3974 bool + if yyl3974 == 0 { + if yyv3974 == nil { + yyv3974 = []EndpointPort{} + yyc3974 = true + } else if len(yyv3974) != 0 { + yyv3974 = yyv3974[:0] + yyc3974 = true } - } else if yyl3945 > 0 { - var yyrr3945, yyrl3945 int - var yyrt3945 bool - if yyl3945 > cap(yyv3945) { + } else if yyl3974 > 0 { + var yyrr3974, yyrl3974 int + var yyrt3974 bool + if yyl3974 > cap(yyv3974) { - yyrg3945 := len(yyv3945) > 0 - yyv23945 := yyv3945 - yyrl3945, yyrt3945 = z.DecInferLen(yyl3945, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3945 { - if yyrl3945 <= cap(yyv3945) { - yyv3945 = yyv3945[:yyrl3945] + yyrg3974 := len(yyv3974) > 0 + yyv23974 := yyv3974 + yyrl3974, yyrt3974 = z.DecInferLen(yyl3974, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3974 { + if yyrl3974 <= cap(yyv3974) { + yyv3974 = yyv3974[:yyrl3974] } else { - yyv3945 = make([]EndpointPort, yyrl3945) + yyv3974 = make([]EndpointPort, yyrl3974) } } else { - yyv3945 = make([]EndpointPort, yyrl3945) + yyv3974 = make([]EndpointPort, yyrl3974) } - yyc3945 = true - yyrr3945 = len(yyv3945) - if yyrg3945 { - copy(yyv3945, yyv23945) + yyc3974 = true + yyrr3974 = len(yyv3974) + if yyrg3974 { + copy(yyv3974, yyv23974) } - } else if yyl3945 != len(yyv3945) { - yyv3945 = yyv3945[:yyl3945] - yyc3945 = true + } else if yyl3974 != len(yyv3974) { + yyv3974 = yyv3974[:yyl3974] + yyc3974 = true } - yyj3945 := 0 - for ; yyj3945 < yyrr3945; yyj3945++ { - yyh3945.ElemContainerState(yyj3945) + yyj3974 := 0 + for ; yyj3974 < yyrr3974; yyj3974++ { + yyh3974.ElemContainerState(yyj3974) if r.TryDecodeAsNil() { - yyv3945[yyj3945] = EndpointPort{} + yyv3974[yyj3974] = EndpointPort{} } else { - yyv3946 := &yyv3945[yyj3945] - yyv3946.CodecDecodeSelf(d) + yyv3975 := &yyv3974[yyj3974] + yyv3975.CodecDecodeSelf(d) } } - if yyrt3945 { - for ; yyj3945 < yyl3945; yyj3945++ { - yyv3945 = append(yyv3945, EndpointPort{}) - yyh3945.ElemContainerState(yyj3945) + if yyrt3974 { + for ; yyj3974 < yyl3974; yyj3974++ { + yyv3974 = append(yyv3974, EndpointPort{}) + yyh3974.ElemContainerState(yyj3974) if r.TryDecodeAsNil() { - yyv3945[yyj3945] = EndpointPort{} + yyv3974[yyj3974] = EndpointPort{} } else { - yyv3947 := &yyv3945[yyj3945] - yyv3947.CodecDecodeSelf(d) + yyv3976 := &yyv3974[yyj3974] + yyv3976.CodecDecodeSelf(d) } } } } else { - yyj3945 := 0 - for ; !r.CheckBreak(); yyj3945++ { + yyj3974 := 0 + for ; !r.CheckBreak(); yyj3974++ { - if yyj3945 >= len(yyv3945) { - yyv3945 = append(yyv3945, EndpointPort{}) // var yyz3945 EndpointPort - yyc3945 = true + if yyj3974 >= len(yyv3974) { + yyv3974 = append(yyv3974, EndpointPort{}) // var yyz3974 EndpointPort + yyc3974 = true } - yyh3945.ElemContainerState(yyj3945) - if yyj3945 < len(yyv3945) { + yyh3974.ElemContainerState(yyj3974) + if yyj3974 < len(yyv3974) { if r.TryDecodeAsNil() { - yyv3945[yyj3945] = EndpointPort{} + yyv3974[yyj3974] = EndpointPort{} } else { - yyv3948 := &yyv3945[yyj3945] - yyv3948.CodecDecodeSelf(d) + yyv3977 := &yyv3974[yyj3974] + yyv3977.CodecDecodeSelf(d) } } else { @@ -50098,17 +50485,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj3945 < len(yyv3945) { - yyv3945 = yyv3945[:yyj3945] - yyc3945 = true - } else if yyj3945 == 0 && yyv3945 == nil { - yyv3945 = []EndpointPort{} - yyc3945 = true + if yyj3974 < len(yyv3974) { + yyv3974 = yyv3974[:yyj3974] + yyc3974 = true + } else if yyj3974 == 0 && yyv3974 == nil { + yyv3974 = []EndpointPort{} + yyc3974 = true } } - yyh3945.End() - if yyc3945 { - *v = yyv3945 + yyh3974.End() + if yyc3974 { + *v = yyv3974 } } @@ -50117,10 +50504,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3949 := range v { + for _, yyv3978 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3950 := &yyv3949 - yy3950.CodecEncodeSelf(e) + yy3979 := &yyv3978 + yy3979.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50130,83 +50517,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3951 := *v - yyh3951, yyl3951 := z.DecSliceHelperStart() - var yyc3951 bool - if yyl3951 == 0 { - if yyv3951 == nil { - yyv3951 = []Endpoints{} - yyc3951 = true - } else if len(yyv3951) != 0 { - yyv3951 = yyv3951[:0] - yyc3951 = true + yyv3980 := *v + yyh3980, yyl3980 := z.DecSliceHelperStart() + var yyc3980 bool + if yyl3980 == 0 { + if yyv3980 == nil { + yyv3980 = []Endpoints{} + yyc3980 = true + } else if len(yyv3980) != 0 { + yyv3980 = yyv3980[:0] + yyc3980 = true } - } else if yyl3951 > 0 { - var yyrr3951, yyrl3951 int - var yyrt3951 bool - if yyl3951 > cap(yyv3951) { + } else if yyl3980 > 0 { + var yyrr3980, yyrl3980 int + var yyrt3980 bool + if yyl3980 > cap(yyv3980) { - yyrg3951 := len(yyv3951) > 0 - yyv23951 := yyv3951 - yyrl3951, yyrt3951 = z.DecInferLen(yyl3951, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3951 { - if yyrl3951 <= cap(yyv3951) { - yyv3951 = yyv3951[:yyrl3951] + yyrg3980 := len(yyv3980) > 0 + yyv23980 := yyv3980 + yyrl3980, yyrt3980 = z.DecInferLen(yyl3980, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3980 { + if yyrl3980 <= cap(yyv3980) { + yyv3980 = yyv3980[:yyrl3980] } else { - yyv3951 = make([]Endpoints, yyrl3951) + yyv3980 = make([]Endpoints, yyrl3980) } } else { - yyv3951 = make([]Endpoints, yyrl3951) + yyv3980 = make([]Endpoints, yyrl3980) } - yyc3951 = true - yyrr3951 = len(yyv3951) - if yyrg3951 { - copy(yyv3951, yyv23951) + yyc3980 = true + yyrr3980 = len(yyv3980) + if yyrg3980 { + copy(yyv3980, yyv23980) } - } else if yyl3951 != len(yyv3951) { - yyv3951 = yyv3951[:yyl3951] - yyc3951 = true + } else if yyl3980 != len(yyv3980) { + yyv3980 = yyv3980[:yyl3980] + yyc3980 = true } - yyj3951 := 0 - for ; yyj3951 < yyrr3951; yyj3951++ { - yyh3951.ElemContainerState(yyj3951) + yyj3980 := 0 + for ; yyj3980 < yyrr3980; yyj3980++ { + yyh3980.ElemContainerState(yyj3980) if r.TryDecodeAsNil() { - yyv3951[yyj3951] = Endpoints{} + yyv3980[yyj3980] = Endpoints{} } else { - yyv3952 := &yyv3951[yyj3951] - yyv3952.CodecDecodeSelf(d) + yyv3981 := &yyv3980[yyj3980] + yyv3981.CodecDecodeSelf(d) } } - if yyrt3951 { - for ; yyj3951 < yyl3951; yyj3951++ { - yyv3951 = append(yyv3951, Endpoints{}) - yyh3951.ElemContainerState(yyj3951) + if yyrt3980 { + for ; yyj3980 < yyl3980; yyj3980++ { + yyv3980 = append(yyv3980, Endpoints{}) + yyh3980.ElemContainerState(yyj3980) if r.TryDecodeAsNil() { - yyv3951[yyj3951] = Endpoints{} + yyv3980[yyj3980] = Endpoints{} } else { - yyv3953 := &yyv3951[yyj3951] - yyv3953.CodecDecodeSelf(d) + yyv3982 := &yyv3980[yyj3980] + yyv3982.CodecDecodeSelf(d) } } } } else { - yyj3951 := 0 - for ; !r.CheckBreak(); yyj3951++ { + yyj3980 := 0 + for ; !r.CheckBreak(); yyj3980++ { - if yyj3951 >= len(yyv3951) { - yyv3951 = append(yyv3951, Endpoints{}) // var yyz3951 Endpoints - yyc3951 = true + if yyj3980 >= len(yyv3980) { + yyv3980 = append(yyv3980, Endpoints{}) // var yyz3980 Endpoints + yyc3980 = true } - yyh3951.ElemContainerState(yyj3951) - if yyj3951 < len(yyv3951) { + yyh3980.ElemContainerState(yyj3980) + if yyj3980 < len(yyv3980) { if r.TryDecodeAsNil() { - yyv3951[yyj3951] = Endpoints{} + yyv3980[yyj3980] = Endpoints{} } else { - yyv3954 := &yyv3951[yyj3951] - yyv3954.CodecDecodeSelf(d) + yyv3983 := &yyv3980[yyj3980] + yyv3983.CodecDecodeSelf(d) } } else { @@ -50214,17 +50601,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj3951 < len(yyv3951) { - yyv3951 = yyv3951[:yyj3951] - yyc3951 = true - } else if yyj3951 == 0 && yyv3951 == nil { - yyv3951 = []Endpoints{} - yyc3951 = true + if yyj3980 < len(yyv3980) { + yyv3980 = yyv3980[:yyj3980] + yyc3980 = true + } else if yyj3980 == 0 && yyv3980 == nil { + yyv3980 = []Endpoints{} + yyc3980 = true } } - yyh3951.End() - if yyc3951 { - *v = yyv3951 + yyh3980.End() + if yyc3980 { + *v = yyv3980 } } @@ -50233,10 +50620,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3955 := range v { + for _, yyv3984 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3956 := &yyv3955 - yy3956.CodecEncodeSelf(e) + yy3985 := &yyv3984 + yy3985.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50246,83 +50633,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3957 := *v - yyh3957, yyl3957 := z.DecSliceHelperStart() - var yyc3957 bool - if yyl3957 == 0 { - if yyv3957 == nil { - yyv3957 = []NodeCondition{} - yyc3957 = true - } else if len(yyv3957) != 0 { - yyv3957 = yyv3957[:0] - yyc3957 = true + yyv3986 := *v + yyh3986, yyl3986 := z.DecSliceHelperStart() + var yyc3986 bool + if yyl3986 == 0 { + if yyv3986 == nil { + yyv3986 = []NodeCondition{} + yyc3986 = true + } else if len(yyv3986) != 0 { + yyv3986 = yyv3986[:0] + yyc3986 = true } - } else if yyl3957 > 0 { - var yyrr3957, yyrl3957 int - var yyrt3957 bool - if yyl3957 > cap(yyv3957) { + } else if yyl3986 > 0 { + var yyrr3986, yyrl3986 int + var yyrt3986 bool + if yyl3986 > cap(yyv3986) { - yyrg3957 := len(yyv3957) > 0 - yyv23957 := yyv3957 - yyrl3957, yyrt3957 = z.DecInferLen(yyl3957, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3957 { - if yyrl3957 <= cap(yyv3957) { - yyv3957 = yyv3957[:yyrl3957] + yyrg3986 := len(yyv3986) > 0 + yyv23986 := yyv3986 + yyrl3986, yyrt3986 = z.DecInferLen(yyl3986, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3986 { + if yyrl3986 <= cap(yyv3986) { + yyv3986 = yyv3986[:yyrl3986] } else { - yyv3957 = make([]NodeCondition, yyrl3957) + yyv3986 = make([]NodeCondition, yyrl3986) } } else { - yyv3957 = make([]NodeCondition, yyrl3957) + yyv3986 = make([]NodeCondition, yyrl3986) } - yyc3957 = true - yyrr3957 = len(yyv3957) - if yyrg3957 { - copy(yyv3957, yyv23957) + yyc3986 = true + yyrr3986 = len(yyv3986) + if yyrg3986 { + copy(yyv3986, yyv23986) } - } else if yyl3957 != len(yyv3957) { - yyv3957 = yyv3957[:yyl3957] - yyc3957 = true + } else if yyl3986 != len(yyv3986) { + yyv3986 = yyv3986[:yyl3986] + yyc3986 = true } - yyj3957 := 0 - for ; yyj3957 < yyrr3957; yyj3957++ { - yyh3957.ElemContainerState(yyj3957) + yyj3986 := 0 + for ; yyj3986 < yyrr3986; yyj3986++ { + yyh3986.ElemContainerState(yyj3986) if r.TryDecodeAsNil() { - yyv3957[yyj3957] = NodeCondition{} + yyv3986[yyj3986] = NodeCondition{} } else { - yyv3958 := &yyv3957[yyj3957] - yyv3958.CodecDecodeSelf(d) + yyv3987 := &yyv3986[yyj3986] + yyv3987.CodecDecodeSelf(d) } } - if yyrt3957 { - for ; yyj3957 < yyl3957; yyj3957++ { - yyv3957 = append(yyv3957, NodeCondition{}) - yyh3957.ElemContainerState(yyj3957) + if yyrt3986 { + for ; yyj3986 < yyl3986; yyj3986++ { + yyv3986 = append(yyv3986, NodeCondition{}) + yyh3986.ElemContainerState(yyj3986) if r.TryDecodeAsNil() { - yyv3957[yyj3957] = NodeCondition{} + yyv3986[yyj3986] = NodeCondition{} } else { - yyv3959 := &yyv3957[yyj3957] - yyv3959.CodecDecodeSelf(d) + yyv3988 := &yyv3986[yyj3986] + yyv3988.CodecDecodeSelf(d) } } } } else { - yyj3957 := 0 - for ; !r.CheckBreak(); yyj3957++ { + yyj3986 := 0 + for ; !r.CheckBreak(); yyj3986++ { - if yyj3957 >= len(yyv3957) { - yyv3957 = append(yyv3957, NodeCondition{}) // var yyz3957 NodeCondition - yyc3957 = true + if yyj3986 >= len(yyv3986) { + yyv3986 = append(yyv3986, NodeCondition{}) // var yyz3986 NodeCondition + yyc3986 = true } - yyh3957.ElemContainerState(yyj3957) - if yyj3957 < len(yyv3957) { + yyh3986.ElemContainerState(yyj3986) + if yyj3986 < len(yyv3986) { if r.TryDecodeAsNil() { - yyv3957[yyj3957] = NodeCondition{} + yyv3986[yyj3986] = NodeCondition{} } else { - yyv3960 := &yyv3957[yyj3957] - yyv3960.CodecDecodeSelf(d) + yyv3989 := &yyv3986[yyj3986] + yyv3989.CodecDecodeSelf(d) } } else { @@ -50330,17 +50717,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj3957 < len(yyv3957) { - yyv3957 = yyv3957[:yyj3957] - yyc3957 = true - } else if yyj3957 == 0 && yyv3957 == nil { - yyv3957 = []NodeCondition{} - yyc3957 = true + if yyj3986 < len(yyv3986) { + yyv3986 = yyv3986[:yyj3986] + yyc3986 = true + } else if yyj3986 == 0 && yyv3986 == nil { + yyv3986 = []NodeCondition{} + yyc3986 = true } } - yyh3957.End() - if yyc3957 { - *v = yyv3957 + yyh3986.End() + if yyc3986 { + *v = yyv3986 } } @@ -50349,10 +50736,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3961 := range v { + for _, yyv3990 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3962 := &yyv3961 - yy3962.CodecEncodeSelf(e) + yy3991 := &yyv3990 + yy3991.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50362,83 +50749,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3963 := *v - yyh3963, yyl3963 := z.DecSliceHelperStart() - var yyc3963 bool - if yyl3963 == 0 { - if yyv3963 == nil { - yyv3963 = []NodeAddress{} - yyc3963 = true - } else if len(yyv3963) != 0 { - yyv3963 = yyv3963[:0] - yyc3963 = true + yyv3992 := *v + yyh3992, yyl3992 := z.DecSliceHelperStart() + var yyc3992 bool + if yyl3992 == 0 { + if yyv3992 == nil { + yyv3992 = []NodeAddress{} + yyc3992 = true + } else if len(yyv3992) != 0 { + yyv3992 = yyv3992[:0] + yyc3992 = true } - } else if yyl3963 > 0 { - var yyrr3963, yyrl3963 int - var yyrt3963 bool - if yyl3963 > cap(yyv3963) { + } else if yyl3992 > 0 { + var yyrr3992, yyrl3992 int + var yyrt3992 bool + if yyl3992 > cap(yyv3992) { - yyrg3963 := len(yyv3963) > 0 - yyv23963 := yyv3963 - yyrl3963, yyrt3963 = z.DecInferLen(yyl3963, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3963 { - if yyrl3963 <= cap(yyv3963) { - yyv3963 = yyv3963[:yyrl3963] + yyrg3992 := len(yyv3992) > 0 + yyv23992 := yyv3992 + yyrl3992, yyrt3992 = z.DecInferLen(yyl3992, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3992 { + if yyrl3992 <= cap(yyv3992) { + yyv3992 = yyv3992[:yyrl3992] } else { - yyv3963 = make([]NodeAddress, yyrl3963) + yyv3992 = make([]NodeAddress, yyrl3992) } } else { - yyv3963 = make([]NodeAddress, yyrl3963) + yyv3992 = make([]NodeAddress, yyrl3992) } - yyc3963 = true - yyrr3963 = len(yyv3963) - if yyrg3963 { - copy(yyv3963, yyv23963) + yyc3992 = true + yyrr3992 = len(yyv3992) + if yyrg3992 { + copy(yyv3992, yyv23992) } - } else if yyl3963 != len(yyv3963) { - yyv3963 = yyv3963[:yyl3963] - yyc3963 = true + } else if yyl3992 != len(yyv3992) { + yyv3992 = yyv3992[:yyl3992] + yyc3992 = true } - yyj3963 := 0 - for ; yyj3963 < yyrr3963; yyj3963++ { - yyh3963.ElemContainerState(yyj3963) + yyj3992 := 0 + for ; yyj3992 < yyrr3992; yyj3992++ { + yyh3992.ElemContainerState(yyj3992) if r.TryDecodeAsNil() { - yyv3963[yyj3963] = NodeAddress{} + yyv3992[yyj3992] = NodeAddress{} } else { - yyv3964 := &yyv3963[yyj3963] - yyv3964.CodecDecodeSelf(d) + yyv3993 := &yyv3992[yyj3992] + yyv3993.CodecDecodeSelf(d) } } - if yyrt3963 { - for ; yyj3963 < yyl3963; yyj3963++ { - yyv3963 = append(yyv3963, NodeAddress{}) - yyh3963.ElemContainerState(yyj3963) + if yyrt3992 { + for ; yyj3992 < yyl3992; yyj3992++ { + yyv3992 = append(yyv3992, NodeAddress{}) + yyh3992.ElemContainerState(yyj3992) if r.TryDecodeAsNil() { - yyv3963[yyj3963] = NodeAddress{} + yyv3992[yyj3992] = NodeAddress{} } else { - yyv3965 := &yyv3963[yyj3963] - yyv3965.CodecDecodeSelf(d) + yyv3994 := &yyv3992[yyj3992] + yyv3994.CodecDecodeSelf(d) } } } } else { - yyj3963 := 0 - for ; !r.CheckBreak(); yyj3963++ { + yyj3992 := 0 + for ; !r.CheckBreak(); yyj3992++ { - if yyj3963 >= len(yyv3963) { - yyv3963 = append(yyv3963, NodeAddress{}) // var yyz3963 NodeAddress - yyc3963 = true + if yyj3992 >= len(yyv3992) { + yyv3992 = append(yyv3992, NodeAddress{}) // var yyz3992 NodeAddress + yyc3992 = true } - yyh3963.ElemContainerState(yyj3963) - if yyj3963 < len(yyv3963) { + yyh3992.ElemContainerState(yyj3992) + if yyj3992 < len(yyv3992) { if r.TryDecodeAsNil() { - yyv3963[yyj3963] = NodeAddress{} + yyv3992[yyj3992] = NodeAddress{} } else { - yyv3966 := &yyv3963[yyj3963] - yyv3966.CodecDecodeSelf(d) + yyv3995 := &yyv3992[yyj3992] + yyv3995.CodecDecodeSelf(d) } } else { @@ -50446,17 +50833,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj3963 < len(yyv3963) { - yyv3963 = yyv3963[:yyj3963] - yyc3963 = true - } else if yyj3963 == 0 && yyv3963 == nil { - yyv3963 = []NodeAddress{} - yyc3963 = true + if yyj3992 < len(yyv3992) { + yyv3992 = yyv3992[:yyj3992] + yyc3992 = true + } else if yyj3992 == 0 && yyv3992 == nil { + yyv3992 = []NodeAddress{} + yyc3992 = true } } - yyh3963.End() - if yyc3963 { - *v = yyv3963 + yyh3992.End() + if yyc3992 { + *v = yyv3992 } } @@ -50465,10 +50852,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3967 := range v { + for _, yyv3996 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3968 := &yyv3967 - yy3968.CodecEncodeSelf(e) + yy3997 := &yyv3996 + yy3997.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50478,83 +50865,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3969 := *v - yyh3969, yyl3969 := z.DecSliceHelperStart() - var yyc3969 bool - if yyl3969 == 0 { - if yyv3969 == nil { - yyv3969 = []ContainerImage{} - yyc3969 = true - } else if len(yyv3969) != 0 { - yyv3969 = yyv3969[:0] - yyc3969 = true + yyv3998 := *v + yyh3998, yyl3998 := z.DecSliceHelperStart() + var yyc3998 bool + if yyl3998 == 0 { + if yyv3998 == nil { + yyv3998 = []ContainerImage{} + yyc3998 = true + } else if len(yyv3998) != 0 { + yyv3998 = yyv3998[:0] + yyc3998 = true } - } else if yyl3969 > 0 { - var yyrr3969, yyrl3969 int - var yyrt3969 bool - if yyl3969 > cap(yyv3969) { + } else if yyl3998 > 0 { + var yyrr3998, yyrl3998 int + var yyrt3998 bool + if yyl3998 > cap(yyv3998) { - yyrg3969 := len(yyv3969) > 0 - yyv23969 := yyv3969 - yyrl3969, yyrt3969 = z.DecInferLen(yyl3969, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3969 { - if yyrl3969 <= cap(yyv3969) { - yyv3969 = yyv3969[:yyrl3969] + yyrg3998 := len(yyv3998) > 0 + yyv23998 := yyv3998 + yyrl3998, yyrt3998 = z.DecInferLen(yyl3998, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3998 { + if yyrl3998 <= cap(yyv3998) { + yyv3998 = yyv3998[:yyrl3998] } else { - yyv3969 = make([]ContainerImage, yyrl3969) + yyv3998 = make([]ContainerImage, yyrl3998) } } else { - yyv3969 = make([]ContainerImage, yyrl3969) + yyv3998 = make([]ContainerImage, yyrl3998) } - yyc3969 = true - yyrr3969 = len(yyv3969) - if yyrg3969 { - copy(yyv3969, yyv23969) + yyc3998 = true + yyrr3998 = len(yyv3998) + if yyrg3998 { + copy(yyv3998, yyv23998) } - } else if yyl3969 != len(yyv3969) { - yyv3969 = yyv3969[:yyl3969] - yyc3969 = true + } else if yyl3998 != len(yyv3998) { + yyv3998 = yyv3998[:yyl3998] + yyc3998 = true } - yyj3969 := 0 - for ; yyj3969 < yyrr3969; yyj3969++ { - yyh3969.ElemContainerState(yyj3969) + yyj3998 := 0 + for ; yyj3998 < yyrr3998; yyj3998++ { + yyh3998.ElemContainerState(yyj3998) if r.TryDecodeAsNil() { - yyv3969[yyj3969] = ContainerImage{} + yyv3998[yyj3998] = ContainerImage{} } else { - yyv3970 := &yyv3969[yyj3969] - yyv3970.CodecDecodeSelf(d) + yyv3999 := &yyv3998[yyj3998] + yyv3999.CodecDecodeSelf(d) } } - if yyrt3969 { - for ; yyj3969 < yyl3969; yyj3969++ { - yyv3969 = append(yyv3969, ContainerImage{}) - yyh3969.ElemContainerState(yyj3969) + if yyrt3998 { + for ; yyj3998 < yyl3998; yyj3998++ { + yyv3998 = append(yyv3998, ContainerImage{}) + yyh3998.ElemContainerState(yyj3998) if r.TryDecodeAsNil() { - yyv3969[yyj3969] = ContainerImage{} + yyv3998[yyj3998] = ContainerImage{} } else { - yyv3971 := &yyv3969[yyj3969] - yyv3971.CodecDecodeSelf(d) + yyv4000 := &yyv3998[yyj3998] + yyv4000.CodecDecodeSelf(d) } } } } else { - yyj3969 := 0 - for ; !r.CheckBreak(); yyj3969++ { + yyj3998 := 0 + for ; !r.CheckBreak(); yyj3998++ { - if yyj3969 >= len(yyv3969) { - yyv3969 = append(yyv3969, ContainerImage{}) // var yyz3969 ContainerImage - yyc3969 = true + if yyj3998 >= len(yyv3998) { + yyv3998 = append(yyv3998, ContainerImage{}) // var yyz3998 ContainerImage + yyc3998 = true } - yyh3969.ElemContainerState(yyj3969) - if yyj3969 < len(yyv3969) { + yyh3998.ElemContainerState(yyj3998) + if yyj3998 < len(yyv3998) { if r.TryDecodeAsNil() { - yyv3969[yyj3969] = ContainerImage{} + yyv3998[yyj3998] = ContainerImage{} } else { - yyv3972 := &yyv3969[yyj3969] - yyv3972.CodecDecodeSelf(d) + yyv4001 := &yyv3998[yyj3998] + yyv4001.CodecDecodeSelf(d) } } else { @@ -50562,17 +50949,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj3969 < len(yyv3969) { - yyv3969 = yyv3969[:yyj3969] - yyc3969 = true - } else if yyj3969 == 0 && yyv3969 == nil { - yyv3969 = []ContainerImage{} - yyc3969 = true + if yyj3998 < len(yyv3998) { + yyv3998 = yyv3998[:yyj3998] + yyc3998 = true + } else if yyj3998 == 0 && yyv3998 == nil { + yyv3998 = []ContainerImage{} + yyc3998 = true } } - yyh3969.End() - if yyc3969 { - *v = yyv3969 + yyh3998.End() + if yyc3998 { + *v = yyv3998 } } @@ -50581,19 +50968,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3973, yyv3973 := range v { + for yyk4002, yyv4002 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk3973.CodecEncodeSelf(e) + yyk4002.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3974 := &yyv3973 - yym3975 := z.EncBinary() - _ = yym3975 + yy4003 := &yyv4002 + yym4004 := z.EncBinary() + _ = yym4004 if false { - } else if z.HasExtensions() && z.EncExt(yy3974) { - } else if !yym3975 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3974) + } else if z.HasExtensions() && z.EncExt(yy4003) { + } else if !yym4004 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4003) } else { - z.EncFallback(yy3974) + z.EncFallback(yy4003) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50604,86 +50991,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3976 := *v - yyl3976 := r.ReadMapStart() - yybh3976 := z.DecBasicHandle() - if yyv3976 == nil { - yyrl3976, _ := z.DecInferLen(yyl3976, yybh3976.MaxInitLen, 40) - yyv3976 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3976) - *v = yyv3976 + yyv4005 := *v + yyl4005 := r.ReadMapStart() + yybh4005 := z.DecBasicHandle() + if yyv4005 == nil { + yyrl4005, _ := z.DecInferLen(yyl4005, yybh4005.MaxInitLen, 40) + yyv4005 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4005) + *v = yyv4005 } - var yymk3976 ResourceName - var yymv3976 pkg3_resource.Quantity - var yymg3976 bool - if yybh3976.MapValueReset { - yymg3976 = true + var yymk4005 ResourceName + var yymv4005 pkg3_resource.Quantity + var yymg4005 bool + if yybh4005.MapValueReset { + yymg4005 = true } - if yyl3976 > 0 { - for yyj3976 := 0; yyj3976 < yyl3976; yyj3976++ { + if yyl4005 > 0 { + for yyj4005 := 0; yyj4005 < yyl4005; yyj4005++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3976 = "" + yymk4005 = "" } else { - yymk3976 = ResourceName(r.DecodeString()) + yymk4005 = ResourceName(r.DecodeString()) } - if yymg3976 { - yymv3976 = yyv3976[yymk3976] + if yymg4005 { + yymv4005 = yyv4005[yymk4005] } else { - yymv3976 = pkg3_resource.Quantity{} + yymv4005 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3976 = pkg3_resource.Quantity{} + yymv4005 = pkg3_resource.Quantity{} } else { - yyv3978 := &yymv3976 - yym3979 := z.DecBinary() - _ = yym3979 + yyv4007 := &yymv4005 + yym4008 := z.DecBinary() + _ = yym4008 if false { - } else if z.HasExtensions() && z.DecExt(yyv3978) { - } else if !yym3979 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3978) + } else if z.HasExtensions() && z.DecExt(yyv4007) { + } else if !yym4008 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4007) } else { - z.DecFallback(yyv3978, false) + z.DecFallback(yyv4007, false) } } - if yyv3976 != nil { - yyv3976[yymk3976] = yymv3976 + if yyv4005 != nil { + yyv4005[yymk4005] = yymv4005 } } - } else if yyl3976 < 0 { - for yyj3976 := 0; !r.CheckBreak(); yyj3976++ { + } else if yyl4005 < 0 { + for yyj4005 := 0; !r.CheckBreak(); yyj4005++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3976 = "" + yymk4005 = "" } else { - yymk3976 = ResourceName(r.DecodeString()) + yymk4005 = ResourceName(r.DecodeString()) } - if yymg3976 { - yymv3976 = yyv3976[yymk3976] + if yymg4005 { + yymv4005 = yyv4005[yymk4005] } else { - yymv3976 = pkg3_resource.Quantity{} + yymv4005 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3976 = pkg3_resource.Quantity{} + yymv4005 = pkg3_resource.Quantity{} } else { - yyv3981 := &yymv3976 - yym3982 := z.DecBinary() - _ = yym3982 + yyv4010 := &yymv4005 + yym4011 := z.DecBinary() + _ = yym4011 if false { - } else if z.HasExtensions() && z.DecExt(yyv3981) { - } else if !yym3982 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3981) + } else if z.HasExtensions() && z.DecExt(yyv4010) { + } else if !yym4011 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4010) } else { - z.DecFallback(yyv3981, false) + z.DecFallback(yyv4010, false) } } - if yyv3976 != nil { - yyv3976[yymk3976] = yymv3976 + if yyv4005 != nil { + yyv4005[yymk4005] = yymv4005 } } } // else len==0: TODO: Should we clear map entries? @@ -50695,10 +51082,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3983 := range v { + for _, yyv4012 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3984 := &yyv3983 - yy3984.CodecEncodeSelf(e) + yy4013 := &yyv4012 + yy4013.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50708,83 +51095,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3985 := *v - yyh3985, yyl3985 := z.DecSliceHelperStart() - var yyc3985 bool - if yyl3985 == 0 { - if yyv3985 == nil { - yyv3985 = []Node{} - yyc3985 = true - } else if len(yyv3985) != 0 { - yyv3985 = yyv3985[:0] - yyc3985 = true + yyv4014 := *v + yyh4014, yyl4014 := z.DecSliceHelperStart() + var yyc4014 bool + if yyl4014 == 0 { + if yyv4014 == nil { + yyv4014 = []Node{} + yyc4014 = true + } else if len(yyv4014) != 0 { + yyv4014 = yyv4014[:0] + yyc4014 = true } - } else if yyl3985 > 0 { - var yyrr3985, yyrl3985 int - var yyrt3985 bool - if yyl3985 > cap(yyv3985) { + } else if yyl4014 > 0 { + var yyrr4014, yyrl4014 int + var yyrt4014 bool + if yyl4014 > cap(yyv4014) { - yyrg3985 := len(yyv3985) > 0 - yyv23985 := yyv3985 - yyrl3985, yyrt3985 = z.DecInferLen(yyl3985, z.DecBasicHandle().MaxInitLen, 488) - if yyrt3985 { - if yyrl3985 <= cap(yyv3985) { - yyv3985 = yyv3985[:yyrl3985] + yyrg4014 := len(yyv4014) > 0 + yyv24014 := yyv4014 + yyrl4014, yyrt4014 = z.DecInferLen(yyl4014, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4014 { + if yyrl4014 <= cap(yyv4014) { + yyv4014 = yyv4014[:yyrl4014] } else { - yyv3985 = make([]Node, yyrl3985) + yyv4014 = make([]Node, yyrl4014) } } else { - yyv3985 = make([]Node, yyrl3985) + yyv4014 = make([]Node, yyrl4014) } - yyc3985 = true - yyrr3985 = len(yyv3985) - if yyrg3985 { - copy(yyv3985, yyv23985) + yyc4014 = true + yyrr4014 = len(yyv4014) + if yyrg4014 { + copy(yyv4014, yyv24014) } - } else if yyl3985 != len(yyv3985) { - yyv3985 = yyv3985[:yyl3985] - yyc3985 = true + } else if yyl4014 != len(yyv4014) { + yyv4014 = yyv4014[:yyl4014] + yyc4014 = true } - yyj3985 := 0 - for ; yyj3985 < yyrr3985; yyj3985++ { - yyh3985.ElemContainerState(yyj3985) + yyj4014 := 0 + for ; yyj4014 < yyrr4014; yyj4014++ { + yyh4014.ElemContainerState(yyj4014) if r.TryDecodeAsNil() { - yyv3985[yyj3985] = Node{} + yyv4014[yyj4014] = Node{} } else { - yyv3986 := &yyv3985[yyj3985] - yyv3986.CodecDecodeSelf(d) + yyv4015 := &yyv4014[yyj4014] + yyv4015.CodecDecodeSelf(d) } } - if yyrt3985 { - for ; yyj3985 < yyl3985; yyj3985++ { - yyv3985 = append(yyv3985, Node{}) - yyh3985.ElemContainerState(yyj3985) + if yyrt4014 { + for ; yyj4014 < yyl4014; yyj4014++ { + yyv4014 = append(yyv4014, Node{}) + yyh4014.ElemContainerState(yyj4014) if r.TryDecodeAsNil() { - yyv3985[yyj3985] = Node{} + yyv4014[yyj4014] = Node{} } else { - yyv3987 := &yyv3985[yyj3985] - yyv3987.CodecDecodeSelf(d) + yyv4016 := &yyv4014[yyj4014] + yyv4016.CodecDecodeSelf(d) } } } } else { - yyj3985 := 0 - for ; !r.CheckBreak(); yyj3985++ { + yyj4014 := 0 + for ; !r.CheckBreak(); yyj4014++ { - if yyj3985 >= len(yyv3985) { - yyv3985 = append(yyv3985, Node{}) // var yyz3985 Node - yyc3985 = true + if yyj4014 >= len(yyv4014) { + yyv4014 = append(yyv4014, Node{}) // var yyz4014 Node + yyc4014 = true } - yyh3985.ElemContainerState(yyj3985) - if yyj3985 < len(yyv3985) { + yyh4014.ElemContainerState(yyj4014) + if yyj4014 < len(yyv4014) { if r.TryDecodeAsNil() { - yyv3985[yyj3985] = Node{} + yyv4014[yyj4014] = Node{} } else { - yyv3988 := &yyv3985[yyj3985] - yyv3988.CodecDecodeSelf(d) + yyv4017 := &yyv4014[yyj4014] + yyv4017.CodecDecodeSelf(d) } } else { @@ -50792,17 +51179,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj3985 < len(yyv3985) { - yyv3985 = yyv3985[:yyj3985] - yyc3985 = true - } else if yyj3985 == 0 && yyv3985 == nil { - yyv3985 = []Node{} - yyc3985 = true + if yyj4014 < len(yyv4014) { + yyv4014 = yyv4014[:yyj4014] + yyc4014 = true + } else if yyj4014 == 0 && yyv4014 == nil { + yyv4014 = []Node{} + yyc4014 = true } } - yyh3985.End() - if yyc3985 { - *v = yyv3985 + yyh4014.End() + if yyc4014 { + *v = yyv4014 } } @@ -50811,9 +51198,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3989 := range v { + for _, yyv4018 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3989.CodecEncodeSelf(e) + yyv4018.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50823,75 +51210,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3990 := *v - yyh3990, yyl3990 := z.DecSliceHelperStart() - var yyc3990 bool - if yyl3990 == 0 { - if yyv3990 == nil { - yyv3990 = []FinalizerName{} - yyc3990 = true - } else if len(yyv3990) != 0 { - yyv3990 = yyv3990[:0] - yyc3990 = true + yyv4019 := *v + yyh4019, yyl4019 := z.DecSliceHelperStart() + var yyc4019 bool + if yyl4019 == 0 { + if yyv4019 == nil { + yyv4019 = []FinalizerName{} + yyc4019 = true + } else if len(yyv4019) != 0 { + yyv4019 = yyv4019[:0] + yyc4019 = true } - } else if yyl3990 > 0 { - var yyrr3990, yyrl3990 int - var yyrt3990 bool - if yyl3990 > cap(yyv3990) { + } else if yyl4019 > 0 { + var yyrr4019, yyrl4019 int + var yyrt4019 bool + if yyl4019 > cap(yyv4019) { - yyrl3990, yyrt3990 = z.DecInferLen(yyl3990, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3990 { - if yyrl3990 <= cap(yyv3990) { - yyv3990 = yyv3990[:yyrl3990] + yyrl4019, yyrt4019 = z.DecInferLen(yyl4019, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4019 { + if yyrl4019 <= cap(yyv4019) { + yyv4019 = yyv4019[:yyrl4019] } else { - yyv3990 = make([]FinalizerName, yyrl3990) + yyv4019 = make([]FinalizerName, yyrl4019) } } else { - yyv3990 = make([]FinalizerName, yyrl3990) + yyv4019 = make([]FinalizerName, yyrl4019) } - yyc3990 = true - yyrr3990 = len(yyv3990) - } else if yyl3990 != len(yyv3990) { - yyv3990 = yyv3990[:yyl3990] - yyc3990 = true + yyc4019 = true + yyrr4019 = len(yyv4019) + } else if yyl4019 != len(yyv4019) { + yyv4019 = yyv4019[:yyl4019] + yyc4019 = true } - yyj3990 := 0 - for ; yyj3990 < yyrr3990; yyj3990++ { - yyh3990.ElemContainerState(yyj3990) + yyj4019 := 0 + for ; yyj4019 < yyrr4019; yyj4019++ { + yyh4019.ElemContainerState(yyj4019) if r.TryDecodeAsNil() { - yyv3990[yyj3990] = "" + yyv4019[yyj4019] = "" } else { - yyv3990[yyj3990] = FinalizerName(r.DecodeString()) + yyv4019[yyj4019] = FinalizerName(r.DecodeString()) } } - if yyrt3990 { - for ; yyj3990 < yyl3990; yyj3990++ { - yyv3990 = append(yyv3990, "") - yyh3990.ElemContainerState(yyj3990) + if yyrt4019 { + for ; yyj4019 < yyl4019; yyj4019++ { + yyv4019 = append(yyv4019, "") + yyh4019.ElemContainerState(yyj4019) if r.TryDecodeAsNil() { - yyv3990[yyj3990] = "" + yyv4019[yyj4019] = "" } else { - yyv3990[yyj3990] = FinalizerName(r.DecodeString()) + yyv4019[yyj4019] = FinalizerName(r.DecodeString()) } } } } else { - yyj3990 := 0 - for ; !r.CheckBreak(); yyj3990++ { + yyj4019 := 0 + for ; !r.CheckBreak(); yyj4019++ { - if yyj3990 >= len(yyv3990) { - yyv3990 = append(yyv3990, "") // var yyz3990 FinalizerName - yyc3990 = true + if yyj4019 >= len(yyv4019) { + yyv4019 = append(yyv4019, "") // var yyz4019 FinalizerName + yyc4019 = true } - yyh3990.ElemContainerState(yyj3990) - if yyj3990 < len(yyv3990) { + yyh4019.ElemContainerState(yyj4019) + if yyj4019 < len(yyv4019) { if r.TryDecodeAsNil() { - yyv3990[yyj3990] = "" + yyv4019[yyj4019] = "" } else { - yyv3990[yyj3990] = FinalizerName(r.DecodeString()) + yyv4019[yyj4019] = FinalizerName(r.DecodeString()) } } else { @@ -50899,17 +51286,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj3990 < len(yyv3990) { - yyv3990 = yyv3990[:yyj3990] - yyc3990 = true - } else if yyj3990 == 0 && yyv3990 == nil { - yyv3990 = []FinalizerName{} - yyc3990 = true + if yyj4019 < len(yyv4019) { + yyv4019 = yyv4019[:yyj4019] + yyc4019 = true + } else if yyj4019 == 0 && yyv4019 == nil { + yyv4019 = []FinalizerName{} + yyc4019 = true } } - yyh3990.End() - if yyc3990 { - *v = yyv3990 + yyh4019.End() + if yyc4019 { + *v = yyv4019 } } @@ -50918,10 +51305,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3994 := range v { + for _, yyv4023 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3995 := &yyv3994 - yy3995.CodecEncodeSelf(e) + yy4024 := &yyv4023 + yy4024.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50931,83 +51318,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3996 := *v - yyh3996, yyl3996 := z.DecSliceHelperStart() - var yyc3996 bool - if yyl3996 == 0 { - if yyv3996 == nil { - yyv3996 = []Namespace{} - yyc3996 = true - } else if len(yyv3996) != 0 { - yyv3996 = yyv3996[:0] - yyc3996 = true + yyv4025 := *v + yyh4025, yyl4025 := z.DecSliceHelperStart() + var yyc4025 bool + if yyl4025 == 0 { + if yyv4025 == nil { + yyv4025 = []Namespace{} + yyc4025 = true + } else if len(yyv4025) != 0 { + yyv4025 = yyv4025[:0] + yyc4025 = true } - } else if yyl3996 > 0 { - var yyrr3996, yyrl3996 int - var yyrt3996 bool - if yyl3996 > cap(yyv3996) { + } else if yyl4025 > 0 { + var yyrr4025, yyrl4025 int + var yyrt4025 bool + if yyl4025 > cap(yyv4025) { - yyrg3996 := len(yyv3996) > 0 - yyv23996 := yyv3996 - yyrl3996, yyrt3996 = z.DecInferLen(yyl3996, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3996 { - if yyrl3996 <= cap(yyv3996) { - yyv3996 = yyv3996[:yyrl3996] + yyrg4025 := len(yyv4025) > 0 + yyv24025 := yyv4025 + yyrl4025, yyrt4025 = z.DecInferLen(yyl4025, z.DecBasicHandle().MaxInitLen, 232) + if yyrt4025 { + if yyrl4025 <= cap(yyv4025) { + yyv4025 = yyv4025[:yyrl4025] } else { - yyv3996 = make([]Namespace, yyrl3996) + yyv4025 = make([]Namespace, yyrl4025) } } else { - yyv3996 = make([]Namespace, yyrl3996) + yyv4025 = make([]Namespace, yyrl4025) } - yyc3996 = true - yyrr3996 = len(yyv3996) - if yyrg3996 { - copy(yyv3996, yyv23996) + yyc4025 = true + yyrr4025 = len(yyv4025) + if yyrg4025 { + copy(yyv4025, yyv24025) } - } else if yyl3996 != len(yyv3996) { - yyv3996 = yyv3996[:yyl3996] - yyc3996 = true + } else if yyl4025 != len(yyv4025) { + yyv4025 = yyv4025[:yyl4025] + yyc4025 = true } - yyj3996 := 0 - for ; yyj3996 < yyrr3996; yyj3996++ { - yyh3996.ElemContainerState(yyj3996) + yyj4025 := 0 + for ; yyj4025 < yyrr4025; yyj4025++ { + yyh4025.ElemContainerState(yyj4025) if r.TryDecodeAsNil() { - yyv3996[yyj3996] = Namespace{} + yyv4025[yyj4025] = Namespace{} } else { - yyv3997 := &yyv3996[yyj3996] - yyv3997.CodecDecodeSelf(d) + yyv4026 := &yyv4025[yyj4025] + yyv4026.CodecDecodeSelf(d) } } - if yyrt3996 { - for ; yyj3996 < yyl3996; yyj3996++ { - yyv3996 = append(yyv3996, Namespace{}) - yyh3996.ElemContainerState(yyj3996) + if yyrt4025 { + for ; yyj4025 < yyl4025; yyj4025++ { + yyv4025 = append(yyv4025, Namespace{}) + yyh4025.ElemContainerState(yyj4025) if r.TryDecodeAsNil() { - yyv3996[yyj3996] = Namespace{} + yyv4025[yyj4025] = Namespace{} } else { - yyv3998 := &yyv3996[yyj3996] - yyv3998.CodecDecodeSelf(d) + yyv4027 := &yyv4025[yyj4025] + yyv4027.CodecDecodeSelf(d) } } } } else { - yyj3996 := 0 - for ; !r.CheckBreak(); yyj3996++ { + yyj4025 := 0 + for ; !r.CheckBreak(); yyj4025++ { - if yyj3996 >= len(yyv3996) { - yyv3996 = append(yyv3996, Namespace{}) // var yyz3996 Namespace - yyc3996 = true + if yyj4025 >= len(yyv4025) { + yyv4025 = append(yyv4025, Namespace{}) // var yyz4025 Namespace + yyc4025 = true } - yyh3996.ElemContainerState(yyj3996) - if yyj3996 < len(yyv3996) { + yyh4025.ElemContainerState(yyj4025) + if yyj4025 < len(yyv4025) { if r.TryDecodeAsNil() { - yyv3996[yyj3996] = Namespace{} + yyv4025[yyj4025] = Namespace{} } else { - yyv3999 := &yyv3996[yyj3996] - yyv3999.CodecDecodeSelf(d) + yyv4028 := &yyv4025[yyj4025] + yyv4028.CodecDecodeSelf(d) } } else { @@ -51015,17 +51402,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj3996 < len(yyv3996) { - yyv3996 = yyv3996[:yyj3996] - yyc3996 = true - } else if yyj3996 == 0 && yyv3996 == nil { - yyv3996 = []Namespace{} - yyc3996 = true + if yyj4025 < len(yyv4025) { + yyv4025 = yyv4025[:yyj4025] + yyc4025 = true + } else if yyj4025 == 0 && yyv4025 == nil { + yyv4025 = []Namespace{} + yyc4025 = true } } - yyh3996.End() - if yyc3996 { - *v = yyv3996 + yyh4025.End() + if yyc4025 { + *v = yyv4025 } } @@ -51034,10 +51421,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4000 := range v { + for _, yyv4029 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4001 := &yyv4000 - yy4001.CodecEncodeSelf(e) + yy4030 := &yyv4029 + yy4030.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51047,83 +51434,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4002 := *v - yyh4002, yyl4002 := z.DecSliceHelperStart() - var yyc4002 bool - if yyl4002 == 0 { - if yyv4002 == nil { - yyv4002 = []Event{} - yyc4002 = true - } else if len(yyv4002) != 0 { - yyv4002 = yyv4002[:0] - yyc4002 = true + yyv4031 := *v + yyh4031, yyl4031 := z.DecSliceHelperStart() + var yyc4031 bool + if yyl4031 == 0 { + if yyv4031 == nil { + yyv4031 = []Event{} + yyc4031 = true + } else if len(yyv4031) != 0 { + yyv4031 = yyv4031[:0] + yyc4031 = true } - } else if yyl4002 > 0 { - var yyrr4002, yyrl4002 int - var yyrt4002 bool - if yyl4002 > cap(yyv4002) { + } else if yyl4031 > 0 { + var yyrr4031, yyrl4031 int + var yyrt4031 bool + if yyl4031 > cap(yyv4031) { - yyrg4002 := len(yyv4002) > 0 - yyv24002 := yyv4002 - yyrl4002, yyrt4002 = z.DecInferLen(yyl4002, z.DecBasicHandle().MaxInitLen, 440) - if yyrt4002 { - if yyrl4002 <= cap(yyv4002) { - yyv4002 = yyv4002[:yyrl4002] + yyrg4031 := len(yyv4031) > 0 + yyv24031 := yyv4031 + yyrl4031, yyrt4031 = z.DecInferLen(yyl4031, z.DecBasicHandle().MaxInitLen, 440) + if yyrt4031 { + if yyrl4031 <= cap(yyv4031) { + yyv4031 = yyv4031[:yyrl4031] } else { - yyv4002 = make([]Event, yyrl4002) + yyv4031 = make([]Event, yyrl4031) } } else { - yyv4002 = make([]Event, yyrl4002) + yyv4031 = make([]Event, yyrl4031) } - yyc4002 = true - yyrr4002 = len(yyv4002) - if yyrg4002 { - copy(yyv4002, yyv24002) + yyc4031 = true + yyrr4031 = len(yyv4031) + if yyrg4031 { + copy(yyv4031, yyv24031) } - } else if yyl4002 != len(yyv4002) { - yyv4002 = yyv4002[:yyl4002] - yyc4002 = true + } else if yyl4031 != len(yyv4031) { + yyv4031 = yyv4031[:yyl4031] + yyc4031 = true } - yyj4002 := 0 - for ; yyj4002 < yyrr4002; yyj4002++ { - yyh4002.ElemContainerState(yyj4002) + yyj4031 := 0 + for ; yyj4031 < yyrr4031; yyj4031++ { + yyh4031.ElemContainerState(yyj4031) if r.TryDecodeAsNil() { - yyv4002[yyj4002] = Event{} + yyv4031[yyj4031] = Event{} } else { - yyv4003 := &yyv4002[yyj4002] - yyv4003.CodecDecodeSelf(d) + yyv4032 := &yyv4031[yyj4031] + yyv4032.CodecDecodeSelf(d) } } - if yyrt4002 { - for ; yyj4002 < yyl4002; yyj4002++ { - yyv4002 = append(yyv4002, Event{}) - yyh4002.ElemContainerState(yyj4002) + if yyrt4031 { + for ; yyj4031 < yyl4031; yyj4031++ { + yyv4031 = append(yyv4031, Event{}) + yyh4031.ElemContainerState(yyj4031) if r.TryDecodeAsNil() { - yyv4002[yyj4002] = Event{} + yyv4031[yyj4031] = Event{} } else { - yyv4004 := &yyv4002[yyj4002] - yyv4004.CodecDecodeSelf(d) + yyv4033 := &yyv4031[yyj4031] + yyv4033.CodecDecodeSelf(d) } } } } else { - yyj4002 := 0 - for ; !r.CheckBreak(); yyj4002++ { + yyj4031 := 0 + for ; !r.CheckBreak(); yyj4031++ { - if yyj4002 >= len(yyv4002) { - yyv4002 = append(yyv4002, Event{}) // var yyz4002 Event - yyc4002 = true + if yyj4031 >= len(yyv4031) { + yyv4031 = append(yyv4031, Event{}) // var yyz4031 Event + yyc4031 = true } - yyh4002.ElemContainerState(yyj4002) - if yyj4002 < len(yyv4002) { + yyh4031.ElemContainerState(yyj4031) + if yyj4031 < len(yyv4031) { if r.TryDecodeAsNil() { - yyv4002[yyj4002] = Event{} + yyv4031[yyj4031] = Event{} } else { - yyv4005 := &yyv4002[yyj4002] - yyv4005.CodecDecodeSelf(d) + yyv4034 := &yyv4031[yyj4031] + yyv4034.CodecDecodeSelf(d) } } else { @@ -51131,17 +51518,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4002 < len(yyv4002) { - yyv4002 = yyv4002[:yyj4002] - yyc4002 = true - } else if yyj4002 == 0 && yyv4002 == nil { - yyv4002 = []Event{} - yyc4002 = true + if yyj4031 < len(yyv4031) { + yyv4031 = yyv4031[:yyj4031] + yyc4031 = true + } else if yyj4031 == 0 && yyv4031 == nil { + yyv4031 = []Event{} + yyc4031 = true } } - yyh4002.End() - if yyc4002 { - *v = yyv4002 + yyh4031.End() + if yyc4031 { + *v = yyv4031 } } @@ -51150,17 +51537,17 @@ func (x codecSelfer1234) encSliceruntime_Object(v []pkg8_runtime.Object, e *code z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4006 := range v { + for _, yyv4035 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv4006 == nil { + if yyv4035 == nil { r.EncodeNil() } else { - yym4007 := z.EncBinary() - _ = yym4007 + yym4036 := z.EncBinary() + _ = yym4036 if false { - } else if z.HasExtensions() && z.EncExt(yyv4006) { + } else if z.HasExtensions() && z.EncExt(yyv4035) { } else { - z.EncFallback(yyv4006) + z.EncFallback(yyv4035) } } } @@ -51172,74 +51559,74 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg8_runtime.Object, d *cod z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4008 := *v - yyh4008, yyl4008 := z.DecSliceHelperStart() - var yyc4008 bool - if yyl4008 == 0 { - if yyv4008 == nil { - yyv4008 = []pkg8_runtime.Object{} - yyc4008 = true - } else if len(yyv4008) != 0 { - yyv4008 = yyv4008[:0] - yyc4008 = true + yyv4037 := *v + yyh4037, yyl4037 := z.DecSliceHelperStart() + var yyc4037 bool + if yyl4037 == 0 { + if yyv4037 == nil { + yyv4037 = []pkg8_runtime.Object{} + yyc4037 = true + } else if len(yyv4037) != 0 { + yyv4037 = yyv4037[:0] + yyc4037 = true } - } else if yyl4008 > 0 { - var yyrr4008, yyrl4008 int - var yyrt4008 bool - if yyl4008 > cap(yyv4008) { + } else if yyl4037 > 0 { + var yyrr4037, yyrl4037 int + var yyrt4037 bool + if yyl4037 > cap(yyv4037) { - yyrg4008 := len(yyv4008) > 0 - yyv24008 := yyv4008 - yyrl4008, yyrt4008 = z.DecInferLen(yyl4008, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4008 { - if yyrl4008 <= cap(yyv4008) { - yyv4008 = yyv4008[:yyrl4008] + yyrg4037 := len(yyv4037) > 0 + yyv24037 := yyv4037 + yyrl4037, yyrt4037 = z.DecInferLen(yyl4037, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4037 { + if yyrl4037 <= cap(yyv4037) { + yyv4037 = yyv4037[:yyrl4037] } else { - yyv4008 = make([]pkg8_runtime.Object, yyrl4008) + yyv4037 = make([]pkg8_runtime.Object, yyrl4037) } } else { - yyv4008 = make([]pkg8_runtime.Object, yyrl4008) + yyv4037 = make([]pkg8_runtime.Object, yyrl4037) } - yyc4008 = true - yyrr4008 = len(yyv4008) - if yyrg4008 { - copy(yyv4008, yyv24008) + yyc4037 = true + yyrr4037 = len(yyv4037) + if yyrg4037 { + copy(yyv4037, yyv24037) } - } else if yyl4008 != len(yyv4008) { - yyv4008 = yyv4008[:yyl4008] - yyc4008 = true + } else if yyl4037 != len(yyv4037) { + yyv4037 = yyv4037[:yyl4037] + yyc4037 = true } - yyj4008 := 0 - for ; yyj4008 < yyrr4008; yyj4008++ { - yyh4008.ElemContainerState(yyj4008) + yyj4037 := 0 + for ; yyj4037 < yyrr4037; yyj4037++ { + yyh4037.ElemContainerState(yyj4037) if r.TryDecodeAsNil() { - yyv4008[yyj4008] = nil + yyv4037[yyj4037] = nil } else { - yyv4009 := &yyv4008[yyj4008] - yym4010 := z.DecBinary() - _ = yym4010 + yyv4038 := &yyv4037[yyj4037] + yym4039 := z.DecBinary() + _ = yym4039 if false { - } else if z.HasExtensions() && z.DecExt(yyv4009) { + } else if z.HasExtensions() && z.DecExt(yyv4038) { } else { - z.DecFallback(yyv4009, true) + z.DecFallback(yyv4038, true) } } } - if yyrt4008 { - for ; yyj4008 < yyl4008; yyj4008++ { - yyv4008 = append(yyv4008, nil) - yyh4008.ElemContainerState(yyj4008) + if yyrt4037 { + for ; yyj4037 < yyl4037; yyj4037++ { + yyv4037 = append(yyv4037, nil) + yyh4037.ElemContainerState(yyj4037) if r.TryDecodeAsNil() { - yyv4008[yyj4008] = nil + yyv4037[yyj4037] = nil } else { - yyv4011 := &yyv4008[yyj4008] - yym4012 := z.DecBinary() - _ = yym4012 + yyv4040 := &yyv4037[yyj4037] + yym4041 := z.DecBinary() + _ = yym4041 if false { - } else if z.HasExtensions() && z.DecExt(yyv4011) { + } else if z.HasExtensions() && z.DecExt(yyv4040) { } else { - z.DecFallback(yyv4011, true) + z.DecFallback(yyv4040, true) } } @@ -51247,25 +51634,25 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg8_runtime.Object, d *cod } } else { - yyj4008 := 0 - for ; !r.CheckBreak(); yyj4008++ { + yyj4037 := 0 + for ; !r.CheckBreak(); yyj4037++ { - if yyj4008 >= len(yyv4008) { - yyv4008 = append(yyv4008, nil) // var yyz4008 pkg8_runtime.Object - yyc4008 = true + if yyj4037 >= len(yyv4037) { + yyv4037 = append(yyv4037, nil) // var yyz4037 pkg8_runtime.Object + yyc4037 = true } - yyh4008.ElemContainerState(yyj4008) - if yyj4008 < len(yyv4008) { + yyh4037.ElemContainerState(yyj4037) + if yyj4037 < len(yyv4037) { if r.TryDecodeAsNil() { - yyv4008[yyj4008] = nil + yyv4037[yyj4037] = nil } else { - yyv4013 := &yyv4008[yyj4008] - yym4014 := z.DecBinary() - _ = yym4014 + yyv4042 := &yyv4037[yyj4037] + yym4043 := z.DecBinary() + _ = yym4043 if false { - } else if z.HasExtensions() && z.DecExt(yyv4013) { + } else if z.HasExtensions() && z.DecExt(yyv4042) { } else { - z.DecFallback(yyv4013, true) + z.DecFallback(yyv4042, true) } } @@ -51274,17 +51661,17 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg8_runtime.Object, d *cod } } - if yyj4008 < len(yyv4008) { - yyv4008 = yyv4008[:yyj4008] - yyc4008 = true - } else if yyj4008 == 0 && yyv4008 == nil { - yyv4008 = []pkg8_runtime.Object{} - yyc4008 = true + if yyj4037 < len(yyv4037) { + yyv4037 = yyv4037[:yyj4037] + yyc4037 = true + } else if yyj4037 == 0 && yyv4037 == nil { + yyv4037 = []pkg8_runtime.Object{} + yyc4037 = true } } - yyh4008.End() - if yyc4008 { - *v = yyv4008 + yyh4037.End() + if yyc4037 { + *v = yyv4037 } } @@ -51293,10 +51680,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4015 := range v { + for _, yyv4044 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4016 := &yyv4015 - yy4016.CodecEncodeSelf(e) + yy4045 := &yyv4044 + yy4045.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51306,83 +51693,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4017 := *v - yyh4017, yyl4017 := z.DecSliceHelperStart() - var yyc4017 bool - if yyl4017 == 0 { - if yyv4017 == nil { - yyv4017 = []LimitRangeItem{} - yyc4017 = true - } else if len(yyv4017) != 0 { - yyv4017 = yyv4017[:0] - yyc4017 = true + yyv4046 := *v + yyh4046, yyl4046 := z.DecSliceHelperStart() + var yyc4046 bool + if yyl4046 == 0 { + if yyv4046 == nil { + yyv4046 = []LimitRangeItem{} + yyc4046 = true + } else if len(yyv4046) != 0 { + yyv4046 = yyv4046[:0] + yyc4046 = true } - } else if yyl4017 > 0 { - var yyrr4017, yyrl4017 int - var yyrt4017 bool - if yyl4017 > cap(yyv4017) { + } else if yyl4046 > 0 { + var yyrr4046, yyrl4046 int + var yyrt4046 bool + if yyl4046 > cap(yyv4046) { - yyrg4017 := len(yyv4017) > 0 - yyv24017 := yyv4017 - yyrl4017, yyrt4017 = z.DecInferLen(yyl4017, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4017 { - if yyrl4017 <= cap(yyv4017) { - yyv4017 = yyv4017[:yyrl4017] + yyrg4046 := len(yyv4046) > 0 + yyv24046 := yyv4046 + yyrl4046, yyrt4046 = z.DecInferLen(yyl4046, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4046 { + if yyrl4046 <= cap(yyv4046) { + yyv4046 = yyv4046[:yyrl4046] } else { - yyv4017 = make([]LimitRangeItem, yyrl4017) + yyv4046 = make([]LimitRangeItem, yyrl4046) } } else { - yyv4017 = make([]LimitRangeItem, yyrl4017) + yyv4046 = make([]LimitRangeItem, yyrl4046) } - yyc4017 = true - yyrr4017 = len(yyv4017) - if yyrg4017 { - copy(yyv4017, yyv24017) + yyc4046 = true + yyrr4046 = len(yyv4046) + if yyrg4046 { + copy(yyv4046, yyv24046) } - } else if yyl4017 != len(yyv4017) { - yyv4017 = yyv4017[:yyl4017] - yyc4017 = true + } else if yyl4046 != len(yyv4046) { + yyv4046 = yyv4046[:yyl4046] + yyc4046 = true } - yyj4017 := 0 - for ; yyj4017 < yyrr4017; yyj4017++ { - yyh4017.ElemContainerState(yyj4017) + yyj4046 := 0 + for ; yyj4046 < yyrr4046; yyj4046++ { + yyh4046.ElemContainerState(yyj4046) if r.TryDecodeAsNil() { - yyv4017[yyj4017] = LimitRangeItem{} + yyv4046[yyj4046] = LimitRangeItem{} } else { - yyv4018 := &yyv4017[yyj4017] - yyv4018.CodecDecodeSelf(d) + yyv4047 := &yyv4046[yyj4046] + yyv4047.CodecDecodeSelf(d) } } - if yyrt4017 { - for ; yyj4017 < yyl4017; yyj4017++ { - yyv4017 = append(yyv4017, LimitRangeItem{}) - yyh4017.ElemContainerState(yyj4017) + if yyrt4046 { + for ; yyj4046 < yyl4046; yyj4046++ { + yyv4046 = append(yyv4046, LimitRangeItem{}) + yyh4046.ElemContainerState(yyj4046) if r.TryDecodeAsNil() { - yyv4017[yyj4017] = LimitRangeItem{} + yyv4046[yyj4046] = LimitRangeItem{} } else { - yyv4019 := &yyv4017[yyj4017] - yyv4019.CodecDecodeSelf(d) + yyv4048 := &yyv4046[yyj4046] + yyv4048.CodecDecodeSelf(d) } } } } else { - yyj4017 := 0 - for ; !r.CheckBreak(); yyj4017++ { + yyj4046 := 0 + for ; !r.CheckBreak(); yyj4046++ { - if yyj4017 >= len(yyv4017) { - yyv4017 = append(yyv4017, LimitRangeItem{}) // var yyz4017 LimitRangeItem - yyc4017 = true + if yyj4046 >= len(yyv4046) { + yyv4046 = append(yyv4046, LimitRangeItem{}) // var yyz4046 LimitRangeItem + yyc4046 = true } - yyh4017.ElemContainerState(yyj4017) - if yyj4017 < len(yyv4017) { + yyh4046.ElemContainerState(yyj4046) + if yyj4046 < len(yyv4046) { if r.TryDecodeAsNil() { - yyv4017[yyj4017] = LimitRangeItem{} + yyv4046[yyj4046] = LimitRangeItem{} } else { - yyv4020 := &yyv4017[yyj4017] - yyv4020.CodecDecodeSelf(d) + yyv4049 := &yyv4046[yyj4046] + yyv4049.CodecDecodeSelf(d) } } else { @@ -51390,17 +51777,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4017 < len(yyv4017) { - yyv4017 = yyv4017[:yyj4017] - yyc4017 = true - } else if yyj4017 == 0 && yyv4017 == nil { - yyv4017 = []LimitRangeItem{} - yyc4017 = true + if yyj4046 < len(yyv4046) { + yyv4046 = yyv4046[:yyj4046] + yyc4046 = true + } else if yyj4046 == 0 && yyv4046 == nil { + yyv4046 = []LimitRangeItem{} + yyc4046 = true } } - yyh4017.End() - if yyc4017 { - *v = yyv4017 + yyh4046.End() + if yyc4046 { + *v = yyv4046 } } @@ -51409,10 +51796,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4021 := range v { + for _, yyv4050 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4022 := &yyv4021 - yy4022.CodecEncodeSelf(e) + yy4051 := &yyv4050 + yy4051.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51422,83 +51809,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4023 := *v - yyh4023, yyl4023 := z.DecSliceHelperStart() - var yyc4023 bool - if yyl4023 == 0 { - if yyv4023 == nil { - yyv4023 = []LimitRange{} - yyc4023 = true - } else if len(yyv4023) != 0 { - yyv4023 = yyv4023[:0] - yyc4023 = true + yyv4052 := *v + yyh4052, yyl4052 := z.DecSliceHelperStart() + var yyc4052 bool + if yyl4052 == 0 { + if yyv4052 == nil { + yyv4052 = []LimitRange{} + yyc4052 = true + } else if len(yyv4052) != 0 { + yyv4052 = yyv4052[:0] + yyc4052 = true } - } else if yyl4023 > 0 { - var yyrr4023, yyrl4023 int - var yyrt4023 bool - if yyl4023 > cap(yyv4023) { + } else if yyl4052 > 0 { + var yyrr4052, yyrl4052 int + var yyrt4052 bool + if yyl4052 > cap(yyv4052) { - yyrg4023 := len(yyv4023) > 0 - yyv24023 := yyv4023 - yyrl4023, yyrt4023 = z.DecInferLen(yyl4023, z.DecBasicHandle().MaxInitLen, 216) - if yyrt4023 { - if yyrl4023 <= cap(yyv4023) { - yyv4023 = yyv4023[:yyrl4023] + yyrg4052 := len(yyv4052) > 0 + yyv24052 := yyv4052 + yyrl4052, yyrt4052 = z.DecInferLen(yyl4052, z.DecBasicHandle().MaxInitLen, 216) + if yyrt4052 { + if yyrl4052 <= cap(yyv4052) { + yyv4052 = yyv4052[:yyrl4052] } else { - yyv4023 = make([]LimitRange, yyrl4023) + yyv4052 = make([]LimitRange, yyrl4052) } } else { - yyv4023 = make([]LimitRange, yyrl4023) + yyv4052 = make([]LimitRange, yyrl4052) } - yyc4023 = true - yyrr4023 = len(yyv4023) - if yyrg4023 { - copy(yyv4023, yyv24023) + yyc4052 = true + yyrr4052 = len(yyv4052) + if yyrg4052 { + copy(yyv4052, yyv24052) } - } else if yyl4023 != len(yyv4023) { - yyv4023 = yyv4023[:yyl4023] - yyc4023 = true + } else if yyl4052 != len(yyv4052) { + yyv4052 = yyv4052[:yyl4052] + yyc4052 = true } - yyj4023 := 0 - for ; yyj4023 < yyrr4023; yyj4023++ { - yyh4023.ElemContainerState(yyj4023) + yyj4052 := 0 + for ; yyj4052 < yyrr4052; yyj4052++ { + yyh4052.ElemContainerState(yyj4052) if r.TryDecodeAsNil() { - yyv4023[yyj4023] = LimitRange{} + yyv4052[yyj4052] = LimitRange{} } else { - yyv4024 := &yyv4023[yyj4023] - yyv4024.CodecDecodeSelf(d) + yyv4053 := &yyv4052[yyj4052] + yyv4053.CodecDecodeSelf(d) } } - if yyrt4023 { - for ; yyj4023 < yyl4023; yyj4023++ { - yyv4023 = append(yyv4023, LimitRange{}) - yyh4023.ElemContainerState(yyj4023) + if yyrt4052 { + for ; yyj4052 < yyl4052; yyj4052++ { + yyv4052 = append(yyv4052, LimitRange{}) + yyh4052.ElemContainerState(yyj4052) if r.TryDecodeAsNil() { - yyv4023[yyj4023] = LimitRange{} + yyv4052[yyj4052] = LimitRange{} } else { - yyv4025 := &yyv4023[yyj4023] - yyv4025.CodecDecodeSelf(d) + yyv4054 := &yyv4052[yyj4052] + yyv4054.CodecDecodeSelf(d) } } } } else { - yyj4023 := 0 - for ; !r.CheckBreak(); yyj4023++ { + yyj4052 := 0 + for ; !r.CheckBreak(); yyj4052++ { - if yyj4023 >= len(yyv4023) { - yyv4023 = append(yyv4023, LimitRange{}) // var yyz4023 LimitRange - yyc4023 = true + if yyj4052 >= len(yyv4052) { + yyv4052 = append(yyv4052, LimitRange{}) // var yyz4052 LimitRange + yyc4052 = true } - yyh4023.ElemContainerState(yyj4023) - if yyj4023 < len(yyv4023) { + yyh4052.ElemContainerState(yyj4052) + if yyj4052 < len(yyv4052) { if r.TryDecodeAsNil() { - yyv4023[yyj4023] = LimitRange{} + yyv4052[yyj4052] = LimitRange{} } else { - yyv4026 := &yyv4023[yyj4023] - yyv4026.CodecDecodeSelf(d) + yyv4055 := &yyv4052[yyj4052] + yyv4055.CodecDecodeSelf(d) } } else { @@ -51506,17 +51893,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4023 < len(yyv4023) { - yyv4023 = yyv4023[:yyj4023] - yyc4023 = true - } else if yyj4023 == 0 && yyv4023 == nil { - yyv4023 = []LimitRange{} - yyc4023 = true + if yyj4052 < len(yyv4052) { + yyv4052 = yyv4052[:yyj4052] + yyc4052 = true + } else if yyj4052 == 0 && yyv4052 == nil { + yyv4052 = []LimitRange{} + yyc4052 = true } } - yyh4023.End() - if yyc4023 { - *v = yyv4023 + yyh4052.End() + if yyc4052 { + *v = yyv4052 } } @@ -51525,10 +51912,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4027 := range v { + for _, yyv4056 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4028 := &yyv4027 - yy4028.CodecEncodeSelf(e) + yy4057 := &yyv4056 + yy4057.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51538,83 +51925,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4029 := *v - yyh4029, yyl4029 := z.DecSliceHelperStart() - var yyc4029 bool - if yyl4029 == 0 { - if yyv4029 == nil { - yyv4029 = []ResourceQuota{} - yyc4029 = true - } else if len(yyv4029) != 0 { - yyv4029 = yyv4029[:0] - yyc4029 = true + yyv4058 := *v + yyh4058, yyl4058 := z.DecSliceHelperStart() + var yyc4058 bool + if yyl4058 == 0 { + if yyv4058 == nil { + yyv4058 = []ResourceQuota{} + yyc4058 = true + } else if len(yyv4058) != 0 { + yyv4058 = yyv4058[:0] + yyc4058 = true } - } else if yyl4029 > 0 { - var yyrr4029, yyrl4029 int - var yyrt4029 bool - if yyl4029 > cap(yyv4029) { + } else if yyl4058 > 0 { + var yyrr4058, yyrl4058 int + var yyrt4058 bool + if yyl4058 > cap(yyv4058) { - yyrg4029 := len(yyv4029) > 0 - yyv24029 := yyv4029 - yyrl4029, yyrt4029 = z.DecInferLen(yyl4029, z.DecBasicHandle().MaxInitLen, 216) - if yyrt4029 { - if yyrl4029 <= cap(yyv4029) { - yyv4029 = yyv4029[:yyrl4029] + yyrg4058 := len(yyv4058) > 0 + yyv24058 := yyv4058 + yyrl4058, yyrt4058 = z.DecInferLen(yyl4058, z.DecBasicHandle().MaxInitLen, 216) + if yyrt4058 { + if yyrl4058 <= cap(yyv4058) { + yyv4058 = yyv4058[:yyrl4058] } else { - yyv4029 = make([]ResourceQuota, yyrl4029) + yyv4058 = make([]ResourceQuota, yyrl4058) } } else { - yyv4029 = make([]ResourceQuota, yyrl4029) + yyv4058 = make([]ResourceQuota, yyrl4058) } - yyc4029 = true - yyrr4029 = len(yyv4029) - if yyrg4029 { - copy(yyv4029, yyv24029) + yyc4058 = true + yyrr4058 = len(yyv4058) + if yyrg4058 { + copy(yyv4058, yyv24058) } - } else if yyl4029 != len(yyv4029) { - yyv4029 = yyv4029[:yyl4029] - yyc4029 = true + } else if yyl4058 != len(yyv4058) { + yyv4058 = yyv4058[:yyl4058] + yyc4058 = true } - yyj4029 := 0 - for ; yyj4029 < yyrr4029; yyj4029++ { - yyh4029.ElemContainerState(yyj4029) + yyj4058 := 0 + for ; yyj4058 < yyrr4058; yyj4058++ { + yyh4058.ElemContainerState(yyj4058) if r.TryDecodeAsNil() { - yyv4029[yyj4029] = ResourceQuota{} + yyv4058[yyj4058] = ResourceQuota{} } else { - yyv4030 := &yyv4029[yyj4029] - yyv4030.CodecDecodeSelf(d) + yyv4059 := &yyv4058[yyj4058] + yyv4059.CodecDecodeSelf(d) } } - if yyrt4029 { - for ; yyj4029 < yyl4029; yyj4029++ { - yyv4029 = append(yyv4029, ResourceQuota{}) - yyh4029.ElemContainerState(yyj4029) + if yyrt4058 { + for ; yyj4058 < yyl4058; yyj4058++ { + yyv4058 = append(yyv4058, ResourceQuota{}) + yyh4058.ElemContainerState(yyj4058) if r.TryDecodeAsNil() { - yyv4029[yyj4029] = ResourceQuota{} + yyv4058[yyj4058] = ResourceQuota{} } else { - yyv4031 := &yyv4029[yyj4029] - yyv4031.CodecDecodeSelf(d) + yyv4060 := &yyv4058[yyj4058] + yyv4060.CodecDecodeSelf(d) } } } } else { - yyj4029 := 0 - for ; !r.CheckBreak(); yyj4029++ { + yyj4058 := 0 + for ; !r.CheckBreak(); yyj4058++ { - if yyj4029 >= len(yyv4029) { - yyv4029 = append(yyv4029, ResourceQuota{}) // var yyz4029 ResourceQuota - yyc4029 = true + if yyj4058 >= len(yyv4058) { + yyv4058 = append(yyv4058, ResourceQuota{}) // var yyz4058 ResourceQuota + yyc4058 = true } - yyh4029.ElemContainerState(yyj4029) - if yyj4029 < len(yyv4029) { + yyh4058.ElemContainerState(yyj4058) + if yyj4058 < len(yyv4058) { if r.TryDecodeAsNil() { - yyv4029[yyj4029] = ResourceQuota{} + yyv4058[yyj4058] = ResourceQuota{} } else { - yyv4032 := &yyv4029[yyj4029] - yyv4032.CodecDecodeSelf(d) + yyv4061 := &yyv4058[yyj4058] + yyv4061.CodecDecodeSelf(d) } } else { @@ -51622,17 +52009,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4029 < len(yyv4029) { - yyv4029 = yyv4029[:yyj4029] - yyc4029 = true - } else if yyj4029 == 0 && yyv4029 == nil { - yyv4029 = []ResourceQuota{} - yyc4029 = true + if yyj4058 < len(yyv4058) { + yyv4058 = yyv4058[:yyj4058] + yyc4058 = true + } else if yyj4058 == 0 && yyv4058 == nil { + yyv4058 = []ResourceQuota{} + yyc4058 = true } } - yyh4029.End() - if yyc4029 { - *v = yyv4029 + yyh4058.End() + if yyc4058 { + *v = yyv4058 } } @@ -51641,23 +52028,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4033, yyv4033 := range v { + for yyk4062, yyv4062 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4034 := z.EncBinary() - _ = yym4034 + yym4063 := z.EncBinary() + _ = yym4063 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4033)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4062)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4033 == nil { + if yyv4062 == nil { r.EncodeNil() } else { - yym4035 := z.EncBinary() - _ = yym4035 + yym4064 := z.EncBinary() + _ = yym4064 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4033)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4062)) } } } @@ -51669,80 +52056,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4036 := *v - yyl4036 := r.ReadMapStart() - yybh4036 := z.DecBasicHandle() - if yyv4036 == nil { - yyrl4036, _ := z.DecInferLen(yyl4036, yybh4036.MaxInitLen, 40) - yyv4036 = make(map[string][]uint8, yyrl4036) - *v = yyv4036 + yyv4065 := *v + yyl4065 := r.ReadMapStart() + yybh4065 := z.DecBasicHandle() + if yyv4065 == nil { + yyrl4065, _ := z.DecInferLen(yyl4065, yybh4065.MaxInitLen, 40) + yyv4065 = make(map[string][]uint8, yyrl4065) + *v = yyv4065 } - var yymk4036 string - var yymv4036 []uint8 - var yymg4036 bool - if yybh4036.MapValueReset { - yymg4036 = true + var yymk4065 string + var yymv4065 []uint8 + var yymg4065 bool + if yybh4065.MapValueReset { + yymg4065 = true } - if yyl4036 > 0 { - for yyj4036 := 0; yyj4036 < yyl4036; yyj4036++ { + if yyl4065 > 0 { + for yyj4065 := 0; yyj4065 < yyl4065; yyj4065++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4036 = "" + yymk4065 = "" } else { - yymk4036 = string(r.DecodeString()) + yymk4065 = string(r.DecodeString()) } - if yymg4036 { - yymv4036 = yyv4036[yymk4036] + if yymg4065 { + yymv4065 = yyv4065[yymk4065] } else { - yymv4036 = nil + yymv4065 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4036 = nil + yymv4065 = nil } else { - yyv4038 := &yymv4036 - yym4039 := z.DecBinary() - _ = yym4039 + yyv4067 := &yymv4065 + yym4068 := z.DecBinary() + _ = yym4068 if false { } else { - *yyv4038 = r.DecodeBytes(*(*[]byte)(yyv4038), false, false) + *yyv4067 = r.DecodeBytes(*(*[]byte)(yyv4067), false, false) } } - if yyv4036 != nil { - yyv4036[yymk4036] = yymv4036 + if yyv4065 != nil { + yyv4065[yymk4065] = yymv4065 } } - } else if yyl4036 < 0 { - for yyj4036 := 0; !r.CheckBreak(); yyj4036++ { + } else if yyl4065 < 0 { + for yyj4065 := 0; !r.CheckBreak(); yyj4065++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4036 = "" + yymk4065 = "" } else { - yymk4036 = string(r.DecodeString()) + yymk4065 = string(r.DecodeString()) } - if yymg4036 { - yymv4036 = yyv4036[yymk4036] + if yymg4065 { + yymv4065 = yyv4065[yymk4065] } else { - yymv4036 = nil + yymv4065 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4036 = nil + yymv4065 = nil } else { - yyv4041 := &yymv4036 - yym4042 := z.DecBinary() - _ = yym4042 + yyv4070 := &yymv4065 + yym4071 := z.DecBinary() + _ = yym4071 if false { } else { - *yyv4041 = r.DecodeBytes(*(*[]byte)(yyv4041), false, false) + *yyv4070 = r.DecodeBytes(*(*[]byte)(yyv4070), false, false) } } - if yyv4036 != nil { - yyv4036[yymk4036] = yymv4036 + if yyv4065 != nil { + yyv4065[yymk4065] = yymv4065 } } } // else len==0: TODO: Should we clear map entries? @@ -51754,10 +52141,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4043 := range v { + for _, yyv4072 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4044 := &yyv4043 - yy4044.CodecEncodeSelf(e) + yy4073 := &yyv4072 + yy4073.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51767,83 +52154,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4045 := *v - yyh4045, yyl4045 := z.DecSliceHelperStart() - var yyc4045 bool - if yyl4045 == 0 { - if yyv4045 == nil { - yyv4045 = []Secret{} - yyc4045 = true - } else if len(yyv4045) != 0 { - yyv4045 = yyv4045[:0] - yyc4045 = true + yyv4074 := *v + yyh4074, yyl4074 := z.DecSliceHelperStart() + var yyc4074 bool + if yyl4074 == 0 { + if yyv4074 == nil { + yyv4074 = []Secret{} + yyc4074 = true + } else if len(yyv4074) != 0 { + yyv4074 = yyv4074[:0] + yyc4074 = true } - } else if yyl4045 > 0 { - var yyrr4045, yyrl4045 int - var yyrt4045 bool - if yyl4045 > cap(yyv4045) { + } else if yyl4074 > 0 { + var yyrr4074, yyrl4074 int + var yyrt4074 bool + if yyl4074 > cap(yyv4074) { - yyrg4045 := len(yyv4045) > 0 - yyv24045 := yyv4045 - yyrl4045, yyrt4045 = z.DecInferLen(yyl4045, z.DecBasicHandle().MaxInitLen, 216) - if yyrt4045 { - if yyrl4045 <= cap(yyv4045) { - yyv4045 = yyv4045[:yyrl4045] + yyrg4074 := len(yyv4074) > 0 + yyv24074 := yyv4074 + yyrl4074, yyrt4074 = z.DecInferLen(yyl4074, z.DecBasicHandle().MaxInitLen, 216) + if yyrt4074 { + if yyrl4074 <= cap(yyv4074) { + yyv4074 = yyv4074[:yyrl4074] } else { - yyv4045 = make([]Secret, yyrl4045) + yyv4074 = make([]Secret, yyrl4074) } } else { - yyv4045 = make([]Secret, yyrl4045) + yyv4074 = make([]Secret, yyrl4074) } - yyc4045 = true - yyrr4045 = len(yyv4045) - if yyrg4045 { - copy(yyv4045, yyv24045) + yyc4074 = true + yyrr4074 = len(yyv4074) + if yyrg4074 { + copy(yyv4074, yyv24074) } - } else if yyl4045 != len(yyv4045) { - yyv4045 = yyv4045[:yyl4045] - yyc4045 = true + } else if yyl4074 != len(yyv4074) { + yyv4074 = yyv4074[:yyl4074] + yyc4074 = true } - yyj4045 := 0 - for ; yyj4045 < yyrr4045; yyj4045++ { - yyh4045.ElemContainerState(yyj4045) + yyj4074 := 0 + for ; yyj4074 < yyrr4074; yyj4074++ { + yyh4074.ElemContainerState(yyj4074) if r.TryDecodeAsNil() { - yyv4045[yyj4045] = Secret{} + yyv4074[yyj4074] = Secret{} } else { - yyv4046 := &yyv4045[yyj4045] - yyv4046.CodecDecodeSelf(d) + yyv4075 := &yyv4074[yyj4074] + yyv4075.CodecDecodeSelf(d) } } - if yyrt4045 { - for ; yyj4045 < yyl4045; yyj4045++ { - yyv4045 = append(yyv4045, Secret{}) - yyh4045.ElemContainerState(yyj4045) + if yyrt4074 { + for ; yyj4074 < yyl4074; yyj4074++ { + yyv4074 = append(yyv4074, Secret{}) + yyh4074.ElemContainerState(yyj4074) if r.TryDecodeAsNil() { - yyv4045[yyj4045] = Secret{} + yyv4074[yyj4074] = Secret{} } else { - yyv4047 := &yyv4045[yyj4045] - yyv4047.CodecDecodeSelf(d) + yyv4076 := &yyv4074[yyj4074] + yyv4076.CodecDecodeSelf(d) } } } } else { - yyj4045 := 0 - for ; !r.CheckBreak(); yyj4045++ { + yyj4074 := 0 + for ; !r.CheckBreak(); yyj4074++ { - if yyj4045 >= len(yyv4045) { - yyv4045 = append(yyv4045, Secret{}) // var yyz4045 Secret - yyc4045 = true + if yyj4074 >= len(yyv4074) { + yyv4074 = append(yyv4074, Secret{}) // var yyz4074 Secret + yyc4074 = true } - yyh4045.ElemContainerState(yyj4045) - if yyj4045 < len(yyv4045) { + yyh4074.ElemContainerState(yyj4074) + if yyj4074 < len(yyv4074) { if r.TryDecodeAsNil() { - yyv4045[yyj4045] = Secret{} + yyv4074[yyj4074] = Secret{} } else { - yyv4048 := &yyv4045[yyj4045] - yyv4048.CodecDecodeSelf(d) + yyv4077 := &yyv4074[yyj4074] + yyv4077.CodecDecodeSelf(d) } } else { @@ -51851,17 +52238,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4045 < len(yyv4045) { - yyv4045 = yyv4045[:yyj4045] - yyc4045 = true - } else if yyj4045 == 0 && yyv4045 == nil { - yyv4045 = []Secret{} - yyc4045 = true + if yyj4074 < len(yyv4074) { + yyv4074 = yyv4074[:yyj4074] + yyc4074 = true + } else if yyj4074 == 0 && yyv4074 == nil { + yyv4074 = []Secret{} + yyc4074 = true } } - yyh4045.End() - if yyc4045 { - *v = yyv4045 + yyh4074.End() + if yyc4074 { + *v = yyv4074 } } @@ -51870,10 +52257,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4049 := range v { + for _, yyv4078 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4050 := &yyv4049 - yy4050.CodecEncodeSelf(e) + yy4079 := &yyv4078 + yy4079.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51883,83 +52270,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4051 := *v - yyh4051, yyl4051 := z.DecSliceHelperStart() - var yyc4051 bool - if yyl4051 == 0 { - if yyv4051 == nil { - yyv4051 = []ConfigMap{} - yyc4051 = true - } else if len(yyv4051) != 0 { - yyv4051 = yyv4051[:0] - yyc4051 = true + yyv4080 := *v + yyh4080, yyl4080 := z.DecSliceHelperStart() + var yyc4080 bool + if yyl4080 == 0 { + if yyv4080 == nil { + yyv4080 = []ConfigMap{} + yyc4080 = true + } else if len(yyv4080) != 0 { + yyv4080 = yyv4080[:0] + yyc4080 = true } - } else if yyl4051 > 0 { - var yyrr4051, yyrl4051 int - var yyrt4051 bool - if yyl4051 > cap(yyv4051) { + } else if yyl4080 > 0 { + var yyrr4080, yyrl4080 int + var yyrt4080 bool + if yyl4080 > cap(yyv4080) { - yyrg4051 := len(yyv4051) > 0 - yyv24051 := yyv4051 - yyrl4051, yyrt4051 = z.DecInferLen(yyl4051, z.DecBasicHandle().MaxInitLen, 200) - if yyrt4051 { - if yyrl4051 <= cap(yyv4051) { - yyv4051 = yyv4051[:yyrl4051] + yyrg4080 := len(yyv4080) > 0 + yyv24080 := yyv4080 + yyrl4080, yyrt4080 = z.DecInferLen(yyl4080, z.DecBasicHandle().MaxInitLen, 200) + if yyrt4080 { + if yyrl4080 <= cap(yyv4080) { + yyv4080 = yyv4080[:yyrl4080] } else { - yyv4051 = make([]ConfigMap, yyrl4051) + yyv4080 = make([]ConfigMap, yyrl4080) } } else { - yyv4051 = make([]ConfigMap, yyrl4051) + yyv4080 = make([]ConfigMap, yyrl4080) } - yyc4051 = true - yyrr4051 = len(yyv4051) - if yyrg4051 { - copy(yyv4051, yyv24051) + yyc4080 = true + yyrr4080 = len(yyv4080) + if yyrg4080 { + copy(yyv4080, yyv24080) } - } else if yyl4051 != len(yyv4051) { - yyv4051 = yyv4051[:yyl4051] - yyc4051 = true + } else if yyl4080 != len(yyv4080) { + yyv4080 = yyv4080[:yyl4080] + yyc4080 = true } - yyj4051 := 0 - for ; yyj4051 < yyrr4051; yyj4051++ { - yyh4051.ElemContainerState(yyj4051) + yyj4080 := 0 + for ; yyj4080 < yyrr4080; yyj4080++ { + yyh4080.ElemContainerState(yyj4080) if r.TryDecodeAsNil() { - yyv4051[yyj4051] = ConfigMap{} + yyv4080[yyj4080] = ConfigMap{} } else { - yyv4052 := &yyv4051[yyj4051] - yyv4052.CodecDecodeSelf(d) + yyv4081 := &yyv4080[yyj4080] + yyv4081.CodecDecodeSelf(d) } } - if yyrt4051 { - for ; yyj4051 < yyl4051; yyj4051++ { - yyv4051 = append(yyv4051, ConfigMap{}) - yyh4051.ElemContainerState(yyj4051) + if yyrt4080 { + for ; yyj4080 < yyl4080; yyj4080++ { + yyv4080 = append(yyv4080, ConfigMap{}) + yyh4080.ElemContainerState(yyj4080) if r.TryDecodeAsNil() { - yyv4051[yyj4051] = ConfigMap{} + yyv4080[yyj4080] = ConfigMap{} } else { - yyv4053 := &yyv4051[yyj4051] - yyv4053.CodecDecodeSelf(d) + yyv4082 := &yyv4080[yyj4080] + yyv4082.CodecDecodeSelf(d) } } } } else { - yyj4051 := 0 - for ; !r.CheckBreak(); yyj4051++ { + yyj4080 := 0 + for ; !r.CheckBreak(); yyj4080++ { - if yyj4051 >= len(yyv4051) { - yyv4051 = append(yyv4051, ConfigMap{}) // var yyz4051 ConfigMap - yyc4051 = true + if yyj4080 >= len(yyv4080) { + yyv4080 = append(yyv4080, ConfigMap{}) // var yyz4080 ConfigMap + yyc4080 = true } - yyh4051.ElemContainerState(yyj4051) - if yyj4051 < len(yyv4051) { + yyh4080.ElemContainerState(yyj4080) + if yyj4080 < len(yyv4080) { if r.TryDecodeAsNil() { - yyv4051[yyj4051] = ConfigMap{} + yyv4080[yyj4080] = ConfigMap{} } else { - yyv4054 := &yyv4051[yyj4051] - yyv4054.CodecDecodeSelf(d) + yyv4083 := &yyv4080[yyj4080] + yyv4083.CodecDecodeSelf(d) } } else { @@ -51967,17 +52354,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4051 < len(yyv4051) { - yyv4051 = yyv4051[:yyj4051] - yyc4051 = true - } else if yyj4051 == 0 && yyv4051 == nil { - yyv4051 = []ConfigMap{} - yyc4051 = true + if yyj4080 < len(yyv4080) { + yyv4080 = yyv4080[:yyj4080] + yyc4080 = true + } else if yyj4080 == 0 && yyv4080 == nil { + yyv4080 = []ConfigMap{} + yyc4080 = true } } - yyh4051.End() - if yyc4051 { - *v = yyv4051 + yyh4080.End() + if yyc4080 { + *v = yyv4080 } } @@ -51986,10 +52373,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4055 := range v { + for _, yyv4084 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4056 := &yyv4055 - yy4056.CodecEncodeSelf(e) + yy4085 := &yyv4084 + yy4085.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51999,83 +52386,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4057 := *v - yyh4057, yyl4057 := z.DecSliceHelperStart() - var yyc4057 bool - if yyl4057 == 0 { - if yyv4057 == nil { - yyv4057 = []ComponentCondition{} - yyc4057 = true - } else if len(yyv4057) != 0 { - yyv4057 = yyv4057[:0] - yyc4057 = true + yyv4086 := *v + yyh4086, yyl4086 := z.DecSliceHelperStart() + var yyc4086 bool + if yyl4086 == 0 { + if yyv4086 == nil { + yyv4086 = []ComponentCondition{} + yyc4086 = true + } else if len(yyv4086) != 0 { + yyv4086 = yyv4086[:0] + yyc4086 = true } - } else if yyl4057 > 0 { - var yyrr4057, yyrl4057 int - var yyrt4057 bool - if yyl4057 > cap(yyv4057) { + } else if yyl4086 > 0 { + var yyrr4086, yyrl4086 int + var yyrt4086 bool + if yyl4086 > cap(yyv4086) { - yyrg4057 := len(yyv4057) > 0 - yyv24057 := yyv4057 - yyrl4057, yyrt4057 = z.DecInferLen(yyl4057, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4057 { - if yyrl4057 <= cap(yyv4057) { - yyv4057 = yyv4057[:yyrl4057] + yyrg4086 := len(yyv4086) > 0 + yyv24086 := yyv4086 + yyrl4086, yyrt4086 = z.DecInferLen(yyl4086, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4086 { + if yyrl4086 <= cap(yyv4086) { + yyv4086 = yyv4086[:yyrl4086] } else { - yyv4057 = make([]ComponentCondition, yyrl4057) + yyv4086 = make([]ComponentCondition, yyrl4086) } } else { - yyv4057 = make([]ComponentCondition, yyrl4057) + yyv4086 = make([]ComponentCondition, yyrl4086) } - yyc4057 = true - yyrr4057 = len(yyv4057) - if yyrg4057 { - copy(yyv4057, yyv24057) + yyc4086 = true + yyrr4086 = len(yyv4086) + if yyrg4086 { + copy(yyv4086, yyv24086) } - } else if yyl4057 != len(yyv4057) { - yyv4057 = yyv4057[:yyl4057] - yyc4057 = true + } else if yyl4086 != len(yyv4086) { + yyv4086 = yyv4086[:yyl4086] + yyc4086 = true } - yyj4057 := 0 - for ; yyj4057 < yyrr4057; yyj4057++ { - yyh4057.ElemContainerState(yyj4057) + yyj4086 := 0 + for ; yyj4086 < yyrr4086; yyj4086++ { + yyh4086.ElemContainerState(yyj4086) if r.TryDecodeAsNil() { - yyv4057[yyj4057] = ComponentCondition{} + yyv4086[yyj4086] = ComponentCondition{} } else { - yyv4058 := &yyv4057[yyj4057] - yyv4058.CodecDecodeSelf(d) + yyv4087 := &yyv4086[yyj4086] + yyv4087.CodecDecodeSelf(d) } } - if yyrt4057 { - for ; yyj4057 < yyl4057; yyj4057++ { - yyv4057 = append(yyv4057, ComponentCondition{}) - yyh4057.ElemContainerState(yyj4057) + if yyrt4086 { + for ; yyj4086 < yyl4086; yyj4086++ { + yyv4086 = append(yyv4086, ComponentCondition{}) + yyh4086.ElemContainerState(yyj4086) if r.TryDecodeAsNil() { - yyv4057[yyj4057] = ComponentCondition{} + yyv4086[yyj4086] = ComponentCondition{} } else { - yyv4059 := &yyv4057[yyj4057] - yyv4059.CodecDecodeSelf(d) + yyv4088 := &yyv4086[yyj4086] + yyv4088.CodecDecodeSelf(d) } } } } else { - yyj4057 := 0 - for ; !r.CheckBreak(); yyj4057++ { + yyj4086 := 0 + for ; !r.CheckBreak(); yyj4086++ { - if yyj4057 >= len(yyv4057) { - yyv4057 = append(yyv4057, ComponentCondition{}) // var yyz4057 ComponentCondition - yyc4057 = true + if yyj4086 >= len(yyv4086) { + yyv4086 = append(yyv4086, ComponentCondition{}) // var yyz4086 ComponentCondition + yyc4086 = true } - yyh4057.ElemContainerState(yyj4057) - if yyj4057 < len(yyv4057) { + yyh4086.ElemContainerState(yyj4086) + if yyj4086 < len(yyv4086) { if r.TryDecodeAsNil() { - yyv4057[yyj4057] = ComponentCondition{} + yyv4086[yyj4086] = ComponentCondition{} } else { - yyv4060 := &yyv4057[yyj4057] - yyv4060.CodecDecodeSelf(d) + yyv4089 := &yyv4086[yyj4086] + yyv4089.CodecDecodeSelf(d) } } else { @@ -52083,17 +52470,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4057 < len(yyv4057) { - yyv4057 = yyv4057[:yyj4057] - yyc4057 = true - } else if yyj4057 == 0 && yyv4057 == nil { - yyv4057 = []ComponentCondition{} - yyc4057 = true + if yyj4086 < len(yyv4086) { + yyv4086 = yyv4086[:yyj4086] + yyc4086 = true + } else if yyj4086 == 0 && yyv4086 == nil { + yyv4086 = []ComponentCondition{} + yyc4086 = true } } - yyh4057.End() - if yyc4057 { - *v = yyv4057 + yyh4086.End() + if yyc4086 { + *v = yyv4086 } } @@ -52102,10 +52489,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4061 := range v { + for _, yyv4090 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4062 := &yyv4061 - yy4062.CodecEncodeSelf(e) + yy4091 := &yyv4090 + yy4091.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52115,83 +52502,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4063 := *v - yyh4063, yyl4063 := z.DecSliceHelperStart() - var yyc4063 bool - if yyl4063 == 0 { - if yyv4063 == nil { - yyv4063 = []ComponentStatus{} - yyc4063 = true - } else if len(yyv4063) != 0 { - yyv4063 = yyv4063[:0] - yyc4063 = true + yyv4092 := *v + yyh4092, yyl4092 := z.DecSliceHelperStart() + var yyc4092 bool + if yyl4092 == 0 { + if yyv4092 == nil { + yyv4092 = []ComponentStatus{} + yyc4092 = true + } else if len(yyv4092) != 0 { + yyv4092 = yyv4092[:0] + yyc4092 = true } - } else if yyl4063 > 0 { - var yyrr4063, yyrl4063 int - var yyrt4063 bool - if yyl4063 > cap(yyv4063) { + } else if yyl4092 > 0 { + var yyrr4092, yyrl4092 int + var yyrt4092 bool + if yyl4092 > cap(yyv4092) { - yyrg4063 := len(yyv4063) > 0 - yyv24063 := yyv4063 - yyrl4063, yyrt4063 = z.DecInferLen(yyl4063, z.DecBasicHandle().MaxInitLen, 216) - if yyrt4063 { - if yyrl4063 <= cap(yyv4063) { - yyv4063 = yyv4063[:yyrl4063] + yyrg4092 := len(yyv4092) > 0 + yyv24092 := yyv4092 + yyrl4092, yyrt4092 = z.DecInferLen(yyl4092, z.DecBasicHandle().MaxInitLen, 216) + if yyrt4092 { + if yyrl4092 <= cap(yyv4092) { + yyv4092 = yyv4092[:yyrl4092] } else { - yyv4063 = make([]ComponentStatus, yyrl4063) + yyv4092 = make([]ComponentStatus, yyrl4092) } } else { - yyv4063 = make([]ComponentStatus, yyrl4063) + yyv4092 = make([]ComponentStatus, yyrl4092) } - yyc4063 = true - yyrr4063 = len(yyv4063) - if yyrg4063 { - copy(yyv4063, yyv24063) + yyc4092 = true + yyrr4092 = len(yyv4092) + if yyrg4092 { + copy(yyv4092, yyv24092) } - } else if yyl4063 != len(yyv4063) { - yyv4063 = yyv4063[:yyl4063] - yyc4063 = true + } else if yyl4092 != len(yyv4092) { + yyv4092 = yyv4092[:yyl4092] + yyc4092 = true } - yyj4063 := 0 - for ; yyj4063 < yyrr4063; yyj4063++ { - yyh4063.ElemContainerState(yyj4063) + yyj4092 := 0 + for ; yyj4092 < yyrr4092; yyj4092++ { + yyh4092.ElemContainerState(yyj4092) if r.TryDecodeAsNil() { - yyv4063[yyj4063] = ComponentStatus{} + yyv4092[yyj4092] = ComponentStatus{} } else { - yyv4064 := &yyv4063[yyj4063] - yyv4064.CodecDecodeSelf(d) + yyv4093 := &yyv4092[yyj4092] + yyv4093.CodecDecodeSelf(d) } } - if yyrt4063 { - for ; yyj4063 < yyl4063; yyj4063++ { - yyv4063 = append(yyv4063, ComponentStatus{}) - yyh4063.ElemContainerState(yyj4063) + if yyrt4092 { + for ; yyj4092 < yyl4092; yyj4092++ { + yyv4092 = append(yyv4092, ComponentStatus{}) + yyh4092.ElemContainerState(yyj4092) if r.TryDecodeAsNil() { - yyv4063[yyj4063] = ComponentStatus{} + yyv4092[yyj4092] = ComponentStatus{} } else { - yyv4065 := &yyv4063[yyj4063] - yyv4065.CodecDecodeSelf(d) + yyv4094 := &yyv4092[yyj4092] + yyv4094.CodecDecodeSelf(d) } } } } else { - yyj4063 := 0 - for ; !r.CheckBreak(); yyj4063++ { + yyj4092 := 0 + for ; !r.CheckBreak(); yyj4092++ { - if yyj4063 >= len(yyv4063) { - yyv4063 = append(yyv4063, ComponentStatus{}) // var yyz4063 ComponentStatus - yyc4063 = true + if yyj4092 >= len(yyv4092) { + yyv4092 = append(yyv4092, ComponentStatus{}) // var yyz4092 ComponentStatus + yyc4092 = true } - yyh4063.ElemContainerState(yyj4063) - if yyj4063 < len(yyv4063) { + yyh4092.ElemContainerState(yyj4092) + if yyj4092 < len(yyv4092) { if r.TryDecodeAsNil() { - yyv4063[yyj4063] = ComponentStatus{} + yyv4092[yyj4092] = ComponentStatus{} } else { - yyv4066 := &yyv4063[yyj4063] - yyv4066.CodecDecodeSelf(d) + yyv4095 := &yyv4092[yyj4092] + yyv4095.CodecDecodeSelf(d) } } else { @@ -52199,16 +52586,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4063 < len(yyv4063) { - yyv4063 = yyv4063[:yyj4063] - yyc4063 = true - } else if yyj4063 == 0 && yyv4063 == nil { - yyv4063 = []ComponentStatus{} - yyc4063 = true + if yyj4092 < len(yyv4092) { + yyv4092 = yyv4092[:yyj4092] + yyc4092 = true + } else if yyj4092 == 0 && yyv4092 == nil { + yyv4092 = []ComponentStatus{} + yyc4092 = true } } - yyh4063.End() - if yyc4063 { - *v = yyv4063 + yyh4092.End() + if yyc4092 { + *v = yyv4092 } } diff --git a/pkg/api/types.go b/pkg/api/types.go index 1d09bffeb5..2ce3c985c6 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -752,16 +752,27 @@ type SecretKeySelector struct { Key string `json:"key"` } +// HTTPHeader describes a custom header to be used in HTTP probes +type HTTPHeader struct { + // The header field name + Name string `json:"name"` + // The header field value + Value string `json:"value"` +} + // HTTPGetAction describes an action based on HTTP Get requests. type HTTPGetAction struct { // Optional: Path to access on the HTTP server. Path string `json:"path,omitempty"` // Required: Name or number of the port to access on the container. Port intstr.IntOrString `json:"port,omitempty"` - // Optional: Host name to connect to, defaults to the pod IP. + // Optional: Host name to connect to, defaults to the pod IP. You + // probably want to set "Host" in httpHeaders instead. Host string `json:"host,omitempty"` // Optional: Scheme to use for connecting to the host, defaults to HTTP. Scheme URIScheme `json:"scheme,omitempty"` + // Optional: Custom headers to set in the request. HTTP allows repeated headers. + HTTPHeaders []HTTPHeader `json:"httpHeaders,omitempty"` } // URIScheme identifies the scheme used for connection to a host for Get actions diff --git a/pkg/api/v1/conversion_generated.go b/pkg/api/v1/conversion_generated.go index 61393c1daf..c056e36b87 100644 --- a/pkg/api/v1/conversion_generated.go +++ b/pkg/api/v1/conversion_generated.go @@ -977,6 +977,16 @@ func autoConvert_api_HTTPGetAction_To_v1_HTTPGetAction(in *api.HTTPGetAction, ou } out.Host = in.Host out.Scheme = URIScheme(in.Scheme) + if in.HTTPHeaders != nil { + out.HTTPHeaders = make([]HTTPHeader, len(in.HTTPHeaders)) + for i := range in.HTTPHeaders { + if err := Convert_api_HTTPHeader_To_v1_HTTPHeader(&in.HTTPHeaders[i], &out.HTTPHeaders[i], s); err != nil { + return err + } + } + } else { + out.HTTPHeaders = nil + } return nil } @@ -984,6 +994,19 @@ func Convert_api_HTTPGetAction_To_v1_HTTPGetAction(in *api.HTTPGetAction, out *H return autoConvert_api_HTTPGetAction_To_v1_HTTPGetAction(in, out, s) } +func autoConvert_api_HTTPHeader_To_v1_HTTPHeader(in *api.HTTPHeader, out *HTTPHeader, s conversion.Scope) error { + if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { + defaulting.(func(*api.HTTPHeader))(in) + } + out.Name = in.Name + out.Value = in.Value + return nil +} + +func Convert_api_HTTPHeader_To_v1_HTTPHeader(in *api.HTTPHeader, out *HTTPHeader, s conversion.Scope) error { + return autoConvert_api_HTTPHeader_To_v1_HTTPHeader(in, out, s) +} + func autoConvert_api_Handler_To_v1_Handler(in *api.Handler, out *Handler, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*api.Handler))(in) @@ -4155,6 +4178,16 @@ func autoConvert_v1_HTTPGetAction_To_api_HTTPGetAction(in *HTTPGetAction, out *a } out.Host = in.Host out.Scheme = api.URIScheme(in.Scheme) + if in.HTTPHeaders != nil { + out.HTTPHeaders = make([]api.HTTPHeader, len(in.HTTPHeaders)) + for i := range in.HTTPHeaders { + if err := Convert_v1_HTTPHeader_To_api_HTTPHeader(&in.HTTPHeaders[i], &out.HTTPHeaders[i], s); err != nil { + return err + } + } + } else { + out.HTTPHeaders = nil + } return nil } @@ -4162,6 +4195,19 @@ func Convert_v1_HTTPGetAction_To_api_HTTPGetAction(in *HTTPGetAction, out *api.H return autoConvert_v1_HTTPGetAction_To_api_HTTPGetAction(in, out, s) } +func autoConvert_v1_HTTPHeader_To_api_HTTPHeader(in *HTTPHeader, out *api.HTTPHeader, s conversion.Scope) error { + if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { + defaulting.(func(*HTTPHeader))(in) + } + out.Name = in.Name + out.Value = in.Value + return nil +} + +func Convert_v1_HTTPHeader_To_api_HTTPHeader(in *HTTPHeader, out *api.HTTPHeader, s conversion.Scope) error { + return autoConvert_v1_HTTPHeader_To_api_HTTPHeader(in, out, s) +} + func autoConvert_v1_Handler_To_api_Handler(in *Handler, out *api.Handler, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*Handler))(in) @@ -6279,6 +6325,7 @@ func init() { autoConvert_api_GitRepoVolumeSource_To_v1_GitRepoVolumeSource, autoConvert_api_GlusterfsVolumeSource_To_v1_GlusterfsVolumeSource, autoConvert_api_HTTPGetAction_To_v1_HTTPGetAction, + autoConvert_api_HTTPHeader_To_v1_HTTPHeader, autoConvert_api_Handler_To_v1_Handler, autoConvert_api_HostPathVolumeSource_To_v1_HostPathVolumeSource, autoConvert_api_ISCSIVolumeSource_To_v1_ISCSIVolumeSource, @@ -6405,6 +6452,7 @@ func init() { autoConvert_v1_GitRepoVolumeSource_To_api_GitRepoVolumeSource, autoConvert_v1_GlusterfsVolumeSource_To_api_GlusterfsVolumeSource, autoConvert_v1_HTTPGetAction_To_api_HTTPGetAction, + autoConvert_v1_HTTPHeader_To_api_HTTPHeader, autoConvert_v1_Handler_To_api_Handler, autoConvert_v1_HostPathVolumeSource_To_api_HostPathVolumeSource, autoConvert_v1_ISCSIVolumeSource_To_api_ISCSIVolumeSource, diff --git a/pkg/api/v1/deep_copy_generated.go b/pkg/api/v1/deep_copy_generated.go index f42db54f7b..2e278c11eb 100644 --- a/pkg/api/v1/deep_copy_generated.go +++ b/pkg/api/v1/deep_copy_generated.go @@ -749,6 +749,22 @@ func deepCopy_v1_HTTPGetAction(in HTTPGetAction, out *HTTPGetAction, c *conversi } out.Host = in.Host out.Scheme = in.Scheme + if in.HTTPHeaders != nil { + out.HTTPHeaders = make([]HTTPHeader, len(in.HTTPHeaders)) + for i := range in.HTTPHeaders { + if err := deepCopy_v1_HTTPHeader(in.HTTPHeaders[i], &out.HTTPHeaders[i], c); err != nil { + return err + } + } + } else { + out.HTTPHeaders = nil + } + return nil +} + +func deepCopy_v1_HTTPHeader(in HTTPHeader, out *HTTPHeader, c *conversion.Cloner) error { + out.Name = in.Name + out.Value = in.Value return nil } @@ -2576,6 +2592,7 @@ func init() { deepCopy_v1_GitRepoVolumeSource, deepCopy_v1_GlusterfsVolumeSource, deepCopy_v1_HTTPGetAction, + deepCopy_v1_HTTPHeader, deepCopy_v1_Handler, deepCopy_v1_HostPathVolumeSource, deepCopy_v1_ISCSIVolumeSource, diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index b76bd65e31..b81b02fb08 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -14114,7 +14114,7 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -14128,17 +14128,14 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep1007 := !z.EncBinary() yy2arr1007 := z.EncBasicHandle().StructToArray - var yyq1007 [4]bool + var yyq1007 [2]bool _, _, _ = yysep1007, yyq1007, yy2arr1007 const yyr1007 bool = false - yyq1007[0] = x.Path != "" - yyq1007[2] = x.Host != "" - yyq1007[3] = x.Scheme != "" var yynn1007 int if yyr1007 || yy2arr1007 { - r.EncodeArrayStart(4) + r.EncodeArrayStart(2) } else { - yynn1007 = 1 + yynn1007 = 2 for _, b := range yyq1007 { if b { yynn1007++ @@ -14149,9 +14146,216 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr1007 || yy2arr1007 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1007[0] { - yym1009 := z.EncBinary() - _ = yym1009 + yym1009 := z.EncBinary() + _ = yym1009 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1010 := z.EncBinary() + _ = yym1010 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + if yyr1007 || yy2arr1007 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1012 := z.EncBinary() + _ = yym1012 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("value")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1013 := z.EncBinary() + _ = yym1013 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + } + } + if yyr1007 || yy2arr1007 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1014 := z.DecBinary() + _ = yym1014 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1015 := r.ContainerType() + if yyct1015 == codecSelferValueTypeMap1234 { + yyl1015 := r.ReadMapStart() + if yyl1015 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1015, d) + } + } else if yyct1015 == codecSelferValueTypeArray1234 { + yyl1015 := r.ReadArrayStart() + if yyl1015 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1015, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1016Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1016Slc + var yyhl1016 bool = l >= 0 + for yyj1016 := 0; ; yyj1016++ { + if yyhl1016 { + if yyj1016 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1016Slc = r.DecodeBytes(yys1016Slc, true, true) + yys1016 := string(yys1016Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1016 { + case "name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + case "value": + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys1016) + } // end switch yys1016 + } // end for yyj1016 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1019 int + var yyb1019 bool + var yyhl1019 bool = l >= 0 + yyj1019++ + if yyhl1019 { + yyb1019 = yyj1019 > l + } else { + yyb1019 = r.CheckBreak() + } + if yyb1019 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + yyj1019++ + if yyhl1019 { + yyb1019 = yyj1019 > l + } else { + yyb1019 = r.CheckBreak() + } + if yyb1019 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = string(r.DecodeString()) + } + for { + yyj1019++ + if yyhl1019 { + yyb1019 = yyj1019 > l + } else { + yyb1019 = r.CheckBreak() + } + if yyb1019 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1019-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1022 := z.EncBinary() + _ = yym1022 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1023 := !z.EncBinary() + yy2arr1023 := z.EncBasicHandle().StructToArray + var yyq1023 [5]bool + _, _, _ = yysep1023, yyq1023, yy2arr1023 + const yyr1023 bool = false + yyq1023[0] = x.Path != "" + yyq1023[2] = x.Host != "" + yyq1023[3] = x.Scheme != "" + yyq1023[4] = len(x.HTTPHeaders) != 0 + var yynn1023 int + if yyr1023 || yy2arr1023 { + r.EncodeArrayStart(5) + } else { + yynn1023 = 1 + for _, b := range yyq1023 { + if b { + yynn1023++ + } + } + r.EncodeMapStart(yynn1023) + yynn1023 = 0 + } + if yyr1023 || yy2arr1023 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1023[0] { + yym1025 := z.EncBinary() + _ = yym1025 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -14160,50 +14364,50 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1007[0] { + if yyq1023[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1010 := z.EncBinary() - _ = yym1010 + yym1026 := z.EncBinary() + _ = yym1026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr1007 || yy2arr1007 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1012 := &x.Port - yym1013 := z.EncBinary() - _ = yym1013 + yy1028 := &x.Port + yym1029 := z.EncBinary() + _ = yym1029 if false { - } else if z.HasExtensions() && z.EncExt(yy1012) { - } else if !yym1013 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1012) + } else if z.HasExtensions() && z.EncExt(yy1028) { + } else if !yym1029 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1028) } else { - z.EncFallback(yy1012) + z.EncFallback(yy1028) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1014 := &x.Port - yym1015 := z.EncBinary() - _ = yym1015 + yy1030 := &x.Port + yym1031 := z.EncBinary() + _ = yym1031 if false { - } else if z.HasExtensions() && z.EncExt(yy1014) { - } else if !yym1015 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1014) + } else if z.HasExtensions() && z.EncExt(yy1030) { + } else if !yym1031 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1030) } else { - z.EncFallback(yy1014) + z.EncFallback(yy1030) } } - if yyr1007 || yy2arr1007 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1007[2] { - yym1017 := z.EncBinary() - _ = yym1017 + if yyq1023[2] { + yym1033 := z.EncBinary() + _ = yym1033 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -14212,34 +14416,67 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1007[2] { + if yyq1023[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1018 := z.EncBinary() - _ = yym1018 + yym1034 := z.EncBinary() + _ = yym1034 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr1007 || yy2arr1007 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1007[3] { + if yyq1023[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1007[3] { + if yyq1023[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr1007 || yy2arr1007 { + if yyr1023 || yy2arr1023 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1023[4] { + if x.HTTPHeaders == nil { + r.EncodeNil() + } else { + yym1037 := z.EncBinary() + _ = yym1037 + if false { + } else { + h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1023[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("httpHeaders")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.HTTPHeaders == nil { + r.EncodeNil() + } else { + yym1038 := z.EncBinary() + _ = yym1038 + if false { + } else { + h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) + } + } + } + } + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14252,25 +14489,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1020 := z.DecBinary() - _ = yym1020 + yym1039 := z.DecBinary() + _ = yym1039 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1021 := r.ContainerType() - if yyct1021 == codecSelferValueTypeMap1234 { - yyl1021 := r.ReadMapStart() - if yyl1021 == 0 { + yyct1040 := r.ContainerType() + if yyct1040 == codecSelferValueTypeMap1234 { + yyl1040 := r.ReadMapStart() + if yyl1040 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1021, d) + x.codecDecodeSelfFromMap(yyl1040, d) } - } else if yyct1021 == codecSelferValueTypeArray1234 { - yyl1021 := r.ReadArrayStart() - if yyl1021 == 0 { + } else if yyct1040 == codecSelferValueTypeArray1234 { + yyl1040 := r.ReadArrayStart() + if yyl1040 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1021, d) + x.codecDecodeSelfFromArray(yyl1040, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14282,12 +14519,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1022Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1022Slc - var yyhl1022 bool = l >= 0 - for yyj1022 := 0; ; yyj1022++ { - if yyhl1022 { - if yyj1022 >= l { + var yys1041Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1041Slc + var yyhl1041 bool = l >= 0 + for yyj1041 := 0; ; yyj1041++ { + if yyhl1041 { + if yyj1041 >= l { break } } else { @@ -14296,10 +14533,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1022Slc = r.DecodeBytes(yys1022Slc, true, true) - yys1022 := string(yys1022Slc) + yys1041Slc = r.DecodeBytes(yys1041Slc, true, true) + yys1041 := string(yys1041Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1022 { + switch yys1041 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -14310,15 +14547,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1024 := &x.Port - yym1025 := z.DecBinary() - _ = yym1025 + yyv1043 := &x.Port + yym1044 := z.DecBinary() + _ = yym1044 if false { - } else if z.HasExtensions() && z.DecExt(yyv1024) { - } else if !yym1025 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1024) + } else if z.HasExtensions() && z.DecExt(yyv1043) { + } else if !yym1044 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1043) } else { - z.DecFallback(yyv1024, false) + z.DecFallback(yyv1043, false) } } case "host": @@ -14333,10 +14570,22 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } + case "httpHeaders": + if r.TryDecodeAsNil() { + x.HTTPHeaders = nil + } else { + yyv1047 := &x.HTTPHeaders + yym1048 := z.DecBinary() + _ = yym1048 + if false { + } else { + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1047), d) + } + } default: - z.DecStructFieldNotFound(-1, yys1022) - } // end switch yys1022 - } // end for yyj1022 + z.DecStructFieldNotFound(-1, yys1041) + } // end switch yys1041 + } // end for yyj1041 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14344,16 +14593,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1028 int - var yyb1028 bool - var yyhl1028 bool = l >= 0 - yyj1028++ - if yyhl1028 { - yyb1028 = yyj1028 > l + var yyj1049 int + var yyb1049 bool + var yyhl1049 bool = l >= 0 + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l } else { - yyb1028 = r.CheckBreak() + yyb1049 = r.CheckBreak() } - if yyb1028 { + if yyb1049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14363,13 +14612,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1028++ - if yyhl1028 { - yyb1028 = yyj1028 > l + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l } else { - yyb1028 = r.CheckBreak() + yyb1049 = r.CheckBreak() } - if yyb1028 { + if yyb1049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14377,24 +14626,24 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1030 := &x.Port - yym1031 := z.DecBinary() - _ = yym1031 + yyv1051 := &x.Port + yym1052 := z.DecBinary() + _ = yym1052 if false { - } else if z.HasExtensions() && z.DecExt(yyv1030) { - } else if !yym1031 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1030) + } else if z.HasExtensions() && z.DecExt(yyv1051) { + } else if !yym1052 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1051) } else { - z.DecFallback(yyv1030, false) + z.DecFallback(yyv1051, false) } } - yyj1028++ - if yyhl1028 { - yyb1028 = yyj1028 > l + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l } else { - yyb1028 = r.CheckBreak() + yyb1049 = r.CheckBreak() } - if yyb1028 { + if yyb1049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14404,13 +14653,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj1028++ - if yyhl1028 { - yyb1028 = yyj1028 > l + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l } else { - yyb1028 = r.CheckBreak() + yyb1049 = r.CheckBreak() } - if yyb1028 { + if yyb1049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14420,18 +14669,40 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } - for { - yyj1028++ - if yyhl1028 { - yyb1028 = yyj1028 > l + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l + } else { + yyb1049 = r.CheckBreak() + } + if yyb1049 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.HTTPHeaders = nil + } else { + yyv1055 := &x.HTTPHeaders + yym1056 := z.DecBinary() + _ = yym1056 + if false { } else { - yyb1028 = r.CheckBreak() + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1055), d) } - if yyb1028 { + } + for { + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l + } else { + yyb1049 = r.CheckBreak() + } + if yyb1049 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1028-1, "") + z.DecStructFieldNotFound(yyj1049-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14440,8 +14711,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1034 := z.EncBinary() - _ = yym1034 + yym1057 := z.EncBinary() + _ = yym1057 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -14453,8 +14724,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1035 := z.DecBinary() - _ = yym1035 + yym1058 := z.DecBinary() + _ = yym1058 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -14469,57 +14740,57 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1036 := z.EncBinary() - _ = yym1036 + yym1059 := z.EncBinary() + _ = yym1059 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1037 := !z.EncBinary() - yy2arr1037 := z.EncBasicHandle().StructToArray - var yyq1037 [1]bool - _, _, _ = yysep1037, yyq1037, yy2arr1037 - const yyr1037 bool = false - var yynn1037 int - if yyr1037 || yy2arr1037 { + yysep1060 := !z.EncBinary() + yy2arr1060 := z.EncBasicHandle().StructToArray + var yyq1060 [1]bool + _, _, _ = yysep1060, yyq1060, yy2arr1060 + const yyr1060 bool = false + var yynn1060 int + if yyr1060 || yy2arr1060 { r.EncodeArrayStart(1) } else { - yynn1037 = 1 - for _, b := range yyq1037 { + yynn1060 = 1 + for _, b := range yyq1060 { if b { - yynn1037++ + yynn1060++ } } - r.EncodeMapStart(yynn1037) - yynn1037 = 0 + r.EncodeMapStart(yynn1060) + yynn1060 = 0 } - if yyr1037 || yy2arr1037 { + if yyr1060 || yy2arr1060 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1039 := &x.Port - yym1040 := z.EncBinary() - _ = yym1040 + yy1062 := &x.Port + yym1063 := z.EncBinary() + _ = yym1063 if false { - } else if z.HasExtensions() && z.EncExt(yy1039) { - } else if !yym1040 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1039) + } else if z.HasExtensions() && z.EncExt(yy1062) { + } else if !yym1063 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1062) } else { - z.EncFallback(yy1039) + z.EncFallback(yy1062) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1041 := &x.Port - yym1042 := z.EncBinary() - _ = yym1042 + yy1064 := &x.Port + yym1065 := z.EncBinary() + _ = yym1065 if false { - } else if z.HasExtensions() && z.EncExt(yy1041) { - } else if !yym1042 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1041) + } else if z.HasExtensions() && z.EncExt(yy1064) { + } else if !yym1065 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1064) } else { - z.EncFallback(yy1041) + z.EncFallback(yy1064) } } - if yyr1037 || yy2arr1037 { + if yyr1060 || yy2arr1060 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14532,25 +14803,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1043 := z.DecBinary() - _ = yym1043 + yym1066 := z.DecBinary() + _ = yym1066 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1044 := r.ContainerType() - if yyct1044 == codecSelferValueTypeMap1234 { - yyl1044 := r.ReadMapStart() - if yyl1044 == 0 { + yyct1067 := r.ContainerType() + if yyct1067 == codecSelferValueTypeMap1234 { + yyl1067 := r.ReadMapStart() + if yyl1067 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1044, d) + x.codecDecodeSelfFromMap(yyl1067, d) } - } else if yyct1044 == codecSelferValueTypeArray1234 { - yyl1044 := r.ReadArrayStart() - if yyl1044 == 0 { + } else if yyct1067 == codecSelferValueTypeArray1234 { + yyl1067 := r.ReadArrayStart() + if yyl1067 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1044, d) + x.codecDecodeSelfFromArray(yyl1067, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14562,12 +14833,12 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1045Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1045Slc - var yyhl1045 bool = l >= 0 - for yyj1045 := 0; ; yyj1045++ { - if yyhl1045 { - if yyj1045 >= l { + var yys1068Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1068Slc + var yyhl1068 bool = l >= 0 + for yyj1068 := 0; ; yyj1068++ { + if yyhl1068 { + if yyj1068 >= l { break } } else { @@ -14576,29 +14847,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1045Slc = r.DecodeBytes(yys1045Slc, true, true) - yys1045 := string(yys1045Slc) + yys1068Slc = r.DecodeBytes(yys1068Slc, true, true) + yys1068 := string(yys1068Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1045 { + switch yys1068 { case "port": if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1046 := &x.Port - yym1047 := z.DecBinary() - _ = yym1047 + yyv1069 := &x.Port + yym1070 := z.DecBinary() + _ = yym1070 if false { - } else if z.HasExtensions() && z.DecExt(yyv1046) { - } else if !yym1047 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1046) + } else if z.HasExtensions() && z.DecExt(yyv1069) { + } else if !yym1070 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1069) } else { - z.DecFallback(yyv1046, false) + z.DecFallback(yyv1069, false) } } default: - z.DecStructFieldNotFound(-1, yys1045) - } // end switch yys1045 - } // end for yyj1045 + z.DecStructFieldNotFound(-1, yys1068) + } // end switch yys1068 + } // end for yyj1068 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14606,16 +14877,16 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1048 int - var yyb1048 bool - var yyhl1048 bool = l >= 0 - yyj1048++ - if yyhl1048 { - yyb1048 = yyj1048 > l + var yyj1071 int + var yyb1071 bool + var yyhl1071 bool = l >= 0 + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1048 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1048 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14623,29 +14894,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1049 := &x.Port - yym1050 := z.DecBinary() - _ = yym1050 + yyv1072 := &x.Port + yym1073 := z.DecBinary() + _ = yym1073 if false { - } else if z.HasExtensions() && z.DecExt(yyv1049) { - } else if !yym1050 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1049) + } else if z.HasExtensions() && z.DecExt(yyv1072) { + } else if !yym1073 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1072) } else { - z.DecFallback(yyv1049, false) + z.DecFallback(yyv1072, false) } } for { - yyj1048++ - if yyhl1048 { - yyb1048 = yyj1048 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1048 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1048 { + if yyb1071 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1048-1, "") + z.DecStructFieldNotFound(yyj1071-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14657,38 +14928,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1051 := z.EncBinary() - _ = yym1051 + yym1074 := z.EncBinary() + _ = yym1074 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1052 := !z.EncBinary() - yy2arr1052 := z.EncBasicHandle().StructToArray - var yyq1052 [1]bool - _, _, _ = yysep1052, yyq1052, yy2arr1052 - const yyr1052 bool = false - yyq1052[0] = len(x.Command) != 0 - var yynn1052 int - if yyr1052 || yy2arr1052 { + yysep1075 := !z.EncBinary() + yy2arr1075 := z.EncBasicHandle().StructToArray + var yyq1075 [1]bool + _, _, _ = yysep1075, yyq1075, yy2arr1075 + const yyr1075 bool = false + yyq1075[0] = len(x.Command) != 0 + var yynn1075 int + if yyr1075 || yy2arr1075 { r.EncodeArrayStart(1) } else { - yynn1052 = 0 - for _, b := range yyq1052 { + yynn1075 = 0 + for _, b := range yyq1075 { if b { - yynn1052++ + yynn1075++ } } - r.EncodeMapStart(yynn1052) - yynn1052 = 0 + r.EncodeMapStart(yynn1075) + yynn1075 = 0 } - if yyr1052 || yy2arr1052 { + if yyr1075 || yy2arr1075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1052[0] { + if yyq1075[0] { if x.Command == nil { r.EncodeNil() } else { - yym1054 := z.EncBinary() - _ = yym1054 + yym1077 := z.EncBinary() + _ = yym1077 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -14698,15 +14969,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1052[0] { + if yyq1075[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1055 := z.EncBinary() - _ = yym1055 + yym1078 := z.EncBinary() + _ = yym1078 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -14714,7 +14985,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1052 || yy2arr1052 { + if yyr1075 || yy2arr1075 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14727,25 +14998,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1056 := z.DecBinary() - _ = yym1056 + yym1079 := z.DecBinary() + _ = yym1079 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1057 := r.ContainerType() - if yyct1057 == codecSelferValueTypeMap1234 { - yyl1057 := r.ReadMapStart() - if yyl1057 == 0 { + yyct1080 := r.ContainerType() + if yyct1080 == codecSelferValueTypeMap1234 { + yyl1080 := r.ReadMapStart() + if yyl1080 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1057, d) + x.codecDecodeSelfFromMap(yyl1080, d) } - } else if yyct1057 == codecSelferValueTypeArray1234 { - yyl1057 := r.ReadArrayStart() - if yyl1057 == 0 { + } else if yyct1080 == codecSelferValueTypeArray1234 { + yyl1080 := r.ReadArrayStart() + if yyl1080 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1057, d) + x.codecDecodeSelfFromArray(yyl1080, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14757,12 +15028,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1058Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1058Slc - var yyhl1058 bool = l >= 0 - for yyj1058 := 0; ; yyj1058++ { - if yyhl1058 { - if yyj1058 >= l { + var yys1081Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1081Slc + var yyhl1081 bool = l >= 0 + for yyj1081 := 0; ; yyj1081++ { + if yyhl1081 { + if yyj1081 >= l { break } } else { @@ -14771,26 +15042,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1058Slc = r.DecodeBytes(yys1058Slc, true, true) - yys1058 := string(yys1058Slc) + yys1081Slc = r.DecodeBytes(yys1081Slc, true, true) + yys1081 := string(yys1081Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1058 { + switch yys1081 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1059 := &x.Command - yym1060 := z.DecBinary() - _ = yym1060 + yyv1082 := &x.Command + yym1083 := z.DecBinary() + _ = yym1083 if false { } else { - z.F.DecSliceStringX(yyv1059, false, d) + z.F.DecSliceStringX(yyv1082, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1058) - } // end switch yys1058 - } // end for yyj1058 + z.DecStructFieldNotFound(-1, yys1081) + } // end switch yys1081 + } // end for yyj1081 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14798,16 +15069,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1061 int - var yyb1061 bool - var yyhl1061 bool = l >= 0 - yyj1061++ - if yyhl1061 { - yyb1061 = yyj1061 > l + var yyj1084 int + var yyb1084 bool + var yyhl1084 bool = l >= 0 + yyj1084++ + if yyhl1084 { + yyb1084 = yyj1084 > l } else { - yyb1061 = r.CheckBreak() + yyb1084 = r.CheckBreak() } - if yyb1061 { + if yyb1084 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14815,26 +15086,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1062 := &x.Command - yym1063 := z.DecBinary() - _ = yym1063 + yyv1085 := &x.Command + yym1086 := z.DecBinary() + _ = yym1086 if false { } else { - z.F.DecSliceStringX(yyv1062, false, d) + z.F.DecSliceStringX(yyv1085, false, d) } } for { - yyj1061++ - if yyhl1061 { - yyb1061 = yyj1061 > l + yyj1084++ + if yyhl1084 { + yyb1084 = yyj1084 > l } else { - yyb1061 = r.CheckBreak() + yyb1084 = r.CheckBreak() } - if yyb1061 { + if yyb1084 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1061-1, "") + z.DecStructFieldNotFound(yyj1084-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14846,49 +15117,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1064 := z.EncBinary() - _ = yym1064 + yym1087 := z.EncBinary() + _ = yym1087 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1065 := !z.EncBinary() - yy2arr1065 := z.EncBasicHandle().StructToArray - var yyq1065 [8]bool - _, _, _ = yysep1065, yyq1065, yy2arr1065 - const yyr1065 bool = false - yyq1065[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1065[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1065[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1065[3] = x.InitialDelaySeconds != 0 - yyq1065[4] = x.TimeoutSeconds != 0 - yyq1065[5] = x.PeriodSeconds != 0 - yyq1065[6] = x.SuccessThreshold != 0 - yyq1065[7] = x.FailureThreshold != 0 - var yynn1065 int - if yyr1065 || yy2arr1065 { + yysep1088 := !z.EncBinary() + yy2arr1088 := z.EncBasicHandle().StructToArray + var yyq1088 [8]bool + _, _, _ = yysep1088, yyq1088, yy2arr1088 + const yyr1088 bool = false + yyq1088[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1088[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1088[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1088[3] = x.InitialDelaySeconds != 0 + yyq1088[4] = x.TimeoutSeconds != 0 + yyq1088[5] = x.PeriodSeconds != 0 + yyq1088[6] = x.SuccessThreshold != 0 + yyq1088[7] = x.FailureThreshold != 0 + var yynn1088 int + if yyr1088 || yy2arr1088 { r.EncodeArrayStart(8) } else { - yynn1065 = 0 - for _, b := range yyq1065 { + yynn1088 = 0 + for _, b := range yyq1088 { if b { - yynn1065++ + yynn1088++ } } - r.EncodeMapStart(yynn1065) - yynn1065 = 0 + r.EncodeMapStart(yynn1088) + yynn1088 = 0 } - var yyn1066 bool + var yyn1089 bool if x.Handler.Exec == nil { - yyn1066 = true - goto LABEL1066 + yyn1089 = true + goto LABEL1089 } - LABEL1066: - if yyr1065 || yy2arr1065 { - if yyn1066 { + LABEL1089: + if yyr1088 || yy2arr1088 { + if yyn1089 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1065[0] { + if yyq1088[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -14899,11 +15170,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1065[0] { + if yyq1088[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1066 { + if yyn1089 { r.EncodeNil() } else { if x.Exec == nil { @@ -14914,18 +15185,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1067 bool + var yyn1090 bool if x.Handler.HTTPGet == nil { - yyn1067 = true - goto LABEL1067 + yyn1090 = true + goto LABEL1090 } - LABEL1067: - if yyr1065 || yy2arr1065 { - if yyn1067 { + LABEL1090: + if yyr1088 || yy2arr1088 { + if yyn1090 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1065[1] { + if yyq1088[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -14936,11 +15207,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1065[1] { + if yyq1088[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1067 { + if yyn1090 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -14951,18 +15222,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1068 bool + var yyn1091 bool if x.Handler.TCPSocket == nil { - yyn1068 = true - goto LABEL1068 + yyn1091 = true + goto LABEL1091 } - LABEL1068: - if yyr1065 || yy2arr1065 { - if yyn1068 { + LABEL1091: + if yyr1088 || yy2arr1088 { + if yyn1091 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1065[2] { + if yyq1088[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -14973,11 +15244,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1065[2] { + if yyq1088[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1068 { + if yyn1091 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -14988,11 +15259,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1065 || yy2arr1065 { + if yyr1088 || yy2arr1088 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1065[3] { - yym1070 := z.EncBinary() - _ = yym1070 + if yyq1088[3] { + yym1093 := z.EncBinary() + _ = yym1093 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -15001,23 +15272,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1065[3] { + if yyq1088[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1071 := z.EncBinary() - _ = yym1071 + yym1094 := z.EncBinary() + _ = yym1094 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1065 || yy2arr1065 { + if yyr1088 || yy2arr1088 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1065[4] { - yym1073 := z.EncBinary() - _ = yym1073 + if yyq1088[4] { + yym1096 := z.EncBinary() + _ = yym1096 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -15026,23 +15297,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1065[4] { + if yyq1088[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1074 := z.EncBinary() - _ = yym1074 + yym1097 := z.EncBinary() + _ = yym1097 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1065 || yy2arr1065 { + if yyr1088 || yy2arr1088 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1065[5] { - yym1076 := z.EncBinary() - _ = yym1076 + if yyq1088[5] { + yym1099 := z.EncBinary() + _ = yym1099 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -15051,23 +15322,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1065[5] { + if yyq1088[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1077 := z.EncBinary() - _ = yym1077 + yym1100 := z.EncBinary() + _ = yym1100 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1065 || yy2arr1065 { + if yyr1088 || yy2arr1088 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1065[6] { - yym1079 := z.EncBinary() - _ = yym1079 + if yyq1088[6] { + yym1102 := z.EncBinary() + _ = yym1102 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -15076,23 +15347,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1065[6] { + if yyq1088[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1080 := z.EncBinary() - _ = yym1080 + yym1103 := z.EncBinary() + _ = yym1103 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1065 || yy2arr1065 { + if yyr1088 || yy2arr1088 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1065[7] { - yym1082 := z.EncBinary() - _ = yym1082 + if yyq1088[7] { + yym1105 := z.EncBinary() + _ = yym1105 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -15101,19 +15372,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1065[7] { + if yyq1088[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1083 := z.EncBinary() - _ = yym1083 + yym1106 := z.EncBinary() + _ = yym1106 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1065 || yy2arr1065 { + if yyr1088 || yy2arr1088 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15126,25 +15397,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1084 := z.DecBinary() - _ = yym1084 + yym1107 := z.DecBinary() + _ = yym1107 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1085 := r.ContainerType() - if yyct1085 == codecSelferValueTypeMap1234 { - yyl1085 := r.ReadMapStart() - if yyl1085 == 0 { + yyct1108 := r.ContainerType() + if yyct1108 == codecSelferValueTypeMap1234 { + yyl1108 := r.ReadMapStart() + if yyl1108 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1085, d) + x.codecDecodeSelfFromMap(yyl1108, d) } - } else if yyct1085 == codecSelferValueTypeArray1234 { - yyl1085 := r.ReadArrayStart() - if yyl1085 == 0 { + } else if yyct1108 == codecSelferValueTypeArray1234 { + yyl1108 := r.ReadArrayStart() + if yyl1108 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1085, d) + x.codecDecodeSelfFromArray(yyl1108, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15156,12 +15427,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1086Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1086Slc - var yyhl1086 bool = l >= 0 - for yyj1086 := 0; ; yyj1086++ { - if yyhl1086 { - if yyj1086 >= l { + var yys1109Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1109Slc + var yyhl1109 bool = l >= 0 + for yyj1109 := 0; ; yyj1109++ { + if yyhl1109 { + if yyj1109 >= l { break } } else { @@ -15170,10 +15441,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1086Slc = r.DecodeBytes(yys1086Slc, true, true) - yys1086 := string(yys1086Slc) + yys1109Slc = r.DecodeBytes(yys1109Slc, true, true) + yys1109 := string(yys1109Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1086 { + switch yys1109 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -15247,9 +15518,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1086) - } // end switch yys1086 - } // end for yyj1086 + z.DecStructFieldNotFound(-1, yys1109) + } // end switch yys1109 + } // end for yyj1109 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15257,19 +15528,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1095 int - var yyb1095 bool - var yyhl1095 bool = l >= 0 + var yyj1118 int + var yyb1118 bool + var yyhl1118 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15287,13 +15558,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15311,13 +15582,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15332,13 +15603,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15348,13 +15619,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int32(r.DecodeInt(32)) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15364,13 +15635,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int32(r.DecodeInt(32)) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15380,13 +15651,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int32(r.DecodeInt(32)) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15396,13 +15667,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int32(r.DecodeInt(32)) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15413,17 +15684,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } for { - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1118++ + if yyhl1118 { + yyb1118 = yyj1118 > l } else { - yyb1095 = r.CheckBreak() + yyb1118 = r.CheckBreak() } - if yyb1095 { + if yyb1118 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1095-1, "") + z.DecStructFieldNotFound(yyj1118-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15432,8 +15703,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1104 := z.EncBinary() - _ = yym1104 + yym1127 := z.EncBinary() + _ = yym1127 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -15445,8 +15716,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1105 := z.DecBinary() - _ = yym1105 + yym1128 := z.DecBinary() + _ = yym1128 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -15458,8 +15729,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1106 := z.EncBinary() - _ = yym1106 + yym1129 := z.EncBinary() + _ = yym1129 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -15471,8 +15742,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1107 := z.DecBinary() - _ = yym1107 + yym1130 := z.DecBinary() + _ = yym1130 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -15487,39 +15758,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1108 := z.EncBinary() - _ = yym1108 + yym1131 := z.EncBinary() + _ = yym1131 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1109 := !z.EncBinary() - yy2arr1109 := z.EncBasicHandle().StructToArray - var yyq1109 [2]bool - _, _, _ = yysep1109, yyq1109, yy2arr1109 - const yyr1109 bool = false - yyq1109[0] = len(x.Add) != 0 - yyq1109[1] = len(x.Drop) != 0 - var yynn1109 int - if yyr1109 || yy2arr1109 { + yysep1132 := !z.EncBinary() + yy2arr1132 := z.EncBasicHandle().StructToArray + var yyq1132 [2]bool + _, _, _ = yysep1132, yyq1132, yy2arr1132 + const yyr1132 bool = false + yyq1132[0] = len(x.Add) != 0 + yyq1132[1] = len(x.Drop) != 0 + var yynn1132 int + if yyr1132 || yy2arr1132 { r.EncodeArrayStart(2) } else { - yynn1109 = 0 - for _, b := range yyq1109 { + yynn1132 = 0 + for _, b := range yyq1132 { if b { - yynn1109++ + yynn1132++ } } - r.EncodeMapStart(yynn1109) - yynn1109 = 0 + r.EncodeMapStart(yynn1132) + yynn1132 = 0 } - if yyr1109 || yy2arr1109 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1109[0] { + if yyq1132[0] { if x.Add == nil { r.EncodeNil() } else { - yym1111 := z.EncBinary() - _ = yym1111 + yym1134 := z.EncBinary() + _ = yym1134 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -15529,15 +15800,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1109[0] { + if yyq1132[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1112 := z.EncBinary() - _ = yym1112 + yym1135 := z.EncBinary() + _ = yym1135 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -15545,14 +15816,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1109 || yy2arr1109 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1109[1] { + if yyq1132[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1114 := z.EncBinary() - _ = yym1114 + yym1137 := z.EncBinary() + _ = yym1137 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -15562,15 +15833,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1109[1] { + if yyq1132[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1115 := z.EncBinary() - _ = yym1115 + yym1138 := z.EncBinary() + _ = yym1138 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -15578,7 +15849,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1109 || yy2arr1109 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15591,25 +15862,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1116 := z.DecBinary() - _ = yym1116 + yym1139 := z.DecBinary() + _ = yym1139 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1117 := r.ContainerType() - if yyct1117 == codecSelferValueTypeMap1234 { - yyl1117 := r.ReadMapStart() - if yyl1117 == 0 { + yyct1140 := r.ContainerType() + if yyct1140 == codecSelferValueTypeMap1234 { + yyl1140 := r.ReadMapStart() + if yyl1140 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1117, d) + x.codecDecodeSelfFromMap(yyl1140, d) } - } else if yyct1117 == codecSelferValueTypeArray1234 { - yyl1117 := r.ReadArrayStart() - if yyl1117 == 0 { + } else if yyct1140 == codecSelferValueTypeArray1234 { + yyl1140 := r.ReadArrayStart() + if yyl1140 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1117, d) + x.codecDecodeSelfFromArray(yyl1140, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15621,12 +15892,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1118Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1118Slc - var yyhl1118 bool = l >= 0 - for yyj1118 := 0; ; yyj1118++ { - if yyhl1118 { - if yyj1118 >= l { + var yys1141Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1141Slc + var yyhl1141 bool = l >= 0 + for yyj1141 := 0; ; yyj1141++ { + if yyhl1141 { + if yyj1141 >= l { break } } else { @@ -15635,38 +15906,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1118Slc = r.DecodeBytes(yys1118Slc, true, true) - yys1118 := string(yys1118Slc) + yys1141Slc = r.DecodeBytes(yys1141Slc, true, true) + yys1141 := string(yys1141Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1118 { + switch yys1141 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1119 := &x.Add - yym1120 := z.DecBinary() - _ = yym1120 + yyv1142 := &x.Add + yym1143 := z.DecBinary() + _ = yym1143 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1119), d) + h.decSliceCapability((*[]Capability)(yyv1142), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1121 := &x.Drop - yym1122 := z.DecBinary() - _ = yym1122 + yyv1144 := &x.Drop + yym1145 := z.DecBinary() + _ = yym1145 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1121), d) + h.decSliceCapability((*[]Capability)(yyv1144), d) } } default: - z.DecStructFieldNotFound(-1, yys1118) - } // end switch yys1118 - } // end for yyj1118 + z.DecStructFieldNotFound(-1, yys1141) + } // end switch yys1141 + } // end for yyj1141 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15674,16 +15945,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1123 int - var yyb1123 bool - var yyhl1123 bool = l >= 0 - yyj1123++ - if yyhl1123 { - yyb1123 = yyj1123 > l + var yyj1146 int + var yyb1146 bool + var yyhl1146 bool = l >= 0 + yyj1146++ + if yyhl1146 { + yyb1146 = yyj1146 > l } else { - yyb1123 = r.CheckBreak() + yyb1146 = r.CheckBreak() } - if yyb1123 { + if yyb1146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15691,21 +15962,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1124 := &x.Add - yym1125 := z.DecBinary() - _ = yym1125 + yyv1147 := &x.Add + yym1148 := z.DecBinary() + _ = yym1148 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1124), d) + h.decSliceCapability((*[]Capability)(yyv1147), d) } } - yyj1123++ - if yyhl1123 { - yyb1123 = yyj1123 > l + yyj1146++ + if yyhl1146 { + yyb1146 = yyj1146 > l } else { - yyb1123 = r.CheckBreak() + yyb1146 = r.CheckBreak() } - if yyb1123 { + if yyb1146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15713,26 +15984,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1126 := &x.Drop - yym1127 := z.DecBinary() - _ = yym1127 + yyv1149 := &x.Drop + yym1150 := z.DecBinary() + _ = yym1150 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1126), d) + h.decSliceCapability((*[]Capability)(yyv1149), d) } } for { - yyj1123++ - if yyhl1123 { - yyb1123 = yyj1123 > l + yyj1146++ + if yyhl1146 { + yyb1146 = yyj1146 > l } else { - yyb1123 = r.CheckBreak() + yyb1146 = r.CheckBreak() } - if yyb1123 { + if yyb1146 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1123-1, "") + z.DecStructFieldNotFound(yyj1146-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15744,34 +16015,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1128 := z.EncBinary() - _ = yym1128 + yym1151 := z.EncBinary() + _ = yym1151 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1129 := !z.EncBinary() - yy2arr1129 := z.EncBasicHandle().StructToArray - var yyq1129 [2]bool - _, _, _ = yysep1129, yyq1129, yy2arr1129 - const yyr1129 bool = false - yyq1129[0] = len(x.Limits) != 0 - yyq1129[1] = len(x.Requests) != 0 - var yynn1129 int - if yyr1129 || yy2arr1129 { + yysep1152 := !z.EncBinary() + yy2arr1152 := z.EncBasicHandle().StructToArray + var yyq1152 [2]bool + _, _, _ = yysep1152, yyq1152, yy2arr1152 + const yyr1152 bool = false + yyq1152[0] = len(x.Limits) != 0 + yyq1152[1] = len(x.Requests) != 0 + var yynn1152 int + if yyr1152 || yy2arr1152 { r.EncodeArrayStart(2) } else { - yynn1129 = 0 - for _, b := range yyq1129 { + yynn1152 = 0 + for _, b := range yyq1152 { if b { - yynn1129++ + yynn1152++ } } - r.EncodeMapStart(yynn1129) - yynn1129 = 0 + r.EncodeMapStart(yynn1152) + yynn1152 = 0 } - if yyr1129 || yy2arr1129 { + if yyr1152 || yy2arr1152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1129[0] { + if yyq1152[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -15781,7 +16052,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1129[0] { + if yyq1152[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15792,9 +16063,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1129 || yy2arr1129 { + if yyr1152 || yy2arr1152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1129[1] { + if yyq1152[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -15804,7 +16075,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1129[1] { + if yyq1152[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15815,7 +16086,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1129 || yy2arr1129 { + if yyr1152 || yy2arr1152 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15828,25 +16099,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1132 := z.DecBinary() - _ = yym1132 + yym1155 := z.DecBinary() + _ = yym1155 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1133 := r.ContainerType() - if yyct1133 == codecSelferValueTypeMap1234 { - yyl1133 := r.ReadMapStart() - if yyl1133 == 0 { + yyct1156 := r.ContainerType() + if yyct1156 == codecSelferValueTypeMap1234 { + yyl1156 := r.ReadMapStart() + if yyl1156 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1133, d) + x.codecDecodeSelfFromMap(yyl1156, d) } - } else if yyct1133 == codecSelferValueTypeArray1234 { - yyl1133 := r.ReadArrayStart() - if yyl1133 == 0 { + } else if yyct1156 == codecSelferValueTypeArray1234 { + yyl1156 := r.ReadArrayStart() + if yyl1156 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1133, d) + x.codecDecodeSelfFromArray(yyl1156, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15858,12 +16129,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1134Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1134Slc - var yyhl1134 bool = l >= 0 - for yyj1134 := 0; ; yyj1134++ { - if yyhl1134 { - if yyj1134 >= l { + var yys1157Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1157Slc + var yyhl1157 bool = l >= 0 + for yyj1157 := 0; ; yyj1157++ { + if yyhl1157 { + if yyj1157 >= l { break } } else { @@ -15872,28 +16143,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1134Slc = r.DecodeBytes(yys1134Slc, true, true) - yys1134 := string(yys1134Slc) + yys1157Slc = r.DecodeBytes(yys1157Slc, true, true) + yys1157 := string(yys1157Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1134 { + switch yys1157 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1135 := &x.Limits - yyv1135.CodecDecodeSelf(d) + yyv1158 := &x.Limits + yyv1158.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1136 := &x.Requests - yyv1136.CodecDecodeSelf(d) + yyv1159 := &x.Requests + yyv1159.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1134) - } // end switch yys1134 - } // end for yyj1134 + z.DecStructFieldNotFound(-1, yys1157) + } // end switch yys1157 + } // end for yyj1157 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15901,16 +16172,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1137 int - var yyb1137 bool - var yyhl1137 bool = l >= 0 - yyj1137++ - if yyhl1137 { - yyb1137 = yyj1137 > l + var yyj1160 int + var yyb1160 bool + var yyhl1160 bool = l >= 0 + yyj1160++ + if yyhl1160 { + yyb1160 = yyj1160 > l } else { - yyb1137 = r.CheckBreak() + yyb1160 = r.CheckBreak() } - if yyb1137 { + if yyb1160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15918,16 +16189,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1138 := &x.Limits - yyv1138.CodecDecodeSelf(d) + yyv1161 := &x.Limits + yyv1161.CodecDecodeSelf(d) } - yyj1137++ - if yyhl1137 { - yyb1137 = yyj1137 > l + yyj1160++ + if yyhl1160 { + yyb1160 = yyj1160 > l } else { - yyb1137 = r.CheckBreak() + yyb1160 = r.CheckBreak() } - if yyb1137 { + if yyb1160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15935,21 +16206,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1139 := &x.Requests - yyv1139.CodecDecodeSelf(d) + yyv1162 := &x.Requests + yyv1162.CodecDecodeSelf(d) } for { - yyj1137++ - if yyhl1137 { - yyb1137 = yyj1137 > l + yyj1160++ + if yyhl1160 { + yyb1160 = yyj1160 > l } else { - yyb1137 = r.CheckBreak() + yyb1160 = r.CheckBreak() } - if yyb1137 { + if yyb1160 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1137-1, "") + z.DecStructFieldNotFound(yyj1160-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15961,50 +16232,50 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1140 := z.EncBinary() - _ = yym1140 + yym1163 := z.EncBinary() + _ = yym1163 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1141 := !z.EncBinary() - yy2arr1141 := z.EncBasicHandle().StructToArray - var yyq1141 [18]bool - _, _, _ = yysep1141, yyq1141, yy2arr1141 - const yyr1141 bool = false - yyq1141[1] = x.Image != "" - yyq1141[2] = len(x.Command) != 0 - yyq1141[3] = len(x.Args) != 0 - yyq1141[4] = x.WorkingDir != "" - yyq1141[5] = len(x.Ports) != 0 - yyq1141[6] = len(x.Env) != 0 - yyq1141[7] = true - yyq1141[8] = len(x.VolumeMounts) != 0 - yyq1141[9] = x.LivenessProbe != nil - yyq1141[10] = x.ReadinessProbe != nil - yyq1141[11] = x.Lifecycle != nil - yyq1141[12] = x.TerminationMessagePath != "" - yyq1141[13] = x.ImagePullPolicy != "" - yyq1141[14] = x.SecurityContext != nil - yyq1141[15] = x.Stdin != false - yyq1141[16] = x.StdinOnce != false - yyq1141[17] = x.TTY != false - var yynn1141 int - if yyr1141 || yy2arr1141 { + yysep1164 := !z.EncBinary() + yy2arr1164 := z.EncBasicHandle().StructToArray + var yyq1164 [18]bool + _, _, _ = yysep1164, yyq1164, yy2arr1164 + const yyr1164 bool = false + yyq1164[1] = x.Image != "" + yyq1164[2] = len(x.Command) != 0 + yyq1164[3] = len(x.Args) != 0 + yyq1164[4] = x.WorkingDir != "" + yyq1164[5] = len(x.Ports) != 0 + yyq1164[6] = len(x.Env) != 0 + yyq1164[7] = true + yyq1164[8] = len(x.VolumeMounts) != 0 + yyq1164[9] = x.LivenessProbe != nil + yyq1164[10] = x.ReadinessProbe != nil + yyq1164[11] = x.Lifecycle != nil + yyq1164[12] = x.TerminationMessagePath != "" + yyq1164[13] = x.ImagePullPolicy != "" + yyq1164[14] = x.SecurityContext != nil + yyq1164[15] = x.Stdin != false + yyq1164[16] = x.StdinOnce != false + yyq1164[17] = x.TTY != false + var yynn1164 int + if yyr1164 || yy2arr1164 { r.EncodeArrayStart(18) } else { - yynn1141 = 1 - for _, b := range yyq1141 { + yynn1164 = 1 + for _, b := range yyq1164 { if b { - yynn1141++ + yynn1164++ } } - r.EncodeMapStart(yynn1141) - yynn1141 = 0 + r.EncodeMapStart(yynn1164) + yynn1164 = 0 } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1143 := z.EncBinary() - _ = yym1143 + yym1166 := z.EncBinary() + _ = yym1166 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16013,18 +16284,18 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1144 := z.EncBinary() - _ = yym1144 + yym1167 := z.EncBinary() + _ = yym1167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[1] { - yym1146 := z.EncBinary() - _ = yym1146 + if yyq1164[1] { + yym1169 := z.EncBinary() + _ = yym1169 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -16033,26 +16304,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1141[1] { + if yyq1164[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1147 := z.EncBinary() - _ = yym1147 + yym1170 := z.EncBinary() + _ = yym1170 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[2] { + if yyq1164[2] { if x.Command == nil { r.EncodeNil() } else { - yym1149 := z.EncBinary() - _ = yym1149 + yym1172 := z.EncBinary() + _ = yym1172 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -16062,15 +16333,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[2] { + if yyq1164[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1150 := z.EncBinary() - _ = yym1150 + yym1173 := z.EncBinary() + _ = yym1173 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -16078,14 +16349,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[3] { + if yyq1164[3] { if x.Args == nil { r.EncodeNil() } else { - yym1152 := z.EncBinary() - _ = yym1152 + yym1175 := z.EncBinary() + _ = yym1175 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -16095,15 +16366,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[3] { + if yyq1164[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1153 := z.EncBinary() - _ = yym1153 + yym1176 := z.EncBinary() + _ = yym1176 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -16111,11 +16382,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[4] { - yym1155 := z.EncBinary() - _ = yym1155 + if yyq1164[4] { + yym1178 := z.EncBinary() + _ = yym1178 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -16124,26 +16395,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1141[4] { + if yyq1164[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1156 := z.EncBinary() - _ = yym1156 + yym1179 := z.EncBinary() + _ = yym1179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[5] { + if yyq1164[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1158 := z.EncBinary() - _ = yym1158 + yym1181 := z.EncBinary() + _ = yym1181 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -16153,15 +16424,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[5] { + if yyq1164[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1159 := z.EncBinary() - _ = yym1159 + yym1182 := z.EncBinary() + _ = yym1182 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -16169,14 +16440,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[6] { + if yyq1164[6] { if x.Env == nil { r.EncodeNil() } else { - yym1161 := z.EncBinary() - _ = yym1161 + yym1184 := z.EncBinary() + _ = yym1184 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -16186,15 +16457,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[6] { + if yyq1164[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1162 := z.EncBinary() - _ = yym1162 + yym1185 := z.EncBinary() + _ = yym1185 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -16202,31 +16473,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[7] { - yy1164 := &x.Resources - yy1164.CodecEncodeSelf(e) + if yyq1164[7] { + yy1187 := &x.Resources + yy1187.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1141[7] { + if yyq1164[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1165 := &x.Resources - yy1165.CodecEncodeSelf(e) + yy1188 := &x.Resources + yy1188.CodecEncodeSelf(e) } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[8] { + if yyq1164[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1167 := z.EncBinary() - _ = yym1167 + yym1190 := z.EncBinary() + _ = yym1190 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -16236,15 +16507,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[8] { + if yyq1164[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1168 := z.EncBinary() - _ = yym1168 + yym1191 := z.EncBinary() + _ = yym1191 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -16252,9 +16523,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[9] { + if yyq1164[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -16264,7 +16535,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[9] { + if yyq1164[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16275,9 +16546,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[10] { + if yyq1164[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -16287,7 +16558,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[10] { + if yyq1164[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16298,9 +16569,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[11] { + if yyq1164[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -16310,7 +16581,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[11] { + if yyq1164[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16321,11 +16592,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[12] { - yym1173 := z.EncBinary() - _ = yym1173 + if yyq1164[12] { + yym1196 := z.EncBinary() + _ = yym1196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -16334,36 +16605,36 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1141[12] { + if yyq1164[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1174 := z.EncBinary() - _ = yym1174 + yym1197 := z.EncBinary() + _ = yym1197 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[13] { + if yyq1164[13] { x.ImagePullPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1141[13] { + if yyq1164[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[14] { + if yyq1164[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -16373,7 +16644,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1141[14] { + if yyq1164[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16384,11 +16655,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[15] { - yym1178 := z.EncBinary() - _ = yym1178 + if yyq1164[15] { + yym1201 := z.EncBinary() + _ = yym1201 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -16397,23 +16668,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1141[15] { + if yyq1164[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1179 := z.EncBinary() - _ = yym1179 + yym1202 := z.EncBinary() + _ = yym1202 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[16] { - yym1181 := z.EncBinary() - _ = yym1181 + if yyq1164[16] { + yym1204 := z.EncBinary() + _ = yym1204 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -16422,23 +16693,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1141[16] { + if yyq1164[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1182 := z.EncBinary() - _ = yym1182 + yym1205 := z.EncBinary() + _ = yym1205 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1141[17] { - yym1184 := z.EncBinary() - _ = yym1184 + if yyq1164[17] { + yym1207 := z.EncBinary() + _ = yym1207 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -16447,19 +16718,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1141[17] { + if yyq1164[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1185 := z.EncBinary() - _ = yym1185 + yym1208 := z.EncBinary() + _ = yym1208 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1141 || yy2arr1141 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16472,25 +16743,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1186 := z.DecBinary() - _ = yym1186 + yym1209 := z.DecBinary() + _ = yym1209 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1187 := r.ContainerType() - if yyct1187 == codecSelferValueTypeMap1234 { - yyl1187 := r.ReadMapStart() - if yyl1187 == 0 { + yyct1210 := r.ContainerType() + if yyct1210 == codecSelferValueTypeMap1234 { + yyl1210 := r.ReadMapStart() + if yyl1210 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1187, d) + x.codecDecodeSelfFromMap(yyl1210, d) } - } else if yyct1187 == codecSelferValueTypeArray1234 { - yyl1187 := r.ReadArrayStart() - if yyl1187 == 0 { + } else if yyct1210 == codecSelferValueTypeArray1234 { + yyl1210 := r.ReadArrayStart() + if yyl1210 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1187, d) + x.codecDecodeSelfFromArray(yyl1210, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16502,12 +16773,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1188Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1188Slc - var yyhl1188 bool = l >= 0 - for yyj1188 := 0; ; yyj1188++ { - if yyhl1188 { - if yyj1188 >= l { + var yys1211Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1211Slc + var yyhl1211 bool = l >= 0 + for yyj1211 := 0; ; yyj1211++ { + if yyhl1211 { + if yyj1211 >= l { break } } else { @@ -16516,10 +16787,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1188Slc = r.DecodeBytes(yys1188Slc, true, true) - yys1188 := string(yys1188Slc) + yys1211Slc = r.DecodeBytes(yys1211Slc, true, true) + yys1211 := string(yys1211Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1188 { + switch yys1211 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -16536,24 +16807,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1191 := &x.Command - yym1192 := z.DecBinary() - _ = yym1192 + yyv1214 := &x.Command + yym1215 := z.DecBinary() + _ = yym1215 if false { } else { - z.F.DecSliceStringX(yyv1191, false, d) + z.F.DecSliceStringX(yyv1214, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1193 := &x.Args - yym1194 := z.DecBinary() - _ = yym1194 + yyv1216 := &x.Args + yym1217 := z.DecBinary() + _ = yym1217 if false { } else { - z.F.DecSliceStringX(yyv1193, false, d) + z.F.DecSliceStringX(yyv1216, false, d) } } case "workingDir": @@ -16566,43 +16837,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1196 := &x.Ports - yym1197 := z.DecBinary() - _ = yym1197 + yyv1219 := &x.Ports + yym1220 := z.DecBinary() + _ = yym1220 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1196), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1219), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1198 := &x.Env - yym1199 := z.DecBinary() - _ = yym1199 + yyv1221 := &x.Env + yym1222 := z.DecBinary() + _ = yym1222 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1198), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1221), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1200 := &x.Resources - yyv1200.CodecDecodeSelf(d) + yyv1223 := &x.Resources + yyv1223.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1201 := &x.VolumeMounts - yym1202 := z.DecBinary() - _ = yym1202 + yyv1224 := &x.VolumeMounts + yym1225 := z.DecBinary() + _ = yym1225 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1201), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1224), d) } } case "livenessProbe": @@ -16680,9 +16951,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1188) - } // end switch yys1188 - } // end for yyj1188 + z.DecStructFieldNotFound(-1, yys1211) + } // end switch yys1211 + } // end for yyj1211 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16690,16 +16961,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1212 int - var yyb1212 bool - var yyhl1212 bool = l >= 0 - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + var yyj1235 int + var yyb1235 bool + var yyhl1235 bool = l >= 0 + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16709,13 +16980,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16725,13 +16996,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16739,21 +17010,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1215 := &x.Command - yym1216 := z.DecBinary() - _ = yym1216 + yyv1238 := &x.Command + yym1239 := z.DecBinary() + _ = yym1239 if false { } else { - z.F.DecSliceStringX(yyv1215, false, d) + z.F.DecSliceStringX(yyv1238, false, d) } } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16761,21 +17032,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1217 := &x.Args - yym1218 := z.DecBinary() - _ = yym1218 + yyv1240 := &x.Args + yym1241 := z.DecBinary() + _ = yym1241 if false { } else { - z.F.DecSliceStringX(yyv1217, false, d) + z.F.DecSliceStringX(yyv1240, false, d) } } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16785,13 +17056,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16799,21 +17070,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1220 := &x.Ports - yym1221 := z.DecBinary() - _ = yym1221 + yyv1243 := &x.Ports + yym1244 := z.DecBinary() + _ = yym1244 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1220), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1243), d) } } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16821,21 +17092,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1222 := &x.Env - yym1223 := z.DecBinary() - _ = yym1223 + yyv1245 := &x.Env + yym1246 := z.DecBinary() + _ = yym1246 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1222), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1245), d) } } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16843,16 +17114,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1224 := &x.Resources - yyv1224.CodecDecodeSelf(d) + yyv1247 := &x.Resources + yyv1247.CodecDecodeSelf(d) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16860,21 +17131,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1225 := &x.VolumeMounts - yym1226 := z.DecBinary() - _ = yym1226 + yyv1248 := &x.VolumeMounts + yym1249 := z.DecBinary() + _ = yym1249 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1225), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1248), d) } } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16889,13 +17160,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16910,13 +17181,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16931,13 +17202,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16947,13 +17218,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16963,13 +17234,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16984,13 +17255,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17000,13 +17271,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17016,13 +17287,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17033,17 +17304,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1212++ - if yyhl1212 { - yyb1212 = yyj1212 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1212 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1212 { + if yyb1235 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1212-1, "") + z.DecStructFieldNotFound(yyj1235-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17055,35 +17326,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1236 := z.EncBinary() - _ = yym1236 + yym1259 := z.EncBinary() + _ = yym1259 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1237 := !z.EncBinary() - yy2arr1237 := z.EncBasicHandle().StructToArray - var yyq1237 [3]bool - _, _, _ = yysep1237, yyq1237, yy2arr1237 - const yyr1237 bool = false - yyq1237[0] = x.Exec != nil - yyq1237[1] = x.HTTPGet != nil - yyq1237[2] = x.TCPSocket != nil - var yynn1237 int - if yyr1237 || yy2arr1237 { + yysep1260 := !z.EncBinary() + yy2arr1260 := z.EncBasicHandle().StructToArray + var yyq1260 [3]bool + _, _, _ = yysep1260, yyq1260, yy2arr1260 + const yyr1260 bool = false + yyq1260[0] = x.Exec != nil + yyq1260[1] = x.HTTPGet != nil + yyq1260[2] = x.TCPSocket != nil + var yynn1260 int + if yyr1260 || yy2arr1260 { r.EncodeArrayStart(3) } else { - yynn1237 = 0 - for _, b := range yyq1237 { + yynn1260 = 0 + for _, b := range yyq1260 { if b { - yynn1237++ + yynn1260++ } } - r.EncodeMapStart(yynn1237) - yynn1237 = 0 + r.EncodeMapStart(yynn1260) + yynn1260 = 0 } - if yyr1237 || yy2arr1237 { + if yyr1260 || yy2arr1260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1237[0] { + if yyq1260[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -17093,7 +17364,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1237[0] { + if yyq1260[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17104,9 +17375,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1237 || yy2arr1237 { + if yyr1260 || yy2arr1260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1237[1] { + if yyq1260[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -17116,7 +17387,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1237[1] { + if yyq1260[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17127,9 +17398,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1237 || yy2arr1237 { + if yyr1260 || yy2arr1260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1237[2] { + if yyq1260[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -17139,7 +17410,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1237[2] { + if yyq1260[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17150,7 +17421,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1237 || yy2arr1237 { + if yyr1260 || yy2arr1260 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17163,25 +17434,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1241 := z.DecBinary() - _ = yym1241 + yym1264 := z.DecBinary() + _ = yym1264 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1242 := r.ContainerType() - if yyct1242 == codecSelferValueTypeMap1234 { - yyl1242 := r.ReadMapStart() - if yyl1242 == 0 { + yyct1265 := r.ContainerType() + if yyct1265 == codecSelferValueTypeMap1234 { + yyl1265 := r.ReadMapStart() + if yyl1265 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1242, d) + x.codecDecodeSelfFromMap(yyl1265, d) } - } else if yyct1242 == codecSelferValueTypeArray1234 { - yyl1242 := r.ReadArrayStart() - if yyl1242 == 0 { + } else if yyct1265 == codecSelferValueTypeArray1234 { + yyl1265 := r.ReadArrayStart() + if yyl1265 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1242, d) + x.codecDecodeSelfFromArray(yyl1265, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17193,12 +17464,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1243Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1243Slc - var yyhl1243 bool = l >= 0 - for yyj1243 := 0; ; yyj1243++ { - if yyhl1243 { - if yyj1243 >= l { + var yys1266Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1266Slc + var yyhl1266 bool = l >= 0 + for yyj1266 := 0; ; yyj1266++ { + if yyhl1266 { + if yyj1266 >= l { break } } else { @@ -17207,10 +17478,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1243Slc = r.DecodeBytes(yys1243Slc, true, true) - yys1243 := string(yys1243Slc) + yys1266Slc = r.DecodeBytes(yys1266Slc, true, true) + yys1266 := string(yys1266Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1243 { + switch yys1266 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -17245,9 +17516,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1243) - } // end switch yys1243 - } // end for yyj1243 + z.DecStructFieldNotFound(-1, yys1266) + } // end switch yys1266 + } // end for yyj1266 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17255,16 +17526,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1247 int - var yyb1247 bool - var yyhl1247 bool = l >= 0 - yyj1247++ - if yyhl1247 { - yyb1247 = yyj1247 > l + var yyj1270 int + var yyb1270 bool + var yyhl1270 bool = l >= 0 + yyj1270++ + if yyhl1270 { + yyb1270 = yyj1270 > l } else { - yyb1247 = r.CheckBreak() + yyb1270 = r.CheckBreak() } - if yyb1247 { + if yyb1270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17279,13 +17550,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1247++ - if yyhl1247 { - yyb1247 = yyj1247 > l + yyj1270++ + if yyhl1270 { + yyb1270 = yyj1270 > l } else { - yyb1247 = r.CheckBreak() + yyb1270 = r.CheckBreak() } - if yyb1247 { + if yyb1270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17300,13 +17571,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1247++ - if yyhl1247 { - yyb1247 = yyj1247 > l + yyj1270++ + if yyhl1270 { + yyb1270 = yyj1270 > l } else { - yyb1247 = r.CheckBreak() + yyb1270 = r.CheckBreak() } - if yyb1247 { + if yyb1270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17322,17 +17593,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1247++ - if yyhl1247 { - yyb1247 = yyj1247 > l + yyj1270++ + if yyhl1270 { + yyb1270 = yyj1270 > l } else { - yyb1247 = r.CheckBreak() + yyb1270 = r.CheckBreak() } - if yyb1247 { + if yyb1270 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1247-1, "") + z.DecStructFieldNotFound(yyj1270-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17344,34 +17615,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1251 := z.EncBinary() - _ = yym1251 + yym1274 := z.EncBinary() + _ = yym1274 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1252 := !z.EncBinary() - yy2arr1252 := z.EncBasicHandle().StructToArray - var yyq1252 [2]bool - _, _, _ = yysep1252, yyq1252, yy2arr1252 - const yyr1252 bool = false - yyq1252[0] = x.PostStart != nil - yyq1252[1] = x.PreStop != nil - var yynn1252 int - if yyr1252 || yy2arr1252 { + yysep1275 := !z.EncBinary() + yy2arr1275 := z.EncBasicHandle().StructToArray + var yyq1275 [2]bool + _, _, _ = yysep1275, yyq1275, yy2arr1275 + const yyr1275 bool = false + yyq1275[0] = x.PostStart != nil + yyq1275[1] = x.PreStop != nil + var yynn1275 int + if yyr1275 || yy2arr1275 { r.EncodeArrayStart(2) } else { - yynn1252 = 0 - for _, b := range yyq1252 { + yynn1275 = 0 + for _, b := range yyq1275 { if b { - yynn1252++ + yynn1275++ } } - r.EncodeMapStart(yynn1252) - yynn1252 = 0 + r.EncodeMapStart(yynn1275) + yynn1275 = 0 } - if yyr1252 || yy2arr1252 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1252[0] { + if yyq1275[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -17381,7 +17652,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1252[0] { + if yyq1275[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17392,9 +17663,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1252 || yy2arr1252 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1252[1] { + if yyq1275[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -17404,7 +17675,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1252[1] { + if yyq1275[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17415,7 +17686,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1252 || yy2arr1252 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17428,25 +17699,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1255 := z.DecBinary() - _ = yym1255 + yym1278 := z.DecBinary() + _ = yym1278 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1256 := r.ContainerType() - if yyct1256 == codecSelferValueTypeMap1234 { - yyl1256 := r.ReadMapStart() - if yyl1256 == 0 { + yyct1279 := r.ContainerType() + if yyct1279 == codecSelferValueTypeMap1234 { + yyl1279 := r.ReadMapStart() + if yyl1279 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1256, d) + x.codecDecodeSelfFromMap(yyl1279, d) } - } else if yyct1256 == codecSelferValueTypeArray1234 { - yyl1256 := r.ReadArrayStart() - if yyl1256 == 0 { + } else if yyct1279 == codecSelferValueTypeArray1234 { + yyl1279 := r.ReadArrayStart() + if yyl1279 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1256, d) + x.codecDecodeSelfFromArray(yyl1279, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17458,12 +17729,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1257Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1257Slc - var yyhl1257 bool = l >= 0 - for yyj1257 := 0; ; yyj1257++ { - if yyhl1257 { - if yyj1257 >= l { + var yys1280Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1280Slc + var yyhl1280 bool = l >= 0 + for yyj1280 := 0; ; yyj1280++ { + if yyhl1280 { + if yyj1280 >= l { break } } else { @@ -17472,10 +17743,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1257Slc = r.DecodeBytes(yys1257Slc, true, true) - yys1257 := string(yys1257Slc) + yys1280Slc = r.DecodeBytes(yys1280Slc, true, true) + yys1280 := string(yys1280Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1257 { + switch yys1280 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -17499,9 +17770,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1257) - } // end switch yys1257 - } // end for yyj1257 + z.DecStructFieldNotFound(-1, yys1280) + } // end switch yys1280 + } // end for yyj1280 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17509,16 +17780,16 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1260 int - var yyb1260 bool - var yyhl1260 bool = l >= 0 - yyj1260++ - if yyhl1260 { - yyb1260 = yyj1260 > l + var yyj1283 int + var yyb1283 bool + var yyhl1283 bool = l >= 0 + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1260 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1260 { + if yyb1283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17533,13 +17804,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1260++ - if yyhl1260 { - yyb1260 = yyj1260 > l + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1260 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1260 { + if yyb1283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17555,17 +17826,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1260++ - if yyhl1260 { - yyb1260 = yyj1260 > l + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1260 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1260 { + if yyb1283 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1260-1, "") + z.DecStructFieldNotFound(yyj1283-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17574,8 +17845,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1263 := z.EncBinary() - _ = yym1263 + yym1286 := z.EncBinary() + _ = yym1286 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17587,8 +17858,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1264 := z.DecBinary() - _ = yym1264 + yym1287 := z.DecBinary() + _ = yym1287 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17603,36 +17874,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1265 := z.EncBinary() - _ = yym1265 + yym1288 := z.EncBinary() + _ = yym1288 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1266 := !z.EncBinary() - yy2arr1266 := z.EncBasicHandle().StructToArray - var yyq1266 [2]bool - _, _, _ = yysep1266, yyq1266, yy2arr1266 - const yyr1266 bool = false - yyq1266[0] = x.Reason != "" - yyq1266[1] = x.Message != "" - var yynn1266 int - if yyr1266 || yy2arr1266 { + yysep1289 := !z.EncBinary() + yy2arr1289 := z.EncBasicHandle().StructToArray + var yyq1289 [2]bool + _, _, _ = yysep1289, yyq1289, yy2arr1289 + const yyr1289 bool = false + yyq1289[0] = x.Reason != "" + yyq1289[1] = x.Message != "" + var yynn1289 int + if yyr1289 || yy2arr1289 { r.EncodeArrayStart(2) } else { - yynn1266 = 0 - for _, b := range yyq1266 { + yynn1289 = 0 + for _, b := range yyq1289 { if b { - yynn1266++ + yynn1289++ } } - r.EncodeMapStart(yynn1266) - yynn1266 = 0 + r.EncodeMapStart(yynn1289) + yynn1289 = 0 } - if yyr1266 || yy2arr1266 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1266[0] { - yym1268 := z.EncBinary() - _ = yym1268 + if yyq1289[0] { + yym1291 := z.EncBinary() + _ = yym1291 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -17641,23 +17912,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1266[0] { + if yyq1289[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1269 := z.EncBinary() - _ = yym1269 + yym1292 := z.EncBinary() + _ = yym1292 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1266 || yy2arr1266 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1266[1] { - yym1271 := z.EncBinary() - _ = yym1271 + if yyq1289[1] { + yym1294 := z.EncBinary() + _ = yym1294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -17666,19 +17937,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1266[1] { + if yyq1289[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1272 := z.EncBinary() - _ = yym1272 + yym1295 := z.EncBinary() + _ = yym1295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1266 || yy2arr1266 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17691,25 +17962,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1273 := z.DecBinary() - _ = yym1273 + yym1296 := z.DecBinary() + _ = yym1296 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1274 := r.ContainerType() - if yyct1274 == codecSelferValueTypeMap1234 { - yyl1274 := r.ReadMapStart() - if yyl1274 == 0 { + yyct1297 := r.ContainerType() + if yyct1297 == codecSelferValueTypeMap1234 { + yyl1297 := r.ReadMapStart() + if yyl1297 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1274, d) + x.codecDecodeSelfFromMap(yyl1297, d) } - } else if yyct1274 == codecSelferValueTypeArray1234 { - yyl1274 := r.ReadArrayStart() - if yyl1274 == 0 { + } else if yyct1297 == codecSelferValueTypeArray1234 { + yyl1297 := r.ReadArrayStart() + if yyl1297 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1274, d) + x.codecDecodeSelfFromArray(yyl1297, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17721,12 +17992,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1275Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1275Slc - var yyhl1275 bool = l >= 0 - for yyj1275 := 0; ; yyj1275++ { - if yyhl1275 { - if yyj1275 >= l { + var yys1298Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1298Slc + var yyhl1298 bool = l >= 0 + for yyj1298 := 0; ; yyj1298++ { + if yyhl1298 { + if yyj1298 >= l { break } } else { @@ -17735,10 +18006,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1275Slc = r.DecodeBytes(yys1275Slc, true, true) - yys1275 := string(yys1275Slc) + yys1298Slc = r.DecodeBytes(yys1298Slc, true, true) + yys1298 := string(yys1298Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1275 { + switch yys1298 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -17752,9 +18023,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1275) - } // end switch yys1275 - } // end for yyj1275 + z.DecStructFieldNotFound(-1, yys1298) + } // end switch yys1298 + } // end for yyj1298 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17762,16 +18033,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1278 int - var yyb1278 bool - var yyhl1278 bool = l >= 0 - yyj1278++ - if yyhl1278 { - yyb1278 = yyj1278 > l + var yyj1301 int + var yyb1301 bool + var yyhl1301 bool = l >= 0 + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1278 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1278 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17781,13 +18052,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1278++ - if yyhl1278 { - yyb1278 = yyj1278 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1278 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1278 { + if yyb1301 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17798,17 +18069,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1278++ - if yyhl1278 { - yyb1278 = yyj1278 > l + yyj1301++ + if yyhl1301 { + yyb1301 = yyj1301 > l } else { - yyb1278 = r.CheckBreak() + yyb1301 = r.CheckBreak() } - if yyb1278 { + if yyb1301 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1278-1, "") + z.DecStructFieldNotFound(yyj1301-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17820,68 +18091,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1281 := z.EncBinary() - _ = yym1281 + yym1304 := z.EncBinary() + _ = yym1304 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1282 := !z.EncBinary() - yy2arr1282 := z.EncBasicHandle().StructToArray - var yyq1282 [1]bool - _, _, _ = yysep1282, yyq1282, yy2arr1282 - const yyr1282 bool = false - yyq1282[0] = true - var yynn1282 int - if yyr1282 || yy2arr1282 { + yysep1305 := !z.EncBinary() + yy2arr1305 := z.EncBasicHandle().StructToArray + var yyq1305 [1]bool + _, _, _ = yysep1305, yyq1305, yy2arr1305 + const yyr1305 bool = false + yyq1305[0] = true + var yynn1305 int + if yyr1305 || yy2arr1305 { r.EncodeArrayStart(1) } else { - yynn1282 = 0 - for _, b := range yyq1282 { + yynn1305 = 0 + for _, b := range yyq1305 { if b { - yynn1282++ + yynn1305++ } } - r.EncodeMapStart(yynn1282) - yynn1282 = 0 + r.EncodeMapStart(yynn1305) + yynn1305 = 0 } - if yyr1282 || yy2arr1282 { + if yyr1305 || yy2arr1305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1282[0] { - yy1284 := &x.StartedAt - yym1285 := z.EncBinary() - _ = yym1285 + if yyq1305[0] { + yy1307 := &x.StartedAt + yym1308 := z.EncBinary() + _ = yym1308 if false { - } else if z.HasExtensions() && z.EncExt(yy1284) { - } else if yym1285 { - z.EncBinaryMarshal(yy1284) - } else if !yym1285 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1284) + } else if z.HasExtensions() && z.EncExt(yy1307) { + } else if yym1308 { + z.EncBinaryMarshal(yy1307) + } else if !yym1308 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1307) } else { - z.EncFallback(yy1284) + z.EncFallback(yy1307) } } else { r.EncodeNil() } } else { - if yyq1282[0] { + if yyq1305[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1286 := &x.StartedAt - yym1287 := z.EncBinary() - _ = yym1287 + yy1309 := &x.StartedAt + yym1310 := z.EncBinary() + _ = yym1310 if false { - } else if z.HasExtensions() && z.EncExt(yy1286) { - } else if yym1287 { - z.EncBinaryMarshal(yy1286) - } else if !yym1287 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1286) + } else if z.HasExtensions() && z.EncExt(yy1309) { + } else if yym1310 { + z.EncBinaryMarshal(yy1309) + } else if !yym1310 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1309) } else { - z.EncFallback(yy1286) + z.EncFallback(yy1309) } } } - if yyr1282 || yy2arr1282 { + if yyr1305 || yy2arr1305 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17894,25 +18165,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1288 := z.DecBinary() - _ = yym1288 + yym1311 := z.DecBinary() + _ = yym1311 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1289 := r.ContainerType() - if yyct1289 == codecSelferValueTypeMap1234 { - yyl1289 := r.ReadMapStart() - if yyl1289 == 0 { + yyct1312 := r.ContainerType() + if yyct1312 == codecSelferValueTypeMap1234 { + yyl1312 := r.ReadMapStart() + if yyl1312 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1289, d) + x.codecDecodeSelfFromMap(yyl1312, d) } - } else if yyct1289 == codecSelferValueTypeArray1234 { - yyl1289 := r.ReadArrayStart() - if yyl1289 == 0 { + } else if yyct1312 == codecSelferValueTypeArray1234 { + yyl1312 := r.ReadArrayStart() + if yyl1312 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1289, d) + x.codecDecodeSelfFromArray(yyl1312, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17924,12 +18195,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1290Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1290Slc - var yyhl1290 bool = l >= 0 - for yyj1290 := 0; ; yyj1290++ { - if yyhl1290 { - if yyj1290 >= l { + var yys1313Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1313Slc + var yyhl1313 bool = l >= 0 + for yyj1313 := 0; ; yyj1313++ { + if yyhl1313 { + if yyj1313 >= l { break } } else { @@ -17938,31 +18209,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1290Slc = r.DecodeBytes(yys1290Slc, true, true) - yys1290 := string(yys1290Slc) + yys1313Slc = r.DecodeBytes(yys1313Slc, true, true) + yys1313 := string(yys1313Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1290 { + switch yys1313 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1291 := &x.StartedAt - yym1292 := z.DecBinary() - _ = yym1292 + yyv1314 := &x.StartedAt + yym1315 := z.DecBinary() + _ = yym1315 if false { - } else if z.HasExtensions() && z.DecExt(yyv1291) { - } else if yym1292 { - z.DecBinaryUnmarshal(yyv1291) - } else if !yym1292 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1291) + } else if z.HasExtensions() && z.DecExt(yyv1314) { + } else if yym1315 { + z.DecBinaryUnmarshal(yyv1314) + } else if !yym1315 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1314) } else { - z.DecFallback(yyv1291, false) + z.DecFallback(yyv1314, false) } } default: - z.DecStructFieldNotFound(-1, yys1290) - } // end switch yys1290 - } // end for yyj1290 + z.DecStructFieldNotFound(-1, yys1313) + } // end switch yys1313 + } // end for yyj1313 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17970,16 +18241,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1293 int - var yyb1293 bool - var yyhl1293 bool = l >= 0 - yyj1293++ - if yyhl1293 { - yyb1293 = yyj1293 > l + var yyj1316 int + var yyb1316 bool + var yyhl1316 bool = l >= 0 + yyj1316++ + if yyhl1316 { + yyb1316 = yyj1316 > l } else { - yyb1293 = r.CheckBreak() + yyb1316 = r.CheckBreak() } - if yyb1293 { + if yyb1316 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17987,31 +18258,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1294 := &x.StartedAt - yym1295 := z.DecBinary() - _ = yym1295 + yyv1317 := &x.StartedAt + yym1318 := z.DecBinary() + _ = yym1318 if false { - } else if z.HasExtensions() && z.DecExt(yyv1294) { - } else if yym1295 { - z.DecBinaryUnmarshal(yyv1294) - } else if !yym1295 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1294) + } else if z.HasExtensions() && z.DecExt(yyv1317) { + } else if yym1318 { + z.DecBinaryUnmarshal(yyv1317) + } else if !yym1318 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1317) } else { - z.DecFallback(yyv1294, false) + z.DecFallback(yyv1317, false) } } for { - yyj1293++ - if yyhl1293 { - yyb1293 = yyj1293 > l + yyj1316++ + if yyhl1316 { + yyb1316 = yyj1316 > l } else { - yyb1293 = r.CheckBreak() + yyb1316 = r.CheckBreak() } - if yyb1293 { + if yyb1316 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1293-1, "") + z.DecStructFieldNotFound(yyj1316-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18023,39 +18294,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1296 := z.EncBinary() - _ = yym1296 + yym1319 := z.EncBinary() + _ = yym1319 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1297 := !z.EncBinary() - yy2arr1297 := z.EncBasicHandle().StructToArray - var yyq1297 [7]bool - _, _, _ = yysep1297, yyq1297, yy2arr1297 - const yyr1297 bool = false - yyq1297[1] = x.Signal != 0 - yyq1297[2] = x.Reason != "" - yyq1297[3] = x.Message != "" - yyq1297[4] = true - yyq1297[5] = true - yyq1297[6] = x.ContainerID != "" - var yynn1297 int - if yyr1297 || yy2arr1297 { + yysep1320 := !z.EncBinary() + yy2arr1320 := z.EncBasicHandle().StructToArray + var yyq1320 [7]bool + _, _, _ = yysep1320, yyq1320, yy2arr1320 + const yyr1320 bool = false + yyq1320[1] = x.Signal != 0 + yyq1320[2] = x.Reason != "" + yyq1320[3] = x.Message != "" + yyq1320[4] = true + yyq1320[5] = true + yyq1320[6] = x.ContainerID != "" + var yynn1320 int + if yyr1320 || yy2arr1320 { r.EncodeArrayStart(7) } else { - yynn1297 = 1 - for _, b := range yyq1297 { + yynn1320 = 1 + for _, b := range yyq1320 { if b { - yynn1297++ + yynn1320++ } } - r.EncodeMapStart(yynn1297) - yynn1297 = 0 + r.EncodeMapStart(yynn1320) + yynn1320 = 0 } - if yyr1297 || yy2arr1297 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1299 := z.EncBinary() - _ = yym1299 + yym1322 := z.EncBinary() + _ = yym1322 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -18064,18 +18335,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1300 := z.EncBinary() - _ = yym1300 + yym1323 := z.EncBinary() + _ = yym1323 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1297 || yy2arr1297 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1297[1] { - yym1302 := z.EncBinary() - _ = yym1302 + if yyq1320[1] { + yym1325 := z.EncBinary() + _ = yym1325 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -18084,23 +18355,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1297[1] { + if yyq1320[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1303 := z.EncBinary() - _ = yym1303 + yym1326 := z.EncBinary() + _ = yym1326 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1297 || yy2arr1297 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1297[2] { - yym1305 := z.EncBinary() - _ = yym1305 + if yyq1320[2] { + yym1328 := z.EncBinary() + _ = yym1328 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -18109,23 +18380,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1297[2] { + if yyq1320[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1306 := z.EncBinary() - _ = yym1306 + yym1329 := z.EncBinary() + _ = yym1329 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1297 || yy2arr1297 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1297[3] { - yym1308 := z.EncBinary() - _ = yym1308 + if yyq1320[3] { + yym1331 := z.EncBinary() + _ = yym1331 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -18134,97 +18405,97 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1297[3] { + if yyq1320[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1309 := z.EncBinary() - _ = yym1309 + yym1332 := z.EncBinary() + _ = yym1332 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1297 || yy2arr1297 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1297[4] { - yy1311 := &x.StartedAt - yym1312 := z.EncBinary() - _ = yym1312 + if yyq1320[4] { + yy1334 := &x.StartedAt + yym1335 := z.EncBinary() + _ = yym1335 if false { - } else if z.HasExtensions() && z.EncExt(yy1311) { - } else if yym1312 { - z.EncBinaryMarshal(yy1311) - } else if !yym1312 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1311) + } else if z.HasExtensions() && z.EncExt(yy1334) { + } else if yym1335 { + z.EncBinaryMarshal(yy1334) + } else if !yym1335 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1334) } else { - z.EncFallback(yy1311) + z.EncFallback(yy1334) } } else { r.EncodeNil() } } else { - if yyq1297[4] { + if yyq1320[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1313 := &x.StartedAt - yym1314 := z.EncBinary() - _ = yym1314 + yy1336 := &x.StartedAt + yym1337 := z.EncBinary() + _ = yym1337 if false { - } else if z.HasExtensions() && z.EncExt(yy1313) { - } else if yym1314 { - z.EncBinaryMarshal(yy1313) - } else if !yym1314 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1313) + } else if z.HasExtensions() && z.EncExt(yy1336) { + } else if yym1337 { + z.EncBinaryMarshal(yy1336) + } else if !yym1337 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1336) } else { - z.EncFallback(yy1313) + z.EncFallback(yy1336) } } } - if yyr1297 || yy2arr1297 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1297[5] { - yy1316 := &x.FinishedAt - yym1317 := z.EncBinary() - _ = yym1317 + if yyq1320[5] { + yy1339 := &x.FinishedAt + yym1340 := z.EncBinary() + _ = yym1340 if false { - } else if z.HasExtensions() && z.EncExt(yy1316) { - } else if yym1317 { - z.EncBinaryMarshal(yy1316) - } else if !yym1317 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1316) + } else if z.HasExtensions() && z.EncExt(yy1339) { + } else if yym1340 { + z.EncBinaryMarshal(yy1339) + } else if !yym1340 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1339) } else { - z.EncFallback(yy1316) + z.EncFallback(yy1339) } } else { r.EncodeNil() } } else { - if yyq1297[5] { + if yyq1320[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1318 := &x.FinishedAt - yym1319 := z.EncBinary() - _ = yym1319 + yy1341 := &x.FinishedAt + yym1342 := z.EncBinary() + _ = yym1342 if false { - } else if z.HasExtensions() && z.EncExt(yy1318) { - } else if yym1319 { - z.EncBinaryMarshal(yy1318) - } else if !yym1319 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1318) + } else if z.HasExtensions() && z.EncExt(yy1341) { + } else if yym1342 { + z.EncBinaryMarshal(yy1341) + } else if !yym1342 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1341) } else { - z.EncFallback(yy1318) + z.EncFallback(yy1341) } } } - if yyr1297 || yy2arr1297 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1297[6] { - yym1321 := z.EncBinary() - _ = yym1321 + if yyq1320[6] { + yym1344 := z.EncBinary() + _ = yym1344 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -18233,19 +18504,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1297[6] { + if yyq1320[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1322 := z.EncBinary() - _ = yym1322 + yym1345 := z.EncBinary() + _ = yym1345 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1297 || yy2arr1297 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18258,25 +18529,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1323 := z.DecBinary() - _ = yym1323 + yym1346 := z.DecBinary() + _ = yym1346 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1324 := r.ContainerType() - if yyct1324 == codecSelferValueTypeMap1234 { - yyl1324 := r.ReadMapStart() - if yyl1324 == 0 { + yyct1347 := r.ContainerType() + if yyct1347 == codecSelferValueTypeMap1234 { + yyl1347 := r.ReadMapStart() + if yyl1347 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1324, d) + x.codecDecodeSelfFromMap(yyl1347, d) } - } else if yyct1324 == codecSelferValueTypeArray1234 { - yyl1324 := r.ReadArrayStart() - if yyl1324 == 0 { + } else if yyct1347 == codecSelferValueTypeArray1234 { + yyl1347 := r.ReadArrayStart() + if yyl1347 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1324, d) + x.codecDecodeSelfFromArray(yyl1347, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18288,12 +18559,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1325Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1325Slc - var yyhl1325 bool = l >= 0 - for yyj1325 := 0; ; yyj1325++ { - if yyhl1325 { - if yyj1325 >= l { + var yys1348Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1348Slc + var yyhl1348 bool = l >= 0 + for yyj1348 := 0; ; yyj1348++ { + if yyhl1348 { + if yyj1348 >= l { break } } else { @@ -18302,10 +18573,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1325Slc = r.DecodeBytes(yys1325Slc, true, true) - yys1325 := string(yys1325Slc) + yys1348Slc = r.DecodeBytes(yys1348Slc, true, true) + yys1348 := string(yys1348Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1325 { + switch yys1348 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -18334,34 +18605,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1330 := &x.StartedAt - yym1331 := z.DecBinary() - _ = yym1331 + yyv1353 := &x.StartedAt + yym1354 := z.DecBinary() + _ = yym1354 if false { - } else if z.HasExtensions() && z.DecExt(yyv1330) { - } else if yym1331 { - z.DecBinaryUnmarshal(yyv1330) - } else if !yym1331 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1330) + } else if z.HasExtensions() && z.DecExt(yyv1353) { + } else if yym1354 { + z.DecBinaryUnmarshal(yyv1353) + } else if !yym1354 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1353) } else { - z.DecFallback(yyv1330, false) + z.DecFallback(yyv1353, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1332 := &x.FinishedAt - yym1333 := z.DecBinary() - _ = yym1333 + yyv1355 := &x.FinishedAt + yym1356 := z.DecBinary() + _ = yym1356 if false { - } else if z.HasExtensions() && z.DecExt(yyv1332) { - } else if yym1333 { - z.DecBinaryUnmarshal(yyv1332) - } else if !yym1333 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1332) + } else if z.HasExtensions() && z.DecExt(yyv1355) { + } else if yym1356 { + z.DecBinaryUnmarshal(yyv1355) + } else if !yym1356 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1355) } else { - z.DecFallback(yyv1332, false) + z.DecFallback(yyv1355, false) } } case "containerID": @@ -18371,9 +18642,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1325) - } // end switch yys1325 - } // end for yyj1325 + z.DecStructFieldNotFound(-1, yys1348) + } // end switch yys1348 + } // end for yyj1348 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18381,16 +18652,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1335 int - var yyb1335 bool - var yyhl1335 bool = l >= 0 - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + var yyj1358 int + var yyb1358 bool + var yyhl1358 bool = l >= 0 + yyj1358++ + if yyhl1358 { + yyb1358 = yyj1358 > l } else { - yyb1335 = r.CheckBreak() + yyb1358 = r.CheckBreak() } - if yyb1335 { + if yyb1358 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18400,13 +18671,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int32(r.DecodeInt(32)) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1358++ + if yyhl1358 { + yyb1358 = yyj1358 > l } else { - yyb1335 = r.CheckBreak() + yyb1358 = r.CheckBreak() } - if yyb1335 { + if yyb1358 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18416,13 +18687,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int32(r.DecodeInt(32)) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1358++ + if yyhl1358 { + yyb1358 = yyj1358 > l } else { - yyb1335 = r.CheckBreak() + yyb1358 = r.CheckBreak() } - if yyb1335 { + if yyb1358 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18432,13 +18703,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1358++ + if yyhl1358 { + yyb1358 = yyj1358 > l } else { - yyb1335 = r.CheckBreak() + yyb1358 = r.CheckBreak() } - if yyb1335 { + if yyb1358 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18448,13 +18719,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1358++ + if yyhl1358 { + yyb1358 = yyj1358 > l } else { - yyb1335 = r.CheckBreak() + yyb1358 = r.CheckBreak() } - if yyb1335 { + if yyb1358 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18462,26 +18733,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1340 := &x.StartedAt - yym1341 := z.DecBinary() - _ = yym1341 + yyv1363 := &x.StartedAt + yym1364 := z.DecBinary() + _ = yym1364 if false { - } else if z.HasExtensions() && z.DecExt(yyv1340) { - } else if yym1341 { - z.DecBinaryUnmarshal(yyv1340) - } else if !yym1341 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1340) + } else if z.HasExtensions() && z.DecExt(yyv1363) { + } else if yym1364 { + z.DecBinaryUnmarshal(yyv1363) + } else if !yym1364 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1363) } else { - z.DecFallback(yyv1340, false) + z.DecFallback(yyv1363, false) } } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1358++ + if yyhl1358 { + yyb1358 = yyj1358 > l } else { - yyb1335 = r.CheckBreak() + yyb1358 = r.CheckBreak() } - if yyb1335 { + if yyb1358 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18489,26 +18760,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1342 := &x.FinishedAt - yym1343 := z.DecBinary() - _ = yym1343 + yyv1365 := &x.FinishedAt + yym1366 := z.DecBinary() + _ = yym1366 if false { - } else if z.HasExtensions() && z.DecExt(yyv1342) { - } else if yym1343 { - z.DecBinaryUnmarshal(yyv1342) - } else if !yym1343 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1342) + } else if z.HasExtensions() && z.DecExt(yyv1365) { + } else if yym1366 { + z.DecBinaryUnmarshal(yyv1365) + } else if !yym1366 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1365) } else { - z.DecFallback(yyv1342, false) + z.DecFallback(yyv1365, false) } } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1358++ + if yyhl1358 { + yyb1358 = yyj1358 > l } else { - yyb1335 = r.CheckBreak() + yyb1358 = r.CheckBreak() } - if yyb1335 { + if yyb1358 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18519,17 +18790,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1358++ + if yyhl1358 { + yyb1358 = yyj1358 > l } else { - yyb1335 = r.CheckBreak() + yyb1358 = r.CheckBreak() } - if yyb1335 { + if yyb1358 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1335-1, "") + z.DecStructFieldNotFound(yyj1358-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18541,35 +18812,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1345 := z.EncBinary() - _ = yym1345 + yym1368 := z.EncBinary() + _ = yym1368 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1346 := !z.EncBinary() - yy2arr1346 := z.EncBasicHandle().StructToArray - var yyq1346 [3]bool - _, _, _ = yysep1346, yyq1346, yy2arr1346 - const yyr1346 bool = false - yyq1346[0] = x.Waiting != nil - yyq1346[1] = x.Running != nil - yyq1346[2] = x.Terminated != nil - var yynn1346 int - if yyr1346 || yy2arr1346 { + yysep1369 := !z.EncBinary() + yy2arr1369 := z.EncBasicHandle().StructToArray + var yyq1369 [3]bool + _, _, _ = yysep1369, yyq1369, yy2arr1369 + const yyr1369 bool = false + yyq1369[0] = x.Waiting != nil + yyq1369[1] = x.Running != nil + yyq1369[2] = x.Terminated != nil + var yynn1369 int + if yyr1369 || yy2arr1369 { r.EncodeArrayStart(3) } else { - yynn1346 = 0 - for _, b := range yyq1346 { + yynn1369 = 0 + for _, b := range yyq1369 { if b { - yynn1346++ + yynn1369++ } } - r.EncodeMapStart(yynn1346) - yynn1346 = 0 + r.EncodeMapStart(yynn1369) + yynn1369 = 0 } - if yyr1346 || yy2arr1346 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1346[0] { + if yyq1369[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -18579,7 +18850,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1346[0] { + if yyq1369[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18590,9 +18861,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1346 || yy2arr1346 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1346[1] { + if yyq1369[1] { if x.Running == nil { r.EncodeNil() } else { @@ -18602,7 +18873,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1346[1] { + if yyq1369[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18613,9 +18884,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1346 || yy2arr1346 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1346[2] { + if yyq1369[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -18625,7 +18896,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1346[2] { + if yyq1369[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18636,7 +18907,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1346 || yy2arr1346 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18649,25 +18920,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1350 := z.DecBinary() - _ = yym1350 + yym1373 := z.DecBinary() + _ = yym1373 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1351 := r.ContainerType() - if yyct1351 == codecSelferValueTypeMap1234 { - yyl1351 := r.ReadMapStart() - if yyl1351 == 0 { + yyct1374 := r.ContainerType() + if yyct1374 == codecSelferValueTypeMap1234 { + yyl1374 := r.ReadMapStart() + if yyl1374 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1351, d) + x.codecDecodeSelfFromMap(yyl1374, d) } - } else if yyct1351 == codecSelferValueTypeArray1234 { - yyl1351 := r.ReadArrayStart() - if yyl1351 == 0 { + } else if yyct1374 == codecSelferValueTypeArray1234 { + yyl1374 := r.ReadArrayStart() + if yyl1374 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1351, d) + x.codecDecodeSelfFromArray(yyl1374, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18679,12 +18950,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1352Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1352Slc - var yyhl1352 bool = l >= 0 - for yyj1352 := 0; ; yyj1352++ { - if yyhl1352 { - if yyj1352 >= l { + var yys1375Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1375Slc + var yyhl1375 bool = l >= 0 + for yyj1375 := 0; ; yyj1375++ { + if yyhl1375 { + if yyj1375 >= l { break } } else { @@ -18693,10 +18964,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1352Slc = r.DecodeBytes(yys1352Slc, true, true) - yys1352 := string(yys1352Slc) + yys1375Slc = r.DecodeBytes(yys1375Slc, true, true) + yys1375 := string(yys1375Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1352 { + switch yys1375 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -18731,9 +19002,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1352) - } // end switch yys1352 - } // end for yyj1352 + z.DecStructFieldNotFound(-1, yys1375) + } // end switch yys1375 + } // end for yyj1375 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18741,16 +19012,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1356 int - var yyb1356 bool - var yyhl1356 bool = l >= 0 - yyj1356++ - if yyhl1356 { - yyb1356 = yyj1356 > l + var yyj1379 int + var yyb1379 bool + var yyhl1379 bool = l >= 0 + yyj1379++ + if yyhl1379 { + yyb1379 = yyj1379 > l } else { - yyb1356 = r.CheckBreak() + yyb1379 = r.CheckBreak() } - if yyb1356 { + if yyb1379 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18765,13 +19036,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1356++ - if yyhl1356 { - yyb1356 = yyj1356 > l + yyj1379++ + if yyhl1379 { + yyb1379 = yyj1379 > l } else { - yyb1356 = r.CheckBreak() + yyb1379 = r.CheckBreak() } - if yyb1356 { + if yyb1379 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18786,13 +19057,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1356++ - if yyhl1356 { - yyb1356 = yyj1356 > l + yyj1379++ + if yyhl1379 { + yyb1379 = yyj1379 > l } else { - yyb1356 = r.CheckBreak() + yyb1379 = r.CheckBreak() } - if yyb1356 { + if yyb1379 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18808,17 +19079,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1356++ - if yyhl1356 { - yyb1356 = yyj1356 > l + yyj1379++ + if yyhl1379 { + yyb1379 = yyj1379 > l } else { - yyb1356 = r.CheckBreak() + yyb1379 = r.CheckBreak() } - if yyb1356 { + if yyb1379 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1356-1, "") + z.DecStructFieldNotFound(yyj1379-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18830,36 +19101,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1360 := z.EncBinary() - _ = yym1360 + yym1383 := z.EncBinary() + _ = yym1383 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1361 := !z.EncBinary() - yy2arr1361 := z.EncBasicHandle().StructToArray - var yyq1361 [8]bool - _, _, _ = yysep1361, yyq1361, yy2arr1361 - const yyr1361 bool = false - yyq1361[1] = true - yyq1361[2] = true - yyq1361[7] = x.ContainerID != "" - var yynn1361 int - if yyr1361 || yy2arr1361 { + yysep1384 := !z.EncBinary() + yy2arr1384 := z.EncBasicHandle().StructToArray + var yyq1384 [8]bool + _, _, _ = yysep1384, yyq1384, yy2arr1384 + const yyr1384 bool = false + yyq1384[1] = true + yyq1384[2] = true + yyq1384[7] = x.ContainerID != "" + var yynn1384 int + if yyr1384 || yy2arr1384 { r.EncodeArrayStart(8) } else { - yynn1361 = 5 - for _, b := range yyq1361 { + yynn1384 = 5 + for _, b := range yyq1384 { if b { - yynn1361++ + yynn1384++ } } - r.EncodeMapStart(yynn1361) - yynn1361 = 0 + r.EncodeMapStart(yynn1384) + yynn1384 = 0 } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1363 := z.EncBinary() - _ = yym1363 + yym1386 := z.EncBinary() + _ = yym1386 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -18868,51 +19139,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1364 := z.EncBinary() - _ = yym1364 + yym1387 := z.EncBinary() + _ = yym1387 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1361[1] { - yy1366 := &x.State - yy1366.CodecEncodeSelf(e) + if yyq1384[1] { + yy1389 := &x.State + yy1389.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1361[1] { + if yyq1384[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1367 := &x.State - yy1367.CodecEncodeSelf(e) + yy1390 := &x.State + yy1390.CodecEncodeSelf(e) } } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1361[2] { - yy1369 := &x.LastTerminationState - yy1369.CodecEncodeSelf(e) + if yyq1384[2] { + yy1392 := &x.LastTerminationState + yy1392.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1361[2] { + if yyq1384[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1370 := &x.LastTerminationState - yy1370.CodecEncodeSelf(e) + yy1393 := &x.LastTerminationState + yy1393.CodecEncodeSelf(e) } } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1372 := z.EncBinary() - _ = yym1372 + yym1395 := z.EncBinary() + _ = yym1395 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -18921,17 +19192,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1373 := z.EncBinary() - _ = yym1373 + yym1396 := z.EncBinary() + _ = yym1396 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1375 := z.EncBinary() - _ = yym1375 + yym1398 := z.EncBinary() + _ = yym1398 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -18940,17 +19211,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1376 := z.EncBinary() - _ = yym1376 + yym1399 := z.EncBinary() + _ = yym1399 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1378 := z.EncBinary() - _ = yym1378 + yym1401 := z.EncBinary() + _ = yym1401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -18959,17 +19230,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1379 := z.EncBinary() - _ = yym1379 + yym1402 := z.EncBinary() + _ = yym1402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1381 := z.EncBinary() - _ = yym1381 + yym1404 := z.EncBinary() + _ = yym1404 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -18978,18 +19249,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1382 := z.EncBinary() - _ = yym1382 + yym1405 := z.EncBinary() + _ = yym1405 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1361[7] { - yym1384 := z.EncBinary() - _ = yym1384 + if yyq1384[7] { + yym1407 := z.EncBinary() + _ = yym1407 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -18998,19 +19269,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1361[7] { + if yyq1384[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1385 := z.EncBinary() - _ = yym1385 + yym1408 := z.EncBinary() + _ = yym1408 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1361 || yy2arr1361 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19023,25 +19294,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1386 := z.DecBinary() - _ = yym1386 + yym1409 := z.DecBinary() + _ = yym1409 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1387 := r.ContainerType() - if yyct1387 == codecSelferValueTypeMap1234 { - yyl1387 := r.ReadMapStart() - if yyl1387 == 0 { + yyct1410 := r.ContainerType() + if yyct1410 == codecSelferValueTypeMap1234 { + yyl1410 := r.ReadMapStart() + if yyl1410 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1387, d) + x.codecDecodeSelfFromMap(yyl1410, d) } - } else if yyct1387 == codecSelferValueTypeArray1234 { - yyl1387 := r.ReadArrayStart() - if yyl1387 == 0 { + } else if yyct1410 == codecSelferValueTypeArray1234 { + yyl1410 := r.ReadArrayStart() + if yyl1410 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1387, d) + x.codecDecodeSelfFromArray(yyl1410, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19053,12 +19324,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1388Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1388Slc - var yyhl1388 bool = l >= 0 - for yyj1388 := 0; ; yyj1388++ { - if yyhl1388 { - if yyj1388 >= l { + var yys1411Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1411Slc + var yyhl1411 bool = l >= 0 + for yyj1411 := 0; ; yyj1411++ { + if yyhl1411 { + if yyj1411 >= l { break } } else { @@ -19067,10 +19338,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1388Slc = r.DecodeBytes(yys1388Slc, true, true) - yys1388 := string(yys1388Slc) + yys1411Slc = r.DecodeBytes(yys1411Slc, true, true) + yys1411 := string(yys1411Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1388 { + switch yys1411 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -19081,15 +19352,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1390 := &x.State - yyv1390.CodecDecodeSelf(d) + yyv1413 := &x.State + yyv1413.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1391 := &x.LastTerminationState - yyv1391.CodecDecodeSelf(d) + yyv1414 := &x.LastTerminationState + yyv1414.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -19122,9 +19393,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1388) - } // end switch yys1388 - } // end for yyj1388 + z.DecStructFieldNotFound(-1, yys1411) + } // end switch yys1411 + } // end for yyj1411 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19132,16 +19403,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1397 int - var yyb1397 bool - var yyhl1397 bool = l >= 0 - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + var yyj1420 int + var yyb1420 bool + var yyhl1420 bool = l >= 0 + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19151,13 +19422,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19165,16 +19436,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1399 := &x.State - yyv1399.CodecDecodeSelf(d) + yyv1422 := &x.State + yyv1422.CodecDecodeSelf(d) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19182,16 +19453,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1400 := &x.LastTerminationState - yyv1400.CodecDecodeSelf(d) + yyv1423 := &x.LastTerminationState + yyv1423.CodecDecodeSelf(d) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19201,13 +19472,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19217,13 +19488,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int32(r.DecodeInt(32)) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19233,13 +19504,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19249,13 +19520,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19266,17 +19537,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1397 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1397 { + if yyb1420 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1397-1, "") + z.DecStructFieldNotFound(yyj1420-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19285,8 +19556,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1406 := z.EncBinary() - _ = yym1406 + yym1429 := z.EncBinary() + _ = yym1429 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19298,8 +19569,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1407 := z.DecBinary() - _ = yym1407 + yym1430 := z.DecBinary() + _ = yym1430 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19311,8 +19582,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1408 := z.EncBinary() - _ = yym1408 + yym1431 := z.EncBinary() + _ = yym1431 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19324,8 +19595,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1409 := z.DecBinary() - _ = yym1409 + yym1432 := z.DecBinary() + _ = yym1432 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19340,34 +19611,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1410 := z.EncBinary() - _ = yym1410 + yym1433 := z.EncBinary() + _ = yym1433 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1411 := !z.EncBinary() - yy2arr1411 := z.EncBasicHandle().StructToArray - var yyq1411 [6]bool - _, _, _ = yysep1411, yyq1411, yy2arr1411 - const yyr1411 bool = false - yyq1411[2] = true - yyq1411[3] = true - yyq1411[4] = x.Reason != "" - yyq1411[5] = x.Message != "" - var yynn1411 int - if yyr1411 || yy2arr1411 { + yysep1434 := !z.EncBinary() + yy2arr1434 := z.EncBasicHandle().StructToArray + var yyq1434 [6]bool + _, _, _ = yysep1434, yyq1434, yy2arr1434 + const yyr1434 bool = false + yyq1434[2] = true + yyq1434[3] = true + yyq1434[4] = x.Reason != "" + yyq1434[5] = x.Message != "" + var yynn1434 int + if yyr1434 || yy2arr1434 { r.EncodeArrayStart(6) } else { - yynn1411 = 2 - for _, b := range yyq1411 { + yynn1434 = 2 + for _, b := range yyq1434 { if b { - yynn1411++ + yynn1434++ } } - r.EncodeMapStart(yynn1411) - yynn1411 = 0 + r.EncodeMapStart(yynn1434) + yynn1434 = 0 } - if yyr1411 || yy2arr1411 { + if yyr1434 || yy2arr1434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -19376,7 +19647,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1411 || yy2arr1411 { + if yyr1434 || yy2arr1434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -19385,85 +19656,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1411 || yy2arr1411 { + if yyr1434 || yy2arr1434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[2] { - yy1415 := &x.LastProbeTime - yym1416 := z.EncBinary() - _ = yym1416 + if yyq1434[2] { + yy1438 := &x.LastProbeTime + yym1439 := z.EncBinary() + _ = yym1439 if false { - } else if z.HasExtensions() && z.EncExt(yy1415) { - } else if yym1416 { - z.EncBinaryMarshal(yy1415) - } else if !yym1416 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1415) + } else if z.HasExtensions() && z.EncExt(yy1438) { + } else if yym1439 { + z.EncBinaryMarshal(yy1438) + } else if !yym1439 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1438) } else { - z.EncFallback(yy1415) + z.EncFallback(yy1438) } } else { r.EncodeNil() } } else { - if yyq1411[2] { + if yyq1434[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1417 := &x.LastProbeTime - yym1418 := z.EncBinary() - _ = yym1418 + yy1440 := &x.LastProbeTime + yym1441 := z.EncBinary() + _ = yym1441 if false { - } else if z.HasExtensions() && z.EncExt(yy1417) { - } else if yym1418 { - z.EncBinaryMarshal(yy1417) - } else if !yym1418 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1417) + } else if z.HasExtensions() && z.EncExt(yy1440) { + } else if yym1441 { + z.EncBinaryMarshal(yy1440) + } else if !yym1441 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1440) } else { - z.EncFallback(yy1417) + z.EncFallback(yy1440) } } } - if yyr1411 || yy2arr1411 { + if yyr1434 || yy2arr1434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[3] { - yy1420 := &x.LastTransitionTime - yym1421 := z.EncBinary() - _ = yym1421 + if yyq1434[3] { + yy1443 := &x.LastTransitionTime + yym1444 := z.EncBinary() + _ = yym1444 if false { - } else if z.HasExtensions() && z.EncExt(yy1420) { - } else if yym1421 { - z.EncBinaryMarshal(yy1420) - } else if !yym1421 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1420) + } else if z.HasExtensions() && z.EncExt(yy1443) { + } else if yym1444 { + z.EncBinaryMarshal(yy1443) + } else if !yym1444 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1443) } else { - z.EncFallback(yy1420) + z.EncFallback(yy1443) } } else { r.EncodeNil() } } else { - if yyq1411[3] { + if yyq1434[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1422 := &x.LastTransitionTime - yym1423 := z.EncBinary() - _ = yym1423 + yy1445 := &x.LastTransitionTime + yym1446 := z.EncBinary() + _ = yym1446 if false { - } else if z.HasExtensions() && z.EncExt(yy1422) { - } else if yym1423 { - z.EncBinaryMarshal(yy1422) - } else if !yym1423 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1422) + } else if z.HasExtensions() && z.EncExt(yy1445) { + } else if yym1446 { + z.EncBinaryMarshal(yy1445) + } else if !yym1446 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1445) } else { - z.EncFallback(yy1422) + z.EncFallback(yy1445) } } } - if yyr1411 || yy2arr1411 { + if yyr1434 || yy2arr1434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[4] { - yym1425 := z.EncBinary() - _ = yym1425 + if yyq1434[4] { + yym1448 := z.EncBinary() + _ = yym1448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -19472,23 +19743,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1411[4] { + if yyq1434[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1426 := z.EncBinary() - _ = yym1426 + yym1449 := z.EncBinary() + _ = yym1449 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1411 || yy2arr1411 { + if yyr1434 || yy2arr1434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[5] { - yym1428 := z.EncBinary() - _ = yym1428 + if yyq1434[5] { + yym1451 := z.EncBinary() + _ = yym1451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -19497,19 +19768,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1411[5] { + if yyq1434[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1429 := z.EncBinary() - _ = yym1429 + yym1452 := z.EncBinary() + _ = yym1452 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1411 || yy2arr1411 { + if yyr1434 || yy2arr1434 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19522,25 +19793,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1430 := z.DecBinary() - _ = yym1430 + yym1453 := z.DecBinary() + _ = yym1453 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1431 := r.ContainerType() - if yyct1431 == codecSelferValueTypeMap1234 { - yyl1431 := r.ReadMapStart() - if yyl1431 == 0 { + yyct1454 := r.ContainerType() + if yyct1454 == codecSelferValueTypeMap1234 { + yyl1454 := r.ReadMapStart() + if yyl1454 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1431, d) + x.codecDecodeSelfFromMap(yyl1454, d) } - } else if yyct1431 == codecSelferValueTypeArray1234 { - yyl1431 := r.ReadArrayStart() - if yyl1431 == 0 { + } else if yyct1454 == codecSelferValueTypeArray1234 { + yyl1454 := r.ReadArrayStart() + if yyl1454 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1431, d) + x.codecDecodeSelfFromArray(yyl1454, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19552,12 +19823,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1432Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1432Slc - var yyhl1432 bool = l >= 0 - for yyj1432 := 0; ; yyj1432++ { - if yyhl1432 { - if yyj1432 >= l { + var yys1455Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1455Slc + var yyhl1455 bool = l >= 0 + for yyj1455 := 0; ; yyj1455++ { + if yyhl1455 { + if yyj1455 >= l { break } } else { @@ -19566,10 +19837,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1432Slc = r.DecodeBytes(yys1432Slc, true, true) - yys1432 := string(yys1432Slc) + yys1455Slc = r.DecodeBytes(yys1455Slc, true, true) + yys1455 := string(yys1455Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1432 { + switch yys1455 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -19586,34 +19857,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1435 := &x.LastProbeTime - yym1436 := z.DecBinary() - _ = yym1436 + yyv1458 := &x.LastProbeTime + yym1459 := z.DecBinary() + _ = yym1459 if false { - } else if z.HasExtensions() && z.DecExt(yyv1435) { - } else if yym1436 { - z.DecBinaryUnmarshal(yyv1435) - } else if !yym1436 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1435) + } else if z.HasExtensions() && z.DecExt(yyv1458) { + } else if yym1459 { + z.DecBinaryUnmarshal(yyv1458) + } else if !yym1459 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1458) } else { - z.DecFallback(yyv1435, false) + z.DecFallback(yyv1458, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1437 := &x.LastTransitionTime - yym1438 := z.DecBinary() - _ = yym1438 + yyv1460 := &x.LastTransitionTime + yym1461 := z.DecBinary() + _ = yym1461 if false { - } else if z.HasExtensions() && z.DecExt(yyv1437) { - } else if yym1438 { - z.DecBinaryUnmarshal(yyv1437) - } else if !yym1438 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1437) + } else if z.HasExtensions() && z.DecExt(yyv1460) { + } else if yym1461 { + z.DecBinaryUnmarshal(yyv1460) + } else if !yym1461 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1460) } else { - z.DecFallback(yyv1437, false) + z.DecFallback(yyv1460, false) } } case "reason": @@ -19629,343 +19900,13 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1432) - } // end switch yys1432 - } // end for yyj1432 + z.DecStructFieldNotFound(-1, yys1455) + } // end switch yys1455 + } // end for yyj1455 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1441 int - var yyb1441 bool - var yyhl1441 bool = l >= 0 - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l - } else { - yyb1441 = r.CheckBreak() - } - if yyb1441 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = PodConditionType(r.DecodeString()) - } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l - } else { - yyb1441 = r.CheckBreak() - } - if yyb1441 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = ConditionStatus(r.DecodeString()) - } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l - } else { - yyb1441 = r.CheckBreak() - } - if yyb1441 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.LastProbeTime = pkg2_unversioned.Time{} - } else { - yyv1444 := &x.LastProbeTime - yym1445 := z.DecBinary() - _ = yym1445 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1444) { - } else if yym1445 { - z.DecBinaryUnmarshal(yyv1444) - } else if !yym1445 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1444) - } else { - z.DecFallback(yyv1444, false) - } - } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l - } else { - yyb1441 = r.CheckBreak() - } - if yyb1441 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.LastTransitionTime = pkg2_unversioned.Time{} - } else { - yyv1446 := &x.LastTransitionTime - yym1447 := z.DecBinary() - _ = yym1447 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1446) { - } else if yym1447 { - z.DecBinaryUnmarshal(yyv1446) - } else if !yym1447 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1446) - } else { - z.DecFallback(yyv1446, false) - } - } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l - } else { - yyb1441 = r.CheckBreak() - } - if yyb1441 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reason = "" - } else { - x.Reason = string(r.DecodeString()) - } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l - } else { - yyb1441 = r.CheckBreak() - } - if yyb1441 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - for { - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l - } else { - yyb1441 = r.CheckBreak() - } - if yyb1441 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1441-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym1450 := z.EncBinary() - _ = yym1450 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1451 := z.DecBinary() - _ = yym1451 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym1452 := z.EncBinary() - _ = yym1452 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1453 := z.DecBinary() - _ = yym1453 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1454 := z.EncBinary() - _ = yym1454 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1455 := !z.EncBinary() - yy2arr1455 := z.EncBasicHandle().StructToArray - var yyq1455 [1]bool - _, _, _ = yysep1455, yyq1455, yy2arr1455 - const yyr1455 bool = false - var yynn1455 int - if yyr1455 || yy2arr1455 { - r.EncodeArrayStart(1) - } else { - yynn1455 = 1 - for _, b := range yyq1455 { - if b { - yynn1455++ - } - } - r.EncodeMapStart(yynn1455) - yynn1455 = 0 - } - if yyr1455 || yy2arr1455 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.NodeSelectorTerms == nil { - r.EncodeNil() - } else { - yym1457 := z.EncBinary() - _ = yym1457 - if false { - } else { - h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeSelectorTerms")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.NodeSelectorTerms == nil { - r.EncodeNil() - } else { - yym1458 := z.EncBinary() - _ = yym1458 - if false { - } else { - h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) - } - } - } - if yyr1455 || yy2arr1455 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1459 := z.DecBinary() - _ = yym1459 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1460 := r.ContainerType() - if yyct1460 == codecSelferValueTypeMap1234 { - yyl1460 := r.ReadMapStart() - if yyl1460 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1460, d) - } - } else if yyct1460 == codecSelferValueTypeArray1234 { - yyl1460 := r.ReadArrayStart() - if yyl1460 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1460, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1461Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1461Slc - var yyhl1461 bool = l >= 0 - for yyj1461 := 0; ; yyj1461++ { - if yyhl1461 { - if yyj1461 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1461Slc = r.DecodeBytes(yys1461Slc, true, true) - yys1461 := string(yys1461Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1461 { - case "nodeSelectorTerms": - if r.TryDecodeAsNil() { - x.NodeSelectorTerms = nil - } else { - yyv1462 := &x.NodeSelectorTerms - yym1463 := z.DecBinary() - _ = yym1463 - if false { - } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1462), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys1461) - } // end switch yys1461 - } // end for yyj1461 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -19984,16 +19925,112 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.NodeSelectorTerms = nil + x.Type = "" } else { - yyv1465 := &x.NodeSelectorTerms - yym1466 := z.DecBinary() - _ = yym1466 + x.Type = PodConditionType(r.DecodeString()) + } + yyj1464++ + if yyhl1464 { + yyb1464 = yyj1464 > l + } else { + yyb1464 = r.CheckBreak() + } + if yyb1464 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = ConditionStatus(r.DecodeString()) + } + yyj1464++ + if yyhl1464 { + yyb1464 = yyj1464 > l + } else { + yyb1464 = r.CheckBreak() + } + if yyb1464 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LastProbeTime = pkg2_unversioned.Time{} + } else { + yyv1467 := &x.LastProbeTime + yym1468 := z.DecBinary() + _ = yym1468 if false { + } else if z.HasExtensions() && z.DecExt(yyv1467) { + } else if yym1468 { + z.DecBinaryUnmarshal(yyv1467) + } else if !yym1468 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1467) } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1465), d) + z.DecFallback(yyv1467, false) } } + yyj1464++ + if yyhl1464 { + yyb1464 = yyj1464 > l + } else { + yyb1464 = r.CheckBreak() + } + if yyb1464 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LastTransitionTime = pkg2_unversioned.Time{} + } else { + yyv1469 := &x.LastTransitionTime + yym1470 := z.DecBinary() + _ = yym1470 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1469) { + } else if yym1470 { + z.DecBinaryUnmarshal(yyv1469) + } else if !yym1470 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1469) + } else { + z.DecFallback(yyv1469, false) + } + } + yyj1464++ + if yyhl1464 { + yyb1464 = yyj1464 > l + } else { + yyb1464 = r.CheckBreak() + } + if yyb1464 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + yyj1464++ + if yyhl1464 { + yyb1464 = yyj1464 > l + } else { + yyb1464 = r.CheckBreak() + } + if yyb1464 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } for { yyj1464++ if yyhl1464 { @@ -20010,6 +20047,240 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1473 := z.EncBinary() + _ = yym1473 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1474 := z.DecBinary() + _ = yym1474 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1475 := z.EncBinary() + _ = yym1475 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1476 := z.DecBinary() + _ = yym1476 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1477 := z.EncBinary() + _ = yym1477 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1478 := !z.EncBinary() + yy2arr1478 := z.EncBasicHandle().StructToArray + var yyq1478 [1]bool + _, _, _ = yysep1478, yyq1478, yy2arr1478 + const yyr1478 bool = false + var yynn1478 int + if yyr1478 || yy2arr1478 { + r.EncodeArrayStart(1) + } else { + yynn1478 = 1 + for _, b := range yyq1478 { + if b { + yynn1478++ + } + } + r.EncodeMapStart(yynn1478) + yynn1478 = 0 + } + if yyr1478 || yy2arr1478 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.NodeSelectorTerms == nil { + r.EncodeNil() + } else { + yym1480 := z.EncBinary() + _ = yym1480 + if false { + } else { + h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeSelectorTerms")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.NodeSelectorTerms == nil { + r.EncodeNil() + } else { + yym1481 := z.EncBinary() + _ = yym1481 + if false { + } else { + h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) + } + } + } + if yyr1478 || yy2arr1478 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1482 := z.DecBinary() + _ = yym1482 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1483 := r.ContainerType() + if yyct1483 == codecSelferValueTypeMap1234 { + yyl1483 := r.ReadMapStart() + if yyl1483 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1483, d) + } + } else if yyct1483 == codecSelferValueTypeArray1234 { + yyl1483 := r.ReadArrayStart() + if yyl1483 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1483, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1484Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1484Slc + var yyhl1484 bool = l >= 0 + for yyj1484 := 0; ; yyj1484++ { + if yyhl1484 { + if yyj1484 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1484Slc = r.DecodeBytes(yys1484Slc, true, true) + yys1484 := string(yys1484Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1484 { + case "nodeSelectorTerms": + if r.TryDecodeAsNil() { + x.NodeSelectorTerms = nil + } else { + yyv1485 := &x.NodeSelectorTerms + yym1486 := z.DecBinary() + _ = yym1486 + if false { + } else { + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1485), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys1484) + } // end switch yys1484 + } // end for yyj1484 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1487 int + var yyb1487 bool + var yyhl1487 bool = l >= 0 + yyj1487++ + if yyhl1487 { + yyb1487 = yyj1487 > l + } else { + yyb1487 = r.CheckBreak() + } + if yyb1487 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.NodeSelectorTerms = nil + } else { + yyv1488 := &x.NodeSelectorTerms + yym1489 := z.DecBinary() + _ = yym1489 + if false { + } else { + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1488), d) + } + } + for { + yyj1487++ + if yyhl1487 { + yyb1487 = yyj1487 > l + } else { + yyb1487 = r.CheckBreak() + } + if yyb1487 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1487-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -20017,36 +20288,36 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1467 := z.EncBinary() - _ = yym1467 + yym1490 := z.EncBinary() + _ = yym1490 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1468 := !z.EncBinary() - yy2arr1468 := z.EncBasicHandle().StructToArray - var yyq1468 [1]bool - _, _, _ = yysep1468, yyq1468, yy2arr1468 - const yyr1468 bool = false - var yynn1468 int - if yyr1468 || yy2arr1468 { + yysep1491 := !z.EncBinary() + yy2arr1491 := z.EncBasicHandle().StructToArray + var yyq1491 [1]bool + _, _, _ = yysep1491, yyq1491, yy2arr1491 + const yyr1491 bool = false + var yynn1491 int + if yyr1491 || yy2arr1491 { r.EncodeArrayStart(1) } else { - yynn1468 = 1 - for _, b := range yyq1468 { + yynn1491 = 1 + for _, b := range yyq1491 { if b { - yynn1468++ + yynn1491++ } } - r.EncodeMapStart(yynn1468) - yynn1468 = 0 + r.EncodeMapStart(yynn1491) + yynn1491 = 0 } - if yyr1468 || yy2arr1468 { + if yyr1491 || yy2arr1491 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1470 := z.EncBinary() - _ = yym1470 + yym1493 := z.EncBinary() + _ = yym1493 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) @@ -20059,15 +20330,15 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1471 := z.EncBinary() - _ = yym1471 + yym1494 := z.EncBinary() + _ = yym1494 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) } } } - if yyr1468 || yy2arr1468 { + if yyr1491 || yy2arr1491 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20080,25 +20351,25 @@ func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1472 := z.DecBinary() - _ = yym1472 + yym1495 := z.DecBinary() + _ = yym1495 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1473 := r.ContainerType() - if yyct1473 == codecSelferValueTypeMap1234 { - yyl1473 := r.ReadMapStart() - if yyl1473 == 0 { + yyct1496 := r.ContainerType() + if yyct1496 == codecSelferValueTypeMap1234 { + yyl1496 := r.ReadMapStart() + if yyl1496 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1473, d) + x.codecDecodeSelfFromMap(yyl1496, d) } - } else if yyct1473 == codecSelferValueTypeArray1234 { - yyl1473 := r.ReadArrayStart() - if yyl1473 == 0 { + } else if yyct1496 == codecSelferValueTypeArray1234 { + yyl1496 := r.ReadArrayStart() + if yyl1496 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1473, d) + x.codecDecodeSelfFromArray(yyl1496, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20110,12 +20381,12 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1474Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1474Slc - var yyhl1474 bool = l >= 0 - for yyj1474 := 0; ; yyj1474++ { - if yyhl1474 { - if yyj1474 >= l { + var yys1497Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1497Slc + var yyhl1497 bool = l >= 0 + for yyj1497 := 0; ; yyj1497++ { + if yyhl1497 { + if yyj1497 >= l { break } } else { @@ -20124,26 +20395,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1474Slc = r.DecodeBytes(yys1474Slc, true, true) - yys1474 := string(yys1474Slc) + yys1497Slc = r.DecodeBytes(yys1497Slc, true, true) + yys1497 := string(yys1497Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1474 { + switch yys1497 { case "matchExpressions": if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1475 := &x.MatchExpressions - yym1476 := z.DecBinary() - _ = yym1476 + yyv1498 := &x.MatchExpressions + yym1499 := z.DecBinary() + _ = yym1499 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1475), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1498), d) } } default: - z.DecStructFieldNotFound(-1, yys1474) - } // end switch yys1474 - } // end for yyj1474 + z.DecStructFieldNotFound(-1, yys1497) + } // end switch yys1497 + } // end for yyj1497 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20151,16 +20422,16 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1477 int - var yyb1477 bool - var yyhl1477 bool = l >= 0 - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + var yyj1500 int + var yyb1500 bool + var yyhl1500 bool = l >= 0 + yyj1500++ + if yyhl1500 { + yyb1500 = yyj1500 > l } else { - yyb1477 = r.CheckBreak() + yyb1500 = r.CheckBreak() } - if yyb1477 { + if yyb1500 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20168,26 +20439,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1478 := &x.MatchExpressions - yym1479 := z.DecBinary() - _ = yym1479 + yyv1501 := &x.MatchExpressions + yym1502 := z.DecBinary() + _ = yym1502 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1478), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1501), d) } } for { - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1500++ + if yyhl1500 { + yyb1500 = yyj1500 > l } else { - yyb1477 = r.CheckBreak() + yyb1500 = r.CheckBreak() } - if yyb1477 { + if yyb1500 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1477-1, "") + z.DecStructFieldNotFound(yyj1500-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20199,34 +20470,34 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1480 := z.EncBinary() - _ = yym1480 + yym1503 := z.EncBinary() + _ = yym1503 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1481 := !z.EncBinary() - yy2arr1481 := z.EncBasicHandle().StructToArray - var yyq1481 [3]bool - _, _, _ = yysep1481, yyq1481, yy2arr1481 - const yyr1481 bool = false - yyq1481[2] = len(x.Values) != 0 - var yynn1481 int - if yyr1481 || yy2arr1481 { + yysep1504 := !z.EncBinary() + yy2arr1504 := z.EncBasicHandle().StructToArray + var yyq1504 [3]bool + _, _, _ = yysep1504, yyq1504, yy2arr1504 + const yyr1504 bool = false + yyq1504[2] = len(x.Values) != 0 + var yynn1504 int + if yyr1504 || yy2arr1504 { r.EncodeArrayStart(3) } else { - yynn1481 = 2 - for _, b := range yyq1481 { + yynn1504 = 2 + for _, b := range yyq1504 { if b { - yynn1481++ + yynn1504++ } } - r.EncodeMapStart(yynn1481) - yynn1481 = 0 + r.EncodeMapStart(yynn1504) + yynn1504 = 0 } - if yyr1481 || yy2arr1481 { + if yyr1504 || yy2arr1504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1483 := z.EncBinary() - _ = yym1483 + yym1506 := z.EncBinary() + _ = yym1506 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -20235,14 +20506,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1484 := z.EncBinary() - _ = yym1484 + yym1507 := z.EncBinary() + _ = yym1507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1481 || yy2arr1481 { + if yyr1504 || yy2arr1504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Operator.CodecEncodeSelf(e) } else { @@ -20251,14 +20522,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } - if yyr1481 || yy2arr1481 { + if yyr1504 || yy2arr1504 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1481[2] { + if yyq1504[2] { if x.Values == nil { r.EncodeNil() } else { - yym1487 := z.EncBinary() - _ = yym1487 + yym1510 := z.EncBinary() + _ = yym1510 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -20268,15 +20539,15 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1481[2] { + if yyq1504[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("values")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Values == nil { r.EncodeNil() } else { - yym1488 := z.EncBinary() - _ = yym1488 + yym1511 := z.EncBinary() + _ = yym1511 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -20284,7 +20555,7 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1481 || yy2arr1481 { + if yyr1504 || yy2arr1504 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20297,25 +20568,25 @@ func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1489 := z.DecBinary() - _ = yym1489 + yym1512 := z.DecBinary() + _ = yym1512 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1490 := r.ContainerType() - if yyct1490 == codecSelferValueTypeMap1234 { - yyl1490 := r.ReadMapStart() - if yyl1490 == 0 { + yyct1513 := r.ContainerType() + if yyct1513 == codecSelferValueTypeMap1234 { + yyl1513 := r.ReadMapStart() + if yyl1513 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1490, d) + x.codecDecodeSelfFromMap(yyl1513, d) } - } else if yyct1490 == codecSelferValueTypeArray1234 { - yyl1490 := r.ReadArrayStart() - if yyl1490 == 0 { + } else if yyct1513 == codecSelferValueTypeArray1234 { + yyl1513 := r.ReadArrayStart() + if yyl1513 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1490, d) + x.codecDecodeSelfFromArray(yyl1513, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20327,12 +20598,12 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1491Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1491Slc - var yyhl1491 bool = l >= 0 - for yyj1491 := 0; ; yyj1491++ { - if yyhl1491 { - if yyj1491 >= l { + var yys1514Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1514Slc + var yyhl1514 bool = l >= 0 + for yyj1514 := 0; ; yyj1514++ { + if yyhl1514 { + if yyj1514 >= l { break } } else { @@ -20341,10 +20612,10 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1491Slc = r.DecodeBytes(yys1491Slc, true, true) - yys1491 := string(yys1491Slc) + yys1514Slc = r.DecodeBytes(yys1514Slc, true, true) + yys1514 := string(yys1514Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1491 { + switch yys1514 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -20361,18 +20632,18 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1494 := &x.Values - yym1495 := z.DecBinary() - _ = yym1495 + yyv1517 := &x.Values + yym1518 := z.DecBinary() + _ = yym1518 if false { } else { - z.F.DecSliceStringX(yyv1494, false, d) + z.F.DecSliceStringX(yyv1517, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1491) - } // end switch yys1491 - } // end for yyj1491 + z.DecStructFieldNotFound(-1, yys1514) + } // end switch yys1514 + } // end for yyj1514 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20380,16 +20651,16 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1496 int - var yyb1496 bool - var yyhl1496 bool = l >= 0 - yyj1496++ - if yyhl1496 { - yyb1496 = yyj1496 > l + var yyj1519 int + var yyb1519 bool + var yyhl1519 bool = l >= 0 + yyj1519++ + if yyhl1519 { + yyb1519 = yyj1519 > l } else { - yyb1496 = r.CheckBreak() + yyb1519 = r.CheckBreak() } - if yyb1496 { + if yyb1519 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20399,13 +20670,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Key = string(r.DecodeString()) } - yyj1496++ - if yyhl1496 { - yyb1496 = yyj1496 > l + yyj1519++ + if yyhl1519 { + yyb1519 = yyj1519 > l } else { - yyb1496 = r.CheckBreak() + yyb1519 = r.CheckBreak() } - if yyb1496 { + if yyb1519 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20415,13 +20686,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Operator = NodeSelectorOperator(r.DecodeString()) } - yyj1496++ - if yyhl1496 { - yyb1496 = yyj1496 > l + yyj1519++ + if yyhl1519 { + yyb1519 = yyj1519 > l } else { - yyb1496 = r.CheckBreak() + yyb1519 = r.CheckBreak() } - if yyb1496 { + if yyb1519 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20429,26 +20700,26 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1499 := &x.Values - yym1500 := z.DecBinary() - _ = yym1500 + yyv1522 := &x.Values + yym1523 := z.DecBinary() + _ = yym1523 if false { } else { - z.F.DecSliceStringX(yyv1499, false, d) + z.F.DecSliceStringX(yyv1522, false, d) } } for { - yyj1496++ - if yyhl1496 { - yyb1496 = yyj1496 > l + yyj1519++ + if yyhl1519 { + yyb1519 = yyj1519 > l } else { - yyb1496 = r.CheckBreak() + yyb1519 = r.CheckBreak() } - if yyb1496 { + if yyb1519 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1496-1, "") + z.DecStructFieldNotFound(yyj1519-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20457,8 +20728,8 @@ func (x NodeSelectorOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1501 := z.EncBinary() - _ = yym1501 + yym1524 := z.EncBinary() + _ = yym1524 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -20470,8 +20741,8 @@ func (x *NodeSelectorOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1502 := z.DecBinary() - _ = yym1502 + yym1525 := z.DecBinary() + _ = yym1525 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -20486,33 +20757,33 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1503 := z.EncBinary() - _ = yym1503 + yym1526 := z.EncBinary() + _ = yym1526 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1504 := !z.EncBinary() - yy2arr1504 := z.EncBasicHandle().StructToArray - var yyq1504 [1]bool - _, _, _ = yysep1504, yyq1504, yy2arr1504 - const yyr1504 bool = false - yyq1504[0] = x.NodeAffinity != nil - var yynn1504 int - if yyr1504 || yy2arr1504 { + yysep1527 := !z.EncBinary() + yy2arr1527 := z.EncBasicHandle().StructToArray + var yyq1527 [1]bool + _, _, _ = yysep1527, yyq1527, yy2arr1527 + const yyr1527 bool = false + yyq1527[0] = x.NodeAffinity != nil + var yynn1527 int + if yyr1527 || yy2arr1527 { r.EncodeArrayStart(1) } else { - yynn1504 = 0 - for _, b := range yyq1504 { + yynn1527 = 0 + for _, b := range yyq1527 { if b { - yynn1504++ + yynn1527++ } } - r.EncodeMapStart(yynn1504) - yynn1504 = 0 + r.EncodeMapStart(yynn1527) + yynn1527 = 0 } - if yyr1504 || yy2arr1504 { + if yyr1527 || yy2arr1527 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1504[0] { + if yyq1527[0] { if x.NodeAffinity == nil { r.EncodeNil() } else { @@ -20522,7 +20793,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1504[0] { + if yyq1527[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20533,7 +20804,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1504 || yy2arr1504 { + if yyr1527 || yy2arr1527 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20546,25 +20817,25 @@ func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1506 := z.DecBinary() - _ = yym1506 + yym1529 := z.DecBinary() + _ = yym1529 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1507 := r.ContainerType() - if yyct1507 == codecSelferValueTypeMap1234 { - yyl1507 := r.ReadMapStart() - if yyl1507 == 0 { + yyct1530 := r.ContainerType() + if yyct1530 == codecSelferValueTypeMap1234 { + yyl1530 := r.ReadMapStart() + if yyl1530 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1507, d) + x.codecDecodeSelfFromMap(yyl1530, d) } - } else if yyct1507 == codecSelferValueTypeArray1234 { - yyl1507 := r.ReadArrayStart() - if yyl1507 == 0 { + } else if yyct1530 == codecSelferValueTypeArray1234 { + yyl1530 := r.ReadArrayStart() + if yyl1530 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1507, d) + x.codecDecodeSelfFromArray(yyl1530, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20576,12 +20847,12 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1508Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1508Slc - var yyhl1508 bool = l >= 0 - for yyj1508 := 0; ; yyj1508++ { - if yyhl1508 { - if yyj1508 >= l { + var yys1531Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1531Slc + var yyhl1531 bool = l >= 0 + for yyj1531 := 0; ; yyj1531++ { + if yyhl1531 { + if yyj1531 >= l { break } } else { @@ -20590,10 +20861,10 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1508Slc = r.DecodeBytes(yys1508Slc, true, true) - yys1508 := string(yys1508Slc) + yys1531Slc = r.DecodeBytes(yys1531Slc, true, true) + yys1531 := string(yys1531Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1508 { + switch yys1531 { case "nodeAffinity": if r.TryDecodeAsNil() { if x.NodeAffinity != nil { @@ -20606,9 +20877,9 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodeAffinity.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1508) - } // end switch yys1508 - } // end for yyj1508 + z.DecStructFieldNotFound(-1, yys1531) + } // end switch yys1531 + } // end for yyj1531 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20616,16 +20887,16 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1510 int - var yyb1510 bool - var yyhl1510 bool = l >= 0 - yyj1510++ - if yyhl1510 { - yyb1510 = yyj1510 > l + var yyj1533 int + var yyb1533 bool + var yyhl1533 bool = l >= 0 + yyj1533++ + if yyhl1533 { + yyb1533 = yyj1533 > l } else { - yyb1510 = r.CheckBreak() + yyb1533 = r.CheckBreak() } - if yyb1510 { + if yyb1533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20641,17 +20912,17 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodeAffinity.CodecDecodeSelf(d) } for { - yyj1510++ - if yyhl1510 { - yyb1510 = yyj1510 > l + yyj1533++ + if yyhl1533 { + yyb1533 = yyj1533 > l } else { - yyb1510 = r.CheckBreak() + yyb1533 = r.CheckBreak() } - if yyb1510 { + if yyb1533 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1510-1, "") + z.DecStructFieldNotFound(yyj1533-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20663,35 +20934,35 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1512 := z.EncBinary() - _ = yym1512 + yym1535 := z.EncBinary() + _ = yym1535 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1513 := !z.EncBinary() - yy2arr1513 := z.EncBasicHandle().StructToArray - var yyq1513 [3]bool - _, _, _ = yysep1513, yyq1513, yy2arr1513 - const yyr1513 bool = false - yyq1513[0] = x.RequiredDuringSchedulingRequiredDuringExecution != nil - yyq1513[1] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil - yyq1513[2] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1513 int - if yyr1513 || yy2arr1513 { + yysep1536 := !z.EncBinary() + yy2arr1536 := z.EncBasicHandle().StructToArray + var yyq1536 [3]bool + _, _, _ = yysep1536, yyq1536, yy2arr1536 + const yyr1536 bool = false + yyq1536[0] = x.RequiredDuringSchedulingRequiredDuringExecution != nil + yyq1536[1] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil + yyq1536[2] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1536 int + if yyr1536 || yy2arr1536 { r.EncodeArrayStart(3) } else { - yynn1513 = 0 - for _, b := range yyq1513 { + yynn1536 = 0 + for _, b := range yyq1536 { if b { - yynn1513++ + yynn1536++ } } - r.EncodeMapStart(yynn1513) - yynn1513 = 0 + r.EncodeMapStart(yynn1536) + yynn1536 = 0 } - if yyr1513 || yy2arr1513 { + if yyr1536 || yy2arr1536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1513[0] { + if yyq1536[0] { if x.RequiredDuringSchedulingRequiredDuringExecution == nil { r.EncodeNil() } else { @@ -20701,7 +20972,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1513[0] { + if yyq1536[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingRequiredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20712,9 +20983,9 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1513 || yy2arr1513 { + if yyr1536 || yy2arr1536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1513[1] { + if yyq1536[1] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { @@ -20724,7 +20995,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1513[1] { + if yyq1536[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20735,14 +21006,14 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1513 || yy2arr1513 { + if yyr1536 || yy2arr1536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1513[2] { + if yyq1536[2] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1517 := z.EncBinary() - _ = yym1517 + yym1540 := z.EncBinary() + _ = yym1540 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -20752,15 +21023,15 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1513[2] { + if yyq1536[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1518 := z.EncBinary() - _ = yym1518 + yym1541 := z.EncBinary() + _ = yym1541 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -20768,7 +21039,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1513 || yy2arr1513 { + if yyr1536 || yy2arr1536 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20781,25 +21052,25 @@ func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1519 := z.DecBinary() - _ = yym1519 + yym1542 := z.DecBinary() + _ = yym1542 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1520 := r.ContainerType() - if yyct1520 == codecSelferValueTypeMap1234 { - yyl1520 := r.ReadMapStart() - if yyl1520 == 0 { + yyct1543 := r.ContainerType() + if yyct1543 == codecSelferValueTypeMap1234 { + yyl1543 := r.ReadMapStart() + if yyl1543 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1520, d) + x.codecDecodeSelfFromMap(yyl1543, d) } - } else if yyct1520 == codecSelferValueTypeArray1234 { - yyl1520 := r.ReadArrayStart() - if yyl1520 == 0 { + } else if yyct1543 == codecSelferValueTypeArray1234 { + yyl1543 := r.ReadArrayStart() + if yyl1543 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1520, d) + x.codecDecodeSelfFromArray(yyl1543, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20811,12 +21082,12 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1521Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1521Slc - var yyhl1521 bool = l >= 0 - for yyj1521 := 0; ; yyj1521++ { - if yyhl1521 { - if yyj1521 >= l { + var yys1544Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1544Slc + var yyhl1544 bool = l >= 0 + for yyj1544 := 0; ; yyj1544++ { + if yyhl1544 { + if yyj1544 >= l { break } } else { @@ -20825,10 +21096,10 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1521Slc = r.DecodeBytes(yys1521Slc, true, true) - yys1521 := string(yys1521Slc) + yys1544Slc = r.DecodeBytes(yys1544Slc, true, true) + yys1544 := string(yys1544Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1521 { + switch yys1544 { case "requiredDuringSchedulingRequiredDuringExecution": if r.TryDecodeAsNil() { if x.RequiredDuringSchedulingRequiredDuringExecution != nil { @@ -20855,18 +21126,18 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1524 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1525 := z.DecBinary() - _ = yym1525 + yyv1547 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1548 := z.DecBinary() + _ = yym1548 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1524), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1547), d) } } default: - z.DecStructFieldNotFound(-1, yys1521) - } // end switch yys1521 - } // end for yyj1521 + z.DecStructFieldNotFound(-1, yys1544) + } // end switch yys1544 + } // end for yyj1544 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20874,16 +21145,16 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1526 int - var yyb1526 bool - var yyhl1526 bool = l >= 0 - yyj1526++ - if yyhl1526 { - yyb1526 = yyj1526 > l + var yyj1549 int + var yyb1549 bool + var yyhl1549 bool = l >= 0 + yyj1549++ + if yyhl1549 { + yyb1549 = yyj1549 > l } else { - yyb1526 = r.CheckBreak() + yyb1549 = r.CheckBreak() } - if yyb1526 { + if yyb1549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20898,13 +21169,13 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RequiredDuringSchedulingRequiredDuringExecution.CodecDecodeSelf(d) } - yyj1526++ - if yyhl1526 { - yyb1526 = yyj1526 > l + yyj1549++ + if yyhl1549 { + yyb1549 = yyj1549 > l } else { - yyb1526 = r.CheckBreak() + yyb1549 = r.CheckBreak() } - if yyb1526 { + if yyb1549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20919,13 +21190,13 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) } - yyj1526++ - if yyhl1526 { - yyb1526 = yyj1526 > l + yyj1549++ + if yyhl1549 { + yyb1549 = yyj1549 > l } else { - yyb1526 = r.CheckBreak() + yyb1549 = r.CheckBreak() } - if yyb1526 { + if yyb1549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20933,26 +21204,26 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1529 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1530 := z.DecBinary() - _ = yym1530 + yyv1552 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1553 := z.DecBinary() + _ = yym1553 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1529), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1552), d) } } for { - yyj1526++ - if yyhl1526 { - yyb1526 = yyj1526 > l + yyj1549++ + if yyhl1549 { + yyb1549 = yyj1549 > l } else { - yyb1526 = r.CheckBreak() + yyb1549 = r.CheckBreak() } - if yyb1526 { + if yyb1549 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1526-1, "") + z.DecStructFieldNotFound(yyj1549-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20964,33 +21235,33 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1531 := z.EncBinary() - _ = yym1531 + yym1554 := z.EncBinary() + _ = yym1554 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1532 := !z.EncBinary() - yy2arr1532 := z.EncBasicHandle().StructToArray - var yyq1532 [2]bool - _, _, _ = yysep1532, yyq1532, yy2arr1532 - const yyr1532 bool = false - var yynn1532 int - if yyr1532 || yy2arr1532 { + yysep1555 := !z.EncBinary() + yy2arr1555 := z.EncBasicHandle().StructToArray + var yyq1555 [2]bool + _, _, _ = yysep1555, yyq1555, yy2arr1555 + const yyr1555 bool = false + var yynn1555 int + if yyr1555 || yy2arr1555 { r.EncodeArrayStart(2) } else { - yynn1532 = 2 - for _, b := range yyq1532 { + yynn1555 = 2 + for _, b := range yyq1555 { if b { - yynn1532++ + yynn1555++ } } - r.EncodeMapStart(yynn1532) - yynn1532 = 0 + r.EncodeMapStart(yynn1555) + yynn1555 = 0 } - if yyr1532 || yy2arr1532 { + if yyr1555 || yy2arr1555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1534 := z.EncBinary() - _ = yym1534 + yym1557 := z.EncBinary() + _ = yym1557 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -20999,25 +21270,25 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1535 := z.EncBinary() - _ = yym1535 + yym1558 := z.EncBinary() + _ = yym1558 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1532 || yy2arr1532 { + if yyr1555 || yy2arr1555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1537 := &x.Preference - yy1537.CodecEncodeSelf(e) + yy1560 := &x.Preference + yy1560.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1538 := &x.Preference - yy1538.CodecEncodeSelf(e) + yy1561 := &x.Preference + yy1561.CodecEncodeSelf(e) } - if yyr1532 || yy2arr1532 { + if yyr1555 || yy2arr1555 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21030,25 +21301,25 @@ func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1539 := z.DecBinary() - _ = yym1539 + yym1562 := z.DecBinary() + _ = yym1562 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1540 := r.ContainerType() - if yyct1540 == codecSelferValueTypeMap1234 { - yyl1540 := r.ReadMapStart() - if yyl1540 == 0 { + yyct1563 := r.ContainerType() + if yyct1563 == codecSelferValueTypeMap1234 { + yyl1563 := r.ReadMapStart() + if yyl1563 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1540, d) + x.codecDecodeSelfFromMap(yyl1563, d) } - } else if yyct1540 == codecSelferValueTypeArray1234 { - yyl1540 := r.ReadArrayStart() - if yyl1540 == 0 { + } else if yyct1563 == codecSelferValueTypeArray1234 { + yyl1563 := r.ReadArrayStart() + if yyl1563 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1540, d) + x.codecDecodeSelfFromArray(yyl1563, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21060,12 +21331,12 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1541Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1541Slc - var yyhl1541 bool = l >= 0 - for yyj1541 := 0; ; yyj1541++ { - if yyhl1541 { - if yyj1541 >= l { + var yys1564Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1564Slc + var yyhl1564 bool = l >= 0 + for yyj1564 := 0; ; yyj1564++ { + if yyhl1564 { + if yyj1564 >= l { break } } else { @@ -21074,10 +21345,10 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1541Slc = r.DecodeBytes(yys1541Slc, true, true) - yys1541 := string(yys1541Slc) + yys1564Slc = r.DecodeBytes(yys1564Slc, true, true) + yys1564 := string(yys1564Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1541 { + switch yys1564 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -21088,13 +21359,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1543 := &x.Preference - yyv1543.CodecDecodeSelf(d) + yyv1566 := &x.Preference + yyv1566.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1541) - } // end switch yys1541 - } // end for yyj1541 + z.DecStructFieldNotFound(-1, yys1564) + } // end switch yys1564 + } // end for yyj1564 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21102,16 +21373,16 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1544 int - var yyb1544 bool - var yyhl1544 bool = l >= 0 - yyj1544++ - if yyhl1544 { - yyb1544 = yyj1544 > l + var yyj1567 int + var yyb1567 bool + var yyhl1567 bool = l >= 0 + yyj1567++ + if yyhl1567 { + yyb1567 = yyj1567 > l } else { - yyb1544 = r.CheckBreak() + yyb1567 = r.CheckBreak() } - if yyb1544 { + if yyb1567 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21121,13 +21392,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1544++ - if yyhl1544 { - yyb1544 = yyj1544 > l + yyj1567++ + if yyhl1567 { + yyb1567 = yyj1567 > l } else { - yyb1544 = r.CheckBreak() + yyb1567 = r.CheckBreak() } - if yyb1544 { + if yyb1567 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21135,21 +21406,21 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1546 := &x.Preference - yyv1546.CodecDecodeSelf(d) + yyv1569 := &x.Preference + yyv1569.CodecDecodeSelf(d) } for { - yyj1544++ - if yyhl1544 { - yyb1544 = yyj1544 > l + yyj1567++ + if yyhl1567 { + yyb1567 = yyj1567 > l } else { - yyb1544 = r.CheckBreak() + yyb1567 = r.CheckBreak() } - if yyb1544 { + if yyb1567 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1544-1, "") + z.DecStructFieldNotFound(yyj1567-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21161,51 +21432,51 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1547 := z.EncBinary() - _ = yym1547 + yym1570 := z.EncBinary() + _ = yym1570 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1548 := !z.EncBinary() - yy2arr1548 := z.EncBasicHandle().StructToArray - var yyq1548 [15]bool - _, _, _ = yysep1548, yyq1548, yy2arr1548 - const yyr1548 bool = false - yyq1548[0] = len(x.Volumes) != 0 - yyq1548[2] = x.RestartPolicy != "" - yyq1548[3] = x.TerminationGracePeriodSeconds != nil - yyq1548[4] = x.ActiveDeadlineSeconds != nil - yyq1548[5] = x.DNSPolicy != "" - yyq1548[6] = len(x.NodeSelector) != 0 - yyq1548[7] = x.ServiceAccountName != "" - yyq1548[8] = x.DeprecatedServiceAccount != "" - yyq1548[9] = x.NodeName != "" - yyq1548[10] = x.HostNetwork != false - yyq1548[11] = x.HostPID != false - yyq1548[12] = x.HostIPC != false - yyq1548[13] = x.SecurityContext != nil - yyq1548[14] = len(x.ImagePullSecrets) != 0 - var yynn1548 int - if yyr1548 || yy2arr1548 { + yysep1571 := !z.EncBinary() + yy2arr1571 := z.EncBasicHandle().StructToArray + var yyq1571 [15]bool + _, _, _ = yysep1571, yyq1571, yy2arr1571 + const yyr1571 bool = false + yyq1571[0] = len(x.Volumes) != 0 + yyq1571[2] = x.RestartPolicy != "" + yyq1571[3] = x.TerminationGracePeriodSeconds != nil + yyq1571[4] = x.ActiveDeadlineSeconds != nil + yyq1571[5] = x.DNSPolicy != "" + yyq1571[6] = len(x.NodeSelector) != 0 + yyq1571[7] = x.ServiceAccountName != "" + yyq1571[8] = x.DeprecatedServiceAccount != "" + yyq1571[9] = x.NodeName != "" + yyq1571[10] = x.HostNetwork != false + yyq1571[11] = x.HostPID != false + yyq1571[12] = x.HostIPC != false + yyq1571[13] = x.SecurityContext != nil + yyq1571[14] = len(x.ImagePullSecrets) != 0 + var yynn1571 int + if yyr1571 || yy2arr1571 { r.EncodeArrayStart(15) } else { - yynn1548 = 1 - for _, b := range yyq1548 { + yynn1571 = 1 + for _, b := range yyq1571 { if b { - yynn1548++ + yynn1571++ } } - r.EncodeMapStart(yynn1548) - yynn1548 = 0 + r.EncodeMapStart(yynn1571) + yynn1571 = 0 } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[0] { + if yyq1571[0] { if x.Volumes == nil { r.EncodeNil() } else { - yym1550 := z.EncBinary() - _ = yym1550 + yym1573 := z.EncBinary() + _ = yym1573 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -21215,15 +21486,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1548[0] { + if yyq1571[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1551 := z.EncBinary() - _ = yym1551 + yym1574 := z.EncBinary() + _ = yym1574 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -21231,13 +21502,13 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1553 := z.EncBinary() - _ = yym1553 + yym1576 := z.EncBinary() + _ = yym1576 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -21250,122 +21521,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1554 := z.EncBinary() - _ = yym1554 + yym1577 := z.EncBinary() + _ = yym1577 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[2] { + if yyq1571[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1548[2] { + if yyq1571[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[3] { + if yyq1571[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1557 := *x.TerminationGracePeriodSeconds - yym1558 := z.EncBinary() - _ = yym1558 + yy1580 := *x.TerminationGracePeriodSeconds + yym1581 := z.EncBinary() + _ = yym1581 if false { } else { - r.EncodeInt(int64(yy1557)) + r.EncodeInt(int64(yy1580)) } } } else { r.EncodeNil() } } else { - if yyq1548[3] { + if yyq1571[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1559 := *x.TerminationGracePeriodSeconds - yym1560 := z.EncBinary() - _ = yym1560 + yy1582 := *x.TerminationGracePeriodSeconds + yym1583 := z.EncBinary() + _ = yym1583 if false { } else { - r.EncodeInt(int64(yy1559)) + r.EncodeInt(int64(yy1582)) } } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[4] { + if yyq1571[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1562 := *x.ActiveDeadlineSeconds - yym1563 := z.EncBinary() - _ = yym1563 + yy1585 := *x.ActiveDeadlineSeconds + yym1586 := z.EncBinary() + _ = yym1586 if false { } else { - r.EncodeInt(int64(yy1562)) + r.EncodeInt(int64(yy1585)) } } } else { r.EncodeNil() } } else { - if yyq1548[4] { + if yyq1571[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1564 := *x.ActiveDeadlineSeconds - yym1565 := z.EncBinary() - _ = yym1565 + yy1587 := *x.ActiveDeadlineSeconds + yym1588 := z.EncBinary() + _ = yym1588 if false { } else { - r.EncodeInt(int64(yy1564)) + r.EncodeInt(int64(yy1587)) } } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[5] { + if yyq1571[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1548[5] { + if yyq1571[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[6] { + if yyq1571[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1568 := z.EncBinary() - _ = yym1568 + yym1591 := z.EncBinary() + _ = yym1591 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -21375,15 +21646,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1548[6] { + if yyq1571[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1569 := z.EncBinary() - _ = yym1569 + yym1592 := z.EncBinary() + _ = yym1592 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -21391,11 +21662,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[7] { - yym1571 := z.EncBinary() - _ = yym1571 + if yyq1571[7] { + yym1594 := z.EncBinary() + _ = yym1594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -21404,23 +21675,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1548[7] { + if yyq1571[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1572 := z.EncBinary() - _ = yym1572 + yym1595 := z.EncBinary() + _ = yym1595 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[8] { - yym1574 := z.EncBinary() - _ = yym1574 + if yyq1571[8] { + yym1597 := z.EncBinary() + _ = yym1597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) @@ -21429,23 +21700,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1548[8] { + if yyq1571[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1575 := z.EncBinary() - _ = yym1575 + yym1598 := z.EncBinary() + _ = yym1598 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[9] { - yym1577 := z.EncBinary() - _ = yym1577 + if yyq1571[9] { + yym1600 := z.EncBinary() + _ = yym1600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -21454,23 +21725,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1548[9] { + if yyq1571[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1578 := z.EncBinary() - _ = yym1578 + yym1601 := z.EncBinary() + _ = yym1601 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[10] { - yym1580 := z.EncBinary() - _ = yym1580 + if yyq1571[10] { + yym1603 := z.EncBinary() + _ = yym1603 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -21479,23 +21750,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1548[10] { + if yyq1571[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1581 := z.EncBinary() - _ = yym1581 + yym1604 := z.EncBinary() + _ = yym1604 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[11] { - yym1583 := z.EncBinary() - _ = yym1583 + if yyq1571[11] { + yym1606 := z.EncBinary() + _ = yym1606 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -21504,23 +21775,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1548[11] { + if yyq1571[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1584 := z.EncBinary() - _ = yym1584 + yym1607 := z.EncBinary() + _ = yym1607 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[12] { - yym1586 := z.EncBinary() - _ = yym1586 + if yyq1571[12] { + yym1609 := z.EncBinary() + _ = yym1609 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -21529,21 +21800,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1548[12] { + if yyq1571[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1587 := z.EncBinary() - _ = yym1587 + yym1610 := z.EncBinary() + _ = yym1610 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[13] { + if yyq1571[13] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -21553,7 +21824,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1548[13] { + if yyq1571[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21564,14 +21835,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[14] { + if yyq1571[14] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1590 := z.EncBinary() - _ = yym1590 + yym1613 := z.EncBinary() + _ = yym1613 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -21581,15 +21852,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1548[14] { + if yyq1571[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1591 := z.EncBinary() - _ = yym1591 + yym1614 := z.EncBinary() + _ = yym1614 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -21597,7 +21868,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1548 || yy2arr1548 { + if yyr1571 || yy2arr1571 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21610,25 +21881,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1592 := z.DecBinary() - _ = yym1592 + yym1615 := z.DecBinary() + _ = yym1615 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1593 := r.ContainerType() - if yyct1593 == codecSelferValueTypeMap1234 { - yyl1593 := r.ReadMapStart() - if yyl1593 == 0 { + yyct1616 := r.ContainerType() + if yyct1616 == codecSelferValueTypeMap1234 { + yyl1616 := r.ReadMapStart() + if yyl1616 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1593, d) + x.codecDecodeSelfFromMap(yyl1616, d) } - } else if yyct1593 == codecSelferValueTypeArray1234 { - yyl1593 := r.ReadArrayStart() - if yyl1593 == 0 { + } else if yyct1616 == codecSelferValueTypeArray1234 { + yyl1616 := r.ReadArrayStart() + if yyl1616 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1593, d) + x.codecDecodeSelfFromArray(yyl1616, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21640,12 +21911,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1594Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1594Slc - var yyhl1594 bool = l >= 0 - for yyj1594 := 0; ; yyj1594++ { - if yyhl1594 { - if yyj1594 >= l { + var yys1617Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1617Slc + var yyhl1617 bool = l >= 0 + for yyj1617 := 0; ; yyj1617++ { + if yyhl1617 { + if yyj1617 >= l { break } } else { @@ -21654,32 +21925,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1594Slc = r.DecodeBytes(yys1594Slc, true, true) - yys1594 := string(yys1594Slc) + yys1617Slc = r.DecodeBytes(yys1617Slc, true, true) + yys1617 := string(yys1617Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1594 { + switch yys1617 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1595 := &x.Volumes - yym1596 := z.DecBinary() - _ = yym1596 + yyv1618 := &x.Volumes + yym1619 := z.DecBinary() + _ = yym1619 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1595), d) + h.decSliceVolume((*[]Volume)(yyv1618), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1597 := &x.Containers - yym1598 := z.DecBinary() - _ = yym1598 + yyv1620 := &x.Containers + yym1621 := z.DecBinary() + _ = yym1621 if false { } else { - h.decSliceContainer((*[]Container)(yyv1597), d) + h.decSliceContainer((*[]Container)(yyv1620), d) } } case "restartPolicy": @@ -21697,8 +21968,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1601 := z.DecBinary() - _ = yym1601 + yym1624 := z.DecBinary() + _ = yym1624 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -21713,8 +21984,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1603 := z.DecBinary() - _ = yym1603 + yym1626 := z.DecBinary() + _ = yym1626 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -21730,12 +22001,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1605 := &x.NodeSelector - yym1606 := z.DecBinary() - _ = yym1606 + yyv1628 := &x.NodeSelector + yym1629 := z.DecBinary() + _ = yym1629 if false { } else { - z.F.DecMapStringStringX(yyv1605, false, d) + z.F.DecMapStringStringX(yyv1628, false, d) } } case "serviceAccountName": @@ -21789,18 +22060,18 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1614 := &x.ImagePullSecrets - yym1615 := z.DecBinary() - _ = yym1615 + yyv1637 := &x.ImagePullSecrets + yym1638 := z.DecBinary() + _ = yym1638 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1614), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1637), d) } } default: - z.DecStructFieldNotFound(-1, yys1594) - } // end switch yys1594 - } // end for yyj1594 + z.DecStructFieldNotFound(-1, yys1617) + } // end switch yys1617 + } // end for yyj1617 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21808,16 +22079,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1616 int - var yyb1616 bool - var yyhl1616 bool = l >= 0 - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + var yyj1639 int + var yyb1639 bool + var yyhl1639 bool = l >= 0 + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21825,21 +22096,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1617 := &x.Volumes - yym1618 := z.DecBinary() - _ = yym1618 + yyv1640 := &x.Volumes + yym1641 := z.DecBinary() + _ = yym1641 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1617), d) + h.decSliceVolume((*[]Volume)(yyv1640), d) } } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21847,21 +22118,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1619 := &x.Containers - yym1620 := z.DecBinary() - _ = yym1620 + yyv1642 := &x.Containers + yym1643 := z.DecBinary() + _ = yym1643 if false { } else { - h.decSliceContainer((*[]Container)(yyv1619), d) + h.decSliceContainer((*[]Container)(yyv1642), d) } } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21871,13 +22142,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21890,20 +22161,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1623 := z.DecBinary() - _ = yym1623 + yym1646 := z.DecBinary() + _ = yym1646 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21916,20 +22187,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1625 := z.DecBinary() - _ = yym1625 + yym1648 := z.DecBinary() + _ = yym1648 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21939,13 +22210,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21953,21 +22224,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1627 := &x.NodeSelector - yym1628 := z.DecBinary() - _ = yym1628 + yyv1650 := &x.NodeSelector + yym1651 := z.DecBinary() + _ = yym1651 if false { } else { - z.F.DecMapStringStringX(yyv1627, false, d) + z.F.DecMapStringStringX(yyv1650, false, d) } } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21977,13 +22248,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21993,13 +22264,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DeprecatedServiceAccount = string(r.DecodeString()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22009,13 +22280,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22025,13 +22296,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22041,13 +22312,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPID = bool(r.DecodeBool()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22057,13 +22328,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22078,13 +22349,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22092,26 +22363,26 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1636 := &x.ImagePullSecrets - yym1637 := z.DecBinary() - _ = yym1637 + yyv1659 := &x.ImagePullSecrets + yym1660 := z.DecBinary() + _ = yym1660 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1636), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1659), d) } } for { - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1616 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1616 { + if yyb1639 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1616-1, "") + z.DecStructFieldNotFound(yyj1639-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22123,37 +22394,37 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1638 := z.EncBinary() - _ = yym1638 + yym1661 := z.EncBinary() + _ = yym1661 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1639 := !z.EncBinary() - yy2arr1639 := z.EncBasicHandle().StructToArray - var yyq1639 [5]bool - _, _, _ = yysep1639, yyq1639, yy2arr1639 - const yyr1639 bool = false - yyq1639[0] = x.SELinuxOptions != nil - yyq1639[1] = x.RunAsUser != nil - yyq1639[2] = x.RunAsNonRoot != nil - yyq1639[3] = len(x.SupplementalGroups) != 0 - yyq1639[4] = x.FSGroup != nil - var yynn1639 int - if yyr1639 || yy2arr1639 { + yysep1662 := !z.EncBinary() + yy2arr1662 := z.EncBasicHandle().StructToArray + var yyq1662 [5]bool + _, _, _ = yysep1662, yyq1662, yy2arr1662 + const yyr1662 bool = false + yyq1662[0] = x.SELinuxOptions != nil + yyq1662[1] = x.RunAsUser != nil + yyq1662[2] = x.RunAsNonRoot != nil + yyq1662[3] = len(x.SupplementalGroups) != 0 + yyq1662[4] = x.FSGroup != nil + var yynn1662 int + if yyr1662 || yy2arr1662 { r.EncodeArrayStart(5) } else { - yynn1639 = 0 - for _, b := range yyq1639 { + yynn1662 = 0 + for _, b := range yyq1662 { if b { - yynn1639++ + yynn1662++ } } - r.EncodeMapStart(yynn1639) - yynn1639 = 0 + r.EncodeMapStart(yynn1662) + yynn1662 = 0 } - if yyr1639 || yy2arr1639 { + if yyr1662 || yy2arr1662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1639[0] { + if yyq1662[0] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -22163,7 +22434,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1639[0] { + if yyq1662[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22174,84 +22445,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1639 || yy2arr1639 { + if yyr1662 || yy2arr1662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1639[1] { + if yyq1662[1] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy1642 := *x.RunAsUser - yym1643 := z.EncBinary() - _ = yym1643 + yy1665 := *x.RunAsUser + yym1666 := z.EncBinary() + _ = yym1666 if false { } else { - r.EncodeInt(int64(yy1642)) + r.EncodeInt(int64(yy1665)) } } } else { r.EncodeNil() } } else { - if yyq1639[1] { + if yyq1662[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy1644 := *x.RunAsUser - yym1645 := z.EncBinary() - _ = yym1645 + yy1667 := *x.RunAsUser + yym1668 := z.EncBinary() + _ = yym1668 if false { } else { - r.EncodeInt(int64(yy1644)) + r.EncodeInt(int64(yy1667)) } } } } - if yyr1639 || yy2arr1639 { + if yyr1662 || yy2arr1662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1639[2] { + if yyq1662[2] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1647 := *x.RunAsNonRoot - yym1648 := z.EncBinary() - _ = yym1648 + yy1670 := *x.RunAsNonRoot + yym1671 := z.EncBinary() + _ = yym1671 if false { } else { - r.EncodeBool(bool(yy1647)) + r.EncodeBool(bool(yy1670)) } } } else { r.EncodeNil() } } else { - if yyq1639[2] { + if yyq1662[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1649 := *x.RunAsNonRoot - yym1650 := z.EncBinary() - _ = yym1650 + yy1672 := *x.RunAsNonRoot + yym1673 := z.EncBinary() + _ = yym1673 if false { } else { - r.EncodeBool(bool(yy1649)) + r.EncodeBool(bool(yy1672)) } } } } - if yyr1639 || yy2arr1639 { + if yyr1662 || yy2arr1662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1639[3] { + if yyq1662[3] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1652 := z.EncBinary() - _ = yym1652 + yym1675 := z.EncBinary() + _ = yym1675 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -22261,15 +22532,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1639[3] { + if yyq1662[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1653 := z.EncBinary() - _ = yym1653 + yym1676 := z.EncBinary() + _ = yym1676 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -22277,42 +22548,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1639 || yy2arr1639 { + if yyr1662 || yy2arr1662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1639[4] { + if yyq1662[4] { if x.FSGroup == nil { r.EncodeNil() } else { - yy1655 := *x.FSGroup - yym1656 := z.EncBinary() - _ = yym1656 + yy1678 := *x.FSGroup + yym1679 := z.EncBinary() + _ = yym1679 if false { } else { - r.EncodeInt(int64(yy1655)) + r.EncodeInt(int64(yy1678)) } } } else { r.EncodeNil() } } else { - if yyq1639[4] { + if yyq1662[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy1657 := *x.FSGroup - yym1658 := z.EncBinary() - _ = yym1658 + yy1680 := *x.FSGroup + yym1681 := z.EncBinary() + _ = yym1681 if false { } else { - r.EncodeInt(int64(yy1657)) + r.EncodeInt(int64(yy1680)) } } } } - if yyr1639 || yy2arr1639 { + if yyr1662 || yy2arr1662 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22325,25 +22596,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1659 := z.DecBinary() - _ = yym1659 + yym1682 := z.DecBinary() + _ = yym1682 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1660 := r.ContainerType() - if yyct1660 == codecSelferValueTypeMap1234 { - yyl1660 := r.ReadMapStart() - if yyl1660 == 0 { + yyct1683 := r.ContainerType() + if yyct1683 == codecSelferValueTypeMap1234 { + yyl1683 := r.ReadMapStart() + if yyl1683 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1660, d) + x.codecDecodeSelfFromMap(yyl1683, d) } - } else if yyct1660 == codecSelferValueTypeArray1234 { - yyl1660 := r.ReadArrayStart() - if yyl1660 == 0 { + } else if yyct1683 == codecSelferValueTypeArray1234 { + yyl1683 := r.ReadArrayStart() + if yyl1683 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1660, d) + x.codecDecodeSelfFromArray(yyl1683, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22355,12 +22626,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1661Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1661Slc - var yyhl1661 bool = l >= 0 - for yyj1661 := 0; ; yyj1661++ { - if yyhl1661 { - if yyj1661 >= l { + var yys1684Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1684Slc + var yyhl1684 bool = l >= 0 + for yyj1684 := 0; ; yyj1684++ { + if yyhl1684 { + if yyj1684 >= l { break } } else { @@ -22369,10 +22640,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1661Slc = r.DecodeBytes(yys1661Slc, true, true) - yys1661 := string(yys1661Slc) + yys1684Slc = r.DecodeBytes(yys1684Slc, true, true) + yys1684 := string(yys1684Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1661 { + switch yys1684 { case "seLinuxOptions": if r.TryDecodeAsNil() { if x.SELinuxOptions != nil { @@ -22393,8 +22664,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1664 := z.DecBinary() - _ = yym1664 + yym1687 := z.DecBinary() + _ = yym1687 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -22409,8 +22680,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1666 := z.DecBinary() - _ = yym1666 + yym1689 := z.DecBinary() + _ = yym1689 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -22420,12 +22691,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1667 := &x.SupplementalGroups - yym1668 := z.DecBinary() - _ = yym1668 + yyv1690 := &x.SupplementalGroups + yym1691 := z.DecBinary() + _ = yym1691 if false { } else { - z.F.DecSliceInt64X(yyv1667, false, d) + z.F.DecSliceInt64X(yyv1690, false, d) } } case "fsGroup": @@ -22437,17 +22708,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1670 := z.DecBinary() - _ = yym1670 + yym1693 := z.DecBinary() + _ = yym1693 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys1661) - } // end switch yys1661 - } // end for yyj1661 + z.DecStructFieldNotFound(-1, yys1684) + } // end switch yys1684 + } // end for yyj1684 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22455,16 +22726,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1671 int - var yyb1671 bool - var yyhl1671 bool = l >= 0 - yyj1671++ - if yyhl1671 { - yyb1671 = yyj1671 > l + var yyj1694 int + var yyb1694 bool + var yyhl1694 bool = l >= 0 + yyj1694++ + if yyhl1694 { + yyb1694 = yyj1694 > l } else { - yyb1671 = r.CheckBreak() + yyb1694 = r.CheckBreak() } - if yyb1671 { + if yyb1694 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22479,13 +22750,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj1671++ - if yyhl1671 { - yyb1671 = yyj1671 > l + yyj1694++ + if yyhl1694 { + yyb1694 = yyj1694 > l } else { - yyb1671 = r.CheckBreak() + yyb1694 = r.CheckBreak() } - if yyb1671 { + if yyb1694 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22498,20 +22769,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1674 := z.DecBinary() - _ = yym1674 + yym1697 := z.DecBinary() + _ = yym1697 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj1671++ - if yyhl1671 { - yyb1671 = yyj1671 > l + yyj1694++ + if yyhl1694 { + yyb1694 = yyj1694 > l } else { - yyb1671 = r.CheckBreak() + yyb1694 = r.CheckBreak() } - if yyb1671 { + if yyb1694 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22524,20 +22795,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1676 := z.DecBinary() - _ = yym1676 + yym1699 := z.DecBinary() + _ = yym1699 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj1671++ - if yyhl1671 { - yyb1671 = yyj1671 > l + yyj1694++ + if yyhl1694 { + yyb1694 = yyj1694 > l } else { - yyb1671 = r.CheckBreak() + yyb1694 = r.CheckBreak() } - if yyb1671 { + if yyb1694 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22545,21 +22816,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1677 := &x.SupplementalGroups - yym1678 := z.DecBinary() - _ = yym1678 + yyv1700 := &x.SupplementalGroups + yym1701 := z.DecBinary() + _ = yym1701 if false { } else { - z.F.DecSliceInt64X(yyv1677, false, d) + z.F.DecSliceInt64X(yyv1700, false, d) } } - yyj1671++ - if yyhl1671 { - yyb1671 = yyj1671 > l + yyj1694++ + if yyhl1694 { + yyb1694 = yyj1694 > l } else { - yyb1671 = r.CheckBreak() + yyb1694 = r.CheckBreak() } - if yyb1671 { + if yyb1694 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22572,25 +22843,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1680 := z.DecBinary() - _ = yym1680 + yym1703 := z.DecBinary() + _ = yym1703 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj1671++ - if yyhl1671 { - yyb1671 = yyj1671 > l + yyj1694++ + if yyhl1694 { + yyb1694 = yyj1694 > l } else { - yyb1671 = r.CheckBreak() + yyb1694 = r.CheckBreak() } - if yyb1671 { + if yyb1694 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1671-1, "") + z.DecStructFieldNotFound(yyj1694-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22602,60 +22873,60 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1681 := z.EncBinary() - _ = yym1681 + yym1704 := z.EncBinary() + _ = yym1704 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1682 := !z.EncBinary() - yy2arr1682 := z.EncBasicHandle().StructToArray - var yyq1682 [8]bool - _, _, _ = yysep1682, yyq1682, yy2arr1682 - const yyr1682 bool = false - yyq1682[0] = x.Phase != "" - yyq1682[1] = len(x.Conditions) != 0 - yyq1682[2] = x.Message != "" - yyq1682[3] = x.Reason != "" - yyq1682[4] = x.HostIP != "" - yyq1682[5] = x.PodIP != "" - yyq1682[6] = x.StartTime != nil - yyq1682[7] = len(x.ContainerStatuses) != 0 - var yynn1682 int - if yyr1682 || yy2arr1682 { + yysep1705 := !z.EncBinary() + yy2arr1705 := z.EncBasicHandle().StructToArray + var yyq1705 [8]bool + _, _, _ = yysep1705, yyq1705, yy2arr1705 + const yyr1705 bool = false + yyq1705[0] = x.Phase != "" + yyq1705[1] = len(x.Conditions) != 0 + yyq1705[2] = x.Message != "" + yyq1705[3] = x.Reason != "" + yyq1705[4] = x.HostIP != "" + yyq1705[5] = x.PodIP != "" + yyq1705[6] = x.StartTime != nil + yyq1705[7] = len(x.ContainerStatuses) != 0 + var yynn1705 int + if yyr1705 || yy2arr1705 { r.EncodeArrayStart(8) } else { - yynn1682 = 0 - for _, b := range yyq1682 { + yynn1705 = 0 + for _, b := range yyq1705 { if b { - yynn1682++ + yynn1705++ } } - r.EncodeMapStart(yynn1682) - yynn1682 = 0 + r.EncodeMapStart(yynn1705) + yynn1705 = 0 } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1682[0] { + if yyq1705[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1682[0] { + if yyq1705[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1682[1] { + if yyq1705[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym1685 := z.EncBinary() - _ = yym1685 + yym1708 := z.EncBinary() + _ = yym1708 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -22665,15 +22936,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1682[1] { + if yyq1705[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym1686 := z.EncBinary() - _ = yym1686 + yym1709 := z.EncBinary() + _ = yym1709 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -22681,11 +22952,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1682[2] { - yym1688 := z.EncBinary() - _ = yym1688 + if yyq1705[2] { + yym1711 := z.EncBinary() + _ = yym1711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -22694,23 +22965,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1682[2] { + if yyq1705[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1689 := z.EncBinary() - _ = yym1689 + yym1712 := z.EncBinary() + _ = yym1712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1682[3] { - yym1691 := z.EncBinary() - _ = yym1691 + if yyq1705[3] { + yym1714 := z.EncBinary() + _ = yym1714 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -22719,23 +22990,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1682[3] { + if yyq1705[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1692 := z.EncBinary() - _ = yym1692 + yym1715 := z.EncBinary() + _ = yym1715 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1682[4] { - yym1694 := z.EncBinary() - _ = yym1694 + if yyq1705[4] { + yym1717 := z.EncBinary() + _ = yym1717 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -22744,23 +23015,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1682[4] { + if yyq1705[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1695 := z.EncBinary() - _ = yym1695 + yym1718 := z.EncBinary() + _ = yym1718 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1682[5] { - yym1697 := z.EncBinary() - _ = yym1697 + if yyq1705[5] { + yym1720 := z.EncBinary() + _ = yym1720 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -22769,31 +23040,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1682[5] { + if yyq1705[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1698 := z.EncBinary() - _ = yym1698 + yym1721 := z.EncBinary() + _ = yym1721 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1682[6] { + if yyq1705[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym1700 := z.EncBinary() - _ = yym1700 + yym1723 := z.EncBinary() + _ = yym1723 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1700 { + } else if yym1723 { z.EncBinaryMarshal(x.StartTime) - } else if !yym1700 && z.IsJSONHandle() { + } else if !yym1723 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -22803,20 +23074,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1682[6] { + if yyq1705[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym1701 := z.EncBinary() - _ = yym1701 + yym1724 := z.EncBinary() + _ = yym1724 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1701 { + } else if yym1724 { z.EncBinaryMarshal(x.StartTime) - } else if !yym1701 && z.IsJSONHandle() { + } else if !yym1724 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -22824,14 +23095,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1682[7] { + if yyq1705[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym1703 := z.EncBinary() - _ = yym1703 + yym1726 := z.EncBinary() + _ = yym1726 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -22841,15 +23112,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1682[7] { + if yyq1705[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym1704 := z.EncBinary() - _ = yym1704 + yym1727 := z.EncBinary() + _ = yym1727 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -22857,7 +23128,7 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1682 || yy2arr1682 { + if yyr1705 || yy2arr1705 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22870,25 +23141,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1705 := z.DecBinary() - _ = yym1705 + yym1728 := z.DecBinary() + _ = yym1728 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1706 := r.ContainerType() - if yyct1706 == codecSelferValueTypeMap1234 { - yyl1706 := r.ReadMapStart() - if yyl1706 == 0 { + yyct1729 := r.ContainerType() + if yyct1729 == codecSelferValueTypeMap1234 { + yyl1729 := r.ReadMapStart() + if yyl1729 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1706, d) + x.codecDecodeSelfFromMap(yyl1729, d) } - } else if yyct1706 == codecSelferValueTypeArray1234 { - yyl1706 := r.ReadArrayStart() - if yyl1706 == 0 { + } else if yyct1729 == codecSelferValueTypeArray1234 { + yyl1729 := r.ReadArrayStart() + if yyl1729 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1706, d) + x.codecDecodeSelfFromArray(yyl1729, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22900,12 +23171,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1707Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1707Slc - var yyhl1707 bool = l >= 0 - for yyj1707 := 0; ; yyj1707++ { - if yyhl1707 { - if yyj1707 >= l { + var yys1730Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1730Slc + var yyhl1730 bool = l >= 0 + for yyj1730 := 0; ; yyj1730++ { + if yyhl1730 { + if yyj1730 >= l { break } } else { @@ -22914,10 +23185,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1707Slc = r.DecodeBytes(yys1707Slc, true, true) - yys1707 := string(yys1707Slc) + yys1730Slc = r.DecodeBytes(yys1730Slc, true, true) + yys1730 := string(yys1730Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1707 { + switch yys1730 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -22928,12 +23199,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1709 := &x.Conditions - yym1710 := z.DecBinary() - _ = yym1710 + yyv1732 := &x.Conditions + yym1733 := z.DecBinary() + _ = yym1733 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1709), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1732), d) } } case "message": @@ -22969,13 +23240,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1716 := z.DecBinary() - _ = yym1716 + yym1739 := z.DecBinary() + _ = yym1739 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1716 { + } else if yym1739 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1716 && z.IsJSONHandle() { + } else if !yym1739 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -22985,18 +23256,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1717 := &x.ContainerStatuses - yym1718 := z.DecBinary() - _ = yym1718 + yyv1740 := &x.ContainerStatuses + yym1741 := z.DecBinary() + _ = yym1741 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1717), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1740), d) } } default: - z.DecStructFieldNotFound(-1, yys1707) - } // end switch yys1707 - } // end for yyj1707 + z.DecStructFieldNotFound(-1, yys1730) + } // end switch yys1730 + } // end for yyj1730 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23004,16 +23275,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1719 int - var yyb1719 bool - var yyhl1719 bool = l >= 0 - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + var yyj1742 int + var yyb1742 bool + var yyhl1742 bool = l >= 0 + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23023,13 +23294,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23037,21 +23308,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1721 := &x.Conditions - yym1722 := z.DecBinary() - _ = yym1722 + yyv1744 := &x.Conditions + yym1745 := z.DecBinary() + _ = yym1745 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1721), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1744), d) } } - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23061,13 +23332,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23077,13 +23348,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23093,13 +23364,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23109,13 +23380,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23128,25 +23399,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1728 := z.DecBinary() - _ = yym1728 + yym1751 := z.DecBinary() + _ = yym1751 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1728 { + } else if yym1751 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1728 && z.IsJSONHandle() { + } else if !yym1751 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23154,26 +23425,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1729 := &x.ContainerStatuses - yym1730 := z.DecBinary() - _ = yym1730 + yyv1752 := &x.ContainerStatuses + yym1753 := z.DecBinary() + _ = yym1753 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1729), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1752), d) } } for { - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1742++ + if yyhl1742 { + yyb1742 = yyj1742 > l } else { - yyb1719 = r.CheckBreak() + yyb1742 = r.CheckBreak() } - if yyb1719 { + if yyb1742 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1719-1, "") + z.DecStructFieldNotFound(yyj1742-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23185,38 +23456,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1731 := z.EncBinary() - _ = yym1731 + yym1754 := z.EncBinary() + _ = yym1754 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1732 := !z.EncBinary() - yy2arr1732 := z.EncBasicHandle().StructToArray - var yyq1732 [4]bool - _, _, _ = yysep1732, yyq1732, yy2arr1732 - const yyr1732 bool = false - yyq1732[0] = x.Kind != "" - yyq1732[1] = x.APIVersion != "" - yyq1732[2] = true - yyq1732[3] = true - var yynn1732 int - if yyr1732 || yy2arr1732 { + yysep1755 := !z.EncBinary() + yy2arr1755 := z.EncBasicHandle().StructToArray + var yyq1755 [4]bool + _, _, _ = yysep1755, yyq1755, yy2arr1755 + const yyr1755 bool = false + yyq1755[0] = x.Kind != "" + yyq1755[1] = x.APIVersion != "" + yyq1755[2] = true + yyq1755[3] = true + var yynn1755 int + if yyr1755 || yy2arr1755 { r.EncodeArrayStart(4) } else { - yynn1732 = 0 - for _, b := range yyq1732 { + yynn1755 = 0 + for _, b := range yyq1755 { if b { - yynn1732++ + yynn1755++ } } - r.EncodeMapStart(yynn1732) - yynn1732 = 0 + r.EncodeMapStart(yynn1755) + yynn1755 = 0 } - if yyr1732 || yy2arr1732 { + if yyr1755 || yy2arr1755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1732[0] { - yym1734 := z.EncBinary() - _ = yym1734 + if yyq1755[0] { + yym1757 := z.EncBinary() + _ = yym1757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23225,23 +23496,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1732[0] { + if yyq1755[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1735 := z.EncBinary() - _ = yym1735 + yym1758 := z.EncBinary() + _ = yym1758 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1732 || yy2arr1732 { + if yyr1755 || yy2arr1755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1732[1] { - yym1737 := z.EncBinary() - _ = yym1737 + if yyq1755[1] { + yym1760 := z.EncBinary() + _ = yym1760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23250,53 +23521,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1732[1] { + if yyq1755[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1738 := z.EncBinary() - _ = yym1738 + yym1761 := z.EncBinary() + _ = yym1761 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1732 || yy2arr1732 { + if yyr1755 || yy2arr1755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1732[2] { - yy1740 := &x.ObjectMeta - yy1740.CodecEncodeSelf(e) + if yyq1755[2] { + yy1763 := &x.ObjectMeta + yy1763.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1732[2] { + if yyq1755[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1741 := &x.ObjectMeta - yy1741.CodecEncodeSelf(e) + yy1764 := &x.ObjectMeta + yy1764.CodecEncodeSelf(e) } } - if yyr1732 || yy2arr1732 { + if yyr1755 || yy2arr1755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1732[3] { - yy1743 := &x.Status - yy1743.CodecEncodeSelf(e) + if yyq1755[3] { + yy1766 := &x.Status + yy1766.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1732[3] { + if yyq1755[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1744 := &x.Status - yy1744.CodecEncodeSelf(e) + yy1767 := &x.Status + yy1767.CodecEncodeSelf(e) } } - if yyr1732 || yy2arr1732 { + if yyr1755 || yy2arr1755 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23309,25 +23580,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1745 := z.DecBinary() - _ = yym1745 + yym1768 := z.DecBinary() + _ = yym1768 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1746 := r.ContainerType() - if yyct1746 == codecSelferValueTypeMap1234 { - yyl1746 := r.ReadMapStart() - if yyl1746 == 0 { + yyct1769 := r.ContainerType() + if yyct1769 == codecSelferValueTypeMap1234 { + yyl1769 := r.ReadMapStart() + if yyl1769 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1746, d) + x.codecDecodeSelfFromMap(yyl1769, d) } - } else if yyct1746 == codecSelferValueTypeArray1234 { - yyl1746 := r.ReadArrayStart() - if yyl1746 == 0 { + } else if yyct1769 == codecSelferValueTypeArray1234 { + yyl1769 := r.ReadArrayStart() + if yyl1769 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1746, d) + x.codecDecodeSelfFromArray(yyl1769, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23339,12 +23610,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1747Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1747Slc - var yyhl1747 bool = l >= 0 - for yyj1747 := 0; ; yyj1747++ { - if yyhl1747 { - if yyj1747 >= l { + var yys1770Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1770Slc + var yyhl1770 bool = l >= 0 + for yyj1770 := 0; ; yyj1770++ { + if yyhl1770 { + if yyj1770 >= l { break } } else { @@ -23353,10 +23624,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1747Slc = r.DecodeBytes(yys1747Slc, true, true) - yys1747 := string(yys1747Slc) + yys1770Slc = r.DecodeBytes(yys1770Slc, true, true) + yys1770 := string(yys1770Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1747 { + switch yys1770 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23373,20 +23644,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1750 := &x.ObjectMeta - yyv1750.CodecDecodeSelf(d) + yyv1773 := &x.ObjectMeta + yyv1773.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1751 := &x.Status - yyv1751.CodecDecodeSelf(d) + yyv1774 := &x.Status + yyv1774.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1747) - } // end switch yys1747 - } // end for yyj1747 + z.DecStructFieldNotFound(-1, yys1770) + } // end switch yys1770 + } // end for yyj1770 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23394,16 +23665,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1752 int - var yyb1752 bool - var yyhl1752 bool = l >= 0 - yyj1752++ - if yyhl1752 { - yyb1752 = yyj1752 > l + var yyj1775 int + var yyb1775 bool + var yyhl1775 bool = l >= 0 + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1752 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1752 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23413,13 +23684,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1752++ - if yyhl1752 { - yyb1752 = yyj1752 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1752 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1752 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23429,13 +23700,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1752++ - if yyhl1752 { - yyb1752 = yyj1752 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1752 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1752 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23443,16 +23714,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1755 := &x.ObjectMeta - yyv1755.CodecDecodeSelf(d) + yyv1778 := &x.ObjectMeta + yyv1778.CodecDecodeSelf(d) } - yyj1752++ - if yyhl1752 { - yyb1752 = yyj1752 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1752 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1752 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23460,21 +23731,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1756 := &x.Status - yyv1756.CodecDecodeSelf(d) + yyv1779 := &x.Status + yyv1779.CodecDecodeSelf(d) } for { - yyj1752++ - if yyhl1752 { - yyb1752 = yyj1752 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1752 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1752 { + if yyb1775 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1752-1, "") + z.DecStructFieldNotFound(yyj1775-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23486,39 +23757,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1757 := z.EncBinary() - _ = yym1757 + yym1780 := z.EncBinary() + _ = yym1780 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1758 := !z.EncBinary() - yy2arr1758 := z.EncBasicHandle().StructToArray - var yyq1758 [5]bool - _, _, _ = yysep1758, yyq1758, yy2arr1758 - const yyr1758 bool = false - yyq1758[0] = x.Kind != "" - yyq1758[1] = x.APIVersion != "" - yyq1758[2] = true - yyq1758[3] = true - yyq1758[4] = true - var yynn1758 int - if yyr1758 || yy2arr1758 { + yysep1781 := !z.EncBinary() + yy2arr1781 := z.EncBasicHandle().StructToArray + var yyq1781 [5]bool + _, _, _ = yysep1781, yyq1781, yy2arr1781 + const yyr1781 bool = false + yyq1781[0] = x.Kind != "" + yyq1781[1] = x.APIVersion != "" + yyq1781[2] = true + yyq1781[3] = true + yyq1781[4] = true + var yynn1781 int + if yyr1781 || yy2arr1781 { r.EncodeArrayStart(5) } else { - yynn1758 = 0 - for _, b := range yyq1758 { + yynn1781 = 0 + for _, b := range yyq1781 { if b { - yynn1758++ + yynn1781++ } } - r.EncodeMapStart(yynn1758) - yynn1758 = 0 + r.EncodeMapStart(yynn1781) + yynn1781 = 0 } - if yyr1758 || yy2arr1758 { + if yyr1781 || yy2arr1781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1758[0] { - yym1760 := z.EncBinary() - _ = yym1760 + if yyq1781[0] { + yym1783 := z.EncBinary() + _ = yym1783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23527,23 +23798,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1758[0] { + if yyq1781[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1761 := z.EncBinary() - _ = yym1761 + yym1784 := z.EncBinary() + _ = yym1784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1758 || yy2arr1758 { + if yyr1781 || yy2arr1781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1758[1] { - yym1763 := z.EncBinary() - _ = yym1763 + if yyq1781[1] { + yym1786 := z.EncBinary() + _ = yym1786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23552,70 +23823,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1758[1] { + if yyq1781[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1764 := z.EncBinary() - _ = yym1764 + yym1787 := z.EncBinary() + _ = yym1787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1758 || yy2arr1758 { + if yyr1781 || yy2arr1781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1758[2] { - yy1766 := &x.ObjectMeta - yy1766.CodecEncodeSelf(e) + if yyq1781[2] { + yy1789 := &x.ObjectMeta + yy1789.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1758[2] { + if yyq1781[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1767 := &x.ObjectMeta - yy1767.CodecEncodeSelf(e) + yy1790 := &x.ObjectMeta + yy1790.CodecEncodeSelf(e) } } - if yyr1758 || yy2arr1758 { + if yyr1781 || yy2arr1781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1758[3] { - yy1769 := &x.Spec - yy1769.CodecEncodeSelf(e) + if yyq1781[3] { + yy1792 := &x.Spec + yy1792.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1758[3] { + if yyq1781[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1770 := &x.Spec - yy1770.CodecEncodeSelf(e) + yy1793 := &x.Spec + yy1793.CodecEncodeSelf(e) } } - if yyr1758 || yy2arr1758 { + if yyr1781 || yy2arr1781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1758[4] { - yy1772 := &x.Status - yy1772.CodecEncodeSelf(e) + if yyq1781[4] { + yy1795 := &x.Status + yy1795.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1758[4] { + if yyq1781[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1773 := &x.Status - yy1773.CodecEncodeSelf(e) + yy1796 := &x.Status + yy1796.CodecEncodeSelf(e) } } - if yyr1758 || yy2arr1758 { + if yyr1781 || yy2arr1781 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23628,25 +23899,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1774 := z.DecBinary() - _ = yym1774 + yym1797 := z.DecBinary() + _ = yym1797 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1775 := r.ContainerType() - if yyct1775 == codecSelferValueTypeMap1234 { - yyl1775 := r.ReadMapStart() - if yyl1775 == 0 { + yyct1798 := r.ContainerType() + if yyct1798 == codecSelferValueTypeMap1234 { + yyl1798 := r.ReadMapStart() + if yyl1798 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1775, d) + x.codecDecodeSelfFromMap(yyl1798, d) } - } else if yyct1775 == codecSelferValueTypeArray1234 { - yyl1775 := r.ReadArrayStart() - if yyl1775 == 0 { + } else if yyct1798 == codecSelferValueTypeArray1234 { + yyl1798 := r.ReadArrayStart() + if yyl1798 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1775, d) + x.codecDecodeSelfFromArray(yyl1798, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23658,12 +23929,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1776Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1776Slc - var yyhl1776 bool = l >= 0 - for yyj1776 := 0; ; yyj1776++ { - if yyhl1776 { - if yyj1776 >= l { + var yys1799Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1799Slc + var yyhl1799 bool = l >= 0 + for yyj1799 := 0; ; yyj1799++ { + if yyhl1799 { + if yyj1799 >= l { break } } else { @@ -23672,10 +23943,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1776Slc = r.DecodeBytes(yys1776Slc, true, true) - yys1776 := string(yys1776Slc) + yys1799Slc = r.DecodeBytes(yys1799Slc, true, true) + yys1799 := string(yys1799Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1776 { + switch yys1799 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23692,27 +23963,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1779 := &x.ObjectMeta - yyv1779.CodecDecodeSelf(d) + yyv1802 := &x.ObjectMeta + yyv1802.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1780 := &x.Spec - yyv1780.CodecDecodeSelf(d) + yyv1803 := &x.Spec + yyv1803.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1781 := &x.Status - yyv1781.CodecDecodeSelf(d) + yyv1804 := &x.Status + yyv1804.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1776) - } // end switch yys1776 - } // end for yyj1776 + z.DecStructFieldNotFound(-1, yys1799) + } // end switch yys1799 + } // end for yyj1799 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23720,16 +23991,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1782 int - var yyb1782 bool - var yyhl1782 bool = l >= 0 - yyj1782++ - if yyhl1782 { - yyb1782 = yyj1782 > l + var yyj1805 int + var yyb1805 bool + var yyhl1805 bool = l >= 0 + yyj1805++ + if yyhl1805 { + yyb1805 = yyj1805 > l } else { - yyb1782 = r.CheckBreak() + yyb1805 = r.CheckBreak() } - if yyb1782 { + if yyb1805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23739,13 +24010,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1782++ - if yyhl1782 { - yyb1782 = yyj1782 > l + yyj1805++ + if yyhl1805 { + yyb1805 = yyj1805 > l } else { - yyb1782 = r.CheckBreak() + yyb1805 = r.CheckBreak() } - if yyb1782 { + if yyb1805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23755,13 +24026,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1782++ - if yyhl1782 { - yyb1782 = yyj1782 > l + yyj1805++ + if yyhl1805 { + yyb1805 = yyj1805 > l } else { - yyb1782 = r.CheckBreak() + yyb1805 = r.CheckBreak() } - if yyb1782 { + if yyb1805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23769,16 +24040,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1785 := &x.ObjectMeta - yyv1785.CodecDecodeSelf(d) + yyv1808 := &x.ObjectMeta + yyv1808.CodecDecodeSelf(d) } - yyj1782++ - if yyhl1782 { - yyb1782 = yyj1782 > l + yyj1805++ + if yyhl1805 { + yyb1805 = yyj1805 > l } else { - yyb1782 = r.CheckBreak() + yyb1805 = r.CheckBreak() } - if yyb1782 { + if yyb1805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23786,16 +24057,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1786 := &x.Spec - yyv1786.CodecDecodeSelf(d) + yyv1809 := &x.Spec + yyv1809.CodecDecodeSelf(d) } - yyj1782++ - if yyhl1782 { - yyb1782 = yyj1782 > l + yyj1805++ + if yyhl1805 { + yyb1805 = yyj1805 > l } else { - yyb1782 = r.CheckBreak() + yyb1805 = r.CheckBreak() } - if yyb1782 { + if yyb1805 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23803,21 +24074,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1787 := &x.Status - yyv1787.CodecDecodeSelf(d) + yyv1810 := &x.Status + yyv1810.CodecDecodeSelf(d) } for { - yyj1782++ - if yyhl1782 { - yyb1782 = yyj1782 > l + yyj1805++ + if yyhl1805 { + yyb1805 = yyj1805 > l } else { - yyb1782 = r.CheckBreak() + yyb1805 = r.CheckBreak() } - if yyb1782 { + if yyb1805 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1782-1, "") + z.DecStructFieldNotFound(yyj1805-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23829,37 +24100,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1788 := z.EncBinary() - _ = yym1788 + yym1811 := z.EncBinary() + _ = yym1811 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1789 := !z.EncBinary() - yy2arr1789 := z.EncBasicHandle().StructToArray - var yyq1789 [4]bool - _, _, _ = yysep1789, yyq1789, yy2arr1789 - const yyr1789 bool = false - yyq1789[0] = x.Kind != "" - yyq1789[1] = x.APIVersion != "" - yyq1789[2] = true - var yynn1789 int - if yyr1789 || yy2arr1789 { + yysep1812 := !z.EncBinary() + yy2arr1812 := z.EncBasicHandle().StructToArray + var yyq1812 [4]bool + _, _, _ = yysep1812, yyq1812, yy2arr1812 + const yyr1812 bool = false + yyq1812[0] = x.Kind != "" + yyq1812[1] = x.APIVersion != "" + yyq1812[2] = true + var yynn1812 int + if yyr1812 || yy2arr1812 { r.EncodeArrayStart(4) } else { - yynn1789 = 1 - for _, b := range yyq1789 { + yynn1812 = 1 + for _, b := range yyq1812 { if b { - yynn1789++ + yynn1812++ } } - r.EncodeMapStart(yynn1789) - yynn1789 = 0 + r.EncodeMapStart(yynn1812) + yynn1812 = 0 } - if yyr1789 || yy2arr1789 { + if yyr1812 || yy2arr1812 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1789[0] { - yym1791 := z.EncBinary() - _ = yym1791 + if yyq1812[0] { + yym1814 := z.EncBinary() + _ = yym1814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23868,23 +24139,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1789[0] { + if yyq1812[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1792 := z.EncBinary() - _ = yym1792 + yym1815 := z.EncBinary() + _ = yym1815 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1789 || yy2arr1789 { + if yyr1812 || yy2arr1812 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1789[1] { - yym1794 := z.EncBinary() - _ = yym1794 + if yyq1812[1] { + yym1817 := z.EncBinary() + _ = yym1817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23893,54 +24164,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1789[1] { + if yyq1812[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1795 := z.EncBinary() - _ = yym1795 + yym1818 := z.EncBinary() + _ = yym1818 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1789 || yy2arr1789 { + if yyr1812 || yy2arr1812 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1789[2] { - yy1797 := &x.ListMeta - yym1798 := z.EncBinary() - _ = yym1798 + if yyq1812[2] { + yy1820 := &x.ListMeta + yym1821 := z.EncBinary() + _ = yym1821 if false { - } else if z.HasExtensions() && z.EncExt(yy1797) { + } else if z.HasExtensions() && z.EncExt(yy1820) { } else { - z.EncFallback(yy1797) + z.EncFallback(yy1820) } } else { r.EncodeNil() } } else { - if yyq1789[2] { + if yyq1812[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1799 := &x.ListMeta - yym1800 := z.EncBinary() - _ = yym1800 + yy1822 := &x.ListMeta + yym1823 := z.EncBinary() + _ = yym1823 if false { - } else if z.HasExtensions() && z.EncExt(yy1799) { + } else if z.HasExtensions() && z.EncExt(yy1822) { } else { - z.EncFallback(yy1799) + z.EncFallback(yy1822) } } } - if yyr1789 || yy2arr1789 { + if yyr1812 || yy2arr1812 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1802 := z.EncBinary() - _ = yym1802 + yym1825 := z.EncBinary() + _ = yym1825 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -23953,15 +24224,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1803 := z.EncBinary() - _ = yym1803 + yym1826 := z.EncBinary() + _ = yym1826 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr1789 || yy2arr1789 { + if yyr1812 || yy2arr1812 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23974,25 +24245,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1804 := z.DecBinary() - _ = yym1804 + yym1827 := z.DecBinary() + _ = yym1827 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1805 := r.ContainerType() - if yyct1805 == codecSelferValueTypeMap1234 { - yyl1805 := r.ReadMapStart() - if yyl1805 == 0 { + yyct1828 := r.ContainerType() + if yyct1828 == codecSelferValueTypeMap1234 { + yyl1828 := r.ReadMapStart() + if yyl1828 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1805, d) + x.codecDecodeSelfFromMap(yyl1828, d) } - } else if yyct1805 == codecSelferValueTypeArray1234 { - yyl1805 := r.ReadArrayStart() - if yyl1805 == 0 { + } else if yyct1828 == codecSelferValueTypeArray1234 { + yyl1828 := r.ReadArrayStart() + if yyl1828 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1805, d) + x.codecDecodeSelfFromArray(yyl1828, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24004,12 +24275,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1806Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1806Slc - var yyhl1806 bool = l >= 0 - for yyj1806 := 0; ; yyj1806++ { - if yyhl1806 { - if yyj1806 >= l { + var yys1829Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1829Slc + var yyhl1829 bool = l >= 0 + for yyj1829 := 0; ; yyj1829++ { + if yyhl1829 { + if yyj1829 >= l { break } } else { @@ -24018,10 +24289,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1806Slc = r.DecodeBytes(yys1806Slc, true, true) - yys1806 := string(yys1806Slc) + yys1829Slc = r.DecodeBytes(yys1829Slc, true, true) + yys1829 := string(yys1829Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1806 { + switch yys1829 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24038,31 +24309,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1809 := &x.ListMeta - yym1810 := z.DecBinary() - _ = yym1810 + yyv1832 := &x.ListMeta + yym1833 := z.DecBinary() + _ = yym1833 if false { - } else if z.HasExtensions() && z.DecExt(yyv1809) { + } else if z.HasExtensions() && z.DecExt(yyv1832) { } else { - z.DecFallback(yyv1809, false) + z.DecFallback(yyv1832, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1811 := &x.Items - yym1812 := z.DecBinary() - _ = yym1812 + yyv1834 := &x.Items + yym1835 := z.DecBinary() + _ = yym1835 if false { } else { - h.decSlicePod((*[]Pod)(yyv1811), d) + h.decSlicePod((*[]Pod)(yyv1834), d) } } default: - z.DecStructFieldNotFound(-1, yys1806) - } // end switch yys1806 - } // end for yyj1806 + z.DecStructFieldNotFound(-1, yys1829) + } // end switch yys1829 + } // end for yyj1829 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24070,16 +24341,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1813 int - var yyb1813 bool - var yyhl1813 bool = l >= 0 - yyj1813++ - if yyhl1813 { - yyb1813 = yyj1813 > l + var yyj1836 int + var yyb1836 bool + var yyhl1836 bool = l >= 0 + yyj1836++ + if yyhl1836 { + yyb1836 = yyj1836 > l } else { - yyb1813 = r.CheckBreak() + yyb1836 = r.CheckBreak() } - if yyb1813 { + if yyb1836 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24089,13 +24360,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1813++ - if yyhl1813 { - yyb1813 = yyj1813 > l + yyj1836++ + if yyhl1836 { + yyb1836 = yyj1836 > l } else { - yyb1813 = r.CheckBreak() + yyb1836 = r.CheckBreak() } - if yyb1813 { + if yyb1836 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24105,13 +24376,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1813++ - if yyhl1813 { - yyb1813 = yyj1813 > l + yyj1836++ + if yyhl1836 { + yyb1836 = yyj1836 > l } else { - yyb1813 = r.CheckBreak() + yyb1836 = r.CheckBreak() } - if yyb1813 { + if yyb1836 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24119,22 +24390,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1816 := &x.ListMeta - yym1817 := z.DecBinary() - _ = yym1817 + yyv1839 := &x.ListMeta + yym1840 := z.DecBinary() + _ = yym1840 if false { - } else if z.HasExtensions() && z.DecExt(yyv1816) { + } else if z.HasExtensions() && z.DecExt(yyv1839) { } else { - z.DecFallback(yyv1816, false) + z.DecFallback(yyv1839, false) } } - yyj1813++ - if yyhl1813 { - yyb1813 = yyj1813 > l + yyj1836++ + if yyhl1836 { + yyb1836 = yyj1836 > l } else { - yyb1813 = r.CheckBreak() + yyb1836 = r.CheckBreak() } - if yyb1813 { + if yyb1836 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24142,26 +24413,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1818 := &x.Items - yym1819 := z.DecBinary() - _ = yym1819 + yyv1841 := &x.Items + yym1842 := z.DecBinary() + _ = yym1842 if false { } else { - h.decSlicePod((*[]Pod)(yyv1818), d) + h.decSlicePod((*[]Pod)(yyv1841), d) } } for { - yyj1813++ - if yyhl1813 { - yyb1813 = yyj1813 > l + yyj1836++ + if yyhl1836 { + yyb1836 = yyj1836 > l } else { - yyb1813 = r.CheckBreak() + yyb1836 = r.CheckBreak() } - if yyb1813 { + if yyb1836 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1813-1, "") + z.DecStructFieldNotFound(yyj1836-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24173,66 +24444,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1820 := z.EncBinary() - _ = yym1820 + yym1843 := z.EncBinary() + _ = yym1843 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1821 := !z.EncBinary() - yy2arr1821 := z.EncBasicHandle().StructToArray - var yyq1821 [2]bool - _, _, _ = yysep1821, yyq1821, yy2arr1821 - const yyr1821 bool = false - yyq1821[0] = true - yyq1821[1] = true - var yynn1821 int - if yyr1821 || yy2arr1821 { + yysep1844 := !z.EncBinary() + yy2arr1844 := z.EncBasicHandle().StructToArray + var yyq1844 [2]bool + _, _, _ = yysep1844, yyq1844, yy2arr1844 + const yyr1844 bool = false + yyq1844[0] = true + yyq1844[1] = true + var yynn1844 int + if yyr1844 || yy2arr1844 { r.EncodeArrayStart(2) } else { - yynn1821 = 0 - for _, b := range yyq1821 { + yynn1844 = 0 + for _, b := range yyq1844 { if b { - yynn1821++ + yynn1844++ } } - r.EncodeMapStart(yynn1821) - yynn1821 = 0 + r.EncodeMapStart(yynn1844) + yynn1844 = 0 } - if yyr1821 || yy2arr1821 { + if yyr1844 || yy2arr1844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1821[0] { - yy1823 := &x.ObjectMeta - yy1823.CodecEncodeSelf(e) + if yyq1844[0] { + yy1846 := &x.ObjectMeta + yy1846.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1821[0] { + if yyq1844[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1824 := &x.ObjectMeta - yy1824.CodecEncodeSelf(e) + yy1847 := &x.ObjectMeta + yy1847.CodecEncodeSelf(e) } } - if yyr1821 || yy2arr1821 { + if yyr1844 || yy2arr1844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1821[1] { - yy1826 := &x.Spec - yy1826.CodecEncodeSelf(e) + if yyq1844[1] { + yy1849 := &x.Spec + yy1849.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1821[1] { + if yyq1844[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1827 := &x.Spec - yy1827.CodecEncodeSelf(e) + yy1850 := &x.Spec + yy1850.CodecEncodeSelf(e) } } - if yyr1821 || yy2arr1821 { + if yyr1844 || yy2arr1844 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24245,25 +24516,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1828 := z.DecBinary() - _ = yym1828 + yym1851 := z.DecBinary() + _ = yym1851 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1829 := r.ContainerType() - if yyct1829 == codecSelferValueTypeMap1234 { - yyl1829 := r.ReadMapStart() - if yyl1829 == 0 { + yyct1852 := r.ContainerType() + if yyct1852 == codecSelferValueTypeMap1234 { + yyl1852 := r.ReadMapStart() + if yyl1852 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1829, d) + x.codecDecodeSelfFromMap(yyl1852, d) } - } else if yyct1829 == codecSelferValueTypeArray1234 { - yyl1829 := r.ReadArrayStart() - if yyl1829 == 0 { + } else if yyct1852 == codecSelferValueTypeArray1234 { + yyl1852 := r.ReadArrayStart() + if yyl1852 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1829, d) + x.codecDecodeSelfFromArray(yyl1852, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24275,12 +24546,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1830Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1830Slc - var yyhl1830 bool = l >= 0 - for yyj1830 := 0; ; yyj1830++ { - if yyhl1830 { - if yyj1830 >= l { + var yys1853Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1853Slc + var yyhl1853 bool = l >= 0 + for yyj1853 := 0; ; yyj1853++ { + if yyhl1853 { + if yyj1853 >= l { break } } else { @@ -24289,28 +24560,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1830Slc = r.DecodeBytes(yys1830Slc, true, true) - yys1830 := string(yys1830Slc) + yys1853Slc = r.DecodeBytes(yys1853Slc, true, true) + yys1853 := string(yys1853Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1830 { + switch yys1853 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1831 := &x.ObjectMeta - yyv1831.CodecDecodeSelf(d) + yyv1854 := &x.ObjectMeta + yyv1854.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1832 := &x.Spec - yyv1832.CodecDecodeSelf(d) + yyv1855 := &x.Spec + yyv1855.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1830) - } // end switch yys1830 - } // end for yyj1830 + z.DecStructFieldNotFound(-1, yys1853) + } // end switch yys1853 + } // end for yyj1853 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24318,16 +24589,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1833 int - var yyb1833 bool - var yyhl1833 bool = l >= 0 - yyj1833++ - if yyhl1833 { - yyb1833 = yyj1833 > l + var yyj1856 int + var yyb1856 bool + var yyhl1856 bool = l >= 0 + yyj1856++ + if yyhl1856 { + yyb1856 = yyj1856 > l } else { - yyb1833 = r.CheckBreak() + yyb1856 = r.CheckBreak() } - if yyb1833 { + if yyb1856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24335,16 +24606,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1834 := &x.ObjectMeta - yyv1834.CodecDecodeSelf(d) + yyv1857 := &x.ObjectMeta + yyv1857.CodecDecodeSelf(d) } - yyj1833++ - if yyhl1833 { - yyb1833 = yyj1833 > l + yyj1856++ + if yyhl1856 { + yyb1856 = yyj1856 > l } else { - yyb1833 = r.CheckBreak() + yyb1856 = r.CheckBreak() } - if yyb1833 { + if yyb1856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24352,21 +24623,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1835 := &x.Spec - yyv1835.CodecDecodeSelf(d) + yyv1858 := &x.Spec + yyv1858.CodecDecodeSelf(d) } for { - yyj1833++ - if yyhl1833 { - yyb1833 = yyj1833 > l + yyj1856++ + if yyhl1856 { + yyb1856 = yyj1856 > l } else { - yyb1833 = r.CheckBreak() + yyb1856 = r.CheckBreak() } - if yyb1833 { + if yyb1856 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1833-1, "") + z.DecStructFieldNotFound(yyj1856-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24378,38 +24649,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1836 := z.EncBinary() - _ = yym1836 + yym1859 := z.EncBinary() + _ = yym1859 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1837 := !z.EncBinary() - yy2arr1837 := z.EncBasicHandle().StructToArray - var yyq1837 [4]bool - _, _, _ = yysep1837, yyq1837, yy2arr1837 - const yyr1837 bool = false - yyq1837[0] = x.Kind != "" - yyq1837[1] = x.APIVersion != "" - yyq1837[2] = true - yyq1837[3] = true - var yynn1837 int - if yyr1837 || yy2arr1837 { + yysep1860 := !z.EncBinary() + yy2arr1860 := z.EncBasicHandle().StructToArray + var yyq1860 [4]bool + _, _, _ = yysep1860, yyq1860, yy2arr1860 + const yyr1860 bool = false + yyq1860[0] = x.Kind != "" + yyq1860[1] = x.APIVersion != "" + yyq1860[2] = true + yyq1860[3] = true + var yynn1860 int + if yyr1860 || yy2arr1860 { r.EncodeArrayStart(4) } else { - yynn1837 = 0 - for _, b := range yyq1837 { + yynn1860 = 0 + for _, b := range yyq1860 { if b { - yynn1837++ + yynn1860++ } } - r.EncodeMapStart(yynn1837) - yynn1837 = 0 + r.EncodeMapStart(yynn1860) + yynn1860 = 0 } - if yyr1837 || yy2arr1837 { + if yyr1860 || yy2arr1860 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1837[0] { - yym1839 := z.EncBinary() - _ = yym1839 + if yyq1860[0] { + yym1862 := z.EncBinary() + _ = yym1862 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -24418,23 +24689,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1837[0] { + if yyq1860[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1840 := z.EncBinary() - _ = yym1840 + yym1863 := z.EncBinary() + _ = yym1863 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1837 || yy2arr1837 { + if yyr1860 || yy2arr1860 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1837[1] { - yym1842 := z.EncBinary() - _ = yym1842 + if yyq1860[1] { + yym1865 := z.EncBinary() + _ = yym1865 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -24443,53 +24714,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1837[1] { + if yyq1860[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1843 := z.EncBinary() - _ = yym1843 + yym1866 := z.EncBinary() + _ = yym1866 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1837 || yy2arr1837 { + if yyr1860 || yy2arr1860 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1837[2] { - yy1845 := &x.ObjectMeta - yy1845.CodecEncodeSelf(e) + if yyq1860[2] { + yy1868 := &x.ObjectMeta + yy1868.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1837[2] { + if yyq1860[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1846 := &x.ObjectMeta - yy1846.CodecEncodeSelf(e) + yy1869 := &x.ObjectMeta + yy1869.CodecEncodeSelf(e) } } - if yyr1837 || yy2arr1837 { + if yyr1860 || yy2arr1860 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1837[3] { - yy1848 := &x.Template - yy1848.CodecEncodeSelf(e) + if yyq1860[3] { + yy1871 := &x.Template + yy1871.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1837[3] { + if yyq1860[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1849 := &x.Template - yy1849.CodecEncodeSelf(e) + yy1872 := &x.Template + yy1872.CodecEncodeSelf(e) } } - if yyr1837 || yy2arr1837 { + if yyr1860 || yy2arr1860 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24502,25 +24773,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1850 := z.DecBinary() - _ = yym1850 + yym1873 := z.DecBinary() + _ = yym1873 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1851 := r.ContainerType() - if yyct1851 == codecSelferValueTypeMap1234 { - yyl1851 := r.ReadMapStart() - if yyl1851 == 0 { + yyct1874 := r.ContainerType() + if yyct1874 == codecSelferValueTypeMap1234 { + yyl1874 := r.ReadMapStart() + if yyl1874 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1851, d) + x.codecDecodeSelfFromMap(yyl1874, d) } - } else if yyct1851 == codecSelferValueTypeArray1234 { - yyl1851 := r.ReadArrayStart() - if yyl1851 == 0 { + } else if yyct1874 == codecSelferValueTypeArray1234 { + yyl1874 := r.ReadArrayStart() + if yyl1874 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1851, d) + x.codecDecodeSelfFromArray(yyl1874, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24532,12 +24803,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1852Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1852Slc - var yyhl1852 bool = l >= 0 - for yyj1852 := 0; ; yyj1852++ { - if yyhl1852 { - if yyj1852 >= l { + var yys1875Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1875Slc + var yyhl1875 bool = l >= 0 + for yyj1875 := 0; ; yyj1875++ { + if yyhl1875 { + if yyj1875 >= l { break } } else { @@ -24546,10 +24817,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1852Slc = r.DecodeBytes(yys1852Slc, true, true) - yys1852 := string(yys1852Slc) + yys1875Slc = r.DecodeBytes(yys1875Slc, true, true) + yys1875 := string(yys1875Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1852 { + switch yys1875 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24566,20 +24837,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1855 := &x.ObjectMeta - yyv1855.CodecDecodeSelf(d) + yyv1878 := &x.ObjectMeta + yyv1878.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1856 := &x.Template - yyv1856.CodecDecodeSelf(d) + yyv1879 := &x.Template + yyv1879.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1852) - } // end switch yys1852 - } // end for yyj1852 + z.DecStructFieldNotFound(-1, yys1875) + } // end switch yys1875 + } // end for yyj1875 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24587,16 +24858,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1857 int - var yyb1857 bool - var yyhl1857 bool = l >= 0 - yyj1857++ - if yyhl1857 { - yyb1857 = yyj1857 > l + var yyj1880 int + var yyb1880 bool + var yyhl1880 bool = l >= 0 + yyj1880++ + if yyhl1880 { + yyb1880 = yyj1880 > l } else { - yyb1857 = r.CheckBreak() + yyb1880 = r.CheckBreak() } - if yyb1857 { + if yyb1880 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24606,13 +24877,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1857++ - if yyhl1857 { - yyb1857 = yyj1857 > l + yyj1880++ + if yyhl1880 { + yyb1880 = yyj1880 > l } else { - yyb1857 = r.CheckBreak() + yyb1880 = r.CheckBreak() } - if yyb1857 { + if yyb1880 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24622,13 +24893,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1857++ - if yyhl1857 { - yyb1857 = yyj1857 > l + yyj1880++ + if yyhl1880 { + yyb1880 = yyj1880 > l } else { - yyb1857 = r.CheckBreak() + yyb1880 = r.CheckBreak() } - if yyb1857 { + if yyb1880 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24636,16 +24907,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1860 := &x.ObjectMeta - yyv1860.CodecDecodeSelf(d) + yyv1883 := &x.ObjectMeta + yyv1883.CodecDecodeSelf(d) } - yyj1857++ - if yyhl1857 { - yyb1857 = yyj1857 > l + yyj1880++ + if yyhl1880 { + yyb1880 = yyj1880 > l } else { - yyb1857 = r.CheckBreak() + yyb1880 = r.CheckBreak() } - if yyb1857 { + if yyb1880 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24653,21 +24924,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1861 := &x.Template - yyv1861.CodecDecodeSelf(d) + yyv1884 := &x.Template + yyv1884.CodecDecodeSelf(d) } for { - yyj1857++ - if yyhl1857 { - yyb1857 = yyj1857 > l + yyj1880++ + if yyhl1880 { + yyb1880 = yyj1880 > l } else { - yyb1857 = r.CheckBreak() + yyb1880 = r.CheckBreak() } - if yyb1857 { + if yyb1880 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1857-1, "") + z.DecStructFieldNotFound(yyj1880-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24679,37 +24950,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1862 := z.EncBinary() - _ = yym1862 + yym1885 := z.EncBinary() + _ = yym1885 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1863 := !z.EncBinary() - yy2arr1863 := z.EncBasicHandle().StructToArray - var yyq1863 [4]bool - _, _, _ = yysep1863, yyq1863, yy2arr1863 - const yyr1863 bool = false - yyq1863[0] = x.Kind != "" - yyq1863[1] = x.APIVersion != "" - yyq1863[2] = true - var yynn1863 int - if yyr1863 || yy2arr1863 { + yysep1886 := !z.EncBinary() + yy2arr1886 := z.EncBasicHandle().StructToArray + var yyq1886 [4]bool + _, _, _ = yysep1886, yyq1886, yy2arr1886 + const yyr1886 bool = false + yyq1886[0] = x.Kind != "" + yyq1886[1] = x.APIVersion != "" + yyq1886[2] = true + var yynn1886 int + if yyr1886 || yy2arr1886 { r.EncodeArrayStart(4) } else { - yynn1863 = 1 - for _, b := range yyq1863 { + yynn1886 = 1 + for _, b := range yyq1886 { if b { - yynn1863++ + yynn1886++ } } - r.EncodeMapStart(yynn1863) - yynn1863 = 0 + r.EncodeMapStart(yynn1886) + yynn1886 = 0 } - if yyr1863 || yy2arr1863 { + if yyr1886 || yy2arr1886 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1863[0] { - yym1865 := z.EncBinary() - _ = yym1865 + if yyq1886[0] { + yym1888 := z.EncBinary() + _ = yym1888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -24718,23 +24989,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1863[0] { + if yyq1886[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1866 := z.EncBinary() - _ = yym1866 + yym1889 := z.EncBinary() + _ = yym1889 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1863 || yy2arr1863 { + if yyr1886 || yy2arr1886 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1863[1] { - yym1868 := z.EncBinary() - _ = yym1868 + if yyq1886[1] { + yym1891 := z.EncBinary() + _ = yym1891 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -24743,54 +25014,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1863[1] { + if yyq1886[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1869 := z.EncBinary() - _ = yym1869 + yym1892 := z.EncBinary() + _ = yym1892 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1863 || yy2arr1863 { + if yyr1886 || yy2arr1886 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1863[2] { - yy1871 := &x.ListMeta - yym1872 := z.EncBinary() - _ = yym1872 + if yyq1886[2] { + yy1894 := &x.ListMeta + yym1895 := z.EncBinary() + _ = yym1895 if false { - } else if z.HasExtensions() && z.EncExt(yy1871) { + } else if z.HasExtensions() && z.EncExt(yy1894) { } else { - z.EncFallback(yy1871) + z.EncFallback(yy1894) } } else { r.EncodeNil() } } else { - if yyq1863[2] { + if yyq1886[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1873 := &x.ListMeta - yym1874 := z.EncBinary() - _ = yym1874 + yy1896 := &x.ListMeta + yym1897 := z.EncBinary() + _ = yym1897 if false { - } else if z.HasExtensions() && z.EncExt(yy1873) { + } else if z.HasExtensions() && z.EncExt(yy1896) { } else { - z.EncFallback(yy1873) + z.EncFallback(yy1896) } } } - if yyr1863 || yy2arr1863 { + if yyr1886 || yy2arr1886 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1876 := z.EncBinary() - _ = yym1876 + yym1899 := z.EncBinary() + _ = yym1899 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -24803,15 +25074,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1877 := z.EncBinary() - _ = yym1877 + yym1900 := z.EncBinary() + _ = yym1900 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr1863 || yy2arr1863 { + if yyr1886 || yy2arr1886 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24824,25 +25095,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1878 := z.DecBinary() - _ = yym1878 + yym1901 := z.DecBinary() + _ = yym1901 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1879 := r.ContainerType() - if yyct1879 == codecSelferValueTypeMap1234 { - yyl1879 := r.ReadMapStart() - if yyl1879 == 0 { + yyct1902 := r.ContainerType() + if yyct1902 == codecSelferValueTypeMap1234 { + yyl1902 := r.ReadMapStart() + if yyl1902 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1879, d) + x.codecDecodeSelfFromMap(yyl1902, d) } - } else if yyct1879 == codecSelferValueTypeArray1234 { - yyl1879 := r.ReadArrayStart() - if yyl1879 == 0 { + } else if yyct1902 == codecSelferValueTypeArray1234 { + yyl1902 := r.ReadArrayStart() + if yyl1902 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1879, d) + x.codecDecodeSelfFromArray(yyl1902, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24854,12 +25125,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1880Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1880Slc - var yyhl1880 bool = l >= 0 - for yyj1880 := 0; ; yyj1880++ { - if yyhl1880 { - if yyj1880 >= l { + var yys1903Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1903Slc + var yyhl1903 bool = l >= 0 + for yyj1903 := 0; ; yyj1903++ { + if yyhl1903 { + if yyj1903 >= l { break } } else { @@ -24868,10 +25139,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1880Slc = r.DecodeBytes(yys1880Slc, true, true) - yys1880 := string(yys1880Slc) + yys1903Slc = r.DecodeBytes(yys1903Slc, true, true) + yys1903 := string(yys1903Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1880 { + switch yys1903 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24888,31 +25159,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1883 := &x.ListMeta - yym1884 := z.DecBinary() - _ = yym1884 + yyv1906 := &x.ListMeta + yym1907 := z.DecBinary() + _ = yym1907 if false { - } else if z.HasExtensions() && z.DecExt(yyv1883) { + } else if z.HasExtensions() && z.DecExt(yyv1906) { } else { - z.DecFallback(yyv1883, false) + z.DecFallback(yyv1906, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1885 := &x.Items - yym1886 := z.DecBinary() - _ = yym1886 + yyv1908 := &x.Items + yym1909 := z.DecBinary() + _ = yym1909 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1885), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1908), d) } } default: - z.DecStructFieldNotFound(-1, yys1880) - } // end switch yys1880 - } // end for yyj1880 + z.DecStructFieldNotFound(-1, yys1903) + } // end switch yys1903 + } // end for yyj1903 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24920,16 +25191,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1887 int - var yyb1887 bool - var yyhl1887 bool = l >= 0 - yyj1887++ - if yyhl1887 { - yyb1887 = yyj1887 > l + var yyj1910 int + var yyb1910 bool + var yyhl1910 bool = l >= 0 + yyj1910++ + if yyhl1910 { + yyb1910 = yyj1910 > l } else { - yyb1887 = r.CheckBreak() + yyb1910 = r.CheckBreak() } - if yyb1887 { + if yyb1910 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24939,13 +25210,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1887++ - if yyhl1887 { - yyb1887 = yyj1887 > l + yyj1910++ + if yyhl1910 { + yyb1910 = yyj1910 > l } else { - yyb1887 = r.CheckBreak() + yyb1910 = r.CheckBreak() } - if yyb1887 { + if yyb1910 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24955,13 +25226,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1887++ - if yyhl1887 { - yyb1887 = yyj1887 > l + yyj1910++ + if yyhl1910 { + yyb1910 = yyj1910 > l } else { - yyb1887 = r.CheckBreak() + yyb1910 = r.CheckBreak() } - if yyb1887 { + if yyb1910 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24969,22 +25240,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1890 := &x.ListMeta - yym1891 := z.DecBinary() - _ = yym1891 + yyv1913 := &x.ListMeta + yym1914 := z.DecBinary() + _ = yym1914 if false { - } else if z.HasExtensions() && z.DecExt(yyv1890) { + } else if z.HasExtensions() && z.DecExt(yyv1913) { } else { - z.DecFallback(yyv1890, false) + z.DecFallback(yyv1913, false) } } - yyj1887++ - if yyhl1887 { - yyb1887 = yyj1887 > l + yyj1910++ + if yyhl1910 { + yyb1910 = yyj1910 > l } else { - yyb1887 = r.CheckBreak() + yyb1910 = r.CheckBreak() } - if yyb1887 { + if yyb1910 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24992,26 +25263,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1892 := &x.Items - yym1893 := z.DecBinary() - _ = yym1893 + yyv1915 := &x.Items + yym1916 := z.DecBinary() + _ = yym1916 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1892), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1915), d) } } for { - yyj1887++ - if yyhl1887 { - yyb1887 = yyj1887 > l + yyj1910++ + if yyhl1910 { + yyb1910 = yyj1910 > l } else { - yyb1887 = r.CheckBreak() + yyb1910 = r.CheckBreak() } - if yyb1887 { + if yyb1910 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1887-1, "") + z.DecStructFieldNotFound(yyj1910-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25023,75 +25294,75 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1894 := z.EncBinary() - _ = yym1894 + yym1917 := z.EncBinary() + _ = yym1917 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1895 := !z.EncBinary() - yy2arr1895 := z.EncBasicHandle().StructToArray - var yyq1895 [3]bool - _, _, _ = yysep1895, yyq1895, yy2arr1895 - const yyr1895 bool = false - yyq1895[0] = x.Replicas != nil - yyq1895[1] = len(x.Selector) != 0 - yyq1895[2] = x.Template != nil - var yynn1895 int - if yyr1895 || yy2arr1895 { + yysep1918 := !z.EncBinary() + yy2arr1918 := z.EncBasicHandle().StructToArray + var yyq1918 [3]bool + _, _, _ = yysep1918, yyq1918, yy2arr1918 + const yyr1918 bool = false + yyq1918[0] = x.Replicas != nil + yyq1918[1] = len(x.Selector) != 0 + yyq1918[2] = x.Template != nil + var yynn1918 int + if yyr1918 || yy2arr1918 { r.EncodeArrayStart(3) } else { - yynn1895 = 0 - for _, b := range yyq1895 { + yynn1918 = 0 + for _, b := range yyq1918 { if b { - yynn1895++ + yynn1918++ } } - r.EncodeMapStart(yynn1895) - yynn1895 = 0 + r.EncodeMapStart(yynn1918) + yynn1918 = 0 } - if yyr1895 || yy2arr1895 { + if yyr1918 || yy2arr1918 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1895[0] { + if yyq1918[0] { if x.Replicas == nil { r.EncodeNil() } else { - yy1897 := *x.Replicas - yym1898 := z.EncBinary() - _ = yym1898 + yy1920 := *x.Replicas + yym1921 := z.EncBinary() + _ = yym1921 if false { } else { - r.EncodeInt(int64(yy1897)) + r.EncodeInt(int64(yy1920)) } } } else { r.EncodeNil() } } else { - if yyq1895[0] { + if yyq1918[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Replicas == nil { r.EncodeNil() } else { - yy1899 := *x.Replicas - yym1900 := z.EncBinary() - _ = yym1900 + yy1922 := *x.Replicas + yym1923 := z.EncBinary() + _ = yym1923 if false { } else { - r.EncodeInt(int64(yy1899)) + r.EncodeInt(int64(yy1922)) } } } } - if yyr1895 || yy2arr1895 { + if yyr1918 || yy2arr1918 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1895[1] { + if yyq1918[1] { if x.Selector == nil { r.EncodeNil() } else { - yym1902 := z.EncBinary() - _ = yym1902 + yym1925 := z.EncBinary() + _ = yym1925 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -25101,15 +25372,15 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1895[1] { + if yyq1918[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym1903 := z.EncBinary() - _ = yym1903 + yym1926 := z.EncBinary() + _ = yym1926 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -25117,9 +25388,9 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1895 || yy2arr1895 { + if yyr1918 || yy2arr1918 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1895[2] { + if yyq1918[2] { if x.Template == nil { r.EncodeNil() } else { @@ -25129,7 +25400,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1895[2] { + if yyq1918[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -25140,7 +25411,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1895 || yy2arr1895 { + if yyr1918 || yy2arr1918 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25153,25 +25424,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1905 := z.DecBinary() - _ = yym1905 + yym1928 := z.DecBinary() + _ = yym1928 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1906 := r.ContainerType() - if yyct1906 == codecSelferValueTypeMap1234 { - yyl1906 := r.ReadMapStart() - if yyl1906 == 0 { + yyct1929 := r.ContainerType() + if yyct1929 == codecSelferValueTypeMap1234 { + yyl1929 := r.ReadMapStart() + if yyl1929 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1906, d) + x.codecDecodeSelfFromMap(yyl1929, d) } - } else if yyct1906 == codecSelferValueTypeArray1234 { - yyl1906 := r.ReadArrayStart() - if yyl1906 == 0 { + } else if yyct1929 == codecSelferValueTypeArray1234 { + yyl1929 := r.ReadArrayStart() + if yyl1929 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1906, d) + x.codecDecodeSelfFromArray(yyl1929, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25183,12 +25454,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1907Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1907Slc - var yyhl1907 bool = l >= 0 - for yyj1907 := 0; ; yyj1907++ { - if yyhl1907 { - if yyj1907 >= l { + var yys1930Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1930Slc + var yyhl1930 bool = l >= 0 + for yyj1930 := 0; ; yyj1930++ { + if yyhl1930 { + if yyj1930 >= l { break } } else { @@ -25197,10 +25468,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1907Slc = r.DecodeBytes(yys1907Slc, true, true) - yys1907 := string(yys1907Slc) + yys1930Slc = r.DecodeBytes(yys1930Slc, true, true) + yys1930 := string(yys1930Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1907 { + switch yys1930 { case "replicas": if r.TryDecodeAsNil() { if x.Replicas != nil { @@ -25210,8 +25481,8 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Replicas == nil { x.Replicas = new(int32) } - yym1909 := z.DecBinary() - _ = yym1909 + yym1932 := z.DecBinary() + _ = yym1932 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) @@ -25221,12 +25492,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1910 := &x.Selector - yym1911 := z.DecBinary() - _ = yym1911 + yyv1933 := &x.Selector + yym1934 := z.DecBinary() + _ = yym1934 if false { } else { - z.F.DecMapStringStringX(yyv1910, false, d) + z.F.DecMapStringStringX(yyv1933, false, d) } } case "template": @@ -25241,9 +25512,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1907) - } // end switch yys1907 - } // end for yyj1907 + z.DecStructFieldNotFound(-1, yys1930) + } // end switch yys1930 + } // end for yyj1930 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25251,16 +25522,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1913 int - var yyb1913 bool - var yyhl1913 bool = l >= 0 - yyj1913++ - if yyhl1913 { - yyb1913 = yyj1913 > l + var yyj1936 int + var yyb1936 bool + var yyhl1936 bool = l >= 0 + yyj1936++ + if yyhl1936 { + yyb1936 = yyj1936 > l } else { - yyb1913 = r.CheckBreak() + yyb1936 = r.CheckBreak() } - if yyb1913 { + if yyb1936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25273,20 +25544,20 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Replicas == nil { x.Replicas = new(int32) } - yym1915 := z.DecBinary() - _ = yym1915 + yym1938 := z.DecBinary() + _ = yym1938 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) } } - yyj1913++ - if yyhl1913 { - yyb1913 = yyj1913 > l + yyj1936++ + if yyhl1936 { + yyb1936 = yyj1936 > l } else { - yyb1913 = r.CheckBreak() + yyb1936 = r.CheckBreak() } - if yyb1913 { + if yyb1936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25294,21 +25565,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1916 := &x.Selector - yym1917 := z.DecBinary() - _ = yym1917 + yyv1939 := &x.Selector + yym1940 := z.DecBinary() + _ = yym1940 if false { } else { - z.F.DecMapStringStringX(yyv1916, false, d) + z.F.DecMapStringStringX(yyv1939, false, d) } } - yyj1913++ - if yyhl1913 { - yyb1913 = yyj1913 > l + yyj1936++ + if yyhl1936 { + yyb1936 = yyj1936 > l } else { - yyb1913 = r.CheckBreak() + yyb1936 = r.CheckBreak() } - if yyb1913 { + if yyb1936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25324,17 +25595,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj1913++ - if yyhl1913 { - yyb1913 = yyj1913 > l + yyj1936++ + if yyhl1936 { + yyb1936 = yyj1936 > l } else { - yyb1913 = r.CheckBreak() + yyb1936 = r.CheckBreak() } - if yyb1913 { + if yyb1936 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1913-1, "") + z.DecStructFieldNotFound(yyj1936-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25346,34 +25617,34 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1919 := z.EncBinary() - _ = yym1919 + yym1942 := z.EncBinary() + _ = yym1942 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1920 := !z.EncBinary() - yy2arr1920 := z.EncBasicHandle().StructToArray - var yyq1920 [2]bool - _, _, _ = yysep1920, yyq1920, yy2arr1920 - const yyr1920 bool = false - yyq1920[1] = x.ObservedGeneration != 0 - var yynn1920 int - if yyr1920 || yy2arr1920 { + yysep1943 := !z.EncBinary() + yy2arr1943 := z.EncBasicHandle().StructToArray + var yyq1943 [2]bool + _, _, _ = yysep1943, yyq1943, yy2arr1943 + const yyr1943 bool = false + yyq1943[1] = x.ObservedGeneration != 0 + var yynn1943 int + if yyr1943 || yy2arr1943 { r.EncodeArrayStart(2) } else { - yynn1920 = 1 - for _, b := range yyq1920 { + yynn1943 = 1 + for _, b := range yyq1943 { if b { - yynn1920++ + yynn1943++ } } - r.EncodeMapStart(yynn1920) - yynn1920 = 0 + r.EncodeMapStart(yynn1943) + yynn1943 = 0 } - if yyr1920 || yy2arr1920 { + if yyr1943 || yy2arr1943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1922 := z.EncBinary() - _ = yym1922 + yym1945 := z.EncBinary() + _ = yym1945 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -25382,18 +25653,18 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1923 := z.EncBinary() - _ = yym1923 + yym1946 := z.EncBinary() + _ = yym1946 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr1920 || yy2arr1920 { + if yyr1943 || yy2arr1943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1920[1] { - yym1925 := z.EncBinary() - _ = yym1925 + if yyq1943[1] { + yym1948 := z.EncBinary() + _ = yym1948 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -25402,19 +25673,19 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1920[1] { + if yyq1943[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1926 := z.EncBinary() - _ = yym1926 + yym1949 := z.EncBinary() + _ = yym1949 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr1920 || yy2arr1920 { + if yyr1943 || yy2arr1943 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25427,25 +25698,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1927 := z.DecBinary() - _ = yym1927 + yym1950 := z.DecBinary() + _ = yym1950 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1928 := r.ContainerType() - if yyct1928 == codecSelferValueTypeMap1234 { - yyl1928 := r.ReadMapStart() - if yyl1928 == 0 { + yyct1951 := r.ContainerType() + if yyct1951 == codecSelferValueTypeMap1234 { + yyl1951 := r.ReadMapStart() + if yyl1951 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1928, d) + x.codecDecodeSelfFromMap(yyl1951, d) } - } else if yyct1928 == codecSelferValueTypeArray1234 { - yyl1928 := r.ReadArrayStart() - if yyl1928 == 0 { + } else if yyct1951 == codecSelferValueTypeArray1234 { + yyl1951 := r.ReadArrayStart() + if yyl1951 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1928, d) + x.codecDecodeSelfFromArray(yyl1951, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25457,12 +25728,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1929Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1929Slc - var yyhl1929 bool = l >= 0 - for yyj1929 := 0; ; yyj1929++ { - if yyhl1929 { - if yyj1929 >= l { + var yys1952Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1952Slc + var yyhl1952 bool = l >= 0 + for yyj1952 := 0; ; yyj1952++ { + if yyhl1952 { + if yyj1952 >= l { break } } else { @@ -25471,10 +25742,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1929Slc = r.DecodeBytes(yys1929Slc, true, true) - yys1929 := string(yys1929Slc) + yys1952Slc = r.DecodeBytes(yys1952Slc, true, true) + yys1952 := string(yys1952Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1929 { + switch yys1952 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -25488,9 +25759,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys1929) - } // end switch yys1929 - } // end for yyj1929 + z.DecStructFieldNotFound(-1, yys1952) + } // end switch yys1952 + } // end for yyj1952 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25498,16 +25769,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1932 int - var yyb1932 bool - var yyhl1932 bool = l >= 0 - yyj1932++ - if yyhl1932 { - yyb1932 = yyj1932 > l + var yyj1955 int + var yyb1955 bool + var yyhl1955 bool = l >= 0 + yyj1955++ + if yyhl1955 { + yyb1955 = yyj1955 > l } else { - yyb1932 = r.CheckBreak() + yyb1955 = r.CheckBreak() } - if yyb1932 { + if yyb1955 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25517,13 +25788,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj1932++ - if yyhl1932 { - yyb1932 = yyj1932 > l + yyj1955++ + if yyhl1955 { + yyb1955 = yyj1955 > l } else { - yyb1932 = r.CheckBreak() + yyb1955 = r.CheckBreak() } - if yyb1932 { + if yyb1955 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25534,17 +25805,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj1932++ - if yyhl1932 { - yyb1932 = yyj1932 > l + yyj1955++ + if yyhl1955 { + yyb1955 = yyj1955 > l } else { - yyb1932 = r.CheckBreak() + yyb1955 = r.CheckBreak() } - if yyb1932 { + if yyb1955 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1932-1, "") + z.DecStructFieldNotFound(yyj1955-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25556,39 +25827,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1935 := z.EncBinary() - _ = yym1935 + yym1958 := z.EncBinary() + _ = yym1958 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1936 := !z.EncBinary() - yy2arr1936 := z.EncBasicHandle().StructToArray - var yyq1936 [5]bool - _, _, _ = yysep1936, yyq1936, yy2arr1936 - const yyr1936 bool = false - yyq1936[0] = x.Kind != "" - yyq1936[1] = x.APIVersion != "" - yyq1936[2] = true - yyq1936[3] = true - yyq1936[4] = true - var yynn1936 int - if yyr1936 || yy2arr1936 { + yysep1959 := !z.EncBinary() + yy2arr1959 := z.EncBasicHandle().StructToArray + var yyq1959 [5]bool + _, _, _ = yysep1959, yyq1959, yy2arr1959 + const yyr1959 bool = false + yyq1959[0] = x.Kind != "" + yyq1959[1] = x.APIVersion != "" + yyq1959[2] = true + yyq1959[3] = true + yyq1959[4] = true + var yynn1959 int + if yyr1959 || yy2arr1959 { r.EncodeArrayStart(5) } else { - yynn1936 = 0 - for _, b := range yyq1936 { + yynn1959 = 0 + for _, b := range yyq1959 { if b { - yynn1936++ + yynn1959++ } } - r.EncodeMapStart(yynn1936) - yynn1936 = 0 + r.EncodeMapStart(yynn1959) + yynn1959 = 0 } - if yyr1936 || yy2arr1936 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1936[0] { - yym1938 := z.EncBinary() - _ = yym1938 + if yyq1959[0] { + yym1961 := z.EncBinary() + _ = yym1961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25597,23 +25868,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1936[0] { + if yyq1959[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1939 := z.EncBinary() - _ = yym1939 + yym1962 := z.EncBinary() + _ = yym1962 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1936 || yy2arr1936 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1936[1] { - yym1941 := z.EncBinary() - _ = yym1941 + if yyq1959[1] { + yym1964 := z.EncBinary() + _ = yym1964 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25622,70 +25893,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1936[1] { + if yyq1959[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1942 := z.EncBinary() - _ = yym1942 + yym1965 := z.EncBinary() + _ = yym1965 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1936 || yy2arr1936 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1936[2] { - yy1944 := &x.ObjectMeta - yy1944.CodecEncodeSelf(e) + if yyq1959[2] { + yy1967 := &x.ObjectMeta + yy1967.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1936[2] { + if yyq1959[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1945 := &x.ObjectMeta - yy1945.CodecEncodeSelf(e) + yy1968 := &x.ObjectMeta + yy1968.CodecEncodeSelf(e) } } - if yyr1936 || yy2arr1936 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1936[3] { - yy1947 := &x.Spec - yy1947.CodecEncodeSelf(e) + if yyq1959[3] { + yy1970 := &x.Spec + yy1970.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1936[3] { + if yyq1959[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1948 := &x.Spec - yy1948.CodecEncodeSelf(e) + yy1971 := &x.Spec + yy1971.CodecEncodeSelf(e) } } - if yyr1936 || yy2arr1936 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1936[4] { - yy1950 := &x.Status - yy1950.CodecEncodeSelf(e) + if yyq1959[4] { + yy1973 := &x.Status + yy1973.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1936[4] { + if yyq1959[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1951 := &x.Status - yy1951.CodecEncodeSelf(e) + yy1974 := &x.Status + yy1974.CodecEncodeSelf(e) } } - if yyr1936 || yy2arr1936 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25698,25 +25969,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1952 := z.DecBinary() - _ = yym1952 + yym1975 := z.DecBinary() + _ = yym1975 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1953 := r.ContainerType() - if yyct1953 == codecSelferValueTypeMap1234 { - yyl1953 := r.ReadMapStart() - if yyl1953 == 0 { + yyct1976 := r.ContainerType() + if yyct1976 == codecSelferValueTypeMap1234 { + yyl1976 := r.ReadMapStart() + if yyl1976 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1953, d) + x.codecDecodeSelfFromMap(yyl1976, d) } - } else if yyct1953 == codecSelferValueTypeArray1234 { - yyl1953 := r.ReadArrayStart() - if yyl1953 == 0 { + } else if yyct1976 == codecSelferValueTypeArray1234 { + yyl1976 := r.ReadArrayStart() + if yyl1976 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1953, d) + x.codecDecodeSelfFromArray(yyl1976, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25728,12 +25999,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1954Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1954Slc - var yyhl1954 bool = l >= 0 - for yyj1954 := 0; ; yyj1954++ { - if yyhl1954 { - if yyj1954 >= l { + var yys1977Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1977Slc + var yyhl1977 bool = l >= 0 + for yyj1977 := 0; ; yyj1977++ { + if yyhl1977 { + if yyj1977 >= l { break } } else { @@ -25742,10 +26013,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1954Slc = r.DecodeBytes(yys1954Slc, true, true) - yys1954 := string(yys1954Slc) + yys1977Slc = r.DecodeBytes(yys1977Slc, true, true) + yys1977 := string(yys1977Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1954 { + switch yys1977 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -25762,27 +26033,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1957 := &x.ObjectMeta - yyv1957.CodecDecodeSelf(d) + yyv1980 := &x.ObjectMeta + yyv1980.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1958 := &x.Spec - yyv1958.CodecDecodeSelf(d) + yyv1981 := &x.Spec + yyv1981.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1959 := &x.Status - yyv1959.CodecDecodeSelf(d) + yyv1982 := &x.Status + yyv1982.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1954) - } // end switch yys1954 - } // end for yyj1954 + z.DecStructFieldNotFound(-1, yys1977) + } // end switch yys1977 + } // end for yyj1977 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25790,16 +26061,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1960 int - var yyb1960 bool - var yyhl1960 bool = l >= 0 - yyj1960++ - if yyhl1960 { - yyb1960 = yyj1960 > l + var yyj1983 int + var yyb1983 bool + var yyhl1983 bool = l >= 0 + yyj1983++ + if yyhl1983 { + yyb1983 = yyj1983 > l } else { - yyb1960 = r.CheckBreak() + yyb1983 = r.CheckBreak() } - if yyb1960 { + if yyb1983 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25809,13 +26080,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1960++ - if yyhl1960 { - yyb1960 = yyj1960 > l + yyj1983++ + if yyhl1983 { + yyb1983 = yyj1983 > l } else { - yyb1960 = r.CheckBreak() + yyb1983 = r.CheckBreak() } - if yyb1960 { + if yyb1983 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25825,13 +26096,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1960++ - if yyhl1960 { - yyb1960 = yyj1960 > l + yyj1983++ + if yyhl1983 { + yyb1983 = yyj1983 > l } else { - yyb1960 = r.CheckBreak() + yyb1983 = r.CheckBreak() } - if yyb1960 { + if yyb1983 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25839,16 +26110,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1963 := &x.ObjectMeta - yyv1963.CodecDecodeSelf(d) + yyv1986 := &x.ObjectMeta + yyv1986.CodecDecodeSelf(d) } - yyj1960++ - if yyhl1960 { - yyb1960 = yyj1960 > l + yyj1983++ + if yyhl1983 { + yyb1983 = yyj1983 > l } else { - yyb1960 = r.CheckBreak() + yyb1983 = r.CheckBreak() } - if yyb1960 { + if yyb1983 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25856,16 +26127,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1964 := &x.Spec - yyv1964.CodecDecodeSelf(d) + yyv1987 := &x.Spec + yyv1987.CodecDecodeSelf(d) } - yyj1960++ - if yyhl1960 { - yyb1960 = yyj1960 > l + yyj1983++ + if yyhl1983 { + yyb1983 = yyj1983 > l } else { - yyb1960 = r.CheckBreak() + yyb1983 = r.CheckBreak() } - if yyb1960 { + if yyb1983 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25873,21 +26144,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1965 := &x.Status - yyv1965.CodecDecodeSelf(d) + yyv1988 := &x.Status + yyv1988.CodecDecodeSelf(d) } for { - yyj1960++ - if yyhl1960 { - yyb1960 = yyj1960 > l + yyj1983++ + if yyhl1983 { + yyb1983 = yyj1983 > l } else { - yyb1960 = r.CheckBreak() + yyb1983 = r.CheckBreak() } - if yyb1960 { + if yyb1983 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1960-1, "") + z.DecStructFieldNotFound(yyj1983-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25899,37 +26170,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1966 := z.EncBinary() - _ = yym1966 + yym1989 := z.EncBinary() + _ = yym1989 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1967 := !z.EncBinary() - yy2arr1967 := z.EncBasicHandle().StructToArray - var yyq1967 [4]bool - _, _, _ = yysep1967, yyq1967, yy2arr1967 - const yyr1967 bool = false - yyq1967[0] = x.Kind != "" - yyq1967[1] = x.APIVersion != "" - yyq1967[2] = true - var yynn1967 int - if yyr1967 || yy2arr1967 { + yysep1990 := !z.EncBinary() + yy2arr1990 := z.EncBasicHandle().StructToArray + var yyq1990 [4]bool + _, _, _ = yysep1990, yyq1990, yy2arr1990 + const yyr1990 bool = false + yyq1990[0] = x.Kind != "" + yyq1990[1] = x.APIVersion != "" + yyq1990[2] = true + var yynn1990 int + if yyr1990 || yy2arr1990 { r.EncodeArrayStart(4) } else { - yynn1967 = 1 - for _, b := range yyq1967 { + yynn1990 = 1 + for _, b := range yyq1990 { if b { - yynn1967++ + yynn1990++ } } - r.EncodeMapStart(yynn1967) - yynn1967 = 0 + r.EncodeMapStart(yynn1990) + yynn1990 = 0 } - if yyr1967 || yy2arr1967 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1967[0] { - yym1969 := z.EncBinary() - _ = yym1969 + if yyq1990[0] { + yym1992 := z.EncBinary() + _ = yym1992 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25938,23 +26209,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1967[0] { + if yyq1990[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1970 := z.EncBinary() - _ = yym1970 + yym1993 := z.EncBinary() + _ = yym1993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1967 || yy2arr1967 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1967[1] { - yym1972 := z.EncBinary() - _ = yym1972 + if yyq1990[1] { + yym1995 := z.EncBinary() + _ = yym1995 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25963,54 +26234,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1967[1] { + if yyq1990[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1973 := z.EncBinary() - _ = yym1973 + yym1996 := z.EncBinary() + _ = yym1996 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1967 || yy2arr1967 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1967[2] { - yy1975 := &x.ListMeta - yym1976 := z.EncBinary() - _ = yym1976 + if yyq1990[2] { + yy1998 := &x.ListMeta + yym1999 := z.EncBinary() + _ = yym1999 if false { - } else if z.HasExtensions() && z.EncExt(yy1975) { + } else if z.HasExtensions() && z.EncExt(yy1998) { } else { - z.EncFallback(yy1975) + z.EncFallback(yy1998) } } else { r.EncodeNil() } } else { - if yyq1967[2] { + if yyq1990[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1977 := &x.ListMeta - yym1978 := z.EncBinary() - _ = yym1978 + yy2000 := &x.ListMeta + yym2001 := z.EncBinary() + _ = yym2001 if false { - } else if z.HasExtensions() && z.EncExt(yy1977) { + } else if z.HasExtensions() && z.EncExt(yy2000) { } else { - z.EncFallback(yy1977) + z.EncFallback(yy2000) } } } - if yyr1967 || yy2arr1967 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1980 := z.EncBinary() - _ = yym1980 + yym2003 := z.EncBinary() + _ = yym2003 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -26023,15 +26294,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1981 := z.EncBinary() - _ = yym1981 + yym2004 := z.EncBinary() + _ = yym2004 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr1967 || yy2arr1967 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26044,25 +26315,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1982 := z.DecBinary() - _ = yym1982 + yym2005 := z.DecBinary() + _ = yym2005 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1983 := r.ContainerType() - if yyct1983 == codecSelferValueTypeMap1234 { - yyl1983 := r.ReadMapStart() - if yyl1983 == 0 { + yyct2006 := r.ContainerType() + if yyct2006 == codecSelferValueTypeMap1234 { + yyl2006 := r.ReadMapStart() + if yyl2006 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1983, d) + x.codecDecodeSelfFromMap(yyl2006, d) } - } else if yyct1983 == codecSelferValueTypeArray1234 { - yyl1983 := r.ReadArrayStart() - if yyl1983 == 0 { + } else if yyct2006 == codecSelferValueTypeArray1234 { + yyl2006 := r.ReadArrayStart() + if yyl2006 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1983, d) + x.codecDecodeSelfFromArray(yyl2006, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26074,12 +26345,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1984Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1984Slc - var yyhl1984 bool = l >= 0 - for yyj1984 := 0; ; yyj1984++ { - if yyhl1984 { - if yyj1984 >= l { + var yys2007Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2007Slc + var yyhl2007 bool = l >= 0 + for yyj2007 := 0; ; yyj2007++ { + if yyhl2007 { + if yyj2007 >= l { break } } else { @@ -26088,10 +26359,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1984Slc = r.DecodeBytes(yys1984Slc, true, true) - yys1984 := string(yys1984Slc) + yys2007Slc = r.DecodeBytes(yys2007Slc, true, true) + yys2007 := string(yys2007Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1984 { + switch yys2007 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26108,31 +26379,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1987 := &x.ListMeta - yym1988 := z.DecBinary() - _ = yym1988 + yyv2010 := &x.ListMeta + yym2011 := z.DecBinary() + _ = yym2011 if false { - } else if z.HasExtensions() && z.DecExt(yyv1987) { + } else if z.HasExtensions() && z.DecExt(yyv2010) { } else { - z.DecFallback(yyv1987, false) + z.DecFallback(yyv2010, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1989 := &x.Items - yym1990 := z.DecBinary() - _ = yym1990 + yyv2012 := &x.Items + yym2013 := z.DecBinary() + _ = yym2013 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1989), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2012), d) } } default: - z.DecStructFieldNotFound(-1, yys1984) - } // end switch yys1984 - } // end for yyj1984 + z.DecStructFieldNotFound(-1, yys2007) + } // end switch yys2007 + } // end for yyj2007 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26140,16 +26411,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1991 int - var yyb1991 bool - var yyhl1991 bool = l >= 0 - yyj1991++ - if yyhl1991 { - yyb1991 = yyj1991 > l + var yyj2014 int + var yyb2014 bool + var yyhl2014 bool = l >= 0 + yyj2014++ + if yyhl2014 { + yyb2014 = yyj2014 > l } else { - yyb1991 = r.CheckBreak() + yyb2014 = r.CheckBreak() } - if yyb1991 { + if yyb2014 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26159,13 +26430,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj1991++ - if yyhl1991 { - yyb1991 = yyj1991 > l + yyj2014++ + if yyhl2014 { + yyb2014 = yyj2014 > l } else { - yyb1991 = r.CheckBreak() + yyb2014 = r.CheckBreak() } - if yyb1991 { + if yyb2014 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26175,13 +26446,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj1991++ - if yyhl1991 { - yyb1991 = yyj1991 > l + yyj2014++ + if yyhl2014 { + yyb2014 = yyj2014 > l } else { - yyb1991 = r.CheckBreak() + yyb2014 = r.CheckBreak() } - if yyb1991 { + if yyb2014 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26189,22 +26460,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1994 := &x.ListMeta - yym1995 := z.DecBinary() - _ = yym1995 + yyv2017 := &x.ListMeta + yym2018 := z.DecBinary() + _ = yym2018 if false { - } else if z.HasExtensions() && z.DecExt(yyv1994) { + } else if z.HasExtensions() && z.DecExt(yyv2017) { } else { - z.DecFallback(yyv1994, false) + z.DecFallback(yyv2017, false) } } - yyj1991++ - if yyhl1991 { - yyb1991 = yyj1991 > l + yyj2014++ + if yyhl2014 { + yyb2014 = yyj2014 > l } else { - yyb1991 = r.CheckBreak() + yyb2014 = r.CheckBreak() } - if yyb1991 { + if yyb2014 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26212,26 +26483,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1996 := &x.Items - yym1997 := z.DecBinary() - _ = yym1997 + yyv2019 := &x.Items + yym2020 := z.DecBinary() + _ = yym2020 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1996), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2019), d) } } for { - yyj1991++ - if yyhl1991 { - yyb1991 = yyj1991 > l + yyj2014++ + if yyhl2014 { + yyb2014 = yyj2014 > l } else { - yyb1991 = r.CheckBreak() + yyb2014 = r.CheckBreak() } - if yyb1991 { + if yyb2014 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1991-1, "") + z.DecStructFieldNotFound(yyj2014-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26240,8 +26511,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1998 := z.EncBinary() - _ = yym1998 + yym2021 := z.EncBinary() + _ = yym2021 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -26253,8 +26524,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1999 := z.DecBinary() - _ = yym1999 + yym2022 := z.DecBinary() + _ = yym2022 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -26266,8 +26537,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2000 := z.EncBinary() - _ = yym2000 + yym2023 := z.EncBinary() + _ = yym2023 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -26279,8 +26550,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2001 := z.DecBinary() - _ = yym2001 + yym2024 := z.DecBinary() + _ = yym2024 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -26295,48 +26566,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2002 := z.EncBinary() - _ = yym2002 + yym2025 := z.EncBinary() + _ = yym2025 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2003 := !z.EncBinary() - yy2arr2003 := z.EncBasicHandle().StructToArray - var yyq2003 [1]bool - _, _, _ = yysep2003, yyq2003, yy2arr2003 - const yyr2003 bool = false - yyq2003[0] = true - var yynn2003 int - if yyr2003 || yy2arr2003 { + yysep2026 := !z.EncBinary() + yy2arr2026 := z.EncBasicHandle().StructToArray + var yyq2026 [1]bool + _, _, _ = yysep2026, yyq2026, yy2arr2026 + const yyr2026 bool = false + yyq2026[0] = true + var yynn2026 int + if yyr2026 || yy2arr2026 { r.EncodeArrayStart(1) } else { - yynn2003 = 0 - for _, b := range yyq2003 { + yynn2026 = 0 + for _, b := range yyq2026 { if b { - yynn2003++ + yynn2026++ } } - r.EncodeMapStart(yynn2003) - yynn2003 = 0 + r.EncodeMapStart(yynn2026) + yynn2026 = 0 } - if yyr2003 || yy2arr2003 { + if yyr2026 || yy2arr2026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2003[0] { - yy2005 := &x.LoadBalancer - yy2005.CodecEncodeSelf(e) + if yyq2026[0] { + yy2028 := &x.LoadBalancer + yy2028.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2003[0] { + if yyq2026[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2006 := &x.LoadBalancer - yy2006.CodecEncodeSelf(e) + yy2029 := &x.LoadBalancer + yy2029.CodecEncodeSelf(e) } } - if yyr2003 || yy2arr2003 { + if yyr2026 || yy2arr2026 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26349,25 +26620,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2007 := z.DecBinary() - _ = yym2007 + yym2030 := z.DecBinary() + _ = yym2030 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2008 := r.ContainerType() - if yyct2008 == codecSelferValueTypeMap1234 { - yyl2008 := r.ReadMapStart() - if yyl2008 == 0 { + yyct2031 := r.ContainerType() + if yyct2031 == codecSelferValueTypeMap1234 { + yyl2031 := r.ReadMapStart() + if yyl2031 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2008, d) + x.codecDecodeSelfFromMap(yyl2031, d) } - } else if yyct2008 == codecSelferValueTypeArray1234 { - yyl2008 := r.ReadArrayStart() - if yyl2008 == 0 { + } else if yyct2031 == codecSelferValueTypeArray1234 { + yyl2031 := r.ReadArrayStart() + if yyl2031 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2008, d) + x.codecDecodeSelfFromArray(yyl2031, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26379,12 +26650,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2009Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2009Slc - var yyhl2009 bool = l >= 0 - for yyj2009 := 0; ; yyj2009++ { - if yyhl2009 { - if yyj2009 >= l { + var yys2032Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2032Slc + var yyhl2032 bool = l >= 0 + for yyj2032 := 0; ; yyj2032++ { + if yyhl2032 { + if yyj2032 >= l { break } } else { @@ -26393,21 +26664,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2009Slc = r.DecodeBytes(yys2009Slc, true, true) - yys2009 := string(yys2009Slc) + yys2032Slc = r.DecodeBytes(yys2032Slc, true, true) + yys2032 := string(yys2032Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2009 { + switch yys2032 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2010 := &x.LoadBalancer - yyv2010.CodecDecodeSelf(d) + yyv2033 := &x.LoadBalancer + yyv2033.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2009) - } // end switch yys2009 - } // end for yyj2009 + z.DecStructFieldNotFound(-1, yys2032) + } // end switch yys2032 + } // end for yyj2032 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26415,16 +26686,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2011 int - var yyb2011 bool - var yyhl2011 bool = l >= 0 - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + var yyj2034 int + var yyb2034 bool + var yyhl2034 bool = l >= 0 + yyj2034++ + if yyhl2034 { + yyb2034 = yyj2034 > l } else { - yyb2011 = r.CheckBreak() + yyb2034 = r.CheckBreak() } - if yyb2011 { + if yyb2034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26432,21 +26703,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2012 := &x.LoadBalancer - yyv2012.CodecDecodeSelf(d) + yyv2035 := &x.LoadBalancer + yyv2035.CodecDecodeSelf(d) } for { - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2034++ + if yyhl2034 { + yyb2034 = yyj2034 > l } else { - yyb2011 = r.CheckBreak() + yyb2034 = r.CheckBreak() } - if yyb2011 { + if yyb2034 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2011-1, "") + z.DecStructFieldNotFound(yyj2034-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26458,38 +26729,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2013 := z.EncBinary() - _ = yym2013 + yym2036 := z.EncBinary() + _ = yym2036 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2014 := !z.EncBinary() - yy2arr2014 := z.EncBasicHandle().StructToArray - var yyq2014 [1]bool - _, _, _ = yysep2014, yyq2014, yy2arr2014 - const yyr2014 bool = false - yyq2014[0] = len(x.Ingress) != 0 - var yynn2014 int - if yyr2014 || yy2arr2014 { + yysep2037 := !z.EncBinary() + yy2arr2037 := z.EncBasicHandle().StructToArray + var yyq2037 [1]bool + _, _, _ = yysep2037, yyq2037, yy2arr2037 + const yyr2037 bool = false + yyq2037[0] = len(x.Ingress) != 0 + var yynn2037 int + if yyr2037 || yy2arr2037 { r.EncodeArrayStart(1) } else { - yynn2014 = 0 - for _, b := range yyq2014 { + yynn2037 = 0 + for _, b := range yyq2037 { if b { - yynn2014++ + yynn2037++ } } - r.EncodeMapStart(yynn2014) - yynn2014 = 0 + r.EncodeMapStart(yynn2037) + yynn2037 = 0 } - if yyr2014 || yy2arr2014 { + if yyr2037 || yy2arr2037 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2014[0] { + if yyq2037[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2016 := z.EncBinary() - _ = yym2016 + yym2039 := z.EncBinary() + _ = yym2039 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -26499,15 +26770,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2014[0] { + if yyq2037[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2017 := z.EncBinary() - _ = yym2017 + yym2040 := z.EncBinary() + _ = yym2040 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -26515,7 +26786,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2014 || yy2arr2014 { + if yyr2037 || yy2arr2037 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26528,25 +26799,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2018 := z.DecBinary() - _ = yym2018 + yym2041 := z.DecBinary() + _ = yym2041 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2019 := r.ContainerType() - if yyct2019 == codecSelferValueTypeMap1234 { - yyl2019 := r.ReadMapStart() - if yyl2019 == 0 { + yyct2042 := r.ContainerType() + if yyct2042 == codecSelferValueTypeMap1234 { + yyl2042 := r.ReadMapStart() + if yyl2042 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2019, d) + x.codecDecodeSelfFromMap(yyl2042, d) } - } else if yyct2019 == codecSelferValueTypeArray1234 { - yyl2019 := r.ReadArrayStart() - if yyl2019 == 0 { + } else if yyct2042 == codecSelferValueTypeArray1234 { + yyl2042 := r.ReadArrayStart() + if yyl2042 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2019, d) + x.codecDecodeSelfFromArray(yyl2042, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26558,12 +26829,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2020Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2020Slc - var yyhl2020 bool = l >= 0 - for yyj2020 := 0; ; yyj2020++ { - if yyhl2020 { - if yyj2020 >= l { + var yys2043Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2043Slc + var yyhl2043 bool = l >= 0 + for yyj2043 := 0; ; yyj2043++ { + if yyhl2043 { + if yyj2043 >= l { break } } else { @@ -26572,26 +26843,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2020Slc = r.DecodeBytes(yys2020Slc, true, true) - yys2020 := string(yys2020Slc) + yys2043Slc = r.DecodeBytes(yys2043Slc, true, true) + yys2043 := string(yys2043Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2020 { + switch yys2043 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2021 := &x.Ingress - yym2022 := z.DecBinary() - _ = yym2022 + yyv2044 := &x.Ingress + yym2045 := z.DecBinary() + _ = yym2045 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2021), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2044), d) } } default: - z.DecStructFieldNotFound(-1, yys2020) - } // end switch yys2020 - } // end for yyj2020 + z.DecStructFieldNotFound(-1, yys2043) + } // end switch yys2043 + } // end for yyj2043 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26599,16 +26870,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2023 int - var yyb2023 bool - var yyhl2023 bool = l >= 0 - yyj2023++ - if yyhl2023 { - yyb2023 = yyj2023 > l + var yyj2046 int + var yyb2046 bool + var yyhl2046 bool = l >= 0 + yyj2046++ + if yyhl2046 { + yyb2046 = yyj2046 > l } else { - yyb2023 = r.CheckBreak() + yyb2046 = r.CheckBreak() } - if yyb2023 { + if yyb2046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26616,26 +26887,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2024 := &x.Ingress - yym2025 := z.DecBinary() - _ = yym2025 + yyv2047 := &x.Ingress + yym2048 := z.DecBinary() + _ = yym2048 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2024), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2047), d) } } for { - yyj2023++ - if yyhl2023 { - yyb2023 = yyj2023 > l + yyj2046++ + if yyhl2046 { + yyb2046 = yyj2046 > l } else { - yyb2023 = r.CheckBreak() + yyb2046 = r.CheckBreak() } - if yyb2023 { + if yyb2046 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2023-1, "") + z.DecStructFieldNotFound(yyj2046-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26647,36 +26918,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2026 := z.EncBinary() - _ = yym2026 + yym2049 := z.EncBinary() + _ = yym2049 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2027 := !z.EncBinary() - yy2arr2027 := z.EncBasicHandle().StructToArray - var yyq2027 [2]bool - _, _, _ = yysep2027, yyq2027, yy2arr2027 - const yyr2027 bool = false - yyq2027[0] = x.IP != "" - yyq2027[1] = x.Hostname != "" - var yynn2027 int - if yyr2027 || yy2arr2027 { + yysep2050 := !z.EncBinary() + yy2arr2050 := z.EncBasicHandle().StructToArray + var yyq2050 [2]bool + _, _, _ = yysep2050, yyq2050, yy2arr2050 + const yyr2050 bool = false + yyq2050[0] = x.IP != "" + yyq2050[1] = x.Hostname != "" + var yynn2050 int + if yyr2050 || yy2arr2050 { r.EncodeArrayStart(2) } else { - yynn2027 = 0 - for _, b := range yyq2027 { + yynn2050 = 0 + for _, b := range yyq2050 { if b { - yynn2027++ + yynn2050++ } } - r.EncodeMapStart(yynn2027) - yynn2027 = 0 + r.EncodeMapStart(yynn2050) + yynn2050 = 0 } - if yyr2027 || yy2arr2027 { + if yyr2050 || yy2arr2050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2027[0] { - yym2029 := z.EncBinary() - _ = yym2029 + if yyq2050[0] { + yym2052 := z.EncBinary() + _ = yym2052 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -26685,23 +26956,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2027[0] { + if yyq2050[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2030 := z.EncBinary() - _ = yym2030 + yym2053 := z.EncBinary() + _ = yym2053 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2027 || yy2arr2027 { + if yyr2050 || yy2arr2050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2027[1] { - yym2032 := z.EncBinary() - _ = yym2032 + if yyq2050[1] { + yym2055 := z.EncBinary() + _ = yym2055 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -26710,19 +26981,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2027[1] { + if yyq2050[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2033 := z.EncBinary() - _ = yym2033 + yym2056 := z.EncBinary() + _ = yym2056 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2027 || yy2arr2027 { + if yyr2050 || yy2arr2050 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26735,25 +27006,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2034 := z.DecBinary() - _ = yym2034 + yym2057 := z.DecBinary() + _ = yym2057 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2035 := r.ContainerType() - if yyct2035 == codecSelferValueTypeMap1234 { - yyl2035 := r.ReadMapStart() - if yyl2035 == 0 { + yyct2058 := r.ContainerType() + if yyct2058 == codecSelferValueTypeMap1234 { + yyl2058 := r.ReadMapStart() + if yyl2058 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2035, d) + x.codecDecodeSelfFromMap(yyl2058, d) } - } else if yyct2035 == codecSelferValueTypeArray1234 { - yyl2035 := r.ReadArrayStart() - if yyl2035 == 0 { + } else if yyct2058 == codecSelferValueTypeArray1234 { + yyl2058 := r.ReadArrayStart() + if yyl2058 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2035, d) + x.codecDecodeSelfFromArray(yyl2058, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26765,12 +27036,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2036Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2036Slc - var yyhl2036 bool = l >= 0 - for yyj2036 := 0; ; yyj2036++ { - if yyhl2036 { - if yyj2036 >= l { + var yys2059Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2059Slc + var yyhl2059 bool = l >= 0 + for yyj2059 := 0; ; yyj2059++ { + if yyhl2059 { + if yyj2059 >= l { break } } else { @@ -26779,10 +27050,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2036Slc = r.DecodeBytes(yys2036Slc, true, true) - yys2036 := string(yys2036Slc) + yys2059Slc = r.DecodeBytes(yys2059Slc, true, true) + yys2059 := string(yys2059Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2036 { + switch yys2059 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -26796,9 +27067,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2036) - } // end switch yys2036 - } // end for yyj2036 + z.DecStructFieldNotFound(-1, yys2059) + } // end switch yys2059 + } // end for yyj2059 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26806,16 +27077,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2039 int - var yyb2039 bool - var yyhl2039 bool = l >= 0 - yyj2039++ - if yyhl2039 { - yyb2039 = yyj2039 > l + var yyj2062 int + var yyb2062 bool + var yyhl2062 bool = l >= 0 + yyj2062++ + if yyhl2062 { + yyb2062 = yyj2062 > l } else { - yyb2039 = r.CheckBreak() + yyb2062 = r.CheckBreak() } - if yyb2039 { + if yyb2062 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26825,13 +27096,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2039++ - if yyhl2039 { - yyb2039 = yyj2039 > l + yyj2062++ + if yyhl2062 { + yyb2062 = yyj2062 > l } else { - yyb2039 = r.CheckBreak() + yyb2062 = r.CheckBreak() } - if yyb2039 { + if yyb2062 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26842,17 +27113,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2039++ - if yyhl2039 { - yyb2039 = yyj2039 > l + yyj2062++ + if yyhl2062 { + yyb2062 = yyj2062 > l } else { - yyb2039 = r.CheckBreak() + yyb2062 = r.CheckBreak() } - if yyb2039 { + if yyb2062 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2039-1, "") + z.DecStructFieldNotFound(yyj2062-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26864,43 +27135,43 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2042 := z.EncBinary() - _ = yym2042 + yym2065 := z.EncBinary() + _ = yym2065 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2043 := !z.EncBinary() - yy2arr2043 := z.EncBasicHandle().StructToArray - var yyq2043 [8]bool - _, _, _ = yysep2043, yyq2043, yy2arr2043 - const yyr2043 bool = false - yyq2043[1] = len(x.Selector) != 0 - yyq2043[2] = x.ClusterIP != "" - yyq2043[3] = x.Type != "" - yyq2043[4] = len(x.ExternalIPs) != 0 - yyq2043[5] = len(x.DeprecatedPublicIPs) != 0 - yyq2043[6] = x.SessionAffinity != "" - yyq2043[7] = x.LoadBalancerIP != "" - var yynn2043 int - if yyr2043 || yy2arr2043 { + yysep2066 := !z.EncBinary() + yy2arr2066 := z.EncBasicHandle().StructToArray + var yyq2066 [8]bool + _, _, _ = yysep2066, yyq2066, yy2arr2066 + const yyr2066 bool = false + yyq2066[1] = len(x.Selector) != 0 + yyq2066[2] = x.ClusterIP != "" + yyq2066[3] = x.Type != "" + yyq2066[4] = len(x.ExternalIPs) != 0 + yyq2066[5] = len(x.DeprecatedPublicIPs) != 0 + yyq2066[6] = x.SessionAffinity != "" + yyq2066[7] = x.LoadBalancerIP != "" + var yynn2066 int + if yyr2066 || yy2arr2066 { r.EncodeArrayStart(8) } else { - yynn2043 = 1 - for _, b := range yyq2043 { + yynn2066 = 1 + for _, b := range yyq2066 { if b { - yynn2043++ + yynn2066++ } } - r.EncodeMapStart(yynn2043) - yynn2043 = 0 + r.EncodeMapStart(yynn2066) + yynn2066 = 0 } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2045 := z.EncBinary() - _ = yym2045 + yym2068 := z.EncBinary() + _ = yym2068 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -26913,22 +27184,22 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2046 := z.EncBinary() - _ = yym2046 + yym2069 := z.EncBinary() + _ = yym2069 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2043[1] { + if yyq2066[1] { if x.Selector == nil { r.EncodeNil() } else { - yym2048 := z.EncBinary() - _ = yym2048 + yym2071 := z.EncBinary() + _ = yym2071 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -26938,15 +27209,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2043[1] { + if yyq2066[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym2049 := z.EncBinary() - _ = yym2049 + yym2072 := z.EncBinary() + _ = yym2072 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -26954,11 +27225,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2043[2] { - yym2051 := z.EncBinary() - _ = yym2051 + if yyq2066[2] { + yym2074 := z.EncBinary() + _ = yym2074 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -26967,41 +27238,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2043[2] { + if yyq2066[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2052 := z.EncBinary() - _ = yym2052 + yym2075 := z.EncBinary() + _ = yym2075 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2043[3] { + if yyq2066[3] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2043[3] { + if yyq2066[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2043[4] { + if yyq2066[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2055 := z.EncBinary() - _ = yym2055 + yym2078 := z.EncBinary() + _ = yym2078 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -27011,15 +27282,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2043[4] { + if yyq2066[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2056 := z.EncBinary() - _ = yym2056 + yym2079 := z.EncBinary() + _ = yym2079 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -27027,14 +27298,14 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2043[5] { + if yyq2066[5] { if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2058 := z.EncBinary() - _ = yym2058 + yym2081 := z.EncBinary() + _ = yym2081 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -27044,15 +27315,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2043[5] { + if yyq2066[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2059 := z.EncBinary() - _ = yym2059 + yym2082 := z.EncBinary() + _ = yym2082 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -27060,26 +27331,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2043[6] { + if yyq2066[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2043[6] { + if yyq2066[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2043[7] { - yym2062 := z.EncBinary() - _ = yym2062 + if yyq2066[7] { + yym2085 := z.EncBinary() + _ = yym2085 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -27088,19 +27359,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2043[7] { + if yyq2066[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2063 := z.EncBinary() - _ = yym2063 + yym2086 := z.EncBinary() + _ = yym2086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2043 || yy2arr2043 { + if yyr2066 || yy2arr2066 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27113,25 +27384,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2064 := z.DecBinary() - _ = yym2064 + yym2087 := z.DecBinary() + _ = yym2087 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2065 := r.ContainerType() - if yyct2065 == codecSelferValueTypeMap1234 { - yyl2065 := r.ReadMapStart() - if yyl2065 == 0 { + yyct2088 := r.ContainerType() + if yyct2088 == codecSelferValueTypeMap1234 { + yyl2088 := r.ReadMapStart() + if yyl2088 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2065, d) + x.codecDecodeSelfFromMap(yyl2088, d) } - } else if yyct2065 == codecSelferValueTypeArray1234 { - yyl2065 := r.ReadArrayStart() - if yyl2065 == 0 { + } else if yyct2088 == codecSelferValueTypeArray1234 { + yyl2088 := r.ReadArrayStart() + if yyl2088 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2065, d) + x.codecDecodeSelfFromArray(yyl2088, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27143,12 +27414,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2066Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2066Slc - var yyhl2066 bool = l >= 0 - for yyj2066 := 0; ; yyj2066++ { - if yyhl2066 { - if yyj2066 >= l { + var yys2089Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2089Slc + var yyhl2089 bool = l >= 0 + for yyj2089 := 0; ; yyj2089++ { + if yyhl2089 { + if yyj2089 >= l { break } } else { @@ -27157,32 +27428,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2066Slc = r.DecodeBytes(yys2066Slc, true, true) - yys2066 := string(yys2066Slc) + yys2089Slc = r.DecodeBytes(yys2089Slc, true, true) + yys2089 := string(yys2089Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2066 { + switch yys2089 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2067 := &x.Ports - yym2068 := z.DecBinary() - _ = yym2068 + yyv2090 := &x.Ports + yym2091 := z.DecBinary() + _ = yym2091 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2067), d) + h.decSliceServicePort((*[]ServicePort)(yyv2090), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2069 := &x.Selector - yym2070 := z.DecBinary() - _ = yym2070 + yyv2092 := &x.Selector + yym2093 := z.DecBinary() + _ = yym2093 if false { } else { - z.F.DecMapStringStringX(yyv2069, false, d) + z.F.DecMapStringStringX(yyv2092, false, d) } } case "clusterIP": @@ -27201,24 +27472,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2073 := &x.ExternalIPs - yym2074 := z.DecBinary() - _ = yym2074 + yyv2096 := &x.ExternalIPs + yym2097 := z.DecBinary() + _ = yym2097 if false { } else { - z.F.DecSliceStringX(yyv2073, false, d) + z.F.DecSliceStringX(yyv2096, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2075 := &x.DeprecatedPublicIPs - yym2076 := z.DecBinary() - _ = yym2076 + yyv2098 := &x.DeprecatedPublicIPs + yym2099 := z.DecBinary() + _ = yym2099 if false { } else { - z.F.DecSliceStringX(yyv2075, false, d) + z.F.DecSliceStringX(yyv2098, false, d) } } case "sessionAffinity": @@ -27234,9 +27505,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.LoadBalancerIP = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2066) - } // end switch yys2066 - } // end for yyj2066 + z.DecStructFieldNotFound(-1, yys2089) + } // end switch yys2089 + } // end for yyj2089 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27244,16 +27515,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2079 int - var yyb2079 bool - var yyhl2079 bool = l >= 0 - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + var yyj2102 int + var yyb2102 bool + var yyhl2102 bool = l >= 0 + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27261,21 +27532,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2080 := &x.Ports - yym2081 := z.DecBinary() - _ = yym2081 + yyv2103 := &x.Ports + yym2104 := z.DecBinary() + _ = yym2104 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2080), d) + h.decSliceServicePort((*[]ServicePort)(yyv2103), d) } } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27283,21 +27554,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2082 := &x.Selector - yym2083 := z.DecBinary() - _ = yym2083 + yyv2105 := &x.Selector + yym2106 := z.DecBinary() + _ = yym2106 if false { } else { - z.F.DecMapStringStringX(yyv2082, false, d) + z.F.DecMapStringStringX(yyv2105, false, d) } } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27307,13 +27578,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27323,13 +27594,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27337,21 +27608,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2086 := &x.ExternalIPs - yym2087 := z.DecBinary() - _ = yym2087 + yyv2109 := &x.ExternalIPs + yym2110 := z.DecBinary() + _ = yym2110 if false { } else { - z.F.DecSliceStringX(yyv2086, false, d) + z.F.DecSliceStringX(yyv2109, false, d) } } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27359,21 +27630,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2088 := &x.DeprecatedPublicIPs - yym2089 := z.DecBinary() - _ = yym2089 + yyv2111 := &x.DeprecatedPublicIPs + yym2112 := z.DecBinary() + _ = yym2112 if false { } else { - z.F.DecSliceStringX(yyv2088, false, d) + z.F.DecSliceStringX(yyv2111, false, d) } } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27383,13 +27654,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27400,17 +27671,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.LoadBalancerIP = string(r.DecodeString()) } for { - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2102++ + if yyhl2102 { + yyb2102 = yyj2102 > l } else { - yyb2079 = r.CheckBreak() + yyb2102 = r.CheckBreak() } - if yyb2079 { + if yyb2102 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2079-1, "") + z.DecStructFieldNotFound(yyj2102-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27422,38 +27693,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2092 := z.EncBinary() - _ = yym2092 + yym2115 := z.EncBinary() + _ = yym2115 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2093 := !z.EncBinary() - yy2arr2093 := z.EncBasicHandle().StructToArray - var yyq2093 [5]bool - _, _, _ = yysep2093, yyq2093, yy2arr2093 - const yyr2093 bool = false - yyq2093[0] = x.Name != "" - yyq2093[1] = x.Protocol != "" - yyq2093[3] = true - yyq2093[4] = x.NodePort != 0 - var yynn2093 int - if yyr2093 || yy2arr2093 { + yysep2116 := !z.EncBinary() + yy2arr2116 := z.EncBasicHandle().StructToArray + var yyq2116 [5]bool + _, _, _ = yysep2116, yyq2116, yy2arr2116 + const yyr2116 bool = false + yyq2116[0] = x.Name != "" + yyq2116[1] = x.Protocol != "" + yyq2116[3] = true + yyq2116[4] = x.NodePort != 0 + var yynn2116 int + if yyr2116 || yy2arr2116 { r.EncodeArrayStart(5) } else { - yynn2093 = 1 - for _, b := range yyq2093 { + yynn2116 = 1 + for _, b := range yyq2116 { if b { - yynn2093++ + yynn2116++ } } - r.EncodeMapStart(yynn2093) - yynn2093 = 0 + r.EncodeMapStart(yynn2116) + yynn2116 = 0 } - if yyr2093 || yy2arr2093 { + if yyr2116 || yy2arr2116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2093[0] { - yym2095 := z.EncBinary() - _ = yym2095 + if yyq2116[0] { + yym2118 := z.EncBinary() + _ = yym2118 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -27462,37 +27733,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2093[0] { + if yyq2116[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2096 := z.EncBinary() - _ = yym2096 + yym2119 := z.EncBinary() + _ = yym2119 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2093 || yy2arr2093 { + if yyr2116 || yy2arr2116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2093[1] { + if yyq2116[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2093[1] { + if yyq2116[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2093 || yy2arr2093 { + if yyr2116 || yy2arr2116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2099 := z.EncBinary() - _ = yym2099 + yym2122 := z.EncBinary() + _ = yym2122 if false { } else { r.EncodeInt(int64(x.Port)) @@ -27501,51 +27772,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2100 := z.EncBinary() - _ = yym2100 + yym2123 := z.EncBinary() + _ = yym2123 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2093 || yy2arr2093 { + if yyr2116 || yy2arr2116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2093[3] { - yy2102 := &x.TargetPort - yym2103 := z.EncBinary() - _ = yym2103 + if yyq2116[3] { + yy2125 := &x.TargetPort + yym2126 := z.EncBinary() + _ = yym2126 if false { - } else if z.HasExtensions() && z.EncExt(yy2102) { - } else if !yym2103 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2102) + } else if z.HasExtensions() && z.EncExt(yy2125) { + } else if !yym2126 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2125) } else { - z.EncFallback(yy2102) + z.EncFallback(yy2125) } } else { r.EncodeNil() } } else { - if yyq2093[3] { + if yyq2116[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2104 := &x.TargetPort - yym2105 := z.EncBinary() - _ = yym2105 + yy2127 := &x.TargetPort + yym2128 := z.EncBinary() + _ = yym2128 if false { - } else if z.HasExtensions() && z.EncExt(yy2104) { - } else if !yym2105 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2104) + } else if z.HasExtensions() && z.EncExt(yy2127) { + } else if !yym2128 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2127) } else { - z.EncFallback(yy2104) + z.EncFallback(yy2127) } } } - if yyr2093 || yy2arr2093 { + if yyr2116 || yy2arr2116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2093[4] { - yym2107 := z.EncBinary() - _ = yym2107 + if yyq2116[4] { + yym2130 := z.EncBinary() + _ = yym2130 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -27554,19 +27825,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2093[4] { + if yyq2116[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2108 := z.EncBinary() - _ = yym2108 + yym2131 := z.EncBinary() + _ = yym2131 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2093 || yy2arr2093 { + if yyr2116 || yy2arr2116 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27579,25 +27850,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2109 := z.DecBinary() - _ = yym2109 + yym2132 := z.DecBinary() + _ = yym2132 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2110 := r.ContainerType() - if yyct2110 == codecSelferValueTypeMap1234 { - yyl2110 := r.ReadMapStart() - if yyl2110 == 0 { + yyct2133 := r.ContainerType() + if yyct2133 == codecSelferValueTypeMap1234 { + yyl2133 := r.ReadMapStart() + if yyl2133 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2110, d) + x.codecDecodeSelfFromMap(yyl2133, d) } - } else if yyct2110 == codecSelferValueTypeArray1234 { - yyl2110 := r.ReadArrayStart() - if yyl2110 == 0 { + } else if yyct2133 == codecSelferValueTypeArray1234 { + yyl2133 := r.ReadArrayStart() + if yyl2133 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2110, d) + x.codecDecodeSelfFromArray(yyl2133, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27609,12 +27880,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2111Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2111Slc - var yyhl2111 bool = l >= 0 - for yyj2111 := 0; ; yyj2111++ { - if yyhl2111 { - if yyj2111 >= l { + var yys2134Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2134Slc + var yyhl2134 bool = l >= 0 + for yyj2134 := 0; ; yyj2134++ { + if yyhl2134 { + if yyj2134 >= l { break } } else { @@ -27623,10 +27894,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2111Slc = r.DecodeBytes(yys2111Slc, true, true) - yys2111 := string(yys2111Slc) + yys2134Slc = r.DecodeBytes(yys2134Slc, true, true) + yys2134 := string(yys2134Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2111 { + switch yys2134 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -27649,15 +27920,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv2115 := &x.TargetPort - yym2116 := z.DecBinary() - _ = yym2116 + yyv2138 := &x.TargetPort + yym2139 := z.DecBinary() + _ = yym2139 if false { - } else if z.HasExtensions() && z.DecExt(yyv2115) { - } else if !yym2116 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2115) + } else if z.HasExtensions() && z.DecExt(yyv2138) { + } else if !yym2139 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2138) } else { - z.DecFallback(yyv2115, false) + z.DecFallback(yyv2138, false) } } case "nodePort": @@ -27667,9 +27938,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2111) - } // end switch yys2111 - } // end for yyj2111 + z.DecStructFieldNotFound(-1, yys2134) + } // end switch yys2134 + } // end for yyj2134 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27677,16 +27948,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2118 int - var yyb2118 bool - var yyhl2118 bool = l >= 0 - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + var yyj2141 int + var yyb2141 bool + var yyhl2141 bool = l >= 0 + yyj2141++ + if yyhl2141 { + yyb2141 = yyj2141 > l } else { - yyb2118 = r.CheckBreak() + yyb2141 = r.CheckBreak() } - if yyb2118 { + if yyb2141 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27696,13 +27967,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2141++ + if yyhl2141 { + yyb2141 = yyj2141 > l } else { - yyb2118 = r.CheckBreak() + yyb2141 = r.CheckBreak() } - if yyb2118 { + if yyb2141 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27712,13 +27983,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2141++ + if yyhl2141 { + yyb2141 = yyj2141 > l } else { - yyb2118 = r.CheckBreak() + yyb2141 = r.CheckBreak() } - if yyb2118 { + if yyb2141 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27728,13 +27999,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2141++ + if yyhl2141 { + yyb2141 = yyj2141 > l } else { - yyb2118 = r.CheckBreak() + yyb2141 = r.CheckBreak() } - if yyb2118 { + if yyb2141 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27742,24 +28013,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv2122 := &x.TargetPort - yym2123 := z.DecBinary() - _ = yym2123 + yyv2145 := &x.TargetPort + yym2146 := z.DecBinary() + _ = yym2146 if false { - } else if z.HasExtensions() && z.DecExt(yyv2122) { - } else if !yym2123 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2122) + } else if z.HasExtensions() && z.DecExt(yyv2145) { + } else if !yym2146 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2145) } else { - z.DecFallback(yyv2122, false) + z.DecFallback(yyv2145, false) } } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2141++ + if yyhl2141 { + yyb2141 = yyj2141 > l } else { - yyb2118 = r.CheckBreak() + yyb2141 = r.CheckBreak() } - if yyb2118 { + if yyb2141 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27770,17 +28041,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2141++ + if yyhl2141 { + yyb2141 = yyj2141 > l } else { - yyb2118 = r.CheckBreak() + yyb2141 = r.CheckBreak() } - if yyb2118 { + if yyb2141 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2118-1, "") + z.DecStructFieldNotFound(yyj2141-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27792,39 +28063,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2125 := z.EncBinary() - _ = yym2125 + yym2148 := z.EncBinary() + _ = yym2148 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2126 := !z.EncBinary() - yy2arr2126 := z.EncBasicHandle().StructToArray - var yyq2126 [5]bool - _, _, _ = yysep2126, yyq2126, yy2arr2126 - const yyr2126 bool = false - yyq2126[0] = x.Kind != "" - yyq2126[1] = x.APIVersion != "" - yyq2126[2] = true - yyq2126[3] = true - yyq2126[4] = true - var yynn2126 int - if yyr2126 || yy2arr2126 { + yysep2149 := !z.EncBinary() + yy2arr2149 := z.EncBasicHandle().StructToArray + var yyq2149 [5]bool + _, _, _ = yysep2149, yyq2149, yy2arr2149 + const yyr2149 bool = false + yyq2149[0] = x.Kind != "" + yyq2149[1] = x.APIVersion != "" + yyq2149[2] = true + yyq2149[3] = true + yyq2149[4] = true + var yynn2149 int + if yyr2149 || yy2arr2149 { r.EncodeArrayStart(5) } else { - yynn2126 = 0 - for _, b := range yyq2126 { + yynn2149 = 0 + for _, b := range yyq2149 { if b { - yynn2126++ + yynn2149++ } } - r.EncodeMapStart(yynn2126) - yynn2126 = 0 + r.EncodeMapStart(yynn2149) + yynn2149 = 0 } - if yyr2126 || yy2arr2126 { + if yyr2149 || yy2arr2149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2126[0] { - yym2128 := z.EncBinary() - _ = yym2128 + if yyq2149[0] { + yym2151 := z.EncBinary() + _ = yym2151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -27833,23 +28104,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2126[0] { + if yyq2149[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2129 := z.EncBinary() - _ = yym2129 + yym2152 := z.EncBinary() + _ = yym2152 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2126 || yy2arr2126 { + if yyr2149 || yy2arr2149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2126[1] { - yym2131 := z.EncBinary() - _ = yym2131 + if yyq2149[1] { + yym2154 := z.EncBinary() + _ = yym2154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -27858,70 +28129,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2126[1] { + if yyq2149[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2132 := z.EncBinary() - _ = yym2132 + yym2155 := z.EncBinary() + _ = yym2155 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2126 || yy2arr2126 { + if yyr2149 || yy2arr2149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2126[2] { - yy2134 := &x.ObjectMeta - yy2134.CodecEncodeSelf(e) + if yyq2149[2] { + yy2157 := &x.ObjectMeta + yy2157.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2126[2] { + if yyq2149[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2135 := &x.ObjectMeta - yy2135.CodecEncodeSelf(e) + yy2158 := &x.ObjectMeta + yy2158.CodecEncodeSelf(e) } } - if yyr2126 || yy2arr2126 { + if yyr2149 || yy2arr2149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2126[3] { - yy2137 := &x.Spec - yy2137.CodecEncodeSelf(e) + if yyq2149[3] { + yy2160 := &x.Spec + yy2160.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2126[3] { + if yyq2149[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2138 := &x.Spec - yy2138.CodecEncodeSelf(e) + yy2161 := &x.Spec + yy2161.CodecEncodeSelf(e) } } - if yyr2126 || yy2arr2126 { + if yyr2149 || yy2arr2149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2126[4] { - yy2140 := &x.Status - yy2140.CodecEncodeSelf(e) + if yyq2149[4] { + yy2163 := &x.Status + yy2163.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2126[4] { + if yyq2149[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2141 := &x.Status - yy2141.CodecEncodeSelf(e) + yy2164 := &x.Status + yy2164.CodecEncodeSelf(e) } } - if yyr2126 || yy2arr2126 { + if yyr2149 || yy2arr2149 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27934,25 +28205,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2142 := z.DecBinary() - _ = yym2142 + yym2165 := z.DecBinary() + _ = yym2165 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2143 := r.ContainerType() - if yyct2143 == codecSelferValueTypeMap1234 { - yyl2143 := r.ReadMapStart() - if yyl2143 == 0 { + yyct2166 := r.ContainerType() + if yyct2166 == codecSelferValueTypeMap1234 { + yyl2166 := r.ReadMapStart() + if yyl2166 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2143, d) + x.codecDecodeSelfFromMap(yyl2166, d) } - } else if yyct2143 == codecSelferValueTypeArray1234 { - yyl2143 := r.ReadArrayStart() - if yyl2143 == 0 { + } else if yyct2166 == codecSelferValueTypeArray1234 { + yyl2166 := r.ReadArrayStart() + if yyl2166 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2143, d) + x.codecDecodeSelfFromArray(yyl2166, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27964,12 +28235,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2144Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2144Slc - var yyhl2144 bool = l >= 0 - for yyj2144 := 0; ; yyj2144++ { - if yyhl2144 { - if yyj2144 >= l { + var yys2167Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2167Slc + var yyhl2167 bool = l >= 0 + for yyj2167 := 0; ; yyj2167++ { + if yyhl2167 { + if yyj2167 >= l { break } } else { @@ -27978,10 +28249,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2144Slc = r.DecodeBytes(yys2144Slc, true, true) - yys2144 := string(yys2144Slc) + yys2167Slc = r.DecodeBytes(yys2167Slc, true, true) + yys2167 := string(yys2167Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2144 { + switch yys2167 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -27998,27 +28269,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2147 := &x.ObjectMeta - yyv2147.CodecDecodeSelf(d) + yyv2170 := &x.ObjectMeta + yyv2170.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2148 := &x.Spec - yyv2148.CodecDecodeSelf(d) + yyv2171 := &x.Spec + yyv2171.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2149 := &x.Status - yyv2149.CodecDecodeSelf(d) + yyv2172 := &x.Status + yyv2172.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2144) - } // end switch yys2144 - } // end for yyj2144 + z.DecStructFieldNotFound(-1, yys2167) + } // end switch yys2167 + } // end for yyj2167 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28026,16 +28297,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2150 int - var yyb2150 bool - var yyhl2150 bool = l >= 0 - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + var yyj2173 int + var yyb2173 bool + var yyhl2173 bool = l >= 0 + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2150 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2150 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28045,13 +28316,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2150 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2150 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28061,13 +28332,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2150 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2150 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28075,16 +28346,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2153 := &x.ObjectMeta - yyv2153.CodecDecodeSelf(d) + yyv2176 := &x.ObjectMeta + yyv2176.CodecDecodeSelf(d) } - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2150 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2150 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28092,16 +28363,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2154 := &x.Spec - yyv2154.CodecDecodeSelf(d) + yyv2177 := &x.Spec + yyv2177.CodecDecodeSelf(d) } - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2150 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2150 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28109,21 +28380,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2155 := &x.Status - yyv2155.CodecDecodeSelf(d) + yyv2178 := &x.Status + yyv2178.CodecDecodeSelf(d) } for { - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2150 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2150 { + if yyb2173 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2150-1, "") + z.DecStructFieldNotFound(yyj2173-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28135,37 +28406,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2156 := z.EncBinary() - _ = yym2156 + yym2179 := z.EncBinary() + _ = yym2179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2157 := !z.EncBinary() - yy2arr2157 := z.EncBasicHandle().StructToArray - var yyq2157 [4]bool - _, _, _ = yysep2157, yyq2157, yy2arr2157 - const yyr2157 bool = false - yyq2157[0] = x.Kind != "" - yyq2157[1] = x.APIVersion != "" - yyq2157[2] = true - var yynn2157 int - if yyr2157 || yy2arr2157 { + yysep2180 := !z.EncBinary() + yy2arr2180 := z.EncBasicHandle().StructToArray + var yyq2180 [4]bool + _, _, _ = yysep2180, yyq2180, yy2arr2180 + const yyr2180 bool = false + yyq2180[0] = x.Kind != "" + yyq2180[1] = x.APIVersion != "" + yyq2180[2] = true + var yynn2180 int + if yyr2180 || yy2arr2180 { r.EncodeArrayStart(4) } else { - yynn2157 = 1 - for _, b := range yyq2157 { + yynn2180 = 1 + for _, b := range yyq2180 { if b { - yynn2157++ + yynn2180++ } } - r.EncodeMapStart(yynn2157) - yynn2157 = 0 + r.EncodeMapStart(yynn2180) + yynn2180 = 0 } - if yyr2157 || yy2arr2157 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2157[0] { - yym2159 := z.EncBinary() - _ = yym2159 + if yyq2180[0] { + yym2182 := z.EncBinary() + _ = yym2182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28174,23 +28445,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2157[0] { + if yyq2180[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2160 := z.EncBinary() - _ = yym2160 + yym2183 := z.EncBinary() + _ = yym2183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2157 || yy2arr2157 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2157[1] { - yym2162 := z.EncBinary() - _ = yym2162 + if yyq2180[1] { + yym2185 := z.EncBinary() + _ = yym2185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28199,54 +28470,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2157[1] { + if yyq2180[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2163 := z.EncBinary() - _ = yym2163 + yym2186 := z.EncBinary() + _ = yym2186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2157 || yy2arr2157 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2157[2] { - yy2165 := &x.ListMeta - yym2166 := z.EncBinary() - _ = yym2166 + if yyq2180[2] { + yy2188 := &x.ListMeta + yym2189 := z.EncBinary() + _ = yym2189 if false { - } else if z.HasExtensions() && z.EncExt(yy2165) { + } else if z.HasExtensions() && z.EncExt(yy2188) { } else { - z.EncFallback(yy2165) + z.EncFallback(yy2188) } } else { r.EncodeNil() } } else { - if yyq2157[2] { + if yyq2180[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2167 := &x.ListMeta - yym2168 := z.EncBinary() - _ = yym2168 + yy2190 := &x.ListMeta + yym2191 := z.EncBinary() + _ = yym2191 if false { - } else if z.HasExtensions() && z.EncExt(yy2167) { + } else if z.HasExtensions() && z.EncExt(yy2190) { } else { - z.EncFallback(yy2167) + z.EncFallback(yy2190) } } } - if yyr2157 || yy2arr2157 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2170 := z.EncBinary() - _ = yym2170 + yym2193 := z.EncBinary() + _ = yym2193 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -28259,15 +28530,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2171 := z.EncBinary() - _ = yym2171 + yym2194 := z.EncBinary() + _ = yym2194 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2157 || yy2arr2157 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28280,25 +28551,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2172 := z.DecBinary() - _ = yym2172 + yym2195 := z.DecBinary() + _ = yym2195 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2173 := r.ContainerType() - if yyct2173 == codecSelferValueTypeMap1234 { - yyl2173 := r.ReadMapStart() - if yyl2173 == 0 { + yyct2196 := r.ContainerType() + if yyct2196 == codecSelferValueTypeMap1234 { + yyl2196 := r.ReadMapStart() + if yyl2196 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2173, d) + x.codecDecodeSelfFromMap(yyl2196, d) } - } else if yyct2173 == codecSelferValueTypeArray1234 { - yyl2173 := r.ReadArrayStart() - if yyl2173 == 0 { + } else if yyct2196 == codecSelferValueTypeArray1234 { + yyl2196 := r.ReadArrayStart() + if yyl2196 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2173, d) + x.codecDecodeSelfFromArray(yyl2196, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28310,12 +28581,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2174Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2174Slc - var yyhl2174 bool = l >= 0 - for yyj2174 := 0; ; yyj2174++ { - if yyhl2174 { - if yyj2174 >= l { + var yys2197Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2197Slc + var yyhl2197 bool = l >= 0 + for yyj2197 := 0; ; yyj2197++ { + if yyhl2197 { + if yyj2197 >= l { break } } else { @@ -28324,10 +28595,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2174Slc = r.DecodeBytes(yys2174Slc, true, true) - yys2174 := string(yys2174Slc) + yys2197Slc = r.DecodeBytes(yys2197Slc, true, true) + yys2197 := string(yys2197Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2174 { + switch yys2197 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28344,31 +28615,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2177 := &x.ListMeta - yym2178 := z.DecBinary() - _ = yym2178 + yyv2200 := &x.ListMeta + yym2201 := z.DecBinary() + _ = yym2201 if false { - } else if z.HasExtensions() && z.DecExt(yyv2177) { + } else if z.HasExtensions() && z.DecExt(yyv2200) { } else { - z.DecFallback(yyv2177, false) + z.DecFallback(yyv2200, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2179 := &x.Items - yym2180 := z.DecBinary() - _ = yym2180 + yyv2202 := &x.Items + yym2203 := z.DecBinary() + _ = yym2203 if false { } else { - h.decSliceService((*[]Service)(yyv2179), d) + h.decSliceService((*[]Service)(yyv2202), d) } } default: - z.DecStructFieldNotFound(-1, yys2174) - } // end switch yys2174 - } // end for yyj2174 + z.DecStructFieldNotFound(-1, yys2197) + } // end switch yys2197 + } // end for yyj2197 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28376,16 +28647,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2181 int - var yyb2181 bool - var yyhl2181 bool = l >= 0 - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + var yyj2204 int + var yyb2204 bool + var yyhl2204 bool = l >= 0 + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2181 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2181 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28395,13 +28666,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2181 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2181 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28411,13 +28682,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2181 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2181 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28425,22 +28696,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2184 := &x.ListMeta - yym2185 := z.DecBinary() - _ = yym2185 + yyv2207 := &x.ListMeta + yym2208 := z.DecBinary() + _ = yym2208 if false { - } else if z.HasExtensions() && z.DecExt(yyv2184) { + } else if z.HasExtensions() && z.DecExt(yyv2207) { } else { - z.DecFallback(yyv2184, false) + z.DecFallback(yyv2207, false) } } - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2181 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2181 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28448,26 +28719,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2186 := &x.Items - yym2187 := z.DecBinary() - _ = yym2187 + yyv2209 := &x.Items + yym2210 := z.DecBinary() + _ = yym2210 if false { } else { - h.decSliceService((*[]Service)(yyv2186), d) + h.decSliceService((*[]Service)(yyv2209), d) } } for { - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2181 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2181 { + if yyb2204 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2181-1, "") + z.DecStructFieldNotFound(yyj2204-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28479,39 +28750,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2188 := z.EncBinary() - _ = yym2188 + yym2211 := z.EncBinary() + _ = yym2211 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2189 := !z.EncBinary() - yy2arr2189 := z.EncBasicHandle().StructToArray - var yyq2189 [5]bool - _, _, _ = yysep2189, yyq2189, yy2arr2189 - const yyr2189 bool = false - yyq2189[0] = x.Kind != "" - yyq2189[1] = x.APIVersion != "" - yyq2189[2] = true - yyq2189[3] = len(x.Secrets) != 0 - yyq2189[4] = len(x.ImagePullSecrets) != 0 - var yynn2189 int - if yyr2189 || yy2arr2189 { + yysep2212 := !z.EncBinary() + yy2arr2212 := z.EncBasicHandle().StructToArray + var yyq2212 [5]bool + _, _, _ = yysep2212, yyq2212, yy2arr2212 + const yyr2212 bool = false + yyq2212[0] = x.Kind != "" + yyq2212[1] = x.APIVersion != "" + yyq2212[2] = true + yyq2212[3] = len(x.Secrets) != 0 + yyq2212[4] = len(x.ImagePullSecrets) != 0 + var yynn2212 int + if yyr2212 || yy2arr2212 { r.EncodeArrayStart(5) } else { - yynn2189 = 0 - for _, b := range yyq2189 { + yynn2212 = 0 + for _, b := range yyq2212 { if b { - yynn2189++ + yynn2212++ } } - r.EncodeMapStart(yynn2189) - yynn2189 = 0 + r.EncodeMapStart(yynn2212) + yynn2212 = 0 } - if yyr2189 || yy2arr2189 { + if yyr2212 || yy2arr2212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2189[0] { - yym2191 := z.EncBinary() - _ = yym2191 + if yyq2212[0] { + yym2214 := z.EncBinary() + _ = yym2214 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28520,23 +28791,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2189[0] { + if yyq2212[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2192 := z.EncBinary() - _ = yym2192 + yym2215 := z.EncBinary() + _ = yym2215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2189 || yy2arr2189 { + if yyr2212 || yy2arr2212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2189[1] { - yym2194 := z.EncBinary() - _ = yym2194 + if yyq2212[1] { + yym2217 := z.EncBinary() + _ = yym2217 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28545,43 +28816,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2189[1] { + if yyq2212[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2195 := z.EncBinary() - _ = yym2195 + yym2218 := z.EncBinary() + _ = yym2218 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2189 || yy2arr2189 { + if yyr2212 || yy2arr2212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2189[2] { - yy2197 := &x.ObjectMeta - yy2197.CodecEncodeSelf(e) + if yyq2212[2] { + yy2220 := &x.ObjectMeta + yy2220.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2189[2] { + if yyq2212[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2198 := &x.ObjectMeta - yy2198.CodecEncodeSelf(e) + yy2221 := &x.ObjectMeta + yy2221.CodecEncodeSelf(e) } } - if yyr2189 || yy2arr2189 { + if yyr2212 || yy2arr2212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2189[3] { + if yyq2212[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2200 := z.EncBinary() - _ = yym2200 + yym2223 := z.EncBinary() + _ = yym2223 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -28591,15 +28862,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2189[3] { + if yyq2212[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2201 := z.EncBinary() - _ = yym2201 + yym2224 := z.EncBinary() + _ = yym2224 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -28607,14 +28878,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2189 || yy2arr2189 { + if yyr2212 || yy2arr2212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2189[4] { + if yyq2212[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2203 := z.EncBinary() - _ = yym2203 + yym2226 := z.EncBinary() + _ = yym2226 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -28624,15 +28895,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2189[4] { + if yyq2212[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2204 := z.EncBinary() - _ = yym2204 + yym2227 := z.EncBinary() + _ = yym2227 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -28640,7 +28911,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2189 || yy2arr2189 { + if yyr2212 || yy2arr2212 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28653,25 +28924,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2205 := z.DecBinary() - _ = yym2205 + yym2228 := z.DecBinary() + _ = yym2228 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2206 := r.ContainerType() - if yyct2206 == codecSelferValueTypeMap1234 { - yyl2206 := r.ReadMapStart() - if yyl2206 == 0 { + yyct2229 := r.ContainerType() + if yyct2229 == codecSelferValueTypeMap1234 { + yyl2229 := r.ReadMapStart() + if yyl2229 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2206, d) + x.codecDecodeSelfFromMap(yyl2229, d) } - } else if yyct2206 == codecSelferValueTypeArray1234 { - yyl2206 := r.ReadArrayStart() - if yyl2206 == 0 { + } else if yyct2229 == codecSelferValueTypeArray1234 { + yyl2229 := r.ReadArrayStart() + if yyl2229 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2206, d) + x.codecDecodeSelfFromArray(yyl2229, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28683,12 +28954,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2207Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2207Slc - var yyhl2207 bool = l >= 0 - for yyj2207 := 0; ; yyj2207++ { - if yyhl2207 { - if yyj2207 >= l { + var yys2230Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2230Slc + var yyhl2230 bool = l >= 0 + for yyj2230 := 0; ; yyj2230++ { + if yyhl2230 { + if yyj2230 >= l { break } } else { @@ -28697,10 +28968,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2207Slc = r.DecodeBytes(yys2207Slc, true, true) - yys2207 := string(yys2207Slc) + yys2230Slc = r.DecodeBytes(yys2230Slc, true, true) + yys2230 := string(yys2230Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2207 { + switch yys2230 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28717,37 +28988,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2210 := &x.ObjectMeta - yyv2210.CodecDecodeSelf(d) + yyv2233 := &x.ObjectMeta + yyv2233.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2211 := &x.Secrets - yym2212 := z.DecBinary() - _ = yym2212 + yyv2234 := &x.Secrets + yym2235 := z.DecBinary() + _ = yym2235 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2211), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2234), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2213 := &x.ImagePullSecrets - yym2214 := z.DecBinary() - _ = yym2214 + yyv2236 := &x.ImagePullSecrets + yym2237 := z.DecBinary() + _ = yym2237 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2213), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2236), d) } } default: - z.DecStructFieldNotFound(-1, yys2207) - } // end switch yys2207 - } // end for yyj2207 + z.DecStructFieldNotFound(-1, yys2230) + } // end switch yys2230 + } // end for yyj2230 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28755,16 +29026,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2215 int - var yyb2215 bool - var yyhl2215 bool = l >= 0 - yyj2215++ - if yyhl2215 { - yyb2215 = yyj2215 > l + var yyj2238 int + var yyb2238 bool + var yyhl2238 bool = l >= 0 + yyj2238++ + if yyhl2238 { + yyb2238 = yyj2238 > l } else { - yyb2215 = r.CheckBreak() + yyb2238 = r.CheckBreak() } - if yyb2215 { + if yyb2238 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28774,13 +29045,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2215++ - if yyhl2215 { - yyb2215 = yyj2215 > l + yyj2238++ + if yyhl2238 { + yyb2238 = yyj2238 > l } else { - yyb2215 = r.CheckBreak() + yyb2238 = r.CheckBreak() } - if yyb2215 { + if yyb2238 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28790,13 +29061,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2215++ - if yyhl2215 { - yyb2215 = yyj2215 > l + yyj2238++ + if yyhl2238 { + yyb2238 = yyj2238 > l } else { - yyb2215 = r.CheckBreak() + yyb2238 = r.CheckBreak() } - if yyb2215 { + if yyb2238 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28804,16 +29075,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2218 := &x.ObjectMeta - yyv2218.CodecDecodeSelf(d) + yyv2241 := &x.ObjectMeta + yyv2241.CodecDecodeSelf(d) } - yyj2215++ - if yyhl2215 { - yyb2215 = yyj2215 > l + yyj2238++ + if yyhl2238 { + yyb2238 = yyj2238 > l } else { - yyb2215 = r.CheckBreak() + yyb2238 = r.CheckBreak() } - if yyb2215 { + if yyb2238 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28821,21 +29092,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2219 := &x.Secrets - yym2220 := z.DecBinary() - _ = yym2220 + yyv2242 := &x.Secrets + yym2243 := z.DecBinary() + _ = yym2243 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2219), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2242), d) } } - yyj2215++ - if yyhl2215 { - yyb2215 = yyj2215 > l + yyj2238++ + if yyhl2238 { + yyb2238 = yyj2238 > l } else { - yyb2215 = r.CheckBreak() + yyb2238 = r.CheckBreak() } - if yyb2215 { + if yyb2238 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28843,26 +29114,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2221 := &x.ImagePullSecrets - yym2222 := z.DecBinary() - _ = yym2222 + yyv2244 := &x.ImagePullSecrets + yym2245 := z.DecBinary() + _ = yym2245 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2221), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2244), d) } } for { - yyj2215++ - if yyhl2215 { - yyb2215 = yyj2215 > l + yyj2238++ + if yyhl2238 { + yyb2238 = yyj2238 > l } else { - yyb2215 = r.CheckBreak() + yyb2238 = r.CheckBreak() } - if yyb2215 { + if yyb2238 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2215-1, "") + z.DecStructFieldNotFound(yyj2238-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28874,37 +29145,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2223 := z.EncBinary() - _ = yym2223 + yym2246 := z.EncBinary() + _ = yym2246 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2224 := !z.EncBinary() - yy2arr2224 := z.EncBasicHandle().StructToArray - var yyq2224 [4]bool - _, _, _ = yysep2224, yyq2224, yy2arr2224 - const yyr2224 bool = false - yyq2224[0] = x.Kind != "" - yyq2224[1] = x.APIVersion != "" - yyq2224[2] = true - var yynn2224 int - if yyr2224 || yy2arr2224 { + yysep2247 := !z.EncBinary() + yy2arr2247 := z.EncBasicHandle().StructToArray + var yyq2247 [4]bool + _, _, _ = yysep2247, yyq2247, yy2arr2247 + const yyr2247 bool = false + yyq2247[0] = x.Kind != "" + yyq2247[1] = x.APIVersion != "" + yyq2247[2] = true + var yynn2247 int + if yyr2247 || yy2arr2247 { r.EncodeArrayStart(4) } else { - yynn2224 = 1 - for _, b := range yyq2224 { + yynn2247 = 1 + for _, b := range yyq2247 { if b { - yynn2224++ + yynn2247++ } } - r.EncodeMapStart(yynn2224) - yynn2224 = 0 + r.EncodeMapStart(yynn2247) + yynn2247 = 0 } - if yyr2224 || yy2arr2224 { + if yyr2247 || yy2arr2247 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2224[0] { - yym2226 := z.EncBinary() - _ = yym2226 + if yyq2247[0] { + yym2249 := z.EncBinary() + _ = yym2249 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28913,23 +29184,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2224[0] { + if yyq2247[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2227 := z.EncBinary() - _ = yym2227 + yym2250 := z.EncBinary() + _ = yym2250 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2224 || yy2arr2224 { + if yyr2247 || yy2arr2247 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2224[1] { - yym2229 := z.EncBinary() - _ = yym2229 + if yyq2247[1] { + yym2252 := z.EncBinary() + _ = yym2252 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28938,54 +29209,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2224[1] { + if yyq2247[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2230 := z.EncBinary() - _ = yym2230 + yym2253 := z.EncBinary() + _ = yym2253 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2224 || yy2arr2224 { + if yyr2247 || yy2arr2247 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2224[2] { - yy2232 := &x.ListMeta - yym2233 := z.EncBinary() - _ = yym2233 + if yyq2247[2] { + yy2255 := &x.ListMeta + yym2256 := z.EncBinary() + _ = yym2256 if false { - } else if z.HasExtensions() && z.EncExt(yy2232) { + } else if z.HasExtensions() && z.EncExt(yy2255) { } else { - z.EncFallback(yy2232) + z.EncFallback(yy2255) } } else { r.EncodeNil() } } else { - if yyq2224[2] { + if yyq2247[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2234 := &x.ListMeta - yym2235 := z.EncBinary() - _ = yym2235 + yy2257 := &x.ListMeta + yym2258 := z.EncBinary() + _ = yym2258 if false { - } else if z.HasExtensions() && z.EncExt(yy2234) { + } else if z.HasExtensions() && z.EncExt(yy2257) { } else { - z.EncFallback(yy2234) + z.EncFallback(yy2257) } } } - if yyr2224 || yy2arr2224 { + if yyr2247 || yy2arr2247 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2237 := z.EncBinary() - _ = yym2237 + yym2260 := z.EncBinary() + _ = yym2260 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -28998,15 +29269,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2238 := z.EncBinary() - _ = yym2238 + yym2261 := z.EncBinary() + _ = yym2261 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2224 || yy2arr2224 { + if yyr2247 || yy2arr2247 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29019,25 +29290,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2239 := z.DecBinary() - _ = yym2239 + yym2262 := z.DecBinary() + _ = yym2262 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2240 := r.ContainerType() - if yyct2240 == codecSelferValueTypeMap1234 { - yyl2240 := r.ReadMapStart() - if yyl2240 == 0 { + yyct2263 := r.ContainerType() + if yyct2263 == codecSelferValueTypeMap1234 { + yyl2263 := r.ReadMapStart() + if yyl2263 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2240, d) + x.codecDecodeSelfFromMap(yyl2263, d) } - } else if yyct2240 == codecSelferValueTypeArray1234 { - yyl2240 := r.ReadArrayStart() - if yyl2240 == 0 { + } else if yyct2263 == codecSelferValueTypeArray1234 { + yyl2263 := r.ReadArrayStart() + if yyl2263 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2240, d) + x.codecDecodeSelfFromArray(yyl2263, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29049,12 +29320,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2241Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2241Slc - var yyhl2241 bool = l >= 0 - for yyj2241 := 0; ; yyj2241++ { - if yyhl2241 { - if yyj2241 >= l { + var yys2264Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2264Slc + var yyhl2264 bool = l >= 0 + for yyj2264 := 0; ; yyj2264++ { + if yyhl2264 { + if yyj2264 >= l { break } } else { @@ -29063,10 +29334,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2241Slc = r.DecodeBytes(yys2241Slc, true, true) - yys2241 := string(yys2241Slc) + yys2264Slc = r.DecodeBytes(yys2264Slc, true, true) + yys2264 := string(yys2264Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2241 { + switch yys2264 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29083,31 +29354,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2244 := &x.ListMeta - yym2245 := z.DecBinary() - _ = yym2245 + yyv2267 := &x.ListMeta + yym2268 := z.DecBinary() + _ = yym2268 if false { - } else if z.HasExtensions() && z.DecExt(yyv2244) { + } else if z.HasExtensions() && z.DecExt(yyv2267) { } else { - z.DecFallback(yyv2244, false) + z.DecFallback(yyv2267, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2246 := &x.Items - yym2247 := z.DecBinary() - _ = yym2247 + yyv2269 := &x.Items + yym2270 := z.DecBinary() + _ = yym2270 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2246), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2269), d) } } default: - z.DecStructFieldNotFound(-1, yys2241) - } // end switch yys2241 - } // end for yyj2241 + z.DecStructFieldNotFound(-1, yys2264) + } // end switch yys2264 + } // end for yyj2264 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29115,16 +29386,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2248 int - var yyb2248 bool - var yyhl2248 bool = l >= 0 - yyj2248++ - if yyhl2248 { - yyb2248 = yyj2248 > l + var yyj2271 int + var yyb2271 bool + var yyhl2271 bool = l >= 0 + yyj2271++ + if yyhl2271 { + yyb2271 = yyj2271 > l } else { - yyb2248 = r.CheckBreak() + yyb2271 = r.CheckBreak() } - if yyb2248 { + if yyb2271 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29134,13 +29405,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2248++ - if yyhl2248 { - yyb2248 = yyj2248 > l + yyj2271++ + if yyhl2271 { + yyb2271 = yyj2271 > l } else { - yyb2248 = r.CheckBreak() + yyb2271 = r.CheckBreak() } - if yyb2248 { + if yyb2271 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29150,13 +29421,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2248++ - if yyhl2248 { - yyb2248 = yyj2248 > l + yyj2271++ + if yyhl2271 { + yyb2271 = yyj2271 > l } else { - yyb2248 = r.CheckBreak() + yyb2271 = r.CheckBreak() } - if yyb2248 { + if yyb2271 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29164,22 +29435,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2251 := &x.ListMeta - yym2252 := z.DecBinary() - _ = yym2252 + yyv2274 := &x.ListMeta + yym2275 := z.DecBinary() + _ = yym2275 if false { - } else if z.HasExtensions() && z.DecExt(yyv2251) { + } else if z.HasExtensions() && z.DecExt(yyv2274) { } else { - z.DecFallback(yyv2251, false) + z.DecFallback(yyv2274, false) } } - yyj2248++ - if yyhl2248 { - yyb2248 = yyj2248 > l + yyj2271++ + if yyhl2271 { + yyb2271 = yyj2271 > l } else { - yyb2248 = r.CheckBreak() + yyb2271 = r.CheckBreak() } - if yyb2248 { + if yyb2271 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29187,26 +29458,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2253 := &x.Items - yym2254 := z.DecBinary() - _ = yym2254 + yyv2276 := &x.Items + yym2277 := z.DecBinary() + _ = yym2277 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2253), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2276), d) } } for { - yyj2248++ - if yyhl2248 { - yyb2248 = yyj2248 > l + yyj2271++ + if yyhl2271 { + yyb2271 = yyj2271 > l } else { - yyb2248 = r.CheckBreak() + yyb2271 = r.CheckBreak() } - if yyb2248 { + if yyb2271 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2248-1, "") + z.DecStructFieldNotFound(yyj2271-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29218,37 +29489,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2255 := z.EncBinary() - _ = yym2255 + yym2278 := z.EncBinary() + _ = yym2278 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2256 := !z.EncBinary() - yy2arr2256 := z.EncBasicHandle().StructToArray - var yyq2256 [4]bool - _, _, _ = yysep2256, yyq2256, yy2arr2256 - const yyr2256 bool = false - yyq2256[0] = x.Kind != "" - yyq2256[1] = x.APIVersion != "" - yyq2256[2] = true - var yynn2256 int - if yyr2256 || yy2arr2256 { + yysep2279 := !z.EncBinary() + yy2arr2279 := z.EncBasicHandle().StructToArray + var yyq2279 [4]bool + _, _, _ = yysep2279, yyq2279, yy2arr2279 + const yyr2279 bool = false + yyq2279[0] = x.Kind != "" + yyq2279[1] = x.APIVersion != "" + yyq2279[2] = true + var yynn2279 int + if yyr2279 || yy2arr2279 { r.EncodeArrayStart(4) } else { - yynn2256 = 1 - for _, b := range yyq2256 { + yynn2279 = 1 + for _, b := range yyq2279 { if b { - yynn2256++ + yynn2279++ } } - r.EncodeMapStart(yynn2256) - yynn2256 = 0 + r.EncodeMapStart(yynn2279) + yynn2279 = 0 } - if yyr2256 || yy2arr2256 { + if yyr2279 || yy2arr2279 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2256[0] { - yym2258 := z.EncBinary() - _ = yym2258 + if yyq2279[0] { + yym2281 := z.EncBinary() + _ = yym2281 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29257,23 +29528,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2256[0] { + if yyq2279[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2259 := z.EncBinary() - _ = yym2259 + yym2282 := z.EncBinary() + _ = yym2282 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2256 || yy2arr2256 { + if yyr2279 || yy2arr2279 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2256[1] { - yym2261 := z.EncBinary() - _ = yym2261 + if yyq2279[1] { + yym2284 := z.EncBinary() + _ = yym2284 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29282,42 +29553,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2256[1] { + if yyq2279[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2262 := z.EncBinary() - _ = yym2262 + yym2285 := z.EncBinary() + _ = yym2285 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2256 || yy2arr2256 { + if yyr2279 || yy2arr2279 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2256[2] { - yy2264 := &x.ObjectMeta - yy2264.CodecEncodeSelf(e) + if yyq2279[2] { + yy2287 := &x.ObjectMeta + yy2287.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2256[2] { + if yyq2279[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2265 := &x.ObjectMeta - yy2265.CodecEncodeSelf(e) + yy2288 := &x.ObjectMeta + yy2288.CodecEncodeSelf(e) } } - if yyr2256 || yy2arr2256 { + if yyr2279 || yy2arr2279 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2267 := z.EncBinary() - _ = yym2267 + yym2290 := z.EncBinary() + _ = yym2290 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -29330,15 +29601,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2268 := z.EncBinary() - _ = yym2268 + yym2291 := z.EncBinary() + _ = yym2291 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2256 || yy2arr2256 { + if yyr2279 || yy2arr2279 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29351,25 +29622,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2269 := z.DecBinary() - _ = yym2269 + yym2292 := z.DecBinary() + _ = yym2292 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2270 := r.ContainerType() - if yyct2270 == codecSelferValueTypeMap1234 { - yyl2270 := r.ReadMapStart() - if yyl2270 == 0 { + yyct2293 := r.ContainerType() + if yyct2293 == codecSelferValueTypeMap1234 { + yyl2293 := r.ReadMapStart() + if yyl2293 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2270, d) + x.codecDecodeSelfFromMap(yyl2293, d) } - } else if yyct2270 == codecSelferValueTypeArray1234 { - yyl2270 := r.ReadArrayStart() - if yyl2270 == 0 { + } else if yyct2293 == codecSelferValueTypeArray1234 { + yyl2293 := r.ReadArrayStart() + if yyl2293 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2270, d) + x.codecDecodeSelfFromArray(yyl2293, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29381,12 +29652,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2271Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2271Slc - var yyhl2271 bool = l >= 0 - for yyj2271 := 0; ; yyj2271++ { - if yyhl2271 { - if yyj2271 >= l { + var yys2294Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2294Slc + var yyhl2294 bool = l >= 0 + for yyj2294 := 0; ; yyj2294++ { + if yyhl2294 { + if yyj2294 >= l { break } } else { @@ -29395,10 +29666,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2271Slc = r.DecodeBytes(yys2271Slc, true, true) - yys2271 := string(yys2271Slc) + yys2294Slc = r.DecodeBytes(yys2294Slc, true, true) + yys2294 := string(yys2294Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2271 { + switch yys2294 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29415,25 +29686,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2274 := &x.ObjectMeta - yyv2274.CodecDecodeSelf(d) + yyv2297 := &x.ObjectMeta + yyv2297.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2275 := &x.Subsets - yym2276 := z.DecBinary() - _ = yym2276 + yyv2298 := &x.Subsets + yym2299 := z.DecBinary() + _ = yym2299 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2275), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2298), d) } } default: - z.DecStructFieldNotFound(-1, yys2271) - } // end switch yys2271 - } // end for yyj2271 + z.DecStructFieldNotFound(-1, yys2294) + } // end switch yys2294 + } // end for yyj2294 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29441,16 +29712,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2277 int - var yyb2277 bool - var yyhl2277 bool = l >= 0 - yyj2277++ - if yyhl2277 { - yyb2277 = yyj2277 > l + var yyj2300 int + var yyb2300 bool + var yyhl2300 bool = l >= 0 + yyj2300++ + if yyhl2300 { + yyb2300 = yyj2300 > l } else { - yyb2277 = r.CheckBreak() + yyb2300 = r.CheckBreak() } - if yyb2277 { + if yyb2300 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29460,13 +29731,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2277++ - if yyhl2277 { - yyb2277 = yyj2277 > l + yyj2300++ + if yyhl2300 { + yyb2300 = yyj2300 > l } else { - yyb2277 = r.CheckBreak() + yyb2300 = r.CheckBreak() } - if yyb2277 { + if yyb2300 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29476,13 +29747,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2277++ - if yyhl2277 { - yyb2277 = yyj2277 > l + yyj2300++ + if yyhl2300 { + yyb2300 = yyj2300 > l } else { - yyb2277 = r.CheckBreak() + yyb2300 = r.CheckBreak() } - if yyb2277 { + if yyb2300 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29490,16 +29761,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2280 := &x.ObjectMeta - yyv2280.CodecDecodeSelf(d) + yyv2303 := &x.ObjectMeta + yyv2303.CodecDecodeSelf(d) } - yyj2277++ - if yyhl2277 { - yyb2277 = yyj2277 > l + yyj2300++ + if yyhl2300 { + yyb2300 = yyj2300 > l } else { - yyb2277 = r.CheckBreak() + yyb2300 = r.CheckBreak() } - if yyb2277 { + if yyb2300 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29507,26 +29778,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2281 := &x.Subsets - yym2282 := z.DecBinary() - _ = yym2282 + yyv2304 := &x.Subsets + yym2305 := z.DecBinary() + _ = yym2305 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2281), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2304), d) } } for { - yyj2277++ - if yyhl2277 { - yyb2277 = yyj2277 > l + yyj2300++ + if yyhl2300 { + yyb2300 = yyj2300 > l } else { - yyb2277 = r.CheckBreak() + yyb2300 = r.CheckBreak() } - if yyb2277 { + if yyb2300 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2277-1, "") + z.DecStructFieldNotFound(yyj2300-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29538,40 +29809,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2283 := z.EncBinary() - _ = yym2283 + yym2306 := z.EncBinary() + _ = yym2306 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2284 := !z.EncBinary() - yy2arr2284 := z.EncBasicHandle().StructToArray - var yyq2284 [3]bool - _, _, _ = yysep2284, yyq2284, yy2arr2284 - const yyr2284 bool = false - yyq2284[0] = len(x.Addresses) != 0 - yyq2284[1] = len(x.NotReadyAddresses) != 0 - yyq2284[2] = len(x.Ports) != 0 - var yynn2284 int - if yyr2284 || yy2arr2284 { + yysep2307 := !z.EncBinary() + yy2arr2307 := z.EncBasicHandle().StructToArray + var yyq2307 [3]bool + _, _, _ = yysep2307, yyq2307, yy2arr2307 + const yyr2307 bool = false + yyq2307[0] = len(x.Addresses) != 0 + yyq2307[1] = len(x.NotReadyAddresses) != 0 + yyq2307[2] = len(x.Ports) != 0 + var yynn2307 int + if yyr2307 || yy2arr2307 { r.EncodeArrayStart(3) } else { - yynn2284 = 0 - for _, b := range yyq2284 { + yynn2307 = 0 + for _, b := range yyq2307 { if b { - yynn2284++ + yynn2307++ } } - r.EncodeMapStart(yynn2284) - yynn2284 = 0 + r.EncodeMapStart(yynn2307) + yynn2307 = 0 } - if yyr2284 || yy2arr2284 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2284[0] { + if yyq2307[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2286 := z.EncBinary() - _ = yym2286 + yym2309 := z.EncBinary() + _ = yym2309 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -29581,15 +29852,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2284[0] { + if yyq2307[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2287 := z.EncBinary() - _ = yym2287 + yym2310 := z.EncBinary() + _ = yym2310 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -29597,14 +29868,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2284 || yy2arr2284 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2284[1] { + if yyq2307[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2289 := z.EncBinary() - _ = yym2289 + yym2312 := z.EncBinary() + _ = yym2312 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -29614,15 +29885,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2284[1] { + if yyq2307[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2290 := z.EncBinary() - _ = yym2290 + yym2313 := z.EncBinary() + _ = yym2313 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -29630,14 +29901,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2284 || yy2arr2284 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2284[2] { + if yyq2307[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2292 := z.EncBinary() - _ = yym2292 + yym2315 := z.EncBinary() + _ = yym2315 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -29647,15 +29918,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2284[2] { + if yyq2307[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2293 := z.EncBinary() - _ = yym2293 + yym2316 := z.EncBinary() + _ = yym2316 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -29663,7 +29934,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2284 || yy2arr2284 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29676,25 +29947,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2294 := z.DecBinary() - _ = yym2294 + yym2317 := z.DecBinary() + _ = yym2317 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2295 := r.ContainerType() - if yyct2295 == codecSelferValueTypeMap1234 { - yyl2295 := r.ReadMapStart() - if yyl2295 == 0 { + yyct2318 := r.ContainerType() + if yyct2318 == codecSelferValueTypeMap1234 { + yyl2318 := r.ReadMapStart() + if yyl2318 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2295, d) + x.codecDecodeSelfFromMap(yyl2318, d) } - } else if yyct2295 == codecSelferValueTypeArray1234 { - yyl2295 := r.ReadArrayStart() - if yyl2295 == 0 { + } else if yyct2318 == codecSelferValueTypeArray1234 { + yyl2318 := r.ReadArrayStart() + if yyl2318 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2295, d) + x.codecDecodeSelfFromArray(yyl2318, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29706,12 +29977,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2296Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2296Slc - var yyhl2296 bool = l >= 0 - for yyj2296 := 0; ; yyj2296++ { - if yyhl2296 { - if yyj2296 >= l { + var yys2319Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2319Slc + var yyhl2319 bool = l >= 0 + for yyj2319 := 0; ; yyj2319++ { + if yyhl2319 { + if yyj2319 >= l { break } } else { @@ -29720,50 +29991,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2296Slc = r.DecodeBytes(yys2296Slc, true, true) - yys2296 := string(yys2296Slc) + yys2319Slc = r.DecodeBytes(yys2319Slc, true, true) + yys2319 := string(yys2319Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2296 { + switch yys2319 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2297 := &x.Addresses - yym2298 := z.DecBinary() - _ = yym2298 + yyv2320 := &x.Addresses + yym2321 := z.DecBinary() + _ = yym2321 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2297), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2320), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2299 := &x.NotReadyAddresses - yym2300 := z.DecBinary() - _ = yym2300 + yyv2322 := &x.NotReadyAddresses + yym2323 := z.DecBinary() + _ = yym2323 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2299), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2322), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2301 := &x.Ports - yym2302 := z.DecBinary() - _ = yym2302 + yyv2324 := &x.Ports + yym2325 := z.DecBinary() + _ = yym2325 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2301), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2324), d) } } default: - z.DecStructFieldNotFound(-1, yys2296) - } // end switch yys2296 - } // end for yyj2296 + z.DecStructFieldNotFound(-1, yys2319) + } // end switch yys2319 + } // end for yyj2319 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29771,16 +30042,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2303 int - var yyb2303 bool - var yyhl2303 bool = l >= 0 - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + var yyj2326 int + var yyb2326 bool + var yyhl2326 bool = l >= 0 + yyj2326++ + if yyhl2326 { + yyb2326 = yyj2326 > l } else { - yyb2303 = r.CheckBreak() + yyb2326 = r.CheckBreak() } - if yyb2303 { + if yyb2326 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29788,21 +30059,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2304 := &x.Addresses - yym2305 := z.DecBinary() - _ = yym2305 + yyv2327 := &x.Addresses + yym2328 := z.DecBinary() + _ = yym2328 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2304), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2327), d) } } - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + yyj2326++ + if yyhl2326 { + yyb2326 = yyj2326 > l } else { - yyb2303 = r.CheckBreak() + yyb2326 = r.CheckBreak() } - if yyb2303 { + if yyb2326 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29810,21 +30081,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2306 := &x.NotReadyAddresses - yym2307 := z.DecBinary() - _ = yym2307 + yyv2329 := &x.NotReadyAddresses + yym2330 := z.DecBinary() + _ = yym2330 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2306), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2329), d) } } - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + yyj2326++ + if yyhl2326 { + yyb2326 = yyj2326 > l } else { - yyb2303 = r.CheckBreak() + yyb2326 = r.CheckBreak() } - if yyb2303 { + if yyb2326 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29832,26 +30103,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2308 := &x.Ports - yym2309 := z.DecBinary() - _ = yym2309 + yyv2331 := &x.Ports + yym2332 := z.DecBinary() + _ = yym2332 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2308), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2331), d) } } for { - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + yyj2326++ + if yyhl2326 { + yyb2326 = yyj2326 > l } else { - yyb2303 = r.CheckBreak() + yyb2326 = r.CheckBreak() } - if yyb2303 { + if yyb2326 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2303-1, "") + z.DecStructFieldNotFound(yyj2326-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29863,34 +30134,34 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2310 := z.EncBinary() - _ = yym2310 + yym2333 := z.EncBinary() + _ = yym2333 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2311 := !z.EncBinary() - yy2arr2311 := z.EncBasicHandle().StructToArray - var yyq2311 [2]bool - _, _, _ = yysep2311, yyq2311, yy2arr2311 - const yyr2311 bool = false - yyq2311[1] = x.TargetRef != nil - var yynn2311 int - if yyr2311 || yy2arr2311 { + yysep2334 := !z.EncBinary() + yy2arr2334 := z.EncBasicHandle().StructToArray + var yyq2334 [2]bool + _, _, _ = yysep2334, yyq2334, yy2arr2334 + const yyr2334 bool = false + yyq2334[1] = x.TargetRef != nil + var yynn2334 int + if yyr2334 || yy2arr2334 { r.EncodeArrayStart(2) } else { - yynn2311 = 1 - for _, b := range yyq2311 { + yynn2334 = 1 + for _, b := range yyq2334 { if b { - yynn2311++ + yynn2334++ } } - r.EncodeMapStart(yynn2311) - yynn2311 = 0 + r.EncodeMapStart(yynn2334) + yynn2334 = 0 } - if yyr2311 || yy2arr2311 { + if yyr2334 || yy2arr2334 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2313 := z.EncBinary() - _ = yym2313 + yym2336 := z.EncBinary() + _ = yym2336 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -29899,16 +30170,16 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2314 := z.EncBinary() - _ = yym2314 + yym2337 := z.EncBinary() + _ = yym2337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2311 || yy2arr2311 { + if yyr2334 || yy2arr2334 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2311[1] { + if yyq2334[1] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -29918,7 +30189,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2311[1] { + if yyq2334[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -29929,7 +30200,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2311 || yy2arr2311 { + if yyr2334 || yy2arr2334 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29942,25 +30213,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2316 := z.DecBinary() - _ = yym2316 + yym2339 := z.DecBinary() + _ = yym2339 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2317 := r.ContainerType() - if yyct2317 == codecSelferValueTypeMap1234 { - yyl2317 := r.ReadMapStart() - if yyl2317 == 0 { + yyct2340 := r.ContainerType() + if yyct2340 == codecSelferValueTypeMap1234 { + yyl2340 := r.ReadMapStart() + if yyl2340 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2317, d) + x.codecDecodeSelfFromMap(yyl2340, d) } - } else if yyct2317 == codecSelferValueTypeArray1234 { - yyl2317 := r.ReadArrayStart() - if yyl2317 == 0 { + } else if yyct2340 == codecSelferValueTypeArray1234 { + yyl2340 := r.ReadArrayStart() + if yyl2340 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2317, d) + x.codecDecodeSelfFromArray(yyl2340, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29972,12 +30243,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2318Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2318Slc - var yyhl2318 bool = l >= 0 - for yyj2318 := 0; ; yyj2318++ { - if yyhl2318 { - if yyj2318 >= l { + var yys2341Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2341Slc + var yyhl2341 bool = l >= 0 + for yyj2341 := 0; ; yyj2341++ { + if yyhl2341 { + if yyj2341 >= l { break } } else { @@ -29986,10 +30257,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2318Slc = r.DecodeBytes(yys2318Slc, true, true) - yys2318 := string(yys2318Slc) + yys2341Slc = r.DecodeBytes(yys2341Slc, true, true) + yys2341 := string(yys2341Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2318 { + switch yys2341 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -30008,9 +30279,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2318) - } // end switch yys2318 - } // end for yyj2318 + z.DecStructFieldNotFound(-1, yys2341) + } // end switch yys2341 + } // end for yyj2341 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30018,16 +30289,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2321 int - var yyb2321 bool - var yyhl2321 bool = l >= 0 - yyj2321++ - if yyhl2321 { - yyb2321 = yyj2321 > l + var yyj2344 int + var yyb2344 bool + var yyhl2344 bool = l >= 0 + yyj2344++ + if yyhl2344 { + yyb2344 = yyj2344 > l } else { - yyb2321 = r.CheckBreak() + yyb2344 = r.CheckBreak() } - if yyb2321 { + if yyb2344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30037,13 +30308,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2321++ - if yyhl2321 { - yyb2321 = yyj2321 > l + yyj2344++ + if yyhl2344 { + yyb2344 = yyj2344 > l } else { - yyb2321 = r.CheckBreak() + yyb2344 = r.CheckBreak() } - if yyb2321 { + if yyb2344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30059,17 +30330,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2321++ - if yyhl2321 { - yyb2321 = yyj2321 > l + yyj2344++ + if yyhl2344 { + yyb2344 = yyj2344 > l } else { - yyb2321 = r.CheckBreak() + yyb2344 = r.CheckBreak() } - if yyb2321 { + if yyb2344 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2321-1, "") + z.DecStructFieldNotFound(yyj2344-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30081,36 +30352,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2324 := z.EncBinary() - _ = yym2324 + yym2347 := z.EncBinary() + _ = yym2347 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2325 := !z.EncBinary() - yy2arr2325 := z.EncBasicHandle().StructToArray - var yyq2325 [3]bool - _, _, _ = yysep2325, yyq2325, yy2arr2325 - const yyr2325 bool = false - yyq2325[0] = x.Name != "" - yyq2325[2] = x.Protocol != "" - var yynn2325 int - if yyr2325 || yy2arr2325 { + yysep2348 := !z.EncBinary() + yy2arr2348 := z.EncBasicHandle().StructToArray + var yyq2348 [3]bool + _, _, _ = yysep2348, yyq2348, yy2arr2348 + const yyr2348 bool = false + yyq2348[0] = x.Name != "" + yyq2348[2] = x.Protocol != "" + var yynn2348 int + if yyr2348 || yy2arr2348 { r.EncodeArrayStart(3) } else { - yynn2325 = 1 - for _, b := range yyq2325 { + yynn2348 = 1 + for _, b := range yyq2348 { if b { - yynn2325++ + yynn2348++ } } - r.EncodeMapStart(yynn2325) - yynn2325 = 0 + r.EncodeMapStart(yynn2348) + yynn2348 = 0 } - if yyr2325 || yy2arr2325 { + if yyr2348 || yy2arr2348 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2325[0] { - yym2327 := z.EncBinary() - _ = yym2327 + if yyq2348[0] { + yym2350 := z.EncBinary() + _ = yym2350 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -30119,22 +30390,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2325[0] { + if yyq2348[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2328 := z.EncBinary() - _ = yym2328 + yym2351 := z.EncBinary() + _ = yym2351 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2325 || yy2arr2325 { + if yyr2348 || yy2arr2348 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2330 := z.EncBinary() - _ = yym2330 + yym2353 := z.EncBinary() + _ = yym2353 if false { } else { r.EncodeInt(int64(x.Port)) @@ -30143,29 +30414,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2331 := z.EncBinary() - _ = yym2331 + yym2354 := z.EncBinary() + _ = yym2354 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2325 || yy2arr2325 { + if yyr2348 || yy2arr2348 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2325[2] { + if yyq2348[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2325[2] { + if yyq2348[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2325 || yy2arr2325 { + if yyr2348 || yy2arr2348 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30178,25 +30449,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2333 := z.DecBinary() - _ = yym2333 + yym2356 := z.DecBinary() + _ = yym2356 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2334 := r.ContainerType() - if yyct2334 == codecSelferValueTypeMap1234 { - yyl2334 := r.ReadMapStart() - if yyl2334 == 0 { + yyct2357 := r.ContainerType() + if yyct2357 == codecSelferValueTypeMap1234 { + yyl2357 := r.ReadMapStart() + if yyl2357 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2334, d) + x.codecDecodeSelfFromMap(yyl2357, d) } - } else if yyct2334 == codecSelferValueTypeArray1234 { - yyl2334 := r.ReadArrayStart() - if yyl2334 == 0 { + } else if yyct2357 == codecSelferValueTypeArray1234 { + yyl2357 := r.ReadArrayStart() + if yyl2357 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2334, d) + x.codecDecodeSelfFromArray(yyl2357, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30208,12 +30479,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2335Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2335Slc - var yyhl2335 bool = l >= 0 - for yyj2335 := 0; ; yyj2335++ { - if yyhl2335 { - if yyj2335 >= l { + var yys2358Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2358Slc + var yyhl2358 bool = l >= 0 + for yyj2358 := 0; ; yyj2358++ { + if yyhl2358 { + if yyj2358 >= l { break } } else { @@ -30222,10 +30493,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2335Slc = r.DecodeBytes(yys2335Slc, true, true) - yys2335 := string(yys2335Slc) + yys2358Slc = r.DecodeBytes(yys2358Slc, true, true) + yys2358 := string(yys2358Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2335 { + switch yys2358 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -30245,9 +30516,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2335) - } // end switch yys2335 - } // end for yyj2335 + z.DecStructFieldNotFound(-1, yys2358) + } // end switch yys2358 + } // end for yyj2358 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30255,16 +30526,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2339 int - var yyb2339 bool - var yyhl2339 bool = l >= 0 - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + var yyj2362 int + var yyb2362 bool + var yyhl2362 bool = l >= 0 + yyj2362++ + if yyhl2362 { + yyb2362 = yyj2362 > l } else { - yyb2339 = r.CheckBreak() + yyb2362 = r.CheckBreak() } - if yyb2339 { + if yyb2362 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30274,13 +30545,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + yyj2362++ + if yyhl2362 { + yyb2362 = yyj2362 > l } else { - yyb2339 = r.CheckBreak() + yyb2362 = r.CheckBreak() } - if yyb2339 { + if yyb2362 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30290,13 +30561,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + yyj2362++ + if yyhl2362 { + yyb2362 = yyj2362 > l } else { - yyb2339 = r.CheckBreak() + yyb2362 = r.CheckBreak() } - if yyb2339 { + if yyb2362 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30307,17 +30578,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + yyj2362++ + if yyhl2362 { + yyb2362 = yyj2362 > l } else { - yyb2339 = r.CheckBreak() + yyb2362 = r.CheckBreak() } - if yyb2339 { + if yyb2362 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2339-1, "") + z.DecStructFieldNotFound(yyj2362-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30329,37 +30600,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2343 := z.EncBinary() - _ = yym2343 + yym2366 := z.EncBinary() + _ = yym2366 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2344 := !z.EncBinary() - yy2arr2344 := z.EncBasicHandle().StructToArray - var yyq2344 [4]bool - _, _, _ = yysep2344, yyq2344, yy2arr2344 - const yyr2344 bool = false - yyq2344[0] = x.Kind != "" - yyq2344[1] = x.APIVersion != "" - yyq2344[2] = true - var yynn2344 int - if yyr2344 || yy2arr2344 { + yysep2367 := !z.EncBinary() + yy2arr2367 := z.EncBasicHandle().StructToArray + var yyq2367 [4]bool + _, _, _ = yysep2367, yyq2367, yy2arr2367 + const yyr2367 bool = false + yyq2367[0] = x.Kind != "" + yyq2367[1] = x.APIVersion != "" + yyq2367[2] = true + var yynn2367 int + if yyr2367 || yy2arr2367 { r.EncodeArrayStart(4) } else { - yynn2344 = 1 - for _, b := range yyq2344 { + yynn2367 = 1 + for _, b := range yyq2367 { if b { - yynn2344++ + yynn2367++ } } - r.EncodeMapStart(yynn2344) - yynn2344 = 0 + r.EncodeMapStart(yynn2367) + yynn2367 = 0 } - if yyr2344 || yy2arr2344 { + if yyr2367 || yy2arr2367 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2344[0] { - yym2346 := z.EncBinary() - _ = yym2346 + if yyq2367[0] { + yym2369 := z.EncBinary() + _ = yym2369 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30368,23 +30639,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2344[0] { + if yyq2367[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2347 := z.EncBinary() - _ = yym2347 + yym2370 := z.EncBinary() + _ = yym2370 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2344 || yy2arr2344 { + if yyr2367 || yy2arr2367 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2344[1] { - yym2349 := z.EncBinary() - _ = yym2349 + if yyq2367[1] { + yym2372 := z.EncBinary() + _ = yym2372 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30393,54 +30664,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2344[1] { + if yyq2367[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2350 := z.EncBinary() - _ = yym2350 + yym2373 := z.EncBinary() + _ = yym2373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2344 || yy2arr2344 { + if yyr2367 || yy2arr2367 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2344[2] { - yy2352 := &x.ListMeta - yym2353 := z.EncBinary() - _ = yym2353 + if yyq2367[2] { + yy2375 := &x.ListMeta + yym2376 := z.EncBinary() + _ = yym2376 if false { - } else if z.HasExtensions() && z.EncExt(yy2352) { + } else if z.HasExtensions() && z.EncExt(yy2375) { } else { - z.EncFallback(yy2352) + z.EncFallback(yy2375) } } else { r.EncodeNil() } } else { - if yyq2344[2] { + if yyq2367[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2354 := &x.ListMeta - yym2355 := z.EncBinary() - _ = yym2355 + yy2377 := &x.ListMeta + yym2378 := z.EncBinary() + _ = yym2378 if false { - } else if z.HasExtensions() && z.EncExt(yy2354) { + } else if z.HasExtensions() && z.EncExt(yy2377) { } else { - z.EncFallback(yy2354) + z.EncFallback(yy2377) } } } - if yyr2344 || yy2arr2344 { + if yyr2367 || yy2arr2367 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2357 := z.EncBinary() - _ = yym2357 + yym2380 := z.EncBinary() + _ = yym2380 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -30453,15 +30724,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2358 := z.EncBinary() - _ = yym2358 + yym2381 := z.EncBinary() + _ = yym2381 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2344 || yy2arr2344 { + if yyr2367 || yy2arr2367 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30474,25 +30745,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2359 := z.DecBinary() - _ = yym2359 + yym2382 := z.DecBinary() + _ = yym2382 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2360 := r.ContainerType() - if yyct2360 == codecSelferValueTypeMap1234 { - yyl2360 := r.ReadMapStart() - if yyl2360 == 0 { + yyct2383 := r.ContainerType() + if yyct2383 == codecSelferValueTypeMap1234 { + yyl2383 := r.ReadMapStart() + if yyl2383 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2360, d) + x.codecDecodeSelfFromMap(yyl2383, d) } - } else if yyct2360 == codecSelferValueTypeArray1234 { - yyl2360 := r.ReadArrayStart() - if yyl2360 == 0 { + } else if yyct2383 == codecSelferValueTypeArray1234 { + yyl2383 := r.ReadArrayStart() + if yyl2383 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2360, d) + x.codecDecodeSelfFromArray(yyl2383, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30504,12 +30775,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2361Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2361Slc - var yyhl2361 bool = l >= 0 - for yyj2361 := 0; ; yyj2361++ { - if yyhl2361 { - if yyj2361 >= l { + var yys2384Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2384Slc + var yyhl2384 bool = l >= 0 + for yyj2384 := 0; ; yyj2384++ { + if yyhl2384 { + if yyj2384 >= l { break } } else { @@ -30518,10 +30789,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2361Slc = r.DecodeBytes(yys2361Slc, true, true) - yys2361 := string(yys2361Slc) + yys2384Slc = r.DecodeBytes(yys2384Slc, true, true) + yys2384 := string(yys2384Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2361 { + switch yys2384 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30538,31 +30809,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2364 := &x.ListMeta - yym2365 := z.DecBinary() - _ = yym2365 + yyv2387 := &x.ListMeta + yym2388 := z.DecBinary() + _ = yym2388 if false { - } else if z.HasExtensions() && z.DecExt(yyv2364) { + } else if z.HasExtensions() && z.DecExt(yyv2387) { } else { - z.DecFallback(yyv2364, false) + z.DecFallback(yyv2387, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2366 := &x.Items - yym2367 := z.DecBinary() - _ = yym2367 + yyv2389 := &x.Items + yym2390 := z.DecBinary() + _ = yym2390 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2366), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2389), d) } } default: - z.DecStructFieldNotFound(-1, yys2361) - } // end switch yys2361 - } // end for yyj2361 + z.DecStructFieldNotFound(-1, yys2384) + } // end switch yys2384 + } // end for yyj2384 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30570,16 +30841,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2368 int - var yyb2368 bool - var yyhl2368 bool = l >= 0 - yyj2368++ - if yyhl2368 { - yyb2368 = yyj2368 > l + var yyj2391 int + var yyb2391 bool + var yyhl2391 bool = l >= 0 + yyj2391++ + if yyhl2391 { + yyb2391 = yyj2391 > l } else { - yyb2368 = r.CheckBreak() + yyb2391 = r.CheckBreak() } - if yyb2368 { + if yyb2391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30589,13 +30860,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2368++ - if yyhl2368 { - yyb2368 = yyj2368 > l + yyj2391++ + if yyhl2391 { + yyb2391 = yyj2391 > l } else { - yyb2368 = r.CheckBreak() + yyb2391 = r.CheckBreak() } - if yyb2368 { + if yyb2391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30605,13 +30876,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2368++ - if yyhl2368 { - yyb2368 = yyj2368 > l + yyj2391++ + if yyhl2391 { + yyb2391 = yyj2391 > l } else { - yyb2368 = r.CheckBreak() + yyb2391 = r.CheckBreak() } - if yyb2368 { + if yyb2391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30619,22 +30890,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2371 := &x.ListMeta - yym2372 := z.DecBinary() - _ = yym2372 + yyv2394 := &x.ListMeta + yym2395 := z.DecBinary() + _ = yym2395 if false { - } else if z.HasExtensions() && z.DecExt(yyv2371) { + } else if z.HasExtensions() && z.DecExt(yyv2394) { } else { - z.DecFallback(yyv2371, false) + z.DecFallback(yyv2394, false) } } - yyj2368++ - if yyhl2368 { - yyb2368 = yyj2368 > l + yyj2391++ + if yyhl2391 { + yyb2391 = yyj2391 > l } else { - yyb2368 = r.CheckBreak() + yyb2391 = r.CheckBreak() } - if yyb2368 { + if yyb2391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30642,26 +30913,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2373 := &x.Items - yym2374 := z.DecBinary() - _ = yym2374 + yyv2396 := &x.Items + yym2397 := z.DecBinary() + _ = yym2397 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2373), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2396), d) } } for { - yyj2368++ - if yyhl2368 { - yyb2368 = yyj2368 > l + yyj2391++ + if yyhl2391 { + yyb2391 = yyj2391 > l } else { - yyb2368 = r.CheckBreak() + yyb2391 = r.CheckBreak() } - if yyb2368 { + if yyb2391 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2368-1, "") + z.DecStructFieldNotFound(yyj2391-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30673,38 +30944,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2375 := z.EncBinary() - _ = yym2375 + yym2398 := z.EncBinary() + _ = yym2398 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2376 := !z.EncBinary() - yy2arr2376 := z.EncBasicHandle().StructToArray - var yyq2376 [4]bool - _, _, _ = yysep2376, yyq2376, yy2arr2376 - const yyr2376 bool = false - yyq2376[0] = x.PodCIDR != "" - yyq2376[1] = x.ExternalID != "" - yyq2376[2] = x.ProviderID != "" - yyq2376[3] = x.Unschedulable != false - var yynn2376 int - if yyr2376 || yy2arr2376 { + yysep2399 := !z.EncBinary() + yy2arr2399 := z.EncBasicHandle().StructToArray + var yyq2399 [4]bool + _, _, _ = yysep2399, yyq2399, yy2arr2399 + const yyr2399 bool = false + yyq2399[0] = x.PodCIDR != "" + yyq2399[1] = x.ExternalID != "" + yyq2399[2] = x.ProviderID != "" + yyq2399[3] = x.Unschedulable != false + var yynn2399 int + if yyr2399 || yy2arr2399 { r.EncodeArrayStart(4) } else { - yynn2376 = 0 - for _, b := range yyq2376 { + yynn2399 = 0 + for _, b := range yyq2399 { if b { - yynn2376++ + yynn2399++ } } - r.EncodeMapStart(yynn2376) - yynn2376 = 0 + r.EncodeMapStart(yynn2399) + yynn2399 = 0 } - if yyr2376 || yy2arr2376 { + if yyr2399 || yy2arr2399 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2376[0] { - yym2378 := z.EncBinary() - _ = yym2378 + if yyq2399[0] { + yym2401 := z.EncBinary() + _ = yym2401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -30713,23 +30984,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2376[0] { + if yyq2399[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2379 := z.EncBinary() - _ = yym2379 + yym2402 := z.EncBinary() + _ = yym2402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2376 || yy2arr2376 { + if yyr2399 || yy2arr2399 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2376[1] { - yym2381 := z.EncBinary() - _ = yym2381 + if yyq2399[1] { + yym2404 := z.EncBinary() + _ = yym2404 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -30738,23 +31009,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2376[1] { + if yyq2399[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2382 := z.EncBinary() - _ = yym2382 + yym2405 := z.EncBinary() + _ = yym2405 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2376 || yy2arr2376 { + if yyr2399 || yy2arr2399 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2376[2] { - yym2384 := z.EncBinary() - _ = yym2384 + if yyq2399[2] { + yym2407 := z.EncBinary() + _ = yym2407 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -30763,23 +31034,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2376[2] { + if yyq2399[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2385 := z.EncBinary() - _ = yym2385 + yym2408 := z.EncBinary() + _ = yym2408 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2376 || yy2arr2376 { + if yyr2399 || yy2arr2399 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2376[3] { - yym2387 := z.EncBinary() - _ = yym2387 + if yyq2399[3] { + yym2410 := z.EncBinary() + _ = yym2410 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -30788,19 +31059,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2376[3] { + if yyq2399[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2388 := z.EncBinary() - _ = yym2388 + yym2411 := z.EncBinary() + _ = yym2411 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2376 || yy2arr2376 { + if yyr2399 || yy2arr2399 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30813,25 +31084,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2389 := z.DecBinary() - _ = yym2389 + yym2412 := z.DecBinary() + _ = yym2412 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2390 := r.ContainerType() - if yyct2390 == codecSelferValueTypeMap1234 { - yyl2390 := r.ReadMapStart() - if yyl2390 == 0 { + yyct2413 := r.ContainerType() + if yyct2413 == codecSelferValueTypeMap1234 { + yyl2413 := r.ReadMapStart() + if yyl2413 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2390, d) + x.codecDecodeSelfFromMap(yyl2413, d) } - } else if yyct2390 == codecSelferValueTypeArray1234 { - yyl2390 := r.ReadArrayStart() - if yyl2390 == 0 { + } else if yyct2413 == codecSelferValueTypeArray1234 { + yyl2413 := r.ReadArrayStart() + if yyl2413 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2390, d) + x.codecDecodeSelfFromArray(yyl2413, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30843,12 +31114,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2391Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2391Slc - var yyhl2391 bool = l >= 0 - for yyj2391 := 0; ; yyj2391++ { - if yyhl2391 { - if yyj2391 >= l { + var yys2414Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2414Slc + var yyhl2414 bool = l >= 0 + for yyj2414 := 0; ; yyj2414++ { + if yyhl2414 { + if yyj2414 >= l { break } } else { @@ -30857,10 +31128,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2391Slc = r.DecodeBytes(yys2391Slc, true, true) - yys2391 := string(yys2391Slc) + yys2414Slc = r.DecodeBytes(yys2414Slc, true, true) + yys2414 := string(yys2414Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2391 { + switch yys2414 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -30886,9 +31157,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2391) - } // end switch yys2391 - } // end for yyj2391 + z.DecStructFieldNotFound(-1, yys2414) + } // end switch yys2414 + } // end for yyj2414 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30896,16 +31167,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2396 int - var yyb2396 bool - var yyhl2396 bool = l >= 0 - yyj2396++ - if yyhl2396 { - yyb2396 = yyj2396 > l + var yyj2419 int + var yyb2419 bool + var yyhl2419 bool = l >= 0 + yyj2419++ + if yyhl2419 { + yyb2419 = yyj2419 > l } else { - yyb2396 = r.CheckBreak() + yyb2419 = r.CheckBreak() } - if yyb2396 { + if yyb2419 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30915,13 +31186,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2396++ - if yyhl2396 { - yyb2396 = yyj2396 > l + yyj2419++ + if yyhl2419 { + yyb2419 = yyj2419 > l } else { - yyb2396 = r.CheckBreak() + yyb2419 = r.CheckBreak() } - if yyb2396 { + if yyb2419 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30931,13 +31202,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2396++ - if yyhl2396 { - yyb2396 = yyj2396 > l + yyj2419++ + if yyhl2419 { + yyb2419 = yyj2419 > l } else { - yyb2396 = r.CheckBreak() + yyb2419 = r.CheckBreak() } - if yyb2396 { + if yyb2419 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30947,13 +31218,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2396++ - if yyhl2396 { - yyb2396 = yyj2396 > l + yyj2419++ + if yyhl2419 { + yyb2419 = yyj2419 > l } else { - yyb2396 = r.CheckBreak() + yyb2419 = r.CheckBreak() } - if yyb2396 { + if yyb2419 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30964,17 +31235,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2396++ - if yyhl2396 { - yyb2396 = yyj2396 > l + yyj2419++ + if yyhl2419 { + yyb2419 = yyj2419 > l } else { - yyb2396 = r.CheckBreak() + yyb2419 = r.CheckBreak() } - if yyb2396 { + if yyb2419 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2396-1, "") + z.DecStructFieldNotFound(yyj2419-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30986,33 +31257,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2401 := z.EncBinary() - _ = yym2401 + yym2424 := z.EncBinary() + _ = yym2424 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2402 := !z.EncBinary() - yy2arr2402 := z.EncBasicHandle().StructToArray - var yyq2402 [1]bool - _, _, _ = yysep2402, yyq2402, yy2arr2402 - const yyr2402 bool = false - var yynn2402 int - if yyr2402 || yy2arr2402 { + yysep2425 := !z.EncBinary() + yy2arr2425 := z.EncBasicHandle().StructToArray + var yyq2425 [1]bool + _, _, _ = yysep2425, yyq2425, yy2arr2425 + const yyr2425 bool = false + var yynn2425 int + if yyr2425 || yy2arr2425 { r.EncodeArrayStart(1) } else { - yynn2402 = 1 - for _, b := range yyq2402 { + yynn2425 = 1 + for _, b := range yyq2425 { if b { - yynn2402++ + yynn2425++ } } - r.EncodeMapStart(yynn2402) - yynn2402 = 0 + r.EncodeMapStart(yynn2425) + yynn2425 = 0 } - if yyr2402 || yy2arr2402 { + if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2404 := z.EncBinary() - _ = yym2404 + yym2427 := z.EncBinary() + _ = yym2427 if false { } else { r.EncodeInt(int64(x.Port)) @@ -31021,14 +31292,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2405 := z.EncBinary() - _ = yym2405 + yym2428 := z.EncBinary() + _ = yym2428 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2402 || yy2arr2402 { + if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31041,25 +31312,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2406 := z.DecBinary() - _ = yym2406 + yym2429 := z.DecBinary() + _ = yym2429 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2407 := r.ContainerType() - if yyct2407 == codecSelferValueTypeMap1234 { - yyl2407 := r.ReadMapStart() - if yyl2407 == 0 { + yyct2430 := r.ContainerType() + if yyct2430 == codecSelferValueTypeMap1234 { + yyl2430 := r.ReadMapStart() + if yyl2430 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2407, d) + x.codecDecodeSelfFromMap(yyl2430, d) } - } else if yyct2407 == codecSelferValueTypeArray1234 { - yyl2407 := r.ReadArrayStart() - if yyl2407 == 0 { + } else if yyct2430 == codecSelferValueTypeArray1234 { + yyl2430 := r.ReadArrayStart() + if yyl2430 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2407, d) + x.codecDecodeSelfFromArray(yyl2430, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31071,12 +31342,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2408Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2408Slc - var yyhl2408 bool = l >= 0 - for yyj2408 := 0; ; yyj2408++ { - if yyhl2408 { - if yyj2408 >= l { + var yys2431Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2431Slc + var yyhl2431 bool = l >= 0 + for yyj2431 := 0; ; yyj2431++ { + if yyhl2431 { + if yyj2431 >= l { break } } else { @@ -31085,10 +31356,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2408Slc = r.DecodeBytes(yys2408Slc, true, true) - yys2408 := string(yys2408Slc) + yys2431Slc = r.DecodeBytes(yys2431Slc, true, true) + yys2431 := string(yys2431Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2408 { + switch yys2431 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -31096,9 +31367,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2408) - } // end switch yys2408 - } // end for yyj2408 + z.DecStructFieldNotFound(-1, yys2431) + } // end switch yys2431 + } // end for yyj2431 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31106,16 +31377,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2410 int - var yyb2410 bool - var yyhl2410 bool = l >= 0 - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + var yyj2433 int + var yyb2433 bool + var yyhl2433 bool = l >= 0 + yyj2433++ + if yyhl2433 { + yyb2433 = yyj2433 > l } else { - yyb2410 = r.CheckBreak() + yyb2433 = r.CheckBreak() } - if yyb2410 { + if yyb2433 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31126,17 +31397,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2433++ + if yyhl2433 { + yyb2433 = yyj2433 > l } else { - yyb2410 = r.CheckBreak() + yyb2433 = r.CheckBreak() } - if yyb2410 { + if yyb2433 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2410-1, "") + z.DecStructFieldNotFound(yyj2433-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31148,48 +31419,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2412 := z.EncBinary() - _ = yym2412 + yym2435 := z.EncBinary() + _ = yym2435 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2413 := !z.EncBinary() - yy2arr2413 := z.EncBasicHandle().StructToArray - var yyq2413 [1]bool - _, _, _ = yysep2413, yyq2413, yy2arr2413 - const yyr2413 bool = false - yyq2413[0] = true - var yynn2413 int - if yyr2413 || yy2arr2413 { + yysep2436 := !z.EncBinary() + yy2arr2436 := z.EncBasicHandle().StructToArray + var yyq2436 [1]bool + _, _, _ = yysep2436, yyq2436, yy2arr2436 + const yyr2436 bool = false + yyq2436[0] = true + var yynn2436 int + if yyr2436 || yy2arr2436 { r.EncodeArrayStart(1) } else { - yynn2413 = 0 - for _, b := range yyq2413 { + yynn2436 = 0 + for _, b := range yyq2436 { if b { - yynn2413++ + yynn2436++ } } - r.EncodeMapStart(yynn2413) - yynn2413 = 0 + r.EncodeMapStart(yynn2436) + yynn2436 = 0 } - if yyr2413 || yy2arr2413 { + if yyr2436 || yy2arr2436 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2413[0] { - yy2415 := &x.KubeletEndpoint - yy2415.CodecEncodeSelf(e) + if yyq2436[0] { + yy2438 := &x.KubeletEndpoint + yy2438.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2413[0] { + if yyq2436[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2416 := &x.KubeletEndpoint - yy2416.CodecEncodeSelf(e) + yy2439 := &x.KubeletEndpoint + yy2439.CodecEncodeSelf(e) } } - if yyr2413 || yy2arr2413 { + if yyr2436 || yy2arr2436 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31202,25 +31473,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2417 := z.DecBinary() - _ = yym2417 + yym2440 := z.DecBinary() + _ = yym2440 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2418 := r.ContainerType() - if yyct2418 == codecSelferValueTypeMap1234 { - yyl2418 := r.ReadMapStart() - if yyl2418 == 0 { + yyct2441 := r.ContainerType() + if yyct2441 == codecSelferValueTypeMap1234 { + yyl2441 := r.ReadMapStart() + if yyl2441 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2418, d) + x.codecDecodeSelfFromMap(yyl2441, d) } - } else if yyct2418 == codecSelferValueTypeArray1234 { - yyl2418 := r.ReadArrayStart() - if yyl2418 == 0 { + } else if yyct2441 == codecSelferValueTypeArray1234 { + yyl2441 := r.ReadArrayStart() + if yyl2441 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2418, d) + x.codecDecodeSelfFromArray(yyl2441, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31232,12 +31503,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2419Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2419Slc - var yyhl2419 bool = l >= 0 - for yyj2419 := 0; ; yyj2419++ { - if yyhl2419 { - if yyj2419 >= l { + var yys2442Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2442Slc + var yyhl2442 bool = l >= 0 + for yyj2442 := 0; ; yyj2442++ { + if yyhl2442 { + if yyj2442 >= l { break } } else { @@ -31246,21 +31517,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2419Slc = r.DecodeBytes(yys2419Slc, true, true) - yys2419 := string(yys2419Slc) + yys2442Slc = r.DecodeBytes(yys2442Slc, true, true) + yys2442 := string(yys2442Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2419 { + switch yys2442 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2420 := &x.KubeletEndpoint - yyv2420.CodecDecodeSelf(d) + yyv2443 := &x.KubeletEndpoint + yyv2443.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2419) - } // end switch yys2419 - } // end for yyj2419 + z.DecStructFieldNotFound(-1, yys2442) + } // end switch yys2442 + } // end for yyj2442 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31268,16 +31539,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2421 int - var yyb2421 bool - var yyhl2421 bool = l >= 0 - yyj2421++ - if yyhl2421 { - yyb2421 = yyj2421 > l + var yyj2444 int + var yyb2444 bool + var yyhl2444 bool = l >= 0 + yyj2444++ + if yyhl2444 { + yyb2444 = yyj2444 > l } else { - yyb2421 = r.CheckBreak() + yyb2444 = r.CheckBreak() } - if yyb2421 { + if yyb2444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31285,21 +31556,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2422 := &x.KubeletEndpoint - yyv2422.CodecDecodeSelf(d) + yyv2445 := &x.KubeletEndpoint + yyv2445.CodecDecodeSelf(d) } for { - yyj2421++ - if yyhl2421 { - yyb2421 = yyj2421 > l + yyj2444++ + if yyhl2444 { + yyb2444 = yyj2444 > l } else { - yyb2421 = r.CheckBreak() + yyb2444 = r.CheckBreak() } - if yyb2421 { + if yyb2444 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2421-1, "") + z.DecStructFieldNotFound(yyj2444-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31311,33 +31582,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2423 := z.EncBinary() - _ = yym2423 + yym2446 := z.EncBinary() + _ = yym2446 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2424 := !z.EncBinary() - yy2arr2424 := z.EncBasicHandle().StructToArray - var yyq2424 [8]bool - _, _, _ = yysep2424, yyq2424, yy2arr2424 - const yyr2424 bool = false - var yynn2424 int - if yyr2424 || yy2arr2424 { + yysep2447 := !z.EncBinary() + yy2arr2447 := z.EncBasicHandle().StructToArray + var yyq2447 [8]bool + _, _, _ = yysep2447, yyq2447, yy2arr2447 + const yyr2447 bool = false + var yynn2447 int + if yyr2447 || yy2arr2447 { r.EncodeArrayStart(8) } else { - yynn2424 = 8 - for _, b := range yyq2424 { + yynn2447 = 8 + for _, b := range yyq2447 { if b { - yynn2424++ + yynn2447++ } } - r.EncodeMapStart(yynn2424) - yynn2424 = 0 + r.EncodeMapStart(yynn2447) + yynn2447 = 0 } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2426 := z.EncBinary() - _ = yym2426 + yym2449 := z.EncBinary() + _ = yym2449 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -31346,17 +31617,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2427 := z.EncBinary() - _ = yym2427 + yym2450 := z.EncBinary() + _ = yym2450 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2429 := z.EncBinary() - _ = yym2429 + yym2452 := z.EncBinary() + _ = yym2452 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -31365,17 +31636,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2430 := z.EncBinary() - _ = yym2430 + yym2453 := z.EncBinary() + _ = yym2453 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2432 := z.EncBinary() - _ = yym2432 + yym2455 := z.EncBinary() + _ = yym2455 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -31384,17 +31655,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2433 := z.EncBinary() - _ = yym2433 + yym2456 := z.EncBinary() + _ = yym2456 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2435 := z.EncBinary() - _ = yym2435 + yym2458 := z.EncBinary() + _ = yym2458 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -31403,17 +31674,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2436 := z.EncBinary() - _ = yym2436 + yym2459 := z.EncBinary() + _ = yym2459 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2438 := z.EncBinary() - _ = yym2438 + yym2461 := z.EncBinary() + _ = yym2461 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -31422,17 +31693,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2439 := z.EncBinary() - _ = yym2439 + yym2462 := z.EncBinary() + _ = yym2462 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2441 := z.EncBinary() - _ = yym2441 + yym2464 := z.EncBinary() + _ = yym2464 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -31441,17 +31712,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2442 := z.EncBinary() - _ = yym2442 + yym2465 := z.EncBinary() + _ = yym2465 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2444 := z.EncBinary() - _ = yym2444 + yym2467 := z.EncBinary() + _ = yym2467 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -31460,17 +31731,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2445 := z.EncBinary() - _ = yym2445 + yym2468 := z.EncBinary() + _ = yym2468 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2447 := z.EncBinary() - _ = yym2447 + yym2470 := z.EncBinary() + _ = yym2470 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -31479,14 +31750,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2448 := z.EncBinary() - _ = yym2448 + yym2471 := z.EncBinary() + _ = yym2471 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2424 || yy2arr2424 { + if yyr2447 || yy2arr2447 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31499,25 +31770,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2449 := z.DecBinary() - _ = yym2449 + yym2472 := z.DecBinary() + _ = yym2472 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2450 := r.ContainerType() - if yyct2450 == codecSelferValueTypeMap1234 { - yyl2450 := r.ReadMapStart() - if yyl2450 == 0 { + yyct2473 := r.ContainerType() + if yyct2473 == codecSelferValueTypeMap1234 { + yyl2473 := r.ReadMapStart() + if yyl2473 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2450, d) + x.codecDecodeSelfFromMap(yyl2473, d) } - } else if yyct2450 == codecSelferValueTypeArray1234 { - yyl2450 := r.ReadArrayStart() - if yyl2450 == 0 { + } else if yyct2473 == codecSelferValueTypeArray1234 { + yyl2473 := r.ReadArrayStart() + if yyl2473 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2450, d) + x.codecDecodeSelfFromArray(yyl2473, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31529,12 +31800,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2451Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2451Slc - var yyhl2451 bool = l >= 0 - for yyj2451 := 0; ; yyj2451++ { - if yyhl2451 { - if yyj2451 >= l { + var yys2474Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2474Slc + var yyhl2474 bool = l >= 0 + for yyj2474 := 0; ; yyj2474++ { + if yyhl2474 { + if yyj2474 >= l { break } } else { @@ -31543,10 +31814,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2451Slc = r.DecodeBytes(yys2451Slc, true, true) - yys2451 := string(yys2451Slc) + yys2474Slc = r.DecodeBytes(yys2474Slc, true, true) + yys2474 := string(yys2474Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2451 { + switch yys2474 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -31596,9 +31867,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2451) - } // end switch yys2451 - } // end for yyj2451 + z.DecStructFieldNotFound(-1, yys2474) + } // end switch yys2474 + } // end for yyj2474 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31606,16 +31877,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2460 int - var yyb2460 bool - var yyhl2460 bool = l >= 0 - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + var yyj2483 int + var yyb2483 bool + var yyhl2483 bool = l >= 0 + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31625,13 +31896,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31641,13 +31912,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31657,13 +31928,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31673,13 +31944,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31689,13 +31960,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31705,13 +31976,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31721,13 +31992,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31738,17 +32009,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } for { - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2460 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2460 { + if yyb2483 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2460-1, "") + z.DecStructFieldNotFound(yyj2483-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31760,39 +32031,39 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2469 := z.EncBinary() - _ = yym2469 + yym2492 := z.EncBinary() + _ = yym2492 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2470 := !z.EncBinary() - yy2arr2470 := z.EncBasicHandle().StructToArray - var yyq2470 [8]bool - _, _, _ = yysep2470, yyq2470, yy2arr2470 - const yyr2470 bool = false - yyq2470[0] = len(x.Capacity) != 0 - yyq2470[1] = len(x.Allocatable) != 0 - yyq2470[2] = x.Phase != "" - yyq2470[3] = len(x.Conditions) != 0 - yyq2470[4] = len(x.Addresses) != 0 - yyq2470[5] = true - yyq2470[6] = true - var yynn2470 int - if yyr2470 || yy2arr2470 { + yysep2493 := !z.EncBinary() + yy2arr2493 := z.EncBasicHandle().StructToArray + var yyq2493 [8]bool + _, _, _ = yysep2493, yyq2493, yy2arr2493 + const yyr2493 bool = false + yyq2493[0] = len(x.Capacity) != 0 + yyq2493[1] = len(x.Allocatable) != 0 + yyq2493[2] = x.Phase != "" + yyq2493[3] = len(x.Conditions) != 0 + yyq2493[4] = len(x.Addresses) != 0 + yyq2493[5] = true + yyq2493[6] = true + var yynn2493 int + if yyr2493 || yy2arr2493 { r.EncodeArrayStart(8) } else { - yynn2470 = 1 - for _, b := range yyq2470 { + yynn2493 = 1 + for _, b := range yyq2493 { if b { - yynn2470++ + yynn2493++ } } - r.EncodeMapStart(yynn2470) - yynn2470 = 0 + r.EncodeMapStart(yynn2493) + yynn2493 = 0 } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[0] { + if yyq2493[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -31802,7 +32073,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2470[0] { + if yyq2493[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -31813,9 +32084,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[1] { + if yyq2493[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -31825,7 +32096,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2470[1] { + if yyq2493[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -31836,29 +32107,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[2] { + if yyq2493[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2470[2] { + if yyq2493[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[3] { + if yyq2493[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2475 := z.EncBinary() - _ = yym2475 + yym2498 := z.EncBinary() + _ = yym2498 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -31868,15 +32139,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2470[3] { + if yyq2493[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2476 := z.EncBinary() - _ = yym2476 + yym2499 := z.EncBinary() + _ = yym2499 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -31884,14 +32155,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[4] { + if yyq2493[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2478 := z.EncBinary() - _ = yym2478 + yym2501 := z.EncBinary() + _ = yym2501 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -31901,15 +32172,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2470[4] { + if yyq2493[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2479 := z.EncBinary() - _ = yym2479 + yym2502 := z.EncBinary() + _ = yym2502 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -31917,47 +32188,47 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[5] { - yy2481 := &x.DaemonEndpoints - yy2481.CodecEncodeSelf(e) + if yyq2493[5] { + yy2504 := &x.DaemonEndpoints + yy2504.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2470[5] { + if yyq2493[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2482 := &x.DaemonEndpoints - yy2482.CodecEncodeSelf(e) + yy2505 := &x.DaemonEndpoints + yy2505.CodecEncodeSelf(e) } } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[6] { - yy2484 := &x.NodeInfo - yy2484.CodecEncodeSelf(e) + if yyq2493[6] { + yy2507 := &x.NodeInfo + yy2507.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2470[6] { + if yyq2493[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2485 := &x.NodeInfo - yy2485.CodecEncodeSelf(e) + yy2508 := &x.NodeInfo + yy2508.CodecEncodeSelf(e) } } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Images == nil { r.EncodeNil() } else { - yym2487 := z.EncBinary() - _ = yym2487 + yym2510 := z.EncBinary() + _ = yym2510 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -31970,15 +32241,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x.Images == nil { r.EncodeNil() } else { - yym2488 := z.EncBinary() - _ = yym2488 + yym2511 := z.EncBinary() + _ = yym2511 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) } } } - if yyr2470 || yy2arr2470 { + if yyr2493 || yy2arr2493 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31991,25 +32262,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2489 := z.DecBinary() - _ = yym2489 + yym2512 := z.DecBinary() + _ = yym2512 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2490 := r.ContainerType() - if yyct2490 == codecSelferValueTypeMap1234 { - yyl2490 := r.ReadMapStart() - if yyl2490 == 0 { + yyct2513 := r.ContainerType() + if yyct2513 == codecSelferValueTypeMap1234 { + yyl2513 := r.ReadMapStart() + if yyl2513 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2490, d) + x.codecDecodeSelfFromMap(yyl2513, d) } - } else if yyct2490 == codecSelferValueTypeArray1234 { - yyl2490 := r.ReadArrayStart() - if yyl2490 == 0 { + } else if yyct2513 == codecSelferValueTypeArray1234 { + yyl2513 := r.ReadArrayStart() + if yyl2513 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2490, d) + x.codecDecodeSelfFromArray(yyl2513, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32021,12 +32292,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2491Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2491Slc - var yyhl2491 bool = l >= 0 - for yyj2491 := 0; ; yyj2491++ { - if yyhl2491 { - if yyj2491 >= l { + var yys2514Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2514Slc + var yyhl2514 bool = l >= 0 + for yyj2514 := 0; ; yyj2514++ { + if yyhl2514 { + if yyj2514 >= l { break } } else { @@ -32035,23 +32306,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2491Slc = r.DecodeBytes(yys2491Slc, true, true) - yys2491 := string(yys2491Slc) + yys2514Slc = r.DecodeBytes(yys2514Slc, true, true) + yys2514 := string(yys2514Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2491 { + switch yys2514 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2492 := &x.Capacity - yyv2492.CodecDecodeSelf(d) + yyv2515 := &x.Capacity + yyv2515.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2493 := &x.Allocatable - yyv2493.CodecDecodeSelf(d) + yyv2516 := &x.Allocatable + yyv2516.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -32063,56 +32334,56 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2495 := &x.Conditions - yym2496 := z.DecBinary() - _ = yym2496 + yyv2518 := &x.Conditions + yym2519 := z.DecBinary() + _ = yym2519 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2495), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2518), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2497 := &x.Addresses - yym2498 := z.DecBinary() - _ = yym2498 + yyv2520 := &x.Addresses + yym2521 := z.DecBinary() + _ = yym2521 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2497), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2520), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2499 := &x.DaemonEndpoints - yyv2499.CodecDecodeSelf(d) + yyv2522 := &x.DaemonEndpoints + yyv2522.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2500 := &x.NodeInfo - yyv2500.CodecDecodeSelf(d) + yyv2523 := &x.NodeInfo + yyv2523.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2501 := &x.Images - yym2502 := z.DecBinary() - _ = yym2502 + yyv2524 := &x.Images + yym2525 := z.DecBinary() + _ = yym2525 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2501), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2524), d) } } default: - z.DecStructFieldNotFound(-1, yys2491) - } // end switch yys2491 - } // end for yyj2491 + z.DecStructFieldNotFound(-1, yys2514) + } // end switch yys2514 + } // end for yyj2514 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32120,16 +32391,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2503 int - var yyb2503 bool - var yyhl2503 bool = l >= 0 - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + var yyj2526 int + var yyb2526 bool + var yyhl2526 bool = l >= 0 + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32137,16 +32408,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2504 := &x.Capacity - yyv2504.CodecDecodeSelf(d) + yyv2527 := &x.Capacity + yyv2527.CodecDecodeSelf(d) } - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32154,16 +32425,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2505 := &x.Allocatable - yyv2505.CodecDecodeSelf(d) + yyv2528 := &x.Allocatable + yyv2528.CodecDecodeSelf(d) } - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32173,13 +32444,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32187,21 +32458,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2507 := &x.Conditions - yym2508 := z.DecBinary() - _ = yym2508 + yyv2530 := &x.Conditions + yym2531 := z.DecBinary() + _ = yym2531 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2507), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2530), d) } } - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32209,21 +32480,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2509 := &x.Addresses - yym2510 := z.DecBinary() - _ = yym2510 + yyv2532 := &x.Addresses + yym2533 := z.DecBinary() + _ = yym2533 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2509), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2532), d) } } - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32231,16 +32502,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2511 := &x.DaemonEndpoints - yyv2511.CodecDecodeSelf(d) + yyv2534 := &x.DaemonEndpoints + yyv2534.CodecDecodeSelf(d) } - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32248,16 +32519,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2512 := &x.NodeInfo - yyv2512.CodecDecodeSelf(d) + yyv2535 := &x.NodeInfo + yyv2535.CodecDecodeSelf(d) } - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32265,26 +32536,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2513 := &x.Images - yym2514 := z.DecBinary() - _ = yym2514 + yyv2536 := &x.Images + yym2537 := z.DecBinary() + _ = yym2537 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2513), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2536), d) } } for { - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2503 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2503 { + if yyb2526 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2503-1, "") + z.DecStructFieldNotFound(yyj2526-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32296,37 +32567,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2515 := z.EncBinary() - _ = yym2515 + yym2538 := z.EncBinary() + _ = yym2538 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2516 := !z.EncBinary() - yy2arr2516 := z.EncBasicHandle().StructToArray - var yyq2516 [2]bool - _, _, _ = yysep2516, yyq2516, yy2arr2516 - const yyr2516 bool = false - yyq2516[1] = x.Size != 0 - var yynn2516 int - if yyr2516 || yy2arr2516 { + yysep2539 := !z.EncBinary() + yy2arr2539 := z.EncBasicHandle().StructToArray + var yyq2539 [2]bool + _, _, _ = yysep2539, yyq2539, yy2arr2539 + const yyr2539 bool = false + yyq2539[1] = x.Size != 0 + var yynn2539 int + if yyr2539 || yy2arr2539 { r.EncodeArrayStart(2) } else { - yynn2516 = 1 - for _, b := range yyq2516 { + yynn2539 = 1 + for _, b := range yyq2539 { if b { - yynn2516++ + yynn2539++ } } - r.EncodeMapStart(yynn2516) - yynn2516 = 0 + r.EncodeMapStart(yynn2539) + yynn2539 = 0 } - if yyr2516 || yy2arr2516 { + if yyr2539 || yy2arr2539 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.RepoTags == nil { r.EncodeNil() } else { - yym2518 := z.EncBinary() - _ = yym2518 + yym2541 := z.EncBinary() + _ = yym2541 if false { } else { z.F.EncSliceStringV(x.RepoTags, false, e) @@ -32339,19 +32610,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.RepoTags == nil { r.EncodeNil() } else { - yym2519 := z.EncBinary() - _ = yym2519 + yym2542 := z.EncBinary() + _ = yym2542 if false { } else { z.F.EncSliceStringV(x.RepoTags, false, e) } } } - if yyr2516 || yy2arr2516 { + if yyr2539 || yy2arr2539 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2516[1] { - yym2521 := z.EncBinary() - _ = yym2521 + if yyq2539[1] { + yym2544 := z.EncBinary() + _ = yym2544 if false { } else { r.EncodeInt(int64(x.Size)) @@ -32360,19 +32631,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2516[1] { + if yyq2539[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("size")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2522 := z.EncBinary() - _ = yym2522 + yym2545 := z.EncBinary() + _ = yym2545 if false { } else { r.EncodeInt(int64(x.Size)) } } } - if yyr2516 || yy2arr2516 { + if yyr2539 || yy2arr2539 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32385,25 +32656,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2523 := z.DecBinary() - _ = yym2523 + yym2546 := z.DecBinary() + _ = yym2546 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2524 := r.ContainerType() - if yyct2524 == codecSelferValueTypeMap1234 { - yyl2524 := r.ReadMapStart() - if yyl2524 == 0 { + yyct2547 := r.ContainerType() + if yyct2547 == codecSelferValueTypeMap1234 { + yyl2547 := r.ReadMapStart() + if yyl2547 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2524, d) + x.codecDecodeSelfFromMap(yyl2547, d) } - } else if yyct2524 == codecSelferValueTypeArray1234 { - yyl2524 := r.ReadArrayStart() - if yyl2524 == 0 { + } else if yyct2547 == codecSelferValueTypeArray1234 { + yyl2547 := r.ReadArrayStart() + if yyl2547 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2524, d) + x.codecDecodeSelfFromArray(yyl2547, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32415,12 +32686,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2525Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2525Slc - var yyhl2525 bool = l >= 0 - for yyj2525 := 0; ; yyj2525++ { - if yyhl2525 { - if yyj2525 >= l { + var yys2548Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2548Slc + var yyhl2548 bool = l >= 0 + for yyj2548 := 0; ; yyj2548++ { + if yyhl2548 { + if yyj2548 >= l { break } } else { @@ -32429,20 +32700,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2525Slc = r.DecodeBytes(yys2525Slc, true, true) - yys2525 := string(yys2525Slc) + yys2548Slc = r.DecodeBytes(yys2548Slc, true, true) + yys2548 := string(yys2548Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2525 { + switch yys2548 { case "repoTags": if r.TryDecodeAsNil() { x.RepoTags = nil } else { - yyv2526 := &x.RepoTags - yym2527 := z.DecBinary() - _ = yym2527 + yyv2549 := &x.RepoTags + yym2550 := z.DecBinary() + _ = yym2550 if false { } else { - z.F.DecSliceStringX(yyv2526, false, d) + z.F.DecSliceStringX(yyv2549, false, d) } } case "size": @@ -32452,9 +32723,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Size = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2525) - } // end switch yys2525 - } // end for yyj2525 + z.DecStructFieldNotFound(-1, yys2548) + } // end switch yys2548 + } // end for yyj2548 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32462,16 +32733,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2529 int - var yyb2529 bool - var yyhl2529 bool = l >= 0 - yyj2529++ - if yyhl2529 { - yyb2529 = yyj2529 > l + var yyj2552 int + var yyb2552 bool + var yyhl2552 bool = l >= 0 + yyj2552++ + if yyhl2552 { + yyb2552 = yyj2552 > l } else { - yyb2529 = r.CheckBreak() + yyb2552 = r.CheckBreak() } - if yyb2529 { + if yyb2552 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32479,21 +32750,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RepoTags = nil } else { - yyv2530 := &x.RepoTags - yym2531 := z.DecBinary() - _ = yym2531 + yyv2553 := &x.RepoTags + yym2554 := z.DecBinary() + _ = yym2554 if false { } else { - z.F.DecSliceStringX(yyv2530, false, d) + z.F.DecSliceStringX(yyv2553, false, d) } } - yyj2529++ - if yyhl2529 { - yyb2529 = yyj2529 > l + yyj2552++ + if yyhl2552 { + yyb2552 = yyj2552 > l } else { - yyb2529 = r.CheckBreak() + yyb2552 = r.CheckBreak() } - if yyb2529 { + if yyb2552 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32504,17 +32775,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Size = int64(r.DecodeInt(64)) } for { - yyj2529++ - if yyhl2529 { - yyb2529 = yyj2529 > l + yyj2552++ + if yyhl2552 { + yyb2552 = yyj2552 > l } else { - yyb2529 = r.CheckBreak() + yyb2552 = r.CheckBreak() } - if yyb2529 { + if yyb2552 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2529-1, "") + z.DecStructFieldNotFound(yyj2552-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32523,8 +32794,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2533 := z.EncBinary() - _ = yym2533 + yym2556 := z.EncBinary() + _ = yym2556 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32536,8 +32807,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2534 := z.DecBinary() - _ = yym2534 + yym2557 := z.DecBinary() + _ = yym2557 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32549,8 +32820,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2535 := z.EncBinary() - _ = yym2535 + yym2558 := z.EncBinary() + _ = yym2558 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32562,8 +32833,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2536 := z.DecBinary() - _ = yym2536 + yym2559 := z.DecBinary() + _ = yym2559 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32578,34 +32849,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2537 := z.EncBinary() - _ = yym2537 + yym2560 := z.EncBinary() + _ = yym2560 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2538 := !z.EncBinary() - yy2arr2538 := z.EncBasicHandle().StructToArray - var yyq2538 [6]bool - _, _, _ = yysep2538, yyq2538, yy2arr2538 - const yyr2538 bool = false - yyq2538[2] = true - yyq2538[3] = true - yyq2538[4] = x.Reason != "" - yyq2538[5] = x.Message != "" - var yynn2538 int - if yyr2538 || yy2arr2538 { + yysep2561 := !z.EncBinary() + yy2arr2561 := z.EncBasicHandle().StructToArray + var yyq2561 [6]bool + _, _, _ = yysep2561, yyq2561, yy2arr2561 + const yyr2561 bool = false + yyq2561[2] = true + yyq2561[3] = true + yyq2561[4] = x.Reason != "" + yyq2561[5] = x.Message != "" + var yynn2561 int + if yyr2561 || yy2arr2561 { r.EncodeArrayStart(6) } else { - yynn2538 = 2 - for _, b := range yyq2538 { + yynn2561 = 2 + for _, b := range yyq2561 { if b { - yynn2538++ + yynn2561++ } } - r.EncodeMapStart(yynn2538) - yynn2538 = 0 + r.EncodeMapStart(yynn2561) + yynn2561 = 0 } - if yyr2538 || yy2arr2538 { + if yyr2561 || yy2arr2561 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -32614,7 +32885,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2538 || yy2arr2538 { + if yyr2561 || yy2arr2561 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -32623,85 +32894,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2538 || yy2arr2538 { + if yyr2561 || yy2arr2561 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2538[2] { - yy2542 := &x.LastHeartbeatTime - yym2543 := z.EncBinary() - _ = yym2543 + if yyq2561[2] { + yy2565 := &x.LastHeartbeatTime + yym2566 := z.EncBinary() + _ = yym2566 if false { - } else if z.HasExtensions() && z.EncExt(yy2542) { - } else if yym2543 { - z.EncBinaryMarshal(yy2542) - } else if !yym2543 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2542) + } else if z.HasExtensions() && z.EncExt(yy2565) { + } else if yym2566 { + z.EncBinaryMarshal(yy2565) + } else if !yym2566 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2565) } else { - z.EncFallback(yy2542) + z.EncFallback(yy2565) } } else { r.EncodeNil() } } else { - if yyq2538[2] { + if yyq2561[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2544 := &x.LastHeartbeatTime - yym2545 := z.EncBinary() - _ = yym2545 + yy2567 := &x.LastHeartbeatTime + yym2568 := z.EncBinary() + _ = yym2568 if false { - } else if z.HasExtensions() && z.EncExt(yy2544) { - } else if yym2545 { - z.EncBinaryMarshal(yy2544) - } else if !yym2545 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2544) + } else if z.HasExtensions() && z.EncExt(yy2567) { + } else if yym2568 { + z.EncBinaryMarshal(yy2567) + } else if !yym2568 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2567) } else { - z.EncFallback(yy2544) + z.EncFallback(yy2567) } } } - if yyr2538 || yy2arr2538 { + if yyr2561 || yy2arr2561 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2538[3] { - yy2547 := &x.LastTransitionTime - yym2548 := z.EncBinary() - _ = yym2548 + if yyq2561[3] { + yy2570 := &x.LastTransitionTime + yym2571 := z.EncBinary() + _ = yym2571 if false { - } else if z.HasExtensions() && z.EncExt(yy2547) { - } else if yym2548 { - z.EncBinaryMarshal(yy2547) - } else if !yym2548 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2547) + } else if z.HasExtensions() && z.EncExt(yy2570) { + } else if yym2571 { + z.EncBinaryMarshal(yy2570) + } else if !yym2571 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2570) } else { - z.EncFallback(yy2547) + z.EncFallback(yy2570) } } else { r.EncodeNil() } } else { - if yyq2538[3] { + if yyq2561[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2549 := &x.LastTransitionTime - yym2550 := z.EncBinary() - _ = yym2550 + yy2572 := &x.LastTransitionTime + yym2573 := z.EncBinary() + _ = yym2573 if false { - } else if z.HasExtensions() && z.EncExt(yy2549) { - } else if yym2550 { - z.EncBinaryMarshal(yy2549) - } else if !yym2550 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2549) + } else if z.HasExtensions() && z.EncExt(yy2572) { + } else if yym2573 { + z.EncBinaryMarshal(yy2572) + } else if !yym2573 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2572) } else { - z.EncFallback(yy2549) + z.EncFallback(yy2572) } } } - if yyr2538 || yy2arr2538 { + if yyr2561 || yy2arr2561 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2538[4] { - yym2552 := z.EncBinary() - _ = yym2552 + if yyq2561[4] { + yym2575 := z.EncBinary() + _ = yym2575 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -32710,23 +32981,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2538[4] { + if yyq2561[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2553 := z.EncBinary() - _ = yym2553 + yym2576 := z.EncBinary() + _ = yym2576 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2538 || yy2arr2538 { + if yyr2561 || yy2arr2561 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2538[5] { - yym2555 := z.EncBinary() - _ = yym2555 + if yyq2561[5] { + yym2578 := z.EncBinary() + _ = yym2578 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -32735,19 +33006,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2538[5] { + if yyq2561[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2556 := z.EncBinary() - _ = yym2556 + yym2579 := z.EncBinary() + _ = yym2579 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2538 || yy2arr2538 { + if yyr2561 || yy2arr2561 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32760,25 +33031,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2557 := z.DecBinary() - _ = yym2557 + yym2580 := z.DecBinary() + _ = yym2580 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2558 := r.ContainerType() - if yyct2558 == codecSelferValueTypeMap1234 { - yyl2558 := r.ReadMapStart() - if yyl2558 == 0 { + yyct2581 := r.ContainerType() + if yyct2581 == codecSelferValueTypeMap1234 { + yyl2581 := r.ReadMapStart() + if yyl2581 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2558, d) + x.codecDecodeSelfFromMap(yyl2581, d) } - } else if yyct2558 == codecSelferValueTypeArray1234 { - yyl2558 := r.ReadArrayStart() - if yyl2558 == 0 { + } else if yyct2581 == codecSelferValueTypeArray1234 { + yyl2581 := r.ReadArrayStart() + if yyl2581 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2558, d) + x.codecDecodeSelfFromArray(yyl2581, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32790,12 +33061,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2559Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2559Slc - var yyhl2559 bool = l >= 0 - for yyj2559 := 0; ; yyj2559++ { - if yyhl2559 { - if yyj2559 >= l { + var yys2582Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2582Slc + var yyhl2582 bool = l >= 0 + for yyj2582 := 0; ; yyj2582++ { + if yyhl2582 { + if yyj2582 >= l { break } } else { @@ -32804,10 +33075,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2559Slc = r.DecodeBytes(yys2559Slc, true, true) - yys2559 := string(yys2559Slc) + yys2582Slc = r.DecodeBytes(yys2582Slc, true, true) + yys2582 := string(yys2582Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2559 { + switch yys2582 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -32824,34 +33095,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2562 := &x.LastHeartbeatTime - yym2563 := z.DecBinary() - _ = yym2563 + yyv2585 := &x.LastHeartbeatTime + yym2586 := z.DecBinary() + _ = yym2586 if false { - } else if z.HasExtensions() && z.DecExt(yyv2562) { - } else if yym2563 { - z.DecBinaryUnmarshal(yyv2562) - } else if !yym2563 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2562) + } else if z.HasExtensions() && z.DecExt(yyv2585) { + } else if yym2586 { + z.DecBinaryUnmarshal(yyv2585) + } else if !yym2586 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2585) } else { - z.DecFallback(yyv2562, false) + z.DecFallback(yyv2585, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2564 := &x.LastTransitionTime - yym2565 := z.DecBinary() - _ = yym2565 + yyv2587 := &x.LastTransitionTime + yym2588 := z.DecBinary() + _ = yym2588 if false { - } else if z.HasExtensions() && z.DecExt(yyv2564) { - } else if yym2565 { - z.DecBinaryUnmarshal(yyv2564) - } else if !yym2565 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2564) + } else if z.HasExtensions() && z.DecExt(yyv2587) { + } else if yym2588 { + z.DecBinaryUnmarshal(yyv2587) + } else if !yym2588 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2587) } else { - z.DecFallback(yyv2564, false) + z.DecFallback(yyv2587, false) } } case "reason": @@ -32867,9 +33138,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2559) - } // end switch yys2559 - } // end for yyj2559 + z.DecStructFieldNotFound(-1, yys2582) + } // end switch yys2582 + } // end for yyj2582 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32877,16 +33148,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2568 int - var yyb2568 bool - var yyhl2568 bool = l >= 0 - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + var yyj2591 int + var yyb2591 bool + var yyhl2591 bool = l >= 0 + yyj2591++ + if yyhl2591 { + yyb2591 = yyj2591 > l } else { - yyb2568 = r.CheckBreak() + yyb2591 = r.CheckBreak() } - if yyb2568 { + if yyb2591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32896,13 +33167,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + yyj2591++ + if yyhl2591 { + yyb2591 = yyj2591 > l } else { - yyb2568 = r.CheckBreak() + yyb2591 = r.CheckBreak() } - if yyb2568 { + if yyb2591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32912,13 +33183,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + yyj2591++ + if yyhl2591 { + yyb2591 = yyj2591 > l } else { - yyb2568 = r.CheckBreak() + yyb2591 = r.CheckBreak() } - if yyb2568 { + if yyb2591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32926,26 +33197,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2571 := &x.LastHeartbeatTime - yym2572 := z.DecBinary() - _ = yym2572 + yyv2594 := &x.LastHeartbeatTime + yym2595 := z.DecBinary() + _ = yym2595 if false { - } else if z.HasExtensions() && z.DecExt(yyv2571) { - } else if yym2572 { - z.DecBinaryUnmarshal(yyv2571) - } else if !yym2572 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2571) + } else if z.HasExtensions() && z.DecExt(yyv2594) { + } else if yym2595 { + z.DecBinaryUnmarshal(yyv2594) + } else if !yym2595 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2594) } else { - z.DecFallback(yyv2571, false) + z.DecFallback(yyv2594, false) } } - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + yyj2591++ + if yyhl2591 { + yyb2591 = yyj2591 > l } else { - yyb2568 = r.CheckBreak() + yyb2591 = r.CheckBreak() } - if yyb2568 { + if yyb2591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32953,26 +33224,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2573 := &x.LastTransitionTime - yym2574 := z.DecBinary() - _ = yym2574 + yyv2596 := &x.LastTransitionTime + yym2597 := z.DecBinary() + _ = yym2597 if false { - } else if z.HasExtensions() && z.DecExt(yyv2573) { - } else if yym2574 { - z.DecBinaryUnmarshal(yyv2573) - } else if !yym2574 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2573) + } else if z.HasExtensions() && z.DecExt(yyv2596) { + } else if yym2597 { + z.DecBinaryUnmarshal(yyv2596) + } else if !yym2597 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2596) } else { - z.DecFallback(yyv2573, false) + z.DecFallback(yyv2596, false) } } - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + yyj2591++ + if yyhl2591 { + yyb2591 = yyj2591 > l } else { - yyb2568 = r.CheckBreak() + yyb2591 = r.CheckBreak() } - if yyb2568 { + if yyb2591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32982,13 +33253,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + yyj2591++ + if yyhl2591 { + yyb2591 = yyj2591 > l } else { - yyb2568 = r.CheckBreak() + yyb2591 = r.CheckBreak() } - if yyb2568 { + if yyb2591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32999,17 +33270,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + yyj2591++ + if yyhl2591 { + yyb2591 = yyj2591 > l } else { - yyb2568 = r.CheckBreak() + yyb2591 = r.CheckBreak() } - if yyb2568 { + if yyb2591 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2568-1, "") + z.DecStructFieldNotFound(yyj2591-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33018,8 +33289,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2577 := z.EncBinary() - _ = yym2577 + yym2600 := z.EncBinary() + _ = yym2600 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33031,8 +33302,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2578 := z.DecBinary() - _ = yym2578 + yym2601 := z.DecBinary() + _ = yym2601 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33047,30 +33318,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2579 := z.EncBinary() - _ = yym2579 + yym2602 := z.EncBinary() + _ = yym2602 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2580 := !z.EncBinary() - yy2arr2580 := z.EncBasicHandle().StructToArray - var yyq2580 [2]bool - _, _, _ = yysep2580, yyq2580, yy2arr2580 - const yyr2580 bool = false - var yynn2580 int - if yyr2580 || yy2arr2580 { + yysep2603 := !z.EncBinary() + yy2arr2603 := z.EncBasicHandle().StructToArray + var yyq2603 [2]bool + _, _, _ = yysep2603, yyq2603, yy2arr2603 + const yyr2603 bool = false + var yynn2603 int + if yyr2603 || yy2arr2603 { r.EncodeArrayStart(2) } else { - yynn2580 = 2 - for _, b := range yyq2580 { + yynn2603 = 2 + for _, b := range yyq2603 { if b { - yynn2580++ + yynn2603++ } } - r.EncodeMapStart(yynn2580) - yynn2580 = 0 + r.EncodeMapStart(yynn2603) + yynn2603 = 0 } - if yyr2580 || yy2arr2580 { + if yyr2603 || yy2arr2603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -33079,10 +33350,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2580 || yy2arr2580 { + if yyr2603 || yy2arr2603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2583 := z.EncBinary() - _ = yym2583 + yym2606 := z.EncBinary() + _ = yym2606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -33091,14 +33362,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2584 := z.EncBinary() - _ = yym2584 + yym2607 := z.EncBinary() + _ = yym2607 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr2580 || yy2arr2580 { + if yyr2603 || yy2arr2603 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33111,25 +33382,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2585 := z.DecBinary() - _ = yym2585 + yym2608 := z.DecBinary() + _ = yym2608 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2586 := r.ContainerType() - if yyct2586 == codecSelferValueTypeMap1234 { - yyl2586 := r.ReadMapStart() - if yyl2586 == 0 { + yyct2609 := r.ContainerType() + if yyct2609 == codecSelferValueTypeMap1234 { + yyl2609 := r.ReadMapStart() + if yyl2609 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2586, d) + x.codecDecodeSelfFromMap(yyl2609, d) } - } else if yyct2586 == codecSelferValueTypeArray1234 { - yyl2586 := r.ReadArrayStart() - if yyl2586 == 0 { + } else if yyct2609 == codecSelferValueTypeArray1234 { + yyl2609 := r.ReadArrayStart() + if yyl2609 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2586, d) + x.codecDecodeSelfFromArray(yyl2609, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33141,12 +33412,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2587Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2587Slc - var yyhl2587 bool = l >= 0 - for yyj2587 := 0; ; yyj2587++ { - if yyhl2587 { - if yyj2587 >= l { + var yys2610Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2610Slc + var yyhl2610 bool = l >= 0 + for yyj2610 := 0; ; yyj2610++ { + if yyhl2610 { + if yyj2610 >= l { break } } else { @@ -33155,10 +33426,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2587Slc = r.DecodeBytes(yys2587Slc, true, true) - yys2587 := string(yys2587Slc) + yys2610Slc = r.DecodeBytes(yys2610Slc, true, true) + yys2610 := string(yys2610Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2587 { + switch yys2610 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -33172,9 +33443,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2587) - } // end switch yys2587 - } // end for yyj2587 + z.DecStructFieldNotFound(-1, yys2610) + } // end switch yys2610 + } // end for yyj2610 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33182,16 +33453,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2590 int - var yyb2590 bool - var yyhl2590 bool = l >= 0 - yyj2590++ - if yyhl2590 { - yyb2590 = yyj2590 > l + var yyj2613 int + var yyb2613 bool + var yyhl2613 bool = l >= 0 + yyj2613++ + if yyhl2613 { + yyb2613 = yyj2613 > l } else { - yyb2590 = r.CheckBreak() + yyb2613 = r.CheckBreak() } - if yyb2590 { + if yyb2613 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33201,13 +33472,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj2590++ - if yyhl2590 { - yyb2590 = yyj2590 > l + yyj2613++ + if yyhl2613 { + yyb2613 = yyj2613 > l } else { - yyb2590 = r.CheckBreak() + yyb2613 = r.CheckBreak() } - if yyb2590 { + if yyb2613 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33218,17 +33489,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj2590++ - if yyhl2590 { - yyb2590 = yyj2590 > l + yyj2613++ + if yyhl2613 { + yyb2613 = yyj2613 > l } else { - yyb2590 = r.CheckBreak() + yyb2613 = r.CheckBreak() } - if yyb2590 { + if yyb2613 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2590-1, "") + z.DecStructFieldNotFound(yyj2613-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33237,8 +33508,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2593 := z.EncBinary() - _ = yym2593 + yym2616 := z.EncBinary() + _ = yym2616 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33250,8 +33521,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2594 := z.DecBinary() - _ = yym2594 + yym2617 := z.DecBinary() + _ = yym2617 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33266,8 +33537,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2595 := z.EncBinary() - _ = yym2595 + yym2618 := z.EncBinary() + _ = yym2618 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33280,8 +33551,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2596 := z.DecBinary() - _ = yym2596 + yym2619 := z.DecBinary() + _ = yym2619 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33296,39 +33567,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2597 := z.EncBinary() - _ = yym2597 + yym2620 := z.EncBinary() + _ = yym2620 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2598 := !z.EncBinary() - yy2arr2598 := z.EncBasicHandle().StructToArray - var yyq2598 [5]bool - _, _, _ = yysep2598, yyq2598, yy2arr2598 - const yyr2598 bool = false - yyq2598[0] = x.Kind != "" - yyq2598[1] = x.APIVersion != "" - yyq2598[2] = true - yyq2598[3] = true - yyq2598[4] = true - var yynn2598 int - if yyr2598 || yy2arr2598 { + yysep2621 := !z.EncBinary() + yy2arr2621 := z.EncBasicHandle().StructToArray + var yyq2621 [5]bool + _, _, _ = yysep2621, yyq2621, yy2arr2621 + const yyr2621 bool = false + yyq2621[0] = x.Kind != "" + yyq2621[1] = x.APIVersion != "" + yyq2621[2] = true + yyq2621[3] = true + yyq2621[4] = true + var yynn2621 int + if yyr2621 || yy2arr2621 { r.EncodeArrayStart(5) } else { - yynn2598 = 0 - for _, b := range yyq2598 { + yynn2621 = 0 + for _, b := range yyq2621 { if b { - yynn2598++ + yynn2621++ } } - r.EncodeMapStart(yynn2598) - yynn2598 = 0 + r.EncodeMapStart(yynn2621) + yynn2621 = 0 } - if yyr2598 || yy2arr2598 { + if yyr2621 || yy2arr2621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2598[0] { - yym2600 := z.EncBinary() - _ = yym2600 + if yyq2621[0] { + yym2623 := z.EncBinary() + _ = yym2623 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33337,23 +33608,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2598[0] { + if yyq2621[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2601 := z.EncBinary() - _ = yym2601 + yym2624 := z.EncBinary() + _ = yym2624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2598 || yy2arr2598 { + if yyr2621 || yy2arr2621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2598[1] { - yym2603 := z.EncBinary() - _ = yym2603 + if yyq2621[1] { + yym2626 := z.EncBinary() + _ = yym2626 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33362,70 +33633,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2598[1] { + if yyq2621[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2604 := z.EncBinary() - _ = yym2604 + yym2627 := z.EncBinary() + _ = yym2627 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2598 || yy2arr2598 { + if yyr2621 || yy2arr2621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2598[2] { - yy2606 := &x.ObjectMeta - yy2606.CodecEncodeSelf(e) + if yyq2621[2] { + yy2629 := &x.ObjectMeta + yy2629.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2598[2] { + if yyq2621[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2607 := &x.ObjectMeta - yy2607.CodecEncodeSelf(e) + yy2630 := &x.ObjectMeta + yy2630.CodecEncodeSelf(e) } } - if yyr2598 || yy2arr2598 { + if yyr2621 || yy2arr2621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2598[3] { - yy2609 := &x.Spec - yy2609.CodecEncodeSelf(e) + if yyq2621[3] { + yy2632 := &x.Spec + yy2632.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2598[3] { + if yyq2621[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2610 := &x.Spec - yy2610.CodecEncodeSelf(e) + yy2633 := &x.Spec + yy2633.CodecEncodeSelf(e) } } - if yyr2598 || yy2arr2598 { + if yyr2621 || yy2arr2621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2598[4] { - yy2612 := &x.Status - yy2612.CodecEncodeSelf(e) + if yyq2621[4] { + yy2635 := &x.Status + yy2635.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2598[4] { + if yyq2621[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2613 := &x.Status - yy2613.CodecEncodeSelf(e) + yy2636 := &x.Status + yy2636.CodecEncodeSelf(e) } } - if yyr2598 || yy2arr2598 { + if yyr2621 || yy2arr2621 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33438,25 +33709,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2614 := z.DecBinary() - _ = yym2614 + yym2637 := z.DecBinary() + _ = yym2637 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2615 := r.ContainerType() - if yyct2615 == codecSelferValueTypeMap1234 { - yyl2615 := r.ReadMapStart() - if yyl2615 == 0 { + yyct2638 := r.ContainerType() + if yyct2638 == codecSelferValueTypeMap1234 { + yyl2638 := r.ReadMapStart() + if yyl2638 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2615, d) + x.codecDecodeSelfFromMap(yyl2638, d) } - } else if yyct2615 == codecSelferValueTypeArray1234 { - yyl2615 := r.ReadArrayStart() - if yyl2615 == 0 { + } else if yyct2638 == codecSelferValueTypeArray1234 { + yyl2638 := r.ReadArrayStart() + if yyl2638 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2615, d) + x.codecDecodeSelfFromArray(yyl2638, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33468,12 +33739,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2616Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2616Slc - var yyhl2616 bool = l >= 0 - for yyj2616 := 0; ; yyj2616++ { - if yyhl2616 { - if yyj2616 >= l { + var yys2639Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2639Slc + var yyhl2639 bool = l >= 0 + for yyj2639 := 0; ; yyj2639++ { + if yyhl2639 { + if yyj2639 >= l { break } } else { @@ -33482,10 +33753,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2616Slc = r.DecodeBytes(yys2616Slc, true, true) - yys2616 := string(yys2616Slc) + yys2639Slc = r.DecodeBytes(yys2639Slc, true, true) + yys2639 := string(yys2639Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2616 { + switch yys2639 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33502,27 +33773,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2619 := &x.ObjectMeta - yyv2619.CodecDecodeSelf(d) + yyv2642 := &x.ObjectMeta + yyv2642.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2620 := &x.Spec - yyv2620.CodecDecodeSelf(d) + yyv2643 := &x.Spec + yyv2643.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2621 := &x.Status - yyv2621.CodecDecodeSelf(d) + yyv2644 := &x.Status + yyv2644.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2616) - } // end switch yys2616 - } // end for yyj2616 + z.DecStructFieldNotFound(-1, yys2639) + } // end switch yys2639 + } // end for yyj2639 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33530,16 +33801,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2622 int - var yyb2622 bool - var yyhl2622 bool = l >= 0 - yyj2622++ - if yyhl2622 { - yyb2622 = yyj2622 > l + var yyj2645 int + var yyb2645 bool + var yyhl2645 bool = l >= 0 + yyj2645++ + if yyhl2645 { + yyb2645 = yyj2645 > l } else { - yyb2622 = r.CheckBreak() + yyb2645 = r.CheckBreak() } - if yyb2622 { + if yyb2645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33549,13 +33820,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2622++ - if yyhl2622 { - yyb2622 = yyj2622 > l + yyj2645++ + if yyhl2645 { + yyb2645 = yyj2645 > l } else { - yyb2622 = r.CheckBreak() + yyb2645 = r.CheckBreak() } - if yyb2622 { + if yyb2645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33565,13 +33836,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2622++ - if yyhl2622 { - yyb2622 = yyj2622 > l + yyj2645++ + if yyhl2645 { + yyb2645 = yyj2645 > l } else { - yyb2622 = r.CheckBreak() + yyb2645 = r.CheckBreak() } - if yyb2622 { + if yyb2645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33579,16 +33850,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2625 := &x.ObjectMeta - yyv2625.CodecDecodeSelf(d) + yyv2648 := &x.ObjectMeta + yyv2648.CodecDecodeSelf(d) } - yyj2622++ - if yyhl2622 { - yyb2622 = yyj2622 > l + yyj2645++ + if yyhl2645 { + yyb2645 = yyj2645 > l } else { - yyb2622 = r.CheckBreak() + yyb2645 = r.CheckBreak() } - if yyb2622 { + if yyb2645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33596,16 +33867,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2626 := &x.Spec - yyv2626.CodecDecodeSelf(d) + yyv2649 := &x.Spec + yyv2649.CodecDecodeSelf(d) } - yyj2622++ - if yyhl2622 { - yyb2622 = yyj2622 > l + yyj2645++ + if yyhl2645 { + yyb2645 = yyj2645 > l } else { - yyb2622 = r.CheckBreak() + yyb2645 = r.CheckBreak() } - if yyb2622 { + if yyb2645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33613,21 +33884,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2627 := &x.Status - yyv2627.CodecDecodeSelf(d) + yyv2650 := &x.Status + yyv2650.CodecDecodeSelf(d) } for { - yyj2622++ - if yyhl2622 { - yyb2622 = yyj2622 > l + yyj2645++ + if yyhl2645 { + yyb2645 = yyj2645 > l } else { - yyb2622 = r.CheckBreak() + yyb2645 = r.CheckBreak() } - if yyb2622 { + if yyb2645 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2622-1, "") + z.DecStructFieldNotFound(yyj2645-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33639,37 +33910,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2628 := z.EncBinary() - _ = yym2628 + yym2651 := z.EncBinary() + _ = yym2651 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2629 := !z.EncBinary() - yy2arr2629 := z.EncBasicHandle().StructToArray - var yyq2629 [4]bool - _, _, _ = yysep2629, yyq2629, yy2arr2629 - const yyr2629 bool = false - yyq2629[0] = x.Kind != "" - yyq2629[1] = x.APIVersion != "" - yyq2629[2] = true - var yynn2629 int - if yyr2629 || yy2arr2629 { + yysep2652 := !z.EncBinary() + yy2arr2652 := z.EncBasicHandle().StructToArray + var yyq2652 [4]bool + _, _, _ = yysep2652, yyq2652, yy2arr2652 + const yyr2652 bool = false + yyq2652[0] = x.Kind != "" + yyq2652[1] = x.APIVersion != "" + yyq2652[2] = true + var yynn2652 int + if yyr2652 || yy2arr2652 { r.EncodeArrayStart(4) } else { - yynn2629 = 1 - for _, b := range yyq2629 { + yynn2652 = 1 + for _, b := range yyq2652 { if b { - yynn2629++ + yynn2652++ } } - r.EncodeMapStart(yynn2629) - yynn2629 = 0 + r.EncodeMapStart(yynn2652) + yynn2652 = 0 } - if yyr2629 || yy2arr2629 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2629[0] { - yym2631 := z.EncBinary() - _ = yym2631 + if yyq2652[0] { + yym2654 := z.EncBinary() + _ = yym2654 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33678,23 +33949,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2629[0] { + if yyq2652[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2632 := z.EncBinary() - _ = yym2632 + yym2655 := z.EncBinary() + _ = yym2655 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2629 || yy2arr2629 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2629[1] { - yym2634 := z.EncBinary() - _ = yym2634 + if yyq2652[1] { + yym2657 := z.EncBinary() + _ = yym2657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33703,54 +33974,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2629[1] { + if yyq2652[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2635 := z.EncBinary() - _ = yym2635 + yym2658 := z.EncBinary() + _ = yym2658 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2629 || yy2arr2629 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2629[2] { - yy2637 := &x.ListMeta - yym2638 := z.EncBinary() - _ = yym2638 + if yyq2652[2] { + yy2660 := &x.ListMeta + yym2661 := z.EncBinary() + _ = yym2661 if false { - } else if z.HasExtensions() && z.EncExt(yy2637) { + } else if z.HasExtensions() && z.EncExt(yy2660) { } else { - z.EncFallback(yy2637) + z.EncFallback(yy2660) } } else { r.EncodeNil() } } else { - if yyq2629[2] { + if yyq2652[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2639 := &x.ListMeta - yym2640 := z.EncBinary() - _ = yym2640 + yy2662 := &x.ListMeta + yym2663 := z.EncBinary() + _ = yym2663 if false { - } else if z.HasExtensions() && z.EncExt(yy2639) { + } else if z.HasExtensions() && z.EncExt(yy2662) { } else { - z.EncFallback(yy2639) + z.EncFallback(yy2662) } } } - if yyr2629 || yy2arr2629 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2642 := z.EncBinary() - _ = yym2642 + yym2665 := z.EncBinary() + _ = yym2665 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -33763,15 +34034,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2643 := z.EncBinary() - _ = yym2643 + yym2666 := z.EncBinary() + _ = yym2666 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr2629 || yy2arr2629 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33781,301 +34052,6 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2644 := z.DecBinary() - _ = yym2644 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2645 := r.ContainerType() - if yyct2645 == codecSelferValueTypeMap1234 { - yyl2645 := r.ReadMapStart() - if yyl2645 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2645, d) - } - } else if yyct2645 == codecSelferValueTypeArray1234 { - yyl2645 := r.ReadArrayStart() - if yyl2645 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2645, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2646Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2646Slc - var yyhl2646 bool = l >= 0 - for yyj2646 := 0; ; yyj2646++ { - if yyhl2646 { - if yyj2646 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2646Slc = r.DecodeBytes(yys2646Slc, true, true) - yys2646 := string(yys2646Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2646 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv2649 := &x.ListMeta - yym2650 := z.DecBinary() - _ = yym2650 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2649) { - } else { - z.DecFallback(yyv2649, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2651 := &x.Items - yym2652 := z.DecBinary() - _ = yym2652 - if false { - } else { - h.decSliceNode((*[]Node)(yyv2651), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2646) - } // end switch yys2646 - } // end for yyj2646 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2653 int - var yyb2653 bool - var yyhl2653 bool = l >= 0 - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l - } else { - yyb2653 = r.CheckBreak() - } - if yyb2653 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l - } else { - yyb2653 = r.CheckBreak() - } - if yyb2653 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l - } else { - yyb2653 = r.CheckBreak() - } - if yyb2653 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv2656 := &x.ListMeta - yym2657 := z.DecBinary() - _ = yym2657 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2656) { - } else { - z.DecFallback(yyv2656, false) - } - } - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l - } else { - yyb2653 = r.CheckBreak() - } - if yyb2653 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2658 := &x.Items - yym2659 := z.DecBinary() - _ = yym2659 - if false { - } else { - h.decSliceNode((*[]Node)(yyv2658), d) - } - } - for { - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l - } else { - yyb2653 = r.CheckBreak() - } - if yyb2653 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2653-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym2660 := z.EncBinary() - _ = yym2660 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2661 := z.DecBinary() - _ = yym2661 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2662 := z.EncBinary() - _ = yym2662 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2663 := !z.EncBinary() - yy2arr2663 := z.EncBasicHandle().StructToArray - var yyq2663 [1]bool - _, _, _ = yysep2663, yyq2663, yy2arr2663 - const yyr2663 bool = false - yyq2663[0] = len(x.Finalizers) != 0 - var yynn2663 int - if yyr2663 || yy2arr2663 { - r.EncodeArrayStart(1) - } else { - yynn2663 = 0 - for _, b := range yyq2663 { - if b { - yynn2663++ - } - } - r.EncodeMapStart(yynn2663) - yynn2663 = 0 - } - if yyr2663 || yy2arr2663 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2663[0] { - if x.Finalizers == nil { - r.EncodeNil() - } else { - yym2665 := z.EncBinary() - _ = yym2665 - if false { - } else { - h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2663[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("finalizers")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Finalizers == nil { - r.EncodeNil() - } else { - yym2666 := z.EncBinary() - _ = yym2666 - if false { - } else { - h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) - } - } - } - } - if yyr2663 || yy2arr2663 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -34105,7 +34081,7 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -34127,798 +34103,6 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys2669 := string(yys2669Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys2669 { - case "finalizers": - if r.TryDecodeAsNil() { - x.Finalizers = nil - } else { - yyv2670 := &x.Finalizers - yym2671 := z.DecBinary() - _ = yym2671 - if false { - } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2670), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2669) - } // end switch yys2669 - } // end for yyj2669 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2672 int - var yyb2672 bool - var yyhl2672 bool = l >= 0 - yyj2672++ - if yyhl2672 { - yyb2672 = yyj2672 > l - } else { - yyb2672 = r.CheckBreak() - } - if yyb2672 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Finalizers = nil - } else { - yyv2673 := &x.Finalizers - yym2674 := z.DecBinary() - _ = yym2674 - if false { - } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2673), d) - } - } - for { - yyj2672++ - if yyhl2672 { - yyb2672 = yyj2672 > l - } else { - yyb2672 = r.CheckBreak() - } - if yyb2672 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2672-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2675 := z.EncBinary() - _ = yym2675 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2676 := !z.EncBinary() - yy2arr2676 := z.EncBasicHandle().StructToArray - var yyq2676 [1]bool - _, _, _ = yysep2676, yyq2676, yy2arr2676 - const yyr2676 bool = false - yyq2676[0] = x.Phase != "" - var yynn2676 int - if yyr2676 || yy2arr2676 { - r.EncodeArrayStart(1) - } else { - yynn2676 = 0 - for _, b := range yyq2676 { - if b { - yynn2676++ - } - } - r.EncodeMapStart(yynn2676) - yynn2676 = 0 - } - if yyr2676 || yy2arr2676 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2676[0] { - x.Phase.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2676[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("phase")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Phase.CodecEncodeSelf(e) - } - } - if yyr2676 || yy2arr2676 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2678 := z.DecBinary() - _ = yym2678 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2679 := r.ContainerType() - if yyct2679 == codecSelferValueTypeMap1234 { - yyl2679 := r.ReadMapStart() - if yyl2679 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2679, d) - } - } else if yyct2679 == codecSelferValueTypeArray1234 { - yyl2679 := r.ReadArrayStart() - if yyl2679 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2679, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2680Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2680Slc - var yyhl2680 bool = l >= 0 - for yyj2680 := 0; ; yyj2680++ { - if yyhl2680 { - if yyj2680 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2680Slc = r.DecodeBytes(yys2680Slc, true, true) - yys2680 := string(yys2680Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2680 { - case "phase": - if r.TryDecodeAsNil() { - x.Phase = "" - } else { - x.Phase = NamespacePhase(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys2680) - } // end switch yys2680 - } // end for yyj2680 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2682 int - var yyb2682 bool - var yyhl2682 bool = l >= 0 - yyj2682++ - if yyhl2682 { - yyb2682 = yyj2682 > l - } else { - yyb2682 = r.CheckBreak() - } - if yyb2682 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Phase = "" - } else { - x.Phase = NamespacePhase(r.DecodeString()) - } - for { - yyj2682++ - if yyhl2682 { - yyb2682 = yyj2682 > l - } else { - yyb2682 = r.CheckBreak() - } - if yyb2682 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2682-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym2684 := z.EncBinary() - _ = yym2684 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2685 := z.DecBinary() - _ = yym2685 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2686 := z.EncBinary() - _ = yym2686 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2687 := !z.EncBinary() - yy2arr2687 := z.EncBasicHandle().StructToArray - var yyq2687 [5]bool - _, _, _ = yysep2687, yyq2687, yy2arr2687 - const yyr2687 bool = false - yyq2687[0] = x.Kind != "" - yyq2687[1] = x.APIVersion != "" - yyq2687[2] = true - yyq2687[3] = true - yyq2687[4] = true - var yynn2687 int - if yyr2687 || yy2arr2687 { - r.EncodeArrayStart(5) - } else { - yynn2687 = 0 - for _, b := range yyq2687 { - if b { - yynn2687++ - } - } - r.EncodeMapStart(yynn2687) - yynn2687 = 0 - } - if yyr2687 || yy2arr2687 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2687[0] { - yym2689 := z.EncBinary() - _ = yym2689 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2687[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2690 := z.EncBinary() - _ = yym2690 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2687 || yy2arr2687 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2687[1] { - yym2692 := z.EncBinary() - _ = yym2692 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2687[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2693 := z.EncBinary() - _ = yym2693 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2687 || yy2arr2687 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2687[2] { - yy2695 := &x.ObjectMeta - yy2695.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2687[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2696 := &x.ObjectMeta - yy2696.CodecEncodeSelf(e) - } - } - if yyr2687 || yy2arr2687 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2687[3] { - yy2698 := &x.Spec - yy2698.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2687[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2699 := &x.Spec - yy2699.CodecEncodeSelf(e) - } - } - if yyr2687 || yy2arr2687 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2687[4] { - yy2701 := &x.Status - yy2701.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2687[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2702 := &x.Status - yy2702.CodecEncodeSelf(e) - } - } - if yyr2687 || yy2arr2687 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2703 := z.DecBinary() - _ = yym2703 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2704 := r.ContainerType() - if yyct2704 == codecSelferValueTypeMap1234 { - yyl2704 := r.ReadMapStart() - if yyl2704 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2704, d) - } - } else if yyct2704 == codecSelferValueTypeArray1234 { - yyl2704 := r.ReadArrayStart() - if yyl2704 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2704, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2705Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2705Slc - var yyhl2705 bool = l >= 0 - for yyj2705 := 0; ; yyj2705++ { - if yyhl2705 { - if yyj2705 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2705Slc = r.DecodeBytes(yys2705Slc, true, true) - yys2705 := string(yys2705Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2705 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2708 := &x.ObjectMeta - yyv2708.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = NamespaceSpec{} - } else { - yyv2709 := &x.Spec - yyv2709.CodecDecodeSelf(d) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = NamespaceStatus{} - } else { - yyv2710 := &x.Status - yyv2710.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2705) - } // end switch yys2705 - } // end for yyj2705 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2711 int - var yyb2711 bool - var yyhl2711 bool = l >= 0 - yyj2711++ - if yyhl2711 { - yyb2711 = yyj2711 > l - } else { - yyb2711 = r.CheckBreak() - } - if yyb2711 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2711++ - if yyhl2711 { - yyb2711 = yyj2711 > l - } else { - yyb2711 = r.CheckBreak() - } - if yyb2711 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2711++ - if yyhl2711 { - yyb2711 = yyj2711 > l - } else { - yyb2711 = r.CheckBreak() - } - if yyb2711 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2714 := &x.ObjectMeta - yyv2714.CodecDecodeSelf(d) - } - yyj2711++ - if yyhl2711 { - yyb2711 = yyj2711 > l - } else { - yyb2711 = r.CheckBreak() - } - if yyb2711 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = NamespaceSpec{} - } else { - yyv2715 := &x.Spec - yyv2715.CodecDecodeSelf(d) - } - yyj2711++ - if yyhl2711 { - yyb2711 = yyj2711 > l - } else { - yyb2711 = r.CheckBreak() - } - if yyb2711 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = NamespaceStatus{} - } else { - yyv2716 := &x.Status - yyv2716.CodecDecodeSelf(d) - } - for { - yyj2711++ - if yyhl2711 { - yyb2711 = yyj2711 > l - } else { - yyb2711 = r.CheckBreak() - } - if yyb2711 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2711-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2717 := z.EncBinary() - _ = yym2717 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2718 := !z.EncBinary() - yy2arr2718 := z.EncBasicHandle().StructToArray - var yyq2718 [4]bool - _, _, _ = yysep2718, yyq2718, yy2arr2718 - const yyr2718 bool = false - yyq2718[0] = x.Kind != "" - yyq2718[1] = x.APIVersion != "" - yyq2718[2] = true - var yynn2718 int - if yyr2718 || yy2arr2718 { - r.EncodeArrayStart(4) - } else { - yynn2718 = 1 - for _, b := range yyq2718 { - if b { - yynn2718++ - } - } - r.EncodeMapStart(yynn2718) - yynn2718 = 0 - } - if yyr2718 || yy2arr2718 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2718[0] { - yym2720 := z.EncBinary() - _ = yym2720 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2718[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2721 := z.EncBinary() - _ = yym2721 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2718 || yy2arr2718 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2718[1] { - yym2723 := z.EncBinary() - _ = yym2723 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2718[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2724 := z.EncBinary() - _ = yym2724 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2718 || yy2arr2718 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2718[2] { - yy2726 := &x.ListMeta - yym2727 := z.EncBinary() - _ = yym2727 - if false { - } else if z.HasExtensions() && z.EncExt(yy2726) { - } else { - z.EncFallback(yy2726) - } - } else { - r.EncodeNil() - } - } else { - if yyq2718[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2728 := &x.ListMeta - yym2729 := z.EncBinary() - _ = yym2729 - if false { - } else if z.HasExtensions() && z.EncExt(yy2728) { - } else { - z.EncFallback(yy2728) - } - } - } - if yyr2718 || yy2arr2718 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2731 := z.EncBinary() - _ = yym2731 - if false { - } else { - h.encSliceNamespace(([]Namespace)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2732 := z.EncBinary() - _ = yym2732 - if false { - } else { - h.encSliceNamespace(([]Namespace)(x.Items), e) - } - } - } - if yyr2718 || yy2arr2718 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2733 := z.DecBinary() - _ = yym2733 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2734 := r.ContainerType() - if yyct2734 == codecSelferValueTypeMap1234 { - yyl2734 := r.ReadMapStart() - if yyl2734 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2734, d) - } - } else if yyct2734 == codecSelferValueTypeArray1234 { - yyl2734 := r.ReadArrayStart() - if yyl2734 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2734, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2735Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2735Slc - var yyhl2735 bool = l >= 0 - for yyj2735 := 0; ; yyj2735++ { - if yyhl2735 { - if yyj2735 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2735Slc = r.DecodeBytes(yys2735Slc, true, true) - yys2735 := string(yys2735Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2735 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34935,48 +34119,48 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2738 := &x.ListMeta - yym2739 := z.DecBinary() - _ = yym2739 + yyv2672 := &x.ListMeta + yym2673 := z.DecBinary() + _ = yym2673 if false { - } else if z.HasExtensions() && z.DecExt(yyv2738) { + } else if z.HasExtensions() && z.DecExt(yyv2672) { } else { - z.DecFallback(yyv2738, false) + z.DecFallback(yyv2672, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2740 := &x.Items - yym2741 := z.DecBinary() - _ = yym2741 + yyv2674 := &x.Items + yym2675 := z.DecBinary() + _ = yym2675 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2740), d) + h.decSliceNode((*[]Node)(yyv2674), d) } } default: - z.DecStructFieldNotFound(-1, yys2735) - } // end switch yys2735 - } // end for yyj2735 + z.DecStructFieldNotFound(-1, yys2669) + } // end switch yys2669 + } // end for yyj2669 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2742 int - var yyb2742 bool - var yyhl2742 bool = l >= 0 - yyj2742++ - if yyhl2742 { - yyb2742 = yyj2742 > l + var yyj2676 int + var yyb2676 bool + var yyhl2676 bool = l >= 0 + yyj2676++ + if yyhl2676 { + yyb2676 = yyj2676 > l } else { - yyb2742 = r.CheckBreak() + yyb2676 = r.CheckBreak() } - if yyb2742 { + if yyb2676 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34986,13 +34170,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2742++ - if yyhl2742 { - yyb2742 = yyj2742 > l + yyj2676++ + if yyhl2676 { + yyb2676 = yyj2676 > l } else { - yyb2742 = r.CheckBreak() + yyb2676 = r.CheckBreak() } - if yyb2742 { + if yyb2676 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35002,13 +34186,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2742++ - if yyhl2742 { - yyb2742 = yyj2742 > l + yyj2676++ + if yyhl2676 { + yyb2676 = yyj2676 > l } else { - yyb2742 = r.CheckBreak() + yyb2676 = r.CheckBreak() } - if yyb2742 { + if yyb2676 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35016,22 +34200,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2745 := &x.ListMeta - yym2746 := z.DecBinary() - _ = yym2746 + yyv2679 := &x.ListMeta + yym2680 := z.DecBinary() + _ = yym2680 if false { - } else if z.HasExtensions() && z.DecExt(yyv2745) { + } else if z.HasExtensions() && z.DecExt(yyv2679) { } else { - z.DecFallback(yyv2745, false) + z.DecFallback(yyv2679, false) } } - yyj2742++ - if yyhl2742 { - yyb2742 = yyj2742 > l + yyj2676++ + if yyhl2676 { + yyb2676 = yyj2676 > l } else { - yyb2742 = r.CheckBreak() + yyb2676 = r.CheckBreak() } - if yyb2742 { + if yyb2676 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35039,142 +34223,121 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2747 := &x.Items - yym2748 := z.DecBinary() - _ = yym2748 + yyv2681 := &x.Items + yym2682 := z.DecBinary() + _ = yym2682 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2747), d) + h.decSliceNode((*[]Node)(yyv2681), d) } } for { - yyj2742++ - if yyhl2742 { - yyb2742 = yyj2742 > l + yyj2676++ + if yyhl2676 { + yyb2676 = yyj2676 > l } else { - yyb2742 = r.CheckBreak() + yyb2676 = r.CheckBreak() } - if yyb2742 { + if yyb2676 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2742-1, "") + z.DecStructFieldNotFound(yyj2676-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { +func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym2683 := z.EncBinary() + _ = yym2683 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2684 := z.DecBinary() + _ = yym2684 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym2749 := z.EncBinary() - _ = yym2749 + yym2685 := z.EncBinary() + _ = yym2685 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2750 := !z.EncBinary() - yy2arr2750 := z.EncBasicHandle().StructToArray - var yyq2750 [4]bool - _, _, _ = yysep2750, yyq2750, yy2arr2750 - const yyr2750 bool = false - yyq2750[0] = x.Kind != "" - yyq2750[1] = x.APIVersion != "" - yyq2750[2] = true - var yynn2750 int - if yyr2750 || yy2arr2750 { - r.EncodeArrayStart(4) + yysep2686 := !z.EncBinary() + yy2arr2686 := z.EncBasicHandle().StructToArray + var yyq2686 [1]bool + _, _, _ = yysep2686, yyq2686, yy2arr2686 + const yyr2686 bool = false + yyq2686[0] = len(x.Finalizers) != 0 + var yynn2686 int + if yyr2686 || yy2arr2686 { + r.EncodeArrayStart(1) } else { - yynn2750 = 1 - for _, b := range yyq2750 { + yynn2686 = 0 + for _, b := range yyq2686 { if b { - yynn2750++ + yynn2686++ } } - r.EncodeMapStart(yynn2750) - yynn2750 = 0 + r.EncodeMapStart(yynn2686) + yynn2686 = 0 } - if yyr2750 || yy2arr2750 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2750[0] { - yym2752 := z.EncBinary() - _ = yym2752 - if false { + if yyq2686[0] { + if x.Finalizers == nil { + r.EncodeNil() } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + yym2688 := z.EncBinary() + _ = yym2688 + if false { + } else { + h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) + } } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2750[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2753 := z.EncBinary() - _ = yym2753 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2750 || yy2arr2750 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2750[1] { - yym2755 := z.EncBinary() - _ = yym2755 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2750[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2756 := z.EncBinary() - _ = yym2756 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2750 || yy2arr2750 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2750[2] { - yy2758 := &x.ObjectMeta - yy2758.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2750[2] { + if yyq2686[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) + r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2759 := &x.ObjectMeta - yy2759.CodecEncodeSelf(e) + if x.Finalizers == nil { + r.EncodeNil() + } else { + yym2689 := z.EncBinary() + _ = yym2689 + if false { + } else { + h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) + } + } } } - if yyr2750 || yy2arr2750 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2761 := &x.Target - yy2761.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("target")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2762 := &x.Target - yy2762.CodecEncodeSelf(e) - } - if yyr2750 || yy2arr2750 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35183,29 +34346,29 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2763 := z.DecBinary() - _ = yym2763 + yym2690 := z.DecBinary() + _ = yym2690 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2764 := r.ContainerType() - if yyct2764 == codecSelferValueTypeMap1234 { - yyl2764 := r.ReadMapStart() - if yyl2764 == 0 { + yyct2691 := r.ContainerType() + if yyct2691 == codecSelferValueTypeMap1234 { + yyl2691 := r.ReadMapStart() + if yyl2691 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2764, d) + x.codecDecodeSelfFromMap(yyl2691, d) } - } else if yyct2764 == codecSelferValueTypeArray1234 { - yyl2764 := r.ReadArrayStart() - if yyl2764 == 0 { + } else if yyct2691 == codecSelferValueTypeArray1234 { + yyl2691 := r.ReadArrayStart() + if yyl2691 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2764, d) + x.codecDecodeSelfFromArray(yyl2691, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35213,16 +34376,16 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2765Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2765Slc - var yyhl2765 bool = l >= 0 - for yyj2765 := 0; ; yyj2765++ { - if yyhl2765 { - if yyj2765 >= l { + var yys2692Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2692Slc + var yyhl2692 bool = l >= 0 + for yyj2692 := 0; ; yyj2692++ { + if yyhl2692 { + if yyj2692 >= l { break } } else { @@ -35231,10 +34394,456 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2765Slc = r.DecodeBytes(yys2765Slc, true, true) - yys2765 := string(yys2765Slc) + yys2692Slc = r.DecodeBytes(yys2692Slc, true, true) + yys2692 := string(yys2692Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2765 { + switch yys2692 { + case "finalizers": + if r.TryDecodeAsNil() { + x.Finalizers = nil + } else { + yyv2693 := &x.Finalizers + yym2694 := z.DecBinary() + _ = yym2694 + if false { + } else { + h.decSliceFinalizerName((*[]FinalizerName)(yyv2693), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2692) + } // end switch yys2692 + } // end for yyj2692 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2695 int + var yyb2695 bool + var yyhl2695 bool = l >= 0 + yyj2695++ + if yyhl2695 { + yyb2695 = yyj2695 > l + } else { + yyb2695 = r.CheckBreak() + } + if yyb2695 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Finalizers = nil + } else { + yyv2696 := &x.Finalizers + yym2697 := z.DecBinary() + _ = yym2697 + if false { + } else { + h.decSliceFinalizerName((*[]FinalizerName)(yyv2696), d) + } + } + for { + yyj2695++ + if yyhl2695 { + yyb2695 = yyj2695 > l + } else { + yyb2695 = r.CheckBreak() + } + if yyb2695 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2695-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2698 := z.EncBinary() + _ = yym2698 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2699 := !z.EncBinary() + yy2arr2699 := z.EncBasicHandle().StructToArray + var yyq2699 [1]bool + _, _, _ = yysep2699, yyq2699, yy2arr2699 + const yyr2699 bool = false + yyq2699[0] = x.Phase != "" + var yynn2699 int + if yyr2699 || yy2arr2699 { + r.EncodeArrayStart(1) + } else { + yynn2699 = 0 + for _, b := range yyq2699 { + if b { + yynn2699++ + } + } + r.EncodeMapStart(yynn2699) + yynn2699 = 0 + } + if yyr2699 || yy2arr2699 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2699[0] { + x.Phase.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2699[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("phase")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Phase.CodecEncodeSelf(e) + } + } + if yyr2699 || yy2arr2699 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2701 := z.DecBinary() + _ = yym2701 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2702 := r.ContainerType() + if yyct2702 == codecSelferValueTypeMap1234 { + yyl2702 := r.ReadMapStart() + if yyl2702 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2702, d) + } + } else if yyct2702 == codecSelferValueTypeArray1234 { + yyl2702 := r.ReadArrayStart() + if yyl2702 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2702, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2703Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2703Slc + var yyhl2703 bool = l >= 0 + for yyj2703 := 0; ; yyj2703++ { + if yyhl2703 { + if yyj2703 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2703Slc = r.DecodeBytes(yys2703Slc, true, true) + yys2703 := string(yys2703Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2703 { + case "phase": + if r.TryDecodeAsNil() { + x.Phase = "" + } else { + x.Phase = NamespacePhase(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys2703) + } // end switch yys2703 + } // end for yyj2703 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2705 int + var yyb2705 bool + var yyhl2705 bool = l >= 0 + yyj2705++ + if yyhl2705 { + yyb2705 = yyj2705 > l + } else { + yyb2705 = r.CheckBreak() + } + if yyb2705 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Phase = "" + } else { + x.Phase = NamespacePhase(r.DecodeString()) + } + for { + yyj2705++ + if yyhl2705 { + yyb2705 = yyj2705 > l + } else { + yyb2705 = r.CheckBreak() + } + if yyb2705 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2705-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym2707 := z.EncBinary() + _ = yym2707 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2708 := z.DecBinary() + _ = yym2708 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2709 := z.EncBinary() + _ = yym2709 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2710 := !z.EncBinary() + yy2arr2710 := z.EncBasicHandle().StructToArray + var yyq2710 [5]bool + _, _, _ = yysep2710, yyq2710, yy2arr2710 + const yyr2710 bool = false + yyq2710[0] = x.Kind != "" + yyq2710[1] = x.APIVersion != "" + yyq2710[2] = true + yyq2710[3] = true + yyq2710[4] = true + var yynn2710 int + if yyr2710 || yy2arr2710 { + r.EncodeArrayStart(5) + } else { + yynn2710 = 0 + for _, b := range yyq2710 { + if b { + yynn2710++ + } + } + r.EncodeMapStart(yynn2710) + yynn2710 = 0 + } + if yyr2710 || yy2arr2710 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2710[0] { + yym2712 := z.EncBinary() + _ = yym2712 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2710[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2713 := z.EncBinary() + _ = yym2713 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2710 || yy2arr2710 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2710[1] { + yym2715 := z.EncBinary() + _ = yym2715 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2710[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2716 := z.EncBinary() + _ = yym2716 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2710 || yy2arr2710 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2710[2] { + yy2718 := &x.ObjectMeta + yy2718.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2710[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2719 := &x.ObjectMeta + yy2719.CodecEncodeSelf(e) + } + } + if yyr2710 || yy2arr2710 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2710[3] { + yy2721 := &x.Spec + yy2721.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2710[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2722 := &x.Spec + yy2722.CodecEncodeSelf(e) + } + } + if yyr2710 || yy2arr2710 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2710[4] { + yy2724 := &x.Status + yy2724.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2710[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2725 := &x.Status + yy2725.CodecEncodeSelf(e) + } + } + if yyr2710 || yy2arr2710 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2726 := z.DecBinary() + _ = yym2726 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2727 := r.ContainerType() + if yyct2727 == codecSelferValueTypeMap1234 { + yyl2727 := r.ReadMapStart() + if yyl2727 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2727, d) + } + } else if yyct2727 == codecSelferValueTypeArray1234 { + yyl2727 := r.ReadArrayStart() + if yyl2727 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2727, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2728Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2728Slc + var yyhl2728 bool = l >= 0 + for yyj2728 := 0; ; yyj2728++ { + if yyhl2728 { + if yyj2728 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2728Slc = r.DecodeBytes(yys2728Slc, true, true) + yys2728 := string(yys2728Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2728 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35251,37 +34860,44 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2768 := &x.ObjectMeta - yyv2768.CodecDecodeSelf(d) + yyv2731 := &x.ObjectMeta + yyv2731.CodecDecodeSelf(d) } - case "target": + case "spec": if r.TryDecodeAsNil() { - x.Target = ObjectReference{} + x.Spec = NamespaceSpec{} } else { - yyv2769 := &x.Target - yyv2769.CodecDecodeSelf(d) + yyv2732 := &x.Spec + yyv2732.CodecDecodeSelf(d) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = NamespaceStatus{} + } else { + yyv2733 := &x.Status + yyv2733.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2765) - } // end switch yys2765 - } // end for yyj2765 + z.DecStructFieldNotFound(-1, yys2728) + } // end switch yys2728 + } // end for yyj2728 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *Namespace) 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 yyj2734 int + var yyb2734 bool + var yyhl2734 bool = l >= 0 + yyj2734++ + if yyhl2734 { + yyb2734 = yyj2734 > l } else { - yyb2770 = r.CheckBreak() + yyb2734 = r.CheckBreak() } - if yyb2770 { + if yyb2734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35291,13 +34907,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + yyj2734++ + if yyhl2734 { + yyb2734 = yyj2734 > l } else { - yyb2770 = r.CheckBreak() + yyb2734 = r.CheckBreak() } - if yyb2770 { + if yyb2734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35307,13 +34923,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + yyj2734++ + if yyhl2734 { + yyb2734 = yyj2734 > l } else { - yyb2770 = r.CheckBreak() + yyb2734 = r.CheckBreak() } - if yyb2770 { + if yyb2734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35321,16 +34937,671 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2773 := &x.ObjectMeta - yyv2773.CodecDecodeSelf(d) + yyv2737 := &x.ObjectMeta + yyv2737.CodecDecodeSelf(d) } - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + yyj2734++ + if yyhl2734 { + yyb2734 = yyj2734 > l } else { - yyb2770 = r.CheckBreak() + yyb2734 = r.CheckBreak() } - if yyb2770 { + if yyb2734 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = NamespaceSpec{} + } else { + yyv2738 := &x.Spec + yyv2738.CodecDecodeSelf(d) + } + yyj2734++ + if yyhl2734 { + yyb2734 = yyj2734 > l + } else { + yyb2734 = r.CheckBreak() + } + if yyb2734 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = NamespaceStatus{} + } else { + yyv2739 := &x.Status + yyv2739.CodecDecodeSelf(d) + } + for { + yyj2734++ + if yyhl2734 { + yyb2734 = yyj2734 > l + } else { + yyb2734 = r.CheckBreak() + } + if yyb2734 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2734-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2740 := z.EncBinary() + _ = yym2740 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2741 := !z.EncBinary() + yy2arr2741 := z.EncBasicHandle().StructToArray + var yyq2741 [4]bool + _, _, _ = yysep2741, yyq2741, yy2arr2741 + const yyr2741 bool = false + yyq2741[0] = x.Kind != "" + yyq2741[1] = x.APIVersion != "" + yyq2741[2] = true + var yynn2741 int + if yyr2741 || yy2arr2741 { + r.EncodeArrayStart(4) + } else { + yynn2741 = 1 + for _, b := range yyq2741 { + if b { + yynn2741++ + } + } + r.EncodeMapStart(yynn2741) + yynn2741 = 0 + } + if yyr2741 || yy2arr2741 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2741[0] { + yym2743 := z.EncBinary() + _ = yym2743 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2741[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2744 := z.EncBinary() + _ = yym2744 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2741 || yy2arr2741 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2741[1] { + yym2746 := z.EncBinary() + _ = yym2746 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2741[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2747 := z.EncBinary() + _ = yym2747 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2741 || yy2arr2741 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2741[2] { + yy2749 := &x.ListMeta + yym2750 := z.EncBinary() + _ = yym2750 + if false { + } else if z.HasExtensions() && z.EncExt(yy2749) { + } else { + z.EncFallback(yy2749) + } + } else { + r.EncodeNil() + } + } else { + if yyq2741[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2751 := &x.ListMeta + yym2752 := z.EncBinary() + _ = yym2752 + if false { + } else if z.HasExtensions() && z.EncExt(yy2751) { + } else { + z.EncFallback(yy2751) + } + } + } + if yyr2741 || yy2arr2741 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym2754 := z.EncBinary() + _ = yym2754 + if false { + } else { + h.encSliceNamespace(([]Namespace)(x.Items), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym2755 := z.EncBinary() + _ = yym2755 + if false { + } else { + h.encSliceNamespace(([]Namespace)(x.Items), e) + } + } + } + if yyr2741 || yy2arr2741 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2756 := z.DecBinary() + _ = yym2756 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2757 := r.ContainerType() + if yyct2757 == codecSelferValueTypeMap1234 { + yyl2757 := r.ReadMapStart() + if yyl2757 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2757, d) + } + } else if yyct2757 == codecSelferValueTypeArray1234 { + yyl2757 := r.ReadArrayStart() + if yyl2757 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2757, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2758Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2758Slc + var yyhl2758 bool = l >= 0 + for yyj2758 := 0; ; yyj2758++ { + if yyhl2758 { + if yyj2758 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2758Slc = r.DecodeBytes(yys2758Slc, true, true) + yys2758 := string(yys2758Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2758 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv2761 := &x.ListMeta + yym2762 := z.DecBinary() + _ = yym2762 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2761) { + } else { + z.DecFallback(yyv2761, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2763 := &x.Items + yym2764 := z.DecBinary() + _ = yym2764 + if false { + } else { + h.decSliceNamespace((*[]Namespace)(yyv2763), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2758) + } // end switch yys2758 + } // end for yyj2758 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2765 int + var yyb2765 bool + var yyhl2765 bool = l >= 0 + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l + } else { + yyb2765 = r.CheckBreak() + } + if yyb2765 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l + } else { + yyb2765 = r.CheckBreak() + } + if yyb2765 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l + } else { + yyb2765 = r.CheckBreak() + } + if yyb2765 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv2768 := &x.ListMeta + yym2769 := z.DecBinary() + _ = yym2769 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2768) { + } else { + z.DecFallback(yyv2768, false) + } + } + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l + } else { + yyb2765 = r.CheckBreak() + } + if yyb2765 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2770 := &x.Items + yym2771 := z.DecBinary() + _ = yym2771 + if false { + } else { + h.decSliceNamespace((*[]Namespace)(yyv2770), d) + } + } + for { + yyj2765++ + if yyhl2765 { + yyb2765 = yyj2765 > l + } else { + yyb2765 = r.CheckBreak() + } + if yyb2765 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2765-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2772 := z.EncBinary() + _ = yym2772 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2773 := !z.EncBinary() + yy2arr2773 := z.EncBasicHandle().StructToArray + var yyq2773 [4]bool + _, _, _ = yysep2773, yyq2773, yy2arr2773 + const yyr2773 bool = false + yyq2773[0] = x.Kind != "" + yyq2773[1] = x.APIVersion != "" + yyq2773[2] = true + var yynn2773 int + if yyr2773 || yy2arr2773 { + r.EncodeArrayStart(4) + } else { + yynn2773 = 1 + for _, b := range yyq2773 { + if b { + yynn2773++ + } + } + r.EncodeMapStart(yynn2773) + yynn2773 = 0 + } + if yyr2773 || yy2arr2773 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2773[0] { + yym2775 := z.EncBinary() + _ = yym2775 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2773[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2776 := z.EncBinary() + _ = yym2776 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2773 || yy2arr2773 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2773[1] { + yym2778 := z.EncBinary() + _ = yym2778 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2773[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2779 := z.EncBinary() + _ = yym2779 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2773 || yy2arr2773 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2773[2] { + yy2781 := &x.ObjectMeta + yy2781.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2773[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2782 := &x.ObjectMeta + yy2782.CodecEncodeSelf(e) + } + } + if yyr2773 || yy2arr2773 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy2784 := &x.Target + yy2784.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("target")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2785 := &x.Target + yy2785.CodecEncodeSelf(e) + } + if yyr2773 || yy2arr2773 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2786 := z.DecBinary() + _ = yym2786 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2787 := r.ContainerType() + if yyct2787 == codecSelferValueTypeMap1234 { + yyl2787 := r.ReadMapStart() + if yyl2787 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2787, d) + } + } else if yyct2787 == codecSelferValueTypeArray1234 { + yyl2787 := r.ReadArrayStart() + if yyl2787 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2787, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2788Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2788Slc + var yyhl2788 bool = l >= 0 + for yyj2788 := 0; ; yyj2788++ { + if yyhl2788 { + if yyj2788 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2788Slc = r.DecodeBytes(yys2788Slc, true, true) + yys2788 := string(yys2788Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2788 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2791 := &x.ObjectMeta + yyv2791.CodecDecodeSelf(d) + } + case "target": + if r.TryDecodeAsNil() { + x.Target = ObjectReference{} + } else { + yyv2792 := &x.Target + yyv2792.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2788) + } // end switch yys2788 + } // end for yyj2788 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2793 int + var yyb2793 bool + var yyhl2793 bool = l >= 0 + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l + } else { + yyb2793 = r.CheckBreak() + } + if yyb2793 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l + } else { + yyb2793 = r.CheckBreak() + } + if yyb2793 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l + } else { + yyb2793 = r.CheckBreak() + } + if yyb2793 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2796 := &x.ObjectMeta + yyv2796.CodecDecodeSelf(d) + } + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l + } else { + yyb2793 = r.CheckBreak() + } + if yyb2793 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35338,21 +35609,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2774 := &x.Target - yyv2774.CodecDecodeSelf(d) + yyv2797 := &x.Target + yyv2797.CodecDecodeSelf(d) } for { - yyj2770++ - if yyhl2770 { - yyb2770 = yyj2770 > l + yyj2793++ + if yyhl2793 { + yyb2793 = yyj2793 > l } else { - yyb2770 = r.CheckBreak() + yyb2793 = r.CheckBreak() } - if yyb2770 { + if yyb2793 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2770-1, "") + z.DecStructFieldNotFound(yyj2793-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35364,36 +35635,36 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2775 := z.EncBinary() - _ = yym2775 + yym2798 := z.EncBinary() + _ = yym2798 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2776 := !z.EncBinary() - yy2arr2776 := z.EncBasicHandle().StructToArray - var yyq2776 [3]bool - _, _, _ = yysep2776, yyq2776, yy2arr2776 - const yyr2776 bool = false - yyq2776[0] = x.Kind != "" - yyq2776[1] = x.APIVersion != "" - var yynn2776 int - if yyr2776 || yy2arr2776 { + yysep2799 := !z.EncBinary() + yy2arr2799 := z.EncBasicHandle().StructToArray + var yyq2799 [3]bool + _, _, _ = yysep2799, yyq2799, yy2arr2799 + const yyr2799 bool = false + yyq2799[0] = x.Kind != "" + yyq2799[1] = x.APIVersion != "" + var yynn2799 int + if yyr2799 || yy2arr2799 { r.EncodeArrayStart(3) } else { - yynn2776 = 1 - for _, b := range yyq2776 { + yynn2799 = 1 + for _, b := range yyq2799 { if b { - yynn2776++ + yynn2799++ } } - r.EncodeMapStart(yynn2776) - yynn2776 = 0 + r.EncodeMapStart(yynn2799) + yynn2799 = 0 } - if yyr2776 || yy2arr2776 { + if yyr2799 || yy2arr2799 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2776[0] { - yym2778 := z.EncBinary() - _ = yym2778 + if yyq2799[0] { + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35402,23 +35673,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2776[0] { + if yyq2799[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2779 := z.EncBinary() - _ = yym2779 + yym2802 := z.EncBinary() + _ = yym2802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2776 || yy2arr2776 { + if yyr2799 || yy2arr2799 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2776[1] { - yym2781 := z.EncBinary() - _ = yym2781 + if yyq2799[1] { + yym2804 := z.EncBinary() + _ = yym2804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35427,29 +35698,29 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2776[1] { + if yyq2799[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2782 := z.EncBinary() - _ = yym2782 + yym2805 := z.EncBinary() + _ = yym2805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2776 || yy2arr2776 { + if yyr2799 || yy2arr2799 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2784 := *x.GracePeriodSeconds - yym2785 := z.EncBinary() - _ = yym2785 + yy2807 := *x.GracePeriodSeconds + yym2808 := z.EncBinary() + _ = yym2808 if false { } else { - r.EncodeInt(int64(yy2784)) + r.EncodeInt(int64(yy2807)) } } } else { @@ -35459,16 +35730,16 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2786 := *x.GracePeriodSeconds - yym2787 := z.EncBinary() - _ = yym2787 + yy2809 := *x.GracePeriodSeconds + yym2810 := z.EncBinary() + _ = yym2810 if false { } else { - r.EncodeInt(int64(yy2786)) + r.EncodeInt(int64(yy2809)) } } } - if yyr2776 || yy2arr2776 { + if yyr2799 || yy2arr2799 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35481,25 +35752,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2788 := z.DecBinary() - _ = yym2788 + yym2811 := z.DecBinary() + _ = yym2811 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2789 := r.ContainerType() - if yyct2789 == codecSelferValueTypeMap1234 { - yyl2789 := r.ReadMapStart() - if yyl2789 == 0 { + yyct2812 := r.ContainerType() + if yyct2812 == codecSelferValueTypeMap1234 { + yyl2812 := r.ReadMapStart() + if yyl2812 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2789, d) + x.codecDecodeSelfFromMap(yyl2812, d) } - } else if yyct2789 == codecSelferValueTypeArray1234 { - yyl2789 := r.ReadArrayStart() - if yyl2789 == 0 { + } else if yyct2812 == codecSelferValueTypeArray1234 { + yyl2812 := r.ReadArrayStart() + if yyl2812 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2789, d) + x.codecDecodeSelfFromArray(yyl2812, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35511,12 +35782,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2790Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2790Slc - var yyhl2790 bool = l >= 0 - for yyj2790 := 0; ; yyj2790++ { - if yyhl2790 { - if yyj2790 >= l { + var yys2813Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2813Slc + var yyhl2813 bool = l >= 0 + for yyj2813 := 0; ; yyj2813++ { + if yyhl2813 { + if yyj2813 >= l { break } } else { @@ -35525,10 +35796,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2790Slc = r.DecodeBytes(yys2790Slc, true, true) - yys2790 := string(yys2790Slc) + yys2813Slc = r.DecodeBytes(yys2813Slc, true, true) + yys2813 := string(yys2813Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2790 { + switch yys2813 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35550,17 +35821,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2794 := z.DecBinary() - _ = yym2794 + yym2817 := z.DecBinary() + _ = yym2817 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2790) - } // end switch yys2790 - } // end for yyj2790 + z.DecStructFieldNotFound(-1, yys2813) + } // end switch yys2813 + } // end for yyj2813 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35568,16 +35839,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2795 int - var yyb2795 bool - var yyhl2795 bool = l >= 0 - yyj2795++ - if yyhl2795 { - yyb2795 = yyj2795 > l + var yyj2818 int + var yyb2818 bool + var yyhl2818 bool = l >= 0 + yyj2818++ + if yyhl2818 { + yyb2818 = yyj2818 > l } else { - yyb2795 = r.CheckBreak() + yyb2818 = r.CheckBreak() } - if yyb2795 { + if yyb2818 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35587,13 +35858,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2795++ - if yyhl2795 { - yyb2795 = yyj2795 > l + yyj2818++ + if yyhl2818 { + yyb2818 = yyj2818 > l } else { - yyb2795 = r.CheckBreak() + yyb2818 = r.CheckBreak() } - if yyb2795 { + if yyb2818 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35603,13 +35874,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2795++ - if yyhl2795 { - yyb2795 = yyj2795 > l + yyj2818++ + if yyhl2818 { + yyb2818 = yyj2818 > l } else { - yyb2795 = r.CheckBreak() + yyb2818 = r.CheckBreak() } - if yyb2795 { + if yyb2818 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35622,25 +35893,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2799 := z.DecBinary() - _ = yym2799 + yym2822 := z.DecBinary() + _ = yym2822 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2795++ - if yyhl2795 { - yyb2795 = yyj2795 > l + yyj2818++ + if yyhl2818 { + yyb2818 = yyj2818 > l } else { - yyb2795 = r.CheckBreak() + yyb2818 = r.CheckBreak() } - if yyb2795 { + if yyb2818 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2795-1, "") + z.DecStructFieldNotFound(yyj2818-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35652,36 +35923,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2800 := z.EncBinary() - _ = yym2800 + yym2823 := z.EncBinary() + _ = yym2823 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - 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 != "" - var yynn2801 int - if yyr2801 || yy2arr2801 { + yysep2824 := !z.EncBinary() + yy2arr2824 := z.EncBasicHandle().StructToArray + var yyq2824 [4]bool + _, _, _ = yysep2824, yyq2824, yy2arr2824 + const yyr2824 bool = false + yyq2824[0] = x.Kind != "" + yyq2824[1] = x.APIVersion != "" + var yynn2824 int + if yyr2824 || yy2arr2824 { r.EncodeArrayStart(4) } else { - yynn2801 = 2 - for _, b := range yyq2801 { + yynn2824 = 2 + for _, b := range yyq2824 { if b { - yynn2801++ + yynn2824++ } } - r.EncodeMapStart(yynn2801) - yynn2801 = 0 + r.EncodeMapStart(yynn2824) + yynn2824 = 0 } - if yyr2801 || yy2arr2801 { + if yyr2824 || yy2arr2824 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2801[0] { - yym2803 := z.EncBinary() - _ = yym2803 + if yyq2824[0] { + yym2826 := z.EncBinary() + _ = yym2826 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35690,23 +35961,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2801[0] { + if yyq2824[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2804 := z.EncBinary() - _ = yym2804 + yym2827 := z.EncBinary() + _ = yym2827 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2801 || yy2arr2801 { + if yyr2824 || yy2arr2824 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2801[1] { - yym2806 := z.EncBinary() - _ = yym2806 + if yyq2824[1] { + yym2829 := z.EncBinary() + _ = yym2829 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35715,22 +35986,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2801[1] { + if yyq2824[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2807 := z.EncBinary() - _ = yym2807 + yym2830 := z.EncBinary() + _ = yym2830 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2801 || yy2arr2801 { + if yyr2824 || yy2arr2824 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2809 := z.EncBinary() - _ = yym2809 + yym2832 := z.EncBinary() + _ = yym2832 if false { } else { r.EncodeBool(bool(x.Export)) @@ -35739,17 +36010,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2810 := z.EncBinary() - _ = yym2810 + yym2833 := z.EncBinary() + _ = yym2833 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr2801 || yy2arr2801 { + if yyr2824 || yy2arr2824 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2812 := z.EncBinary() - _ = yym2812 + yym2835 := z.EncBinary() + _ = yym2835 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -35758,14 +36029,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2813 := z.EncBinary() - _ = yym2813 + yym2836 := z.EncBinary() + _ = yym2836 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr2801 || yy2arr2801 { + if yyr2824 || yy2arr2824 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35778,25 +36049,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2814 := z.DecBinary() - _ = yym2814 + yym2837 := z.DecBinary() + _ = yym2837 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2815 := r.ContainerType() - if yyct2815 == codecSelferValueTypeMap1234 { - yyl2815 := r.ReadMapStart() - if yyl2815 == 0 { + yyct2838 := r.ContainerType() + if yyct2838 == codecSelferValueTypeMap1234 { + yyl2838 := r.ReadMapStart() + if yyl2838 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2815, d) + x.codecDecodeSelfFromMap(yyl2838, d) } - } else if yyct2815 == codecSelferValueTypeArray1234 { - yyl2815 := r.ReadArrayStart() - if yyl2815 == 0 { + } else if yyct2838 == codecSelferValueTypeArray1234 { + yyl2838 := r.ReadArrayStart() + if yyl2838 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2815, d) + x.codecDecodeSelfFromArray(yyl2838, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35808,12 +36079,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2816Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2816Slc - var yyhl2816 bool = l >= 0 - for yyj2816 := 0; ; yyj2816++ { - if yyhl2816 { - if yyj2816 >= l { + var yys2839Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2839Slc + var yyhl2839 bool = l >= 0 + for yyj2839 := 0; ; yyj2839++ { + if yyhl2839 { + if yyj2839 >= l { break } } else { @@ -35822,10 +36093,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2816Slc = r.DecodeBytes(yys2816Slc, true, true) - yys2816 := string(yys2816Slc) + yys2839Slc = r.DecodeBytes(yys2839Slc, true, true) + yys2839 := string(yys2839Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2816 { + switch yys2839 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35851,9 +36122,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2816) - } // end switch yys2816 - } // end for yyj2816 + z.DecStructFieldNotFound(-1, yys2839) + } // end switch yys2839 + } // end for yyj2839 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35861,16 +36132,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2821 int - var yyb2821 bool - var yyhl2821 bool = l >= 0 - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + var yyj2844 int + var yyb2844 bool + var yyhl2844 bool = l >= 0 + yyj2844++ + if yyhl2844 { + yyb2844 = yyj2844 > l } else { - yyb2821 = r.CheckBreak() + yyb2844 = r.CheckBreak() } - if yyb2821 { + if yyb2844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35880,13 +36151,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + yyj2844++ + if yyhl2844 { + yyb2844 = yyj2844 > l } else { - yyb2821 = r.CheckBreak() + yyb2844 = r.CheckBreak() } - if yyb2821 { + if yyb2844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35896,13 +36167,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + yyj2844++ + if yyhl2844 { + yyb2844 = yyj2844 > l } else { - yyb2821 = r.CheckBreak() + yyb2844 = r.CheckBreak() } - if yyb2821 { + if yyb2844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35912,13 +36183,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + yyj2844++ + if yyhl2844 { + yyb2844 = yyj2844 > l } else { - yyb2821 = r.CheckBreak() + yyb2844 = r.CheckBreak() } - if yyb2821 { + if yyb2844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35929,17 +36200,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + yyj2844++ + if yyhl2844 { + yyb2844 = yyj2844 > l } else { - yyb2821 = r.CheckBreak() + yyb2844 = r.CheckBreak() } - if yyb2821 { + if yyb2844 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2821-1, "") + z.DecStructFieldNotFound(yyj2844-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35951,41 +36222,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2826 := z.EncBinary() - _ = yym2826 + yym2849 := z.EncBinary() + _ = yym2849 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2827 := !z.EncBinary() - yy2arr2827 := z.EncBasicHandle().StructToArray - var yyq2827 [7]bool - _, _, _ = yysep2827, yyq2827, yy2arr2827 - const yyr2827 bool = false - yyq2827[0] = x.Kind != "" - yyq2827[1] = x.APIVersion != "" - yyq2827[2] = x.LabelSelector != "" - yyq2827[3] = x.FieldSelector != "" - yyq2827[4] = x.Watch != false - yyq2827[5] = x.ResourceVersion != "" - yyq2827[6] = x.TimeoutSeconds != nil - var yynn2827 int - if yyr2827 || yy2arr2827 { + yysep2850 := !z.EncBinary() + yy2arr2850 := z.EncBasicHandle().StructToArray + var yyq2850 [7]bool + _, _, _ = yysep2850, yyq2850, yy2arr2850 + const yyr2850 bool = false + yyq2850[0] = x.Kind != "" + yyq2850[1] = x.APIVersion != "" + yyq2850[2] = x.LabelSelector != "" + yyq2850[3] = x.FieldSelector != "" + yyq2850[4] = x.Watch != false + yyq2850[5] = x.ResourceVersion != "" + yyq2850[6] = x.TimeoutSeconds != nil + var yynn2850 int + if yyr2850 || yy2arr2850 { r.EncodeArrayStart(7) } else { - yynn2827 = 0 - for _, b := range yyq2827 { + yynn2850 = 0 + for _, b := range yyq2850 { if b { - yynn2827++ + yynn2850++ } } - r.EncodeMapStart(yynn2827) - yynn2827 = 0 + r.EncodeMapStart(yynn2850) + yynn2850 = 0 } - if yyr2827 || yy2arr2827 { + if yyr2850 || yy2arr2850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2827[0] { - yym2829 := z.EncBinary() - _ = yym2829 + if yyq2850[0] { + yym2852 := z.EncBinary() + _ = yym2852 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35994,23 +36265,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2827[0] { + if yyq2850[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2830 := z.EncBinary() - _ = yym2830 + yym2853 := z.EncBinary() + _ = yym2853 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2827 || yy2arr2827 { + if yyr2850 || yy2arr2850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2827[1] { - yym2832 := z.EncBinary() - _ = yym2832 + if yyq2850[1] { + yym2855 := z.EncBinary() + _ = yym2855 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36019,23 +36290,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2827[1] { + if yyq2850[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2833 := z.EncBinary() - _ = yym2833 + yym2856 := z.EncBinary() + _ = yym2856 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2827 || yy2arr2827 { + if yyr2850 || yy2arr2850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2827[2] { - yym2835 := z.EncBinary() - _ = yym2835 + if yyq2850[2] { + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -36044,23 +36315,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2827[2] { + if yyq2850[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2836 := z.EncBinary() - _ = yym2836 + yym2859 := z.EncBinary() + _ = yym2859 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr2827 || yy2arr2827 { + if yyr2850 || yy2arr2850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2827[3] { - yym2838 := z.EncBinary() - _ = yym2838 + if yyq2850[3] { + yym2861 := z.EncBinary() + _ = yym2861 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -36069,23 +36340,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2827[3] { + if yyq2850[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2839 := z.EncBinary() - _ = yym2839 + yym2862 := z.EncBinary() + _ = yym2862 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr2827 || yy2arr2827 { + if yyr2850 || yy2arr2850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2827[4] { - yym2841 := z.EncBinary() - _ = yym2841 + if yyq2850[4] { + yym2864 := z.EncBinary() + _ = yym2864 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -36094,23 +36365,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2827[4] { + if yyq2850[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2842 := z.EncBinary() - _ = yym2842 + yym2865 := z.EncBinary() + _ = yym2865 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr2827 || yy2arr2827 { + if yyr2850 || yy2arr2850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2827[5] { - yym2844 := z.EncBinary() - _ = yym2844 + if yyq2850[5] { + yym2867 := z.EncBinary() + _ = yym2867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -36119,54 +36390,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2827[5] { + if yyq2850[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2845 := z.EncBinary() - _ = yym2845 + yym2868 := z.EncBinary() + _ = yym2868 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr2827 || yy2arr2827 { + if yyr2850 || yy2arr2850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2827[6] { + if yyq2850[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2847 := *x.TimeoutSeconds - yym2848 := z.EncBinary() - _ = yym2848 + yy2870 := *x.TimeoutSeconds + yym2871 := z.EncBinary() + _ = yym2871 if false { } else { - r.EncodeInt(int64(yy2847)) + r.EncodeInt(int64(yy2870)) } } } else { r.EncodeNil() } } else { - if yyq2827[6] { + if yyq2850[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2849 := *x.TimeoutSeconds - yym2850 := z.EncBinary() - _ = yym2850 + yy2872 := *x.TimeoutSeconds + yym2873 := z.EncBinary() + _ = yym2873 if false { } else { - r.EncodeInt(int64(yy2849)) + r.EncodeInt(int64(yy2872)) } } } } - if yyr2827 || yy2arr2827 { + if yyr2850 || yy2arr2850 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36179,25 +36450,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2851 := z.DecBinary() - _ = yym2851 + yym2874 := z.DecBinary() + _ = yym2874 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2852 := r.ContainerType() - if yyct2852 == codecSelferValueTypeMap1234 { - yyl2852 := r.ReadMapStart() - if yyl2852 == 0 { + yyct2875 := r.ContainerType() + if yyct2875 == codecSelferValueTypeMap1234 { + yyl2875 := r.ReadMapStart() + if yyl2875 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2852, d) + x.codecDecodeSelfFromMap(yyl2875, d) } - } else if yyct2852 == codecSelferValueTypeArray1234 { - yyl2852 := r.ReadArrayStart() - if yyl2852 == 0 { + } else if yyct2875 == codecSelferValueTypeArray1234 { + yyl2875 := r.ReadArrayStart() + if yyl2875 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2852, d) + x.codecDecodeSelfFromArray(yyl2875, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36209,12 +36480,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2853Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2853Slc - var yyhl2853 bool = l >= 0 - for yyj2853 := 0; ; yyj2853++ { - if yyhl2853 { - if yyj2853 >= 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 { @@ -36223,10 +36494,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2853Slc = r.DecodeBytes(yys2853Slc, true, true) - yys2853 := string(yys2853Slc) + yys2876Slc = r.DecodeBytes(yys2876Slc, true, true) + yys2876 := string(yys2876Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2853 { + switch yys2876 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36272,17 +36543,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2861 := z.DecBinary() - _ = yym2861 + yym2884 := z.DecBinary() + _ = yym2884 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2853) - } // end switch yys2853 - } // end for yyj2853 + z.DecStructFieldNotFound(-1, yys2876) + } // end switch yys2876 + } // end for yyj2876 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36290,16 +36561,16 @@ func (x *ListOptions) 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 yyj2885 int + var yyb2885 bool + var yyhl2885 bool = l >= 0 + yyj2885++ + if yyhl2885 { + yyb2885 = yyj2885 > l } else { - yyb2862 = r.CheckBreak() + yyb2885 = r.CheckBreak() } - if yyb2862 { + if yyb2885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36309,13 +36580,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + yyj2885++ + if yyhl2885 { + yyb2885 = yyj2885 > l } else { - yyb2862 = r.CheckBreak() + yyb2885 = r.CheckBreak() } - if yyb2862 { + if yyb2885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36325,13 +36596,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + yyj2885++ + if yyhl2885 { + yyb2885 = yyj2885 > l } else { - yyb2862 = r.CheckBreak() + yyb2885 = r.CheckBreak() } - if yyb2862 { + if yyb2885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36341,13 +36612,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + yyj2885++ + if yyhl2885 { + yyb2885 = yyj2885 > l } else { - yyb2862 = r.CheckBreak() + yyb2885 = r.CheckBreak() } - if yyb2862 { + if yyb2885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36357,13 +36628,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + yyj2885++ + if yyhl2885 { + yyb2885 = yyj2885 > l } else { - yyb2862 = r.CheckBreak() + yyb2885 = r.CheckBreak() } - if yyb2862 { + if yyb2885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36373,13 +36644,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + yyj2885++ + if yyhl2885 { + yyb2885 = yyj2885 > l } else { - yyb2862 = r.CheckBreak() + yyb2885 = r.CheckBreak() } - if yyb2862 { + if yyb2885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36389,13 +36660,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + yyj2885++ + if yyhl2885 { + yyb2885 = yyj2885 > l } else { - yyb2862 = r.CheckBreak() + yyb2885 = r.CheckBreak() } - if yyb2862 { + if yyb2885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36408,25 +36679,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2870 := z.DecBinary() - _ = yym2870 + yym2893 := z.DecBinary() + _ = yym2893 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2862++ - if yyhl2862 { - yyb2862 = yyj2862 > l + yyj2885++ + if yyhl2885 { + yyb2885 = yyj2885 > l } else { - yyb2862 = r.CheckBreak() + yyb2885 = r.CheckBreak() } - if yyb2862 { + if yyb2885 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2862-1, "") + z.DecStructFieldNotFound(yyj2885-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36438,44 +36709,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2871 := z.EncBinary() - _ = yym2871 + yym2894 := z.EncBinary() + _ = yym2894 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2872 := !z.EncBinary() - yy2arr2872 := z.EncBasicHandle().StructToArray - var yyq2872 [10]bool - _, _, _ = yysep2872, yyq2872, yy2arr2872 - const yyr2872 bool = false - yyq2872[0] = x.Kind != "" - yyq2872[1] = x.APIVersion != "" - yyq2872[2] = x.Container != "" - yyq2872[3] = x.Follow != false - yyq2872[4] = x.Previous != false - yyq2872[5] = x.SinceSeconds != nil - yyq2872[6] = x.SinceTime != nil - yyq2872[7] = x.Timestamps != false - yyq2872[8] = x.TailLines != nil - yyq2872[9] = x.LimitBytes != nil - var yynn2872 int - if yyr2872 || yy2arr2872 { + yysep2895 := !z.EncBinary() + yy2arr2895 := z.EncBasicHandle().StructToArray + var yyq2895 [10]bool + _, _, _ = yysep2895, yyq2895, yy2arr2895 + const yyr2895 bool = false + yyq2895[0] = x.Kind != "" + yyq2895[1] = x.APIVersion != "" + yyq2895[2] = x.Container != "" + yyq2895[3] = x.Follow != false + yyq2895[4] = x.Previous != false + yyq2895[5] = x.SinceSeconds != nil + yyq2895[6] = x.SinceTime != nil + yyq2895[7] = x.Timestamps != false + yyq2895[8] = x.TailLines != nil + yyq2895[9] = x.LimitBytes != nil + var yynn2895 int + if yyr2895 || yy2arr2895 { r.EncodeArrayStart(10) } else { - yynn2872 = 0 - for _, b := range yyq2872 { + yynn2895 = 0 + for _, b := range yyq2895 { if b { - yynn2872++ + yynn2895++ } } - r.EncodeMapStart(yynn2872) - yynn2872 = 0 + r.EncodeMapStart(yynn2895) + yynn2895 = 0 } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[0] { - yym2874 := z.EncBinary() - _ = yym2874 + if yyq2895[0] { + yym2897 := z.EncBinary() + _ = yym2897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36484,23 +36755,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2872[0] { + if yyq2895[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2875 := z.EncBinary() - _ = yym2875 + yym2898 := z.EncBinary() + _ = yym2898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[1] { - yym2877 := z.EncBinary() - _ = yym2877 + if yyq2895[1] { + yym2900 := z.EncBinary() + _ = yym2900 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36509,23 +36780,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2872[1] { + if yyq2895[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2878 := z.EncBinary() - _ = yym2878 + yym2901 := z.EncBinary() + _ = yym2901 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[2] { - yym2880 := z.EncBinary() - _ = yym2880 + if yyq2895[2] { + yym2903 := z.EncBinary() + _ = yym2903 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -36534,23 +36805,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2872[2] { + if yyq2895[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2881 := z.EncBinary() - _ = yym2881 + yym2904 := z.EncBinary() + _ = yym2904 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[3] { - yym2883 := z.EncBinary() - _ = yym2883 + if yyq2895[3] { + yym2906 := z.EncBinary() + _ = yym2906 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -36559,23 +36830,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2872[3] { + if yyq2895[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2884 := z.EncBinary() - _ = yym2884 + yym2907 := z.EncBinary() + _ = yym2907 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[4] { - yym2886 := z.EncBinary() - _ = yym2886 + if yyq2895[4] { + yym2909 := z.EncBinary() + _ = yym2909 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -36584,66 +36855,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2872[4] { + if yyq2895[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2887 := z.EncBinary() - _ = yym2887 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[5] { + if yyq2895[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2889 := *x.SinceSeconds - yym2890 := z.EncBinary() - _ = yym2890 + yy2912 := *x.SinceSeconds + yym2913 := z.EncBinary() + _ = yym2913 if false { } else { - r.EncodeInt(int64(yy2889)) + r.EncodeInt(int64(yy2912)) } } } else { r.EncodeNil() } } else { - if yyq2872[5] { + if yyq2895[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2891 := *x.SinceSeconds - yym2892 := z.EncBinary() - _ = yym2892 + yy2914 := *x.SinceSeconds + yym2915 := z.EncBinary() + _ = yym2915 if false { } else { - r.EncodeInt(int64(yy2891)) + r.EncodeInt(int64(yy2914)) } } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[6] { + if yyq2895[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym2894 := z.EncBinary() - _ = yym2894 + yym2917 := z.EncBinary() + _ = yym2917 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2894 { + } else if yym2917 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2894 && z.IsJSONHandle() { + } else if !yym2917 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -36653,20 +36924,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2872[6] { + if yyq2895[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym2895 := z.EncBinary() - _ = yym2895 + yym2918 := z.EncBinary() + _ = yym2918 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2895 { + } else if yym2918 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2895 && z.IsJSONHandle() { + } else if !yym2918 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -36674,11 +36945,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[7] { - yym2897 := z.EncBinary() - _ = yym2897 + if yyq2895[7] { + yym2920 := z.EncBinary() + _ = yym2920 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -36687,89 +36958,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2872[7] { + if yyq2895[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2898 := z.EncBinary() - _ = yym2898 + yym2921 := z.EncBinary() + _ = yym2921 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[8] { + if yyq2895[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy2900 := *x.TailLines - yym2901 := z.EncBinary() - _ = yym2901 + yy2923 := *x.TailLines + yym2924 := z.EncBinary() + _ = yym2924 if false { } else { - r.EncodeInt(int64(yy2900)) + r.EncodeInt(int64(yy2923)) } } } else { r.EncodeNil() } } else { - if yyq2872[8] { + if yyq2895[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy2902 := *x.TailLines - yym2903 := z.EncBinary() - _ = yym2903 + yy2925 := *x.TailLines + yym2926 := z.EncBinary() + _ = yym2926 if false { } else { - r.EncodeInt(int64(yy2902)) + r.EncodeInt(int64(yy2925)) } } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2872[9] { + if yyq2895[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy2905 := *x.LimitBytes - yym2906 := z.EncBinary() - _ = yym2906 + yy2928 := *x.LimitBytes + yym2929 := z.EncBinary() + _ = yym2929 if false { } else { - r.EncodeInt(int64(yy2905)) + r.EncodeInt(int64(yy2928)) } } } else { r.EncodeNil() } } else { - if yyq2872[9] { + if yyq2895[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy2907 := *x.LimitBytes - yym2908 := z.EncBinary() - _ = yym2908 + yy2930 := *x.LimitBytes + yym2931 := z.EncBinary() + _ = yym2931 if false { } else { - r.EncodeInt(int64(yy2907)) + r.EncodeInt(int64(yy2930)) } } } } - if yyr2872 || yy2arr2872 { + if yyr2895 || yy2arr2895 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36782,25 +37053,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2909 := z.DecBinary() - _ = yym2909 + yym2932 := z.DecBinary() + _ = yym2932 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2910 := r.ContainerType() - if yyct2910 == codecSelferValueTypeMap1234 { - yyl2910 := r.ReadMapStart() - if yyl2910 == 0 { + yyct2933 := r.ContainerType() + if yyct2933 == codecSelferValueTypeMap1234 { + yyl2933 := r.ReadMapStart() + if yyl2933 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2910, d) + x.codecDecodeSelfFromMap(yyl2933, d) } - } else if yyct2910 == codecSelferValueTypeArray1234 { - yyl2910 := r.ReadArrayStart() - if yyl2910 == 0 { + } else if yyct2933 == codecSelferValueTypeArray1234 { + yyl2933 := r.ReadArrayStart() + if yyl2933 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2910, d) + x.codecDecodeSelfFromArray(yyl2933, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36812,12 +37083,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2911Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2911Slc - var yyhl2911 bool = l >= 0 - for yyj2911 := 0; ; yyj2911++ { - if yyhl2911 { - if yyj2911 >= l { + var yys2934Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2934Slc + var yyhl2934 bool = l >= 0 + for yyj2934 := 0; ; yyj2934++ { + if yyhl2934 { + if yyj2934 >= l { break } } else { @@ -36826,10 +37097,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2911Slc = r.DecodeBytes(yys2911Slc, true, true) - yys2911 := string(yys2911Slc) + yys2934Slc = r.DecodeBytes(yys2934Slc, true, true) + yys2934 := string(yys2934Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2911 { + switch yys2934 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36869,8 +37140,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2918 := z.DecBinary() - _ = yym2918 + yym2941 := z.DecBinary() + _ = yym2941 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -36885,13 +37156,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2920 := z.DecBinary() - _ = yym2920 + yym2943 := z.DecBinary() + _ = yym2943 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2920 { + } else if yym2943 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2920 && z.IsJSONHandle() { + } else if !yym2943 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -36912,8 +37183,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2923 := z.DecBinary() - _ = yym2923 + yym2946 := z.DecBinary() + _ = yym2946 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -36928,17 +37199,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2925 := z.DecBinary() - _ = yym2925 + yym2948 := z.DecBinary() + _ = yym2948 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2911) - } // end switch yys2911 - } // end for yyj2911 + z.DecStructFieldNotFound(-1, yys2934) + } // end switch yys2934 + } // end for yyj2934 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36946,16 +37217,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2926 int - var yyb2926 bool - var yyhl2926 bool = l >= 0 - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + var yyj2949 int + var yyb2949 bool + var yyhl2949 bool = l >= 0 + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36965,13 +37236,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36981,13 +37252,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36997,13 +37268,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37013,13 +37284,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37029,13 +37300,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37048,20 +37319,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2933 := z.DecBinary() - _ = yym2933 + yym2956 := z.DecBinary() + _ = yym2956 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37074,25 +37345,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2935 := z.DecBinary() - _ = yym2935 + yym2958 := z.DecBinary() + _ = yym2958 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2935 { + } else if yym2958 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2935 && z.IsJSONHandle() { + } else if !yym2958 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37102,13 +37373,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37121,20 +37392,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2938 := z.DecBinary() - _ = yym2938 + yym2961 := z.DecBinary() + _ = yym2961 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37147,25 +37418,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2940 := z.DecBinary() - _ = yym2940 + yym2963 := z.DecBinary() + _ = yym2963 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj2926++ - if yyhl2926 { - yyb2926 = yyj2926 > l + yyj2949++ + if yyhl2949 { + yyb2949 = yyj2949 > l } else { - yyb2926 = r.CheckBreak() + yyb2949 = r.CheckBreak() } - if yyb2926 { + if yyb2949 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2926-1, "") + z.DecStructFieldNotFound(yyj2949-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37177,41 +37448,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2941 := z.EncBinary() - _ = yym2941 + yym2964 := z.EncBinary() + _ = yym2964 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2942 := !z.EncBinary() - yy2arr2942 := z.EncBasicHandle().StructToArray - var yyq2942 [7]bool - _, _, _ = yysep2942, yyq2942, yy2arr2942 - const yyr2942 bool = false - yyq2942[0] = x.Kind != "" - yyq2942[1] = x.APIVersion != "" - yyq2942[2] = x.Stdin != false - yyq2942[3] = x.Stdout != false - yyq2942[4] = x.Stderr != false - yyq2942[5] = x.TTY != false - yyq2942[6] = x.Container != "" - var yynn2942 int - if yyr2942 || yy2arr2942 { + yysep2965 := !z.EncBinary() + yy2arr2965 := z.EncBasicHandle().StructToArray + var yyq2965 [7]bool + _, _, _ = yysep2965, yyq2965, yy2arr2965 + const yyr2965 bool = false + yyq2965[0] = x.Kind != "" + yyq2965[1] = x.APIVersion != "" + yyq2965[2] = x.Stdin != false + yyq2965[3] = x.Stdout != false + yyq2965[4] = x.Stderr != false + yyq2965[5] = x.TTY != false + yyq2965[6] = x.Container != "" + var yynn2965 int + if yyr2965 || yy2arr2965 { r.EncodeArrayStart(7) } else { - yynn2942 = 0 - for _, b := range yyq2942 { + yynn2965 = 0 + for _, b := range yyq2965 { if b { - yynn2942++ + yynn2965++ } } - r.EncodeMapStart(yynn2942) - yynn2942 = 0 + r.EncodeMapStart(yynn2965) + yynn2965 = 0 } - if yyr2942 || yy2arr2942 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[0] { - yym2944 := z.EncBinary() - _ = yym2944 + if yyq2965[0] { + yym2967 := z.EncBinary() + _ = yym2967 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37220,23 +37491,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2942[0] { + if yyq2965[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2945 := z.EncBinary() - _ = yym2945 + yym2968 := z.EncBinary() + _ = yym2968 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2942 || yy2arr2942 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[1] { - yym2947 := z.EncBinary() - _ = yym2947 + if yyq2965[1] { + yym2970 := z.EncBinary() + _ = yym2970 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37245,23 +37516,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2942[1] { + if yyq2965[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2948 := z.EncBinary() - _ = yym2948 + yym2971 := z.EncBinary() + _ = yym2971 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2942 || yy2arr2942 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[2] { - yym2950 := z.EncBinary() - _ = yym2950 + if yyq2965[2] { + yym2973 := z.EncBinary() + _ = yym2973 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -37270,23 +37541,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2942[2] { + if yyq2965[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2951 := z.EncBinary() - _ = yym2951 + yym2974 := z.EncBinary() + _ = yym2974 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr2942 || yy2arr2942 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[3] { - yym2953 := z.EncBinary() - _ = yym2953 + if yyq2965[3] { + yym2976 := z.EncBinary() + _ = yym2976 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -37295,23 +37566,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2942[3] { + if yyq2965[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2954 := z.EncBinary() - _ = yym2954 + yym2977 := z.EncBinary() + _ = yym2977 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr2942 || yy2arr2942 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[4] { - yym2956 := z.EncBinary() - _ = yym2956 + if yyq2965[4] { + yym2979 := z.EncBinary() + _ = yym2979 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -37320,23 +37591,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2942[4] { + if yyq2965[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2957 := z.EncBinary() - _ = yym2957 + yym2980 := z.EncBinary() + _ = yym2980 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr2942 || yy2arr2942 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[5] { - yym2959 := z.EncBinary() - _ = yym2959 + if yyq2965[5] { + yym2982 := z.EncBinary() + _ = yym2982 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -37345,23 +37616,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2942[5] { + if yyq2965[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2960 := z.EncBinary() - _ = yym2960 + yym2983 := z.EncBinary() + _ = yym2983 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr2942 || yy2arr2942 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[6] { - yym2962 := z.EncBinary() - _ = yym2962 + if yyq2965[6] { + yym2985 := z.EncBinary() + _ = yym2985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -37370,19 +37641,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2942[6] { + if yyq2965[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2963 := z.EncBinary() - _ = yym2963 + yym2986 := z.EncBinary() + _ = yym2986 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2942 || yy2arr2942 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37395,25 +37666,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2964 := z.DecBinary() - _ = yym2964 + yym2987 := z.DecBinary() + _ = yym2987 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2965 := r.ContainerType() - if yyct2965 == codecSelferValueTypeMap1234 { - yyl2965 := r.ReadMapStart() - if yyl2965 == 0 { + yyct2988 := r.ContainerType() + if yyct2988 == codecSelferValueTypeMap1234 { + yyl2988 := r.ReadMapStart() + if yyl2988 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2965, d) + x.codecDecodeSelfFromMap(yyl2988, d) } - } else if yyct2965 == codecSelferValueTypeArray1234 { - yyl2965 := r.ReadArrayStart() - if yyl2965 == 0 { + } else if yyct2988 == codecSelferValueTypeArray1234 { + yyl2988 := r.ReadArrayStart() + if yyl2988 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2965, d) + x.codecDecodeSelfFromArray(yyl2988, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37425,12 +37696,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2966Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2966Slc - var yyhl2966 bool = l >= 0 - for yyj2966 := 0; ; yyj2966++ { - if yyhl2966 { - if yyj2966 >= l { + var yys2989Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2989Slc + var yyhl2989 bool = l >= 0 + for yyj2989 := 0; ; yyj2989++ { + if yyhl2989 { + if yyj2989 >= l { break } } else { @@ -37439,10 +37710,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2966Slc = r.DecodeBytes(yys2966Slc, true, true) - yys2966 := string(yys2966Slc) + yys2989Slc = r.DecodeBytes(yys2989Slc, true, true) + yys2989 := string(yys2989Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2966 { + switch yys2989 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37486,9 +37757,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2966) - } // end switch yys2966 - } // end for yyj2966 + z.DecStructFieldNotFound(-1, yys2989) + } // end switch yys2989 + } // end for yyj2989 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37496,16 +37767,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2974 int - var yyb2974 bool - var yyhl2974 bool = l >= 0 - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + var yyj2997 int + var yyb2997 bool + var yyhl2997 bool = l >= 0 + yyj2997++ + if yyhl2997 { + yyb2997 = yyj2997 > l } else { - yyb2974 = r.CheckBreak() + yyb2997 = r.CheckBreak() } - if yyb2974 { + if yyb2997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37515,13 +37786,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2997++ + if yyhl2997 { + yyb2997 = yyj2997 > l } else { - yyb2974 = r.CheckBreak() + yyb2997 = r.CheckBreak() } - if yyb2974 { + if yyb2997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37531,13 +37802,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2997++ + if yyhl2997 { + yyb2997 = yyj2997 > l } else { - yyb2974 = r.CheckBreak() + yyb2997 = r.CheckBreak() } - if yyb2974 { + if yyb2997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37547,13 +37818,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2997++ + if yyhl2997 { + yyb2997 = yyj2997 > l } else { - yyb2974 = r.CheckBreak() + yyb2997 = r.CheckBreak() } - if yyb2974 { + if yyb2997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37563,13 +37834,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2997++ + if yyhl2997 { + yyb2997 = yyj2997 > l } else { - yyb2974 = r.CheckBreak() + yyb2997 = r.CheckBreak() } - if yyb2974 { + if yyb2997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37579,13 +37850,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2997++ + if yyhl2997 { + yyb2997 = yyj2997 > l } else { - yyb2974 = r.CheckBreak() + yyb2997 = r.CheckBreak() } - if yyb2974 { + if yyb2997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37595,13 +37866,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2997++ + if yyhl2997 { + yyb2997 = yyj2997 > l } else { - yyb2974 = r.CheckBreak() + yyb2997 = r.CheckBreak() } - if yyb2974 { + if yyb2997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37612,17 +37883,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2997++ + if yyhl2997 { + yyb2997 = yyj2997 > l } else { - yyb2974 = r.CheckBreak() + yyb2997 = r.CheckBreak() } - if yyb2974 { + if yyb2997 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2974-1, "") + z.DecStructFieldNotFound(yyj2997-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37634,41 +37905,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2982 := z.EncBinary() - _ = yym2982 + yym3005 := z.EncBinary() + _ = yym3005 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2983 := !z.EncBinary() - yy2arr2983 := z.EncBasicHandle().StructToArray - var yyq2983 [8]bool - _, _, _ = yysep2983, yyq2983, yy2arr2983 - const yyr2983 bool = false - yyq2983[0] = x.Kind != "" - yyq2983[1] = x.APIVersion != "" - yyq2983[2] = x.Stdin != false - yyq2983[3] = x.Stdout != false - yyq2983[4] = x.Stderr != false - yyq2983[5] = x.TTY != false - yyq2983[6] = x.Container != "" - var yynn2983 int - if yyr2983 || yy2arr2983 { + yysep3006 := !z.EncBinary() + yy2arr3006 := z.EncBasicHandle().StructToArray + var yyq3006 [8]bool + _, _, _ = yysep3006, yyq3006, yy2arr3006 + const yyr3006 bool = false + yyq3006[0] = x.Kind != "" + yyq3006[1] = x.APIVersion != "" + yyq3006[2] = x.Stdin != false + yyq3006[3] = x.Stdout != false + yyq3006[4] = x.Stderr != false + yyq3006[5] = x.TTY != false + yyq3006[6] = x.Container != "" + var yynn3006 int + if yyr3006 || yy2arr3006 { r.EncodeArrayStart(8) } else { - yynn2983 = 1 - for _, b := range yyq2983 { + yynn3006 = 1 + for _, b := range yyq3006 { if b { - yynn2983++ + yynn3006++ } } - r.EncodeMapStart(yynn2983) - yynn2983 = 0 + r.EncodeMapStart(yynn3006) + yynn3006 = 0 } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[0] { - yym2985 := z.EncBinary() - _ = yym2985 + if yyq3006[0] { + yym3008 := z.EncBinary() + _ = yym3008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37677,23 +37948,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2983[0] { + if yyq3006[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2986 := z.EncBinary() - _ = yym2986 + yym3009 := z.EncBinary() + _ = yym3009 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[1] { - yym2988 := z.EncBinary() - _ = yym2988 + if yyq3006[1] { + yym3011 := z.EncBinary() + _ = yym3011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37702,23 +37973,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2983[1] { + if yyq3006[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2989 := z.EncBinary() - _ = yym2989 + yym3012 := z.EncBinary() + _ = yym3012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[2] { - yym2991 := z.EncBinary() - _ = yym2991 + if yyq3006[2] { + yym3014 := z.EncBinary() + _ = yym3014 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -37727,23 +37998,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2983[2] { + if yyq3006[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2992 := z.EncBinary() - _ = yym2992 + yym3015 := z.EncBinary() + _ = yym3015 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[3] { - yym2994 := z.EncBinary() - _ = yym2994 + if yyq3006[3] { + yym3017 := z.EncBinary() + _ = yym3017 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -37752,23 +38023,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2983[3] { + if yyq3006[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2995 := z.EncBinary() - _ = yym2995 + yym3018 := z.EncBinary() + _ = yym3018 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[4] { - yym2997 := z.EncBinary() - _ = yym2997 + if yyq3006[4] { + yym3020 := z.EncBinary() + _ = yym3020 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -37777,23 +38048,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2983[4] { + if yyq3006[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2998 := z.EncBinary() - _ = yym2998 + yym3021 := z.EncBinary() + _ = yym3021 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[5] { - yym3000 := z.EncBinary() - _ = yym3000 + if yyq3006[5] { + yym3023 := z.EncBinary() + _ = yym3023 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -37802,23 +38073,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2983[5] { + if yyq3006[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3001 := z.EncBinary() - _ = yym3001 + yym3024 := z.EncBinary() + _ = yym3024 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[6] { - yym3003 := z.EncBinary() - _ = yym3003 + if yyq3006[6] { + yym3026 := z.EncBinary() + _ = yym3026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -37827,25 +38098,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2983[6] { + if yyq3006[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3004 := z.EncBinary() - _ = yym3004 + yym3027 := z.EncBinary() + _ = yym3027 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3006 := z.EncBinary() - _ = yym3006 + yym3029 := z.EncBinary() + _ = yym3029 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -37858,15 +38129,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3007 := z.EncBinary() - _ = yym3007 + yym3030 := z.EncBinary() + _ = yym3030 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr2983 || yy2arr2983 { + if yyr3006 || yy2arr3006 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37879,25 +38150,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3008 := z.DecBinary() - _ = yym3008 + yym3031 := z.DecBinary() + _ = yym3031 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3009 := r.ContainerType() - if yyct3009 == codecSelferValueTypeMap1234 { - yyl3009 := r.ReadMapStart() - if yyl3009 == 0 { + yyct3032 := r.ContainerType() + if yyct3032 == codecSelferValueTypeMap1234 { + yyl3032 := r.ReadMapStart() + if yyl3032 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3009, d) + x.codecDecodeSelfFromMap(yyl3032, d) } - } else if yyct3009 == codecSelferValueTypeArray1234 { - yyl3009 := r.ReadArrayStart() - if yyl3009 == 0 { + } else if yyct3032 == codecSelferValueTypeArray1234 { + yyl3032 := r.ReadArrayStart() + if yyl3032 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3009, d) + x.codecDecodeSelfFromArray(yyl3032, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37909,12 +38180,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3010Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3010Slc - var yyhl3010 bool = l >= 0 - for yyj3010 := 0; ; yyj3010++ { - if yyhl3010 { - if yyj3010 >= l { + var yys3033Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3033Slc + var yyhl3033 bool = l >= 0 + for yyj3033 := 0; ; yyj3033++ { + if yyhl3033 { + if yyj3033 >= l { break } } else { @@ -37923,10 +38194,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3010Slc = r.DecodeBytes(yys3010Slc, true, true) - yys3010 := string(yys3010Slc) + yys3033Slc = r.DecodeBytes(yys3033Slc, true, true) + yys3033 := string(yys3033Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3010 { + switch yys3033 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37973,18 +38244,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3018 := &x.Command - yym3019 := z.DecBinary() - _ = yym3019 + yyv3041 := &x.Command + yym3042 := z.DecBinary() + _ = yym3042 if false { } else { - z.F.DecSliceStringX(yyv3018, false, d) + z.F.DecSliceStringX(yyv3041, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3010) - } // end switch yys3010 - } // end for yyj3010 + z.DecStructFieldNotFound(-1, yys3033) + } // end switch yys3033 + } // end for yyj3033 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37992,16 +38263,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3020 int - var yyb3020 bool - var yyhl3020 bool = l >= 0 - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + var yyj3043 int + var yyb3043 bool + var yyhl3043 bool = l >= 0 + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38011,13 +38282,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38027,13 +38298,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38043,13 +38314,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38059,13 +38330,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38075,13 +38346,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38091,13 +38362,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38107,13 +38378,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38121,26 +38392,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3028 := &x.Command - yym3029 := z.DecBinary() - _ = yym3029 + yyv3051 := &x.Command + yym3052 := z.DecBinary() + _ = yym3052 if false { } else { - z.F.DecSliceStringX(yyv3028, false, d) + z.F.DecSliceStringX(yyv3051, false, d) } } for { - yyj3020++ - if yyhl3020 { - yyb3020 = yyj3020 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb3020 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb3020 { + if yyb3043 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3020-1, "") + z.DecStructFieldNotFound(yyj3043-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38152,37 +38423,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3030 := z.EncBinary() - _ = yym3030 + yym3053 := z.EncBinary() + _ = yym3053 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3031 := !z.EncBinary() - yy2arr3031 := z.EncBasicHandle().StructToArray - var yyq3031 [3]bool - _, _, _ = yysep3031, yyq3031, yy2arr3031 - const yyr3031 bool = false - yyq3031[0] = x.Kind != "" - yyq3031[1] = x.APIVersion != "" - yyq3031[2] = x.Path != "" - var yynn3031 int - if yyr3031 || yy2arr3031 { + yysep3054 := !z.EncBinary() + yy2arr3054 := z.EncBasicHandle().StructToArray + var yyq3054 [3]bool + _, _, _ = yysep3054, yyq3054, yy2arr3054 + const yyr3054 bool = false + yyq3054[0] = x.Kind != "" + yyq3054[1] = x.APIVersion != "" + yyq3054[2] = x.Path != "" + var yynn3054 int + if yyr3054 || yy2arr3054 { r.EncodeArrayStart(3) } else { - yynn3031 = 0 - for _, b := range yyq3031 { + yynn3054 = 0 + for _, b := range yyq3054 { if b { - yynn3031++ + yynn3054++ } } - r.EncodeMapStart(yynn3031) - yynn3031 = 0 + r.EncodeMapStart(yynn3054) + yynn3054 = 0 } - if yyr3031 || yy2arr3031 { + if yyr3054 || yy2arr3054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[0] { - yym3033 := z.EncBinary() - _ = yym3033 + if yyq3054[0] { + yym3056 := z.EncBinary() + _ = yym3056 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38191,23 +38462,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3031[0] { + if yyq3054[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3034 := z.EncBinary() - _ = yym3034 + yym3057 := z.EncBinary() + _ = yym3057 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3031 || yy2arr3031 { + if yyr3054 || yy2arr3054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[1] { - yym3036 := z.EncBinary() - _ = yym3036 + if yyq3054[1] { + yym3059 := z.EncBinary() + _ = yym3059 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38216,23 +38487,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3031[1] { + if yyq3054[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3037 := z.EncBinary() - _ = yym3037 + yym3060 := z.EncBinary() + _ = yym3060 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3031 || yy2arr3031 { + if yyr3054 || yy2arr3054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[2] { - yym3039 := z.EncBinary() - _ = yym3039 + if yyq3054[2] { + yym3062 := z.EncBinary() + _ = yym3062 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -38241,19 +38512,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3031[2] { + if yyq3054[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3040 := z.EncBinary() - _ = yym3040 + yym3063 := z.EncBinary() + _ = yym3063 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3031 || yy2arr3031 { + if yyr3054 || yy2arr3054 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38266,25 +38537,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3041 := z.DecBinary() - _ = yym3041 + yym3064 := z.DecBinary() + _ = yym3064 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3042 := r.ContainerType() - if yyct3042 == codecSelferValueTypeMap1234 { - yyl3042 := r.ReadMapStart() - if yyl3042 == 0 { + yyct3065 := r.ContainerType() + if yyct3065 == codecSelferValueTypeMap1234 { + yyl3065 := r.ReadMapStart() + if yyl3065 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3042, d) + x.codecDecodeSelfFromMap(yyl3065, d) } - } else if yyct3042 == codecSelferValueTypeArray1234 { - yyl3042 := r.ReadArrayStart() - if yyl3042 == 0 { + } else if yyct3065 == codecSelferValueTypeArray1234 { + yyl3065 := r.ReadArrayStart() + if yyl3065 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3042, d) + x.codecDecodeSelfFromArray(yyl3065, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38296,12 +38567,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3043Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3043Slc - var yyhl3043 bool = l >= 0 - for yyj3043 := 0; ; yyj3043++ { - if yyhl3043 { - if yyj3043 >= l { + var yys3066Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3066Slc + var yyhl3066 bool = l >= 0 + for yyj3066 := 0; ; yyj3066++ { + if yyhl3066 { + if yyj3066 >= l { break } } else { @@ -38310,10 +38581,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3043Slc = r.DecodeBytes(yys3043Slc, true, true) - yys3043 := string(yys3043Slc) + yys3066Slc = r.DecodeBytes(yys3066Slc, true, true) + yys3066 := string(yys3066Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3043 { + switch yys3066 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38333,9 +38604,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3043) - } // end switch yys3043 - } // end for yyj3043 + z.DecStructFieldNotFound(-1, yys3066) + } // end switch yys3066 + } // end for yyj3066 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38343,16 +38614,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3047 int - var yyb3047 bool - var yyhl3047 bool = l >= 0 - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + var yyj3070 int + var yyb3070 bool + var yyhl3070 bool = l >= 0 + yyj3070++ + if yyhl3070 { + yyb3070 = yyj3070 > l } else { - yyb3047 = r.CheckBreak() + yyb3070 = r.CheckBreak() } - if yyb3047 { + if yyb3070 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38362,13 +38633,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3070++ + if yyhl3070 { + yyb3070 = yyj3070 > l } else { - yyb3047 = r.CheckBreak() + yyb3070 = r.CheckBreak() } - if yyb3047 { + if yyb3070 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38378,13 +38649,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3070++ + if yyhl3070 { + yyb3070 = yyj3070 > l } else { - yyb3047 = r.CheckBreak() + yyb3070 = r.CheckBreak() } - if yyb3047 { + if yyb3070 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38395,17 +38666,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3070++ + if yyhl3070 { + yyb3070 = yyj3070 > l } else { - yyb3047 = r.CheckBreak() + yyb3070 = r.CheckBreak() } - if yyb3047 { + if yyb3070 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3047-1, "") + z.DecStructFieldNotFound(yyj3070-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38417,41 +38688,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3051 := z.EncBinary() - _ = yym3051 + yym3074 := z.EncBinary() + _ = yym3074 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3052 := !z.EncBinary() - yy2arr3052 := z.EncBasicHandle().StructToArray - var yyq3052 [7]bool - _, _, _ = yysep3052, yyq3052, yy2arr3052 - const yyr3052 bool = false - yyq3052[0] = x.Kind != "" - yyq3052[1] = x.Namespace != "" - yyq3052[2] = x.Name != "" - yyq3052[3] = x.UID != "" - yyq3052[4] = x.APIVersion != "" - yyq3052[5] = x.ResourceVersion != "" - yyq3052[6] = x.FieldPath != "" - var yynn3052 int - if yyr3052 || yy2arr3052 { + yysep3075 := !z.EncBinary() + yy2arr3075 := z.EncBasicHandle().StructToArray + var yyq3075 [7]bool + _, _, _ = yysep3075, yyq3075, yy2arr3075 + const yyr3075 bool = false + yyq3075[0] = x.Kind != "" + yyq3075[1] = x.Namespace != "" + yyq3075[2] = x.Name != "" + yyq3075[3] = x.UID != "" + yyq3075[4] = x.APIVersion != "" + yyq3075[5] = x.ResourceVersion != "" + yyq3075[6] = x.FieldPath != "" + var yynn3075 int + if yyr3075 || yy2arr3075 { r.EncodeArrayStart(7) } else { - yynn3052 = 0 - for _, b := range yyq3052 { + yynn3075 = 0 + for _, b := range yyq3075 { if b { - yynn3052++ + yynn3075++ } } - r.EncodeMapStart(yynn3052) - yynn3052 = 0 + r.EncodeMapStart(yynn3075) + yynn3075 = 0 } - if yyr3052 || yy2arr3052 { + if yyr3075 || yy2arr3075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[0] { - yym3054 := z.EncBinary() - _ = yym3054 + if yyq3075[0] { + yym3077 := z.EncBinary() + _ = yym3077 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38460,23 +38731,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[0] { + if yyq3075[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3055 := z.EncBinary() - _ = yym3055 + yym3078 := z.EncBinary() + _ = yym3078 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3052 || yy2arr3052 { + if yyr3075 || yy2arr3075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[1] { - yym3057 := z.EncBinary() - _ = yym3057 + if yyq3075[1] { + yym3080 := z.EncBinary() + _ = yym3080 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -38485,23 +38756,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[1] { + if yyq3075[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3058 := z.EncBinary() - _ = yym3058 + yym3081 := z.EncBinary() + _ = yym3081 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3052 || yy2arr3052 { + if yyr3075 || yy2arr3075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[2] { - yym3060 := z.EncBinary() - _ = yym3060 + if yyq3075[2] { + yym3083 := z.EncBinary() + _ = yym3083 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -38510,23 +38781,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[2] { + if yyq3075[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3061 := z.EncBinary() - _ = yym3061 + yym3084 := z.EncBinary() + _ = yym3084 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3052 || yy2arr3052 { + if yyr3075 || yy2arr3075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[3] { - yym3063 := z.EncBinary() - _ = yym3063 + if yyq3075[3] { + yym3086 := z.EncBinary() + _ = yym3086 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -38536,12 +38807,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[3] { + if yyq3075[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3064 := z.EncBinary() - _ = yym3064 + yym3087 := z.EncBinary() + _ = yym3087 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -38549,11 +38820,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3052 || yy2arr3052 { + if yyr3075 || yy2arr3075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[4] { - yym3066 := z.EncBinary() - _ = yym3066 + if yyq3075[4] { + yym3089 := z.EncBinary() + _ = yym3089 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38562,23 +38833,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[4] { + if yyq3075[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3067 := z.EncBinary() - _ = yym3067 + yym3090 := z.EncBinary() + _ = yym3090 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3052 || yy2arr3052 { + if yyr3075 || yy2arr3075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[5] { - yym3069 := z.EncBinary() - _ = yym3069 + if yyq3075[5] { + yym3092 := z.EncBinary() + _ = yym3092 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -38587,23 +38858,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[5] { + if yyq3075[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3070 := z.EncBinary() - _ = yym3070 + yym3093 := z.EncBinary() + _ = yym3093 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3052 || yy2arr3052 { + if yyr3075 || yy2arr3075 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[6] { - yym3072 := z.EncBinary() - _ = yym3072 + if yyq3075[6] { + yym3095 := z.EncBinary() + _ = yym3095 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -38612,19 +38883,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[6] { + if yyq3075[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3073 := z.EncBinary() - _ = yym3073 + yym3096 := z.EncBinary() + _ = yym3096 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3052 || yy2arr3052 { + if yyr3075 || yy2arr3075 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38637,25 +38908,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3074 := z.DecBinary() - _ = yym3074 + yym3097 := z.DecBinary() + _ = yym3097 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3075 := r.ContainerType() - if yyct3075 == codecSelferValueTypeMap1234 { - yyl3075 := r.ReadMapStart() - if yyl3075 == 0 { + yyct3098 := r.ContainerType() + if yyct3098 == codecSelferValueTypeMap1234 { + yyl3098 := r.ReadMapStart() + if yyl3098 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3075, d) + x.codecDecodeSelfFromMap(yyl3098, d) } - } else if yyct3075 == codecSelferValueTypeArray1234 { - yyl3075 := r.ReadArrayStart() - if yyl3075 == 0 { + } else if yyct3098 == codecSelferValueTypeArray1234 { + yyl3098 := r.ReadArrayStart() + if yyl3098 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3075, d) + x.codecDecodeSelfFromArray(yyl3098, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38667,12 +38938,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3076Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3076Slc - var yyhl3076 bool = l >= 0 - for yyj3076 := 0; ; yyj3076++ { - if yyhl3076 { - if yyj3076 >= l { + var yys3099Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3099Slc + var yyhl3099 bool = l >= 0 + for yyj3099 := 0; ; yyj3099++ { + if yyhl3099 { + if yyj3099 >= l { break } } else { @@ -38681,10 +38952,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3076Slc = r.DecodeBytes(yys3076Slc, true, true) - yys3076 := string(yys3076Slc) + yys3099Slc = r.DecodeBytes(yys3099Slc, true, true) + yys3099 := string(yys3099Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3076 { + switch yys3099 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38728,9 +38999,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3076) - } // end switch yys3076 - } // end for yyj3076 + z.DecStructFieldNotFound(-1, yys3099) + } // end switch yys3099 + } // end for yyj3099 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38738,16 +39009,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3084 int - var yyb3084 bool - var yyhl3084 bool = l >= 0 - yyj3084++ - if yyhl3084 { - yyb3084 = yyj3084 > l + var yyj3107 int + var yyb3107 bool + var yyhl3107 bool = l >= 0 + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3084 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3084 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38757,13 +39028,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3084++ - if yyhl3084 { - yyb3084 = yyj3084 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3084 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3084 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38773,13 +39044,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3084++ - if yyhl3084 { - yyb3084 = yyj3084 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3084 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3084 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38789,13 +39060,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3084++ - if yyhl3084 { - yyb3084 = yyj3084 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3084 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3084 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38805,13 +39076,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3084++ - if yyhl3084 { - yyb3084 = yyj3084 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3084 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3084 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38821,13 +39092,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3084++ - if yyhl3084 { - yyb3084 = yyj3084 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3084 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3084 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38837,13 +39108,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3084++ - if yyhl3084 { - yyb3084 = yyj3084 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3084 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3084 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38854,17 +39125,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3084++ - if yyhl3084 { - yyb3084 = yyj3084 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3084 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3084 { + if yyb3107 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3084-1, "") + z.DecStructFieldNotFound(yyj3107-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38876,35 +39147,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3092 := z.EncBinary() - _ = yym3092 + yym3115 := z.EncBinary() + _ = yym3115 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3093 := !z.EncBinary() - yy2arr3093 := z.EncBasicHandle().StructToArray - var yyq3093 [1]bool - _, _, _ = yysep3093, yyq3093, yy2arr3093 - const yyr3093 bool = false - yyq3093[0] = x.Name != "" - var yynn3093 int - if yyr3093 || yy2arr3093 { + yysep3116 := !z.EncBinary() + yy2arr3116 := z.EncBasicHandle().StructToArray + var yyq3116 [1]bool + _, _, _ = yysep3116, yyq3116, yy2arr3116 + const yyr3116 bool = false + yyq3116[0] = x.Name != "" + var yynn3116 int + if yyr3116 || yy2arr3116 { r.EncodeArrayStart(1) } else { - yynn3093 = 0 - for _, b := range yyq3093 { + yynn3116 = 0 + for _, b := range yyq3116 { if b { - yynn3093++ + yynn3116++ } } - r.EncodeMapStart(yynn3093) - yynn3093 = 0 + r.EncodeMapStart(yynn3116) + yynn3116 = 0 } - if yyr3093 || yy2arr3093 { + if yyr3116 || yy2arr3116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3093[0] { - yym3095 := z.EncBinary() - _ = yym3095 + if yyq3116[0] { + yym3118 := z.EncBinary() + _ = yym3118 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -38913,19 +39184,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3093[0] { + if yyq3116[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3096 := z.EncBinary() - _ = yym3096 + yym3119 := z.EncBinary() + _ = yym3119 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3093 || yy2arr3093 { + if yyr3116 || yy2arr3116 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38938,25 +39209,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3097 := z.DecBinary() - _ = yym3097 + yym3120 := z.DecBinary() + _ = yym3120 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3098 := r.ContainerType() - if yyct3098 == codecSelferValueTypeMap1234 { - yyl3098 := r.ReadMapStart() - if yyl3098 == 0 { + yyct3121 := r.ContainerType() + if yyct3121 == codecSelferValueTypeMap1234 { + yyl3121 := r.ReadMapStart() + if yyl3121 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3098, d) + x.codecDecodeSelfFromMap(yyl3121, d) } - } else if yyct3098 == codecSelferValueTypeArray1234 { - yyl3098 := r.ReadArrayStart() - if yyl3098 == 0 { + } else if yyct3121 == codecSelferValueTypeArray1234 { + yyl3121 := r.ReadArrayStart() + if yyl3121 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3098, d) + x.codecDecodeSelfFromArray(yyl3121, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38968,12 +39239,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode 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 yys3122Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3122Slc + var yyhl3122 bool = l >= 0 + for yyj3122 := 0; ; yyj3122++ { + if yyhl3122 { + if yyj3122 >= l { break } } else { @@ -38982,10 +39253,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3099Slc = r.DecodeBytes(yys3099Slc, true, true) - yys3099 := string(yys3099Slc) + yys3122Slc = r.DecodeBytes(yys3122Slc, true, true) + yys3122 := string(yys3122Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3099 { + switch yys3122 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -38993,9 +39264,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3099) - } // end switch yys3099 - } // end for yyj3099 + z.DecStructFieldNotFound(-1, yys3122) + } // end switch yys3122 + } // end for yyj3122 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39003,16 +39274,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3101 int - var yyb3101 bool - var yyhl3101 bool = l >= 0 - yyj3101++ - if yyhl3101 { - yyb3101 = yyj3101 > l + var yyj3124 int + var yyb3124 bool + var yyhl3124 bool = l >= 0 + yyj3124++ + if yyhl3124 { + yyb3124 = yyj3124 > l } else { - yyb3101 = r.CheckBreak() + yyb3124 = r.CheckBreak() } - if yyb3101 { + if yyb3124 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39023,17 +39294,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3101++ - if yyhl3101 { - yyb3101 = yyj3101 > l + yyj3124++ + if yyhl3124 { + yyb3124 = yyj3124 > l } else { - yyb3101 = r.CheckBreak() + yyb3124 = r.CheckBreak() } - if yyb3101 { + if yyb3124 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3101-1, "") + z.DecStructFieldNotFound(yyj3124-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39045,37 +39316,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3103 := z.EncBinary() - _ = yym3103 + yym3126 := z.EncBinary() + _ = yym3126 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3104 := !z.EncBinary() - yy2arr3104 := z.EncBasicHandle().StructToArray - var yyq3104 [3]bool - _, _, _ = yysep3104, yyq3104, yy2arr3104 - const yyr3104 bool = false - yyq3104[0] = x.Kind != "" - yyq3104[1] = x.APIVersion != "" - yyq3104[2] = true - var yynn3104 int - if yyr3104 || yy2arr3104 { + yysep3127 := !z.EncBinary() + yy2arr3127 := z.EncBasicHandle().StructToArray + var yyq3127 [3]bool + _, _, _ = yysep3127, yyq3127, yy2arr3127 + const yyr3127 bool = false + yyq3127[0] = x.Kind != "" + yyq3127[1] = x.APIVersion != "" + yyq3127[2] = true + var yynn3127 int + if yyr3127 || yy2arr3127 { r.EncodeArrayStart(3) } else { - yynn3104 = 0 - for _, b := range yyq3104 { + yynn3127 = 0 + for _, b := range yyq3127 { if b { - yynn3104++ + yynn3127++ } } - r.EncodeMapStart(yynn3104) - yynn3104 = 0 + r.EncodeMapStart(yynn3127) + yynn3127 = 0 } - if yyr3104 || yy2arr3104 { + if yyr3127 || yy2arr3127 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3104[0] { - yym3106 := z.EncBinary() - _ = yym3106 + if yyq3127[0] { + yym3129 := z.EncBinary() + _ = yym3129 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39084,23 +39355,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3104[0] { + if yyq3127[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3107 := z.EncBinary() - _ = yym3107 + yym3130 := z.EncBinary() + _ = yym3130 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3104 || yy2arr3104 { + if yyr3127 || yy2arr3127 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3104[1] { - yym3109 := z.EncBinary() - _ = yym3109 + if yyq3127[1] { + yym3132 := z.EncBinary() + _ = yym3132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39109,36 +39380,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3104[1] { + if yyq3127[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3110 := z.EncBinary() - _ = yym3110 + yym3133 := z.EncBinary() + _ = yym3133 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3104 || yy2arr3104 { + if yyr3127 || yy2arr3127 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3104[2] { - yy3112 := &x.Reference - yy3112.CodecEncodeSelf(e) + if yyq3127[2] { + yy3135 := &x.Reference + yy3135.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3104[2] { + if yyq3127[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3113 := &x.Reference - yy3113.CodecEncodeSelf(e) + yy3136 := &x.Reference + yy3136.CodecEncodeSelf(e) } } - if yyr3104 || yy2arr3104 { + if yyr3127 || yy2arr3127 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39151,25 +39422,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3114 := z.DecBinary() - _ = yym3114 + yym3137 := z.DecBinary() + _ = yym3137 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3115 := r.ContainerType() - if yyct3115 == codecSelferValueTypeMap1234 { - yyl3115 := r.ReadMapStart() - if yyl3115 == 0 { + yyct3138 := r.ContainerType() + if yyct3138 == codecSelferValueTypeMap1234 { + yyl3138 := r.ReadMapStart() + if yyl3138 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3115, d) + x.codecDecodeSelfFromMap(yyl3138, d) } - } else if yyct3115 == codecSelferValueTypeArray1234 { - yyl3115 := r.ReadArrayStart() - if yyl3115 == 0 { + } else if yyct3138 == codecSelferValueTypeArray1234 { + yyl3138 := r.ReadArrayStart() + if yyl3138 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3115, d) + x.codecDecodeSelfFromArray(yyl3138, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39181,12 +39452,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3116Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3116Slc - var yyhl3116 bool = l >= 0 - for yyj3116 := 0; ; yyj3116++ { - if yyhl3116 { - if yyj3116 >= l { + var yys3139Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3139Slc + var yyhl3139 bool = l >= 0 + for yyj3139 := 0; ; yyj3139++ { + if yyhl3139 { + if yyj3139 >= l { break } } else { @@ -39195,10 +39466,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3116Slc = r.DecodeBytes(yys3116Slc, true, true) - yys3116 := string(yys3116Slc) + yys3139Slc = r.DecodeBytes(yys3139Slc, true, true) + yys3139 := string(yys3139Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3116 { + switch yys3139 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39215,13 +39486,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3119 := &x.Reference - yyv3119.CodecDecodeSelf(d) + yyv3142 := &x.Reference + yyv3142.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3116) - } // end switch yys3116 - } // end for yyj3116 + z.DecStructFieldNotFound(-1, yys3139) + } // end switch yys3139 + } // end for yyj3139 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39229,16 +39500,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3120 int - var yyb3120 bool - var yyhl3120 bool = l >= 0 - yyj3120++ - if yyhl3120 { - yyb3120 = yyj3120 > l + var yyj3143 int + var yyb3143 bool + var yyhl3143 bool = l >= 0 + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3120 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3120 { + if yyb3143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39248,13 +39519,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3120++ - if yyhl3120 { - yyb3120 = yyj3120 > l + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3120 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3120 { + if yyb3143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39264,13 +39535,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3120++ - if yyhl3120 { - yyb3120 = yyj3120 > l + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3120 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3120 { + if yyb3143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39278,21 +39549,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3123 := &x.Reference - yyv3123.CodecDecodeSelf(d) + yyv3146 := &x.Reference + yyv3146.CodecDecodeSelf(d) } for { - yyj3120++ - if yyhl3120 { - yyb3120 = yyj3120 > l + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3120 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3120 { + if yyb3143 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3120-1, "") + z.DecStructFieldNotFound(yyj3143-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39304,36 +39575,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3124 := z.EncBinary() - _ = yym3124 + yym3147 := z.EncBinary() + _ = yym3147 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3125 := !z.EncBinary() - yy2arr3125 := z.EncBasicHandle().StructToArray - var yyq3125 [2]bool - _, _, _ = yysep3125, yyq3125, yy2arr3125 - const yyr3125 bool = false - yyq3125[0] = x.Component != "" - yyq3125[1] = x.Host != "" - var yynn3125 int - if yyr3125 || yy2arr3125 { + yysep3148 := !z.EncBinary() + yy2arr3148 := z.EncBasicHandle().StructToArray + var yyq3148 [2]bool + _, _, _ = yysep3148, yyq3148, yy2arr3148 + const yyr3148 bool = false + yyq3148[0] = x.Component != "" + yyq3148[1] = x.Host != "" + var yynn3148 int + if yyr3148 || yy2arr3148 { r.EncodeArrayStart(2) } else { - yynn3125 = 0 - for _, b := range yyq3125 { + yynn3148 = 0 + for _, b := range yyq3148 { if b { - yynn3125++ + yynn3148++ } } - r.EncodeMapStart(yynn3125) - yynn3125 = 0 + r.EncodeMapStart(yynn3148) + yynn3148 = 0 } - if yyr3125 || yy2arr3125 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3125[0] { - yym3127 := z.EncBinary() - _ = yym3127 + if yyq3148[0] { + yym3150 := z.EncBinary() + _ = yym3150 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -39342,23 +39613,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3125[0] { + if yyq3148[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3128 := z.EncBinary() - _ = yym3128 + yym3151 := z.EncBinary() + _ = yym3151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3125 || yy2arr3125 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3125[1] { - yym3130 := z.EncBinary() - _ = yym3130 + if yyq3148[1] { + yym3153 := z.EncBinary() + _ = yym3153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -39367,19 +39638,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3125[1] { + if yyq3148[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3131 := z.EncBinary() - _ = yym3131 + yym3154 := z.EncBinary() + _ = yym3154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3125 || yy2arr3125 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39392,25 +39663,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3132 := z.DecBinary() - _ = yym3132 + yym3155 := z.DecBinary() + _ = yym3155 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3133 := r.ContainerType() - if yyct3133 == codecSelferValueTypeMap1234 { - yyl3133 := r.ReadMapStart() - if yyl3133 == 0 { + yyct3156 := r.ContainerType() + if yyct3156 == codecSelferValueTypeMap1234 { + yyl3156 := r.ReadMapStart() + if yyl3156 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3133, d) + x.codecDecodeSelfFromMap(yyl3156, d) } - } else if yyct3133 == codecSelferValueTypeArray1234 { - yyl3133 := r.ReadArrayStart() - if yyl3133 == 0 { + } else if yyct3156 == codecSelferValueTypeArray1234 { + yyl3156 := r.ReadArrayStart() + if yyl3156 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3133, d) + x.codecDecodeSelfFromArray(yyl3156, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39422,12 +39693,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3134Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3134Slc - var yyhl3134 bool = l >= 0 - for yyj3134 := 0; ; yyj3134++ { - if yyhl3134 { - if yyj3134 >= l { + var yys3157Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3157Slc + var yyhl3157 bool = l >= 0 + for yyj3157 := 0; ; yyj3157++ { + if yyhl3157 { + if yyj3157 >= l { break } } else { @@ -39436,10 +39707,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3134Slc = r.DecodeBytes(yys3134Slc, true, true) - yys3134 := string(yys3134Slc) + yys3157Slc = r.DecodeBytes(yys3157Slc, true, true) + yys3157 := string(yys3157Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3134 { + switch yys3157 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -39453,9 +39724,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3134) - } // end switch yys3134 - } // end for yyj3134 + z.DecStructFieldNotFound(-1, yys3157) + } // end switch yys3157 + } // end for yyj3157 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39463,16 +39734,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3137 int - var yyb3137 bool - var yyhl3137 bool = l >= 0 - yyj3137++ - if yyhl3137 { - yyb3137 = yyj3137 > l + var yyj3160 int + var yyb3160 bool + var yyhl3160 bool = l >= 0 + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3137 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3137 { + if yyb3160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39482,13 +39753,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3137++ - if yyhl3137 { - yyb3137 = yyj3137 > l + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3137 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3137 { + if yyb3160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39499,17 +39770,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3137++ - if yyhl3137 { - yyb3137 = yyj3137 > l + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3137 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3137 { + if yyb3160 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3137-1, "") + z.DecStructFieldNotFound(yyj3160-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39521,43 +39792,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3140 := z.EncBinary() - _ = yym3140 + yym3163 := z.EncBinary() + _ = yym3163 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3141 := !z.EncBinary() - yy2arr3141 := z.EncBasicHandle().StructToArray - var yyq3141 [11]bool - _, _, _ = yysep3141, yyq3141, yy2arr3141 - const yyr3141 bool = false - yyq3141[0] = x.Kind != "" - yyq3141[1] = x.APIVersion != "" - yyq3141[4] = x.Reason != "" - yyq3141[5] = x.Message != "" - yyq3141[6] = true - yyq3141[7] = true - yyq3141[8] = true - yyq3141[9] = x.Count != 0 - yyq3141[10] = x.Type != "" - var yynn3141 int - if yyr3141 || yy2arr3141 { + yysep3164 := !z.EncBinary() + yy2arr3164 := z.EncBasicHandle().StructToArray + var yyq3164 [11]bool + _, _, _ = yysep3164, yyq3164, yy2arr3164 + const yyr3164 bool = false + yyq3164[0] = x.Kind != "" + yyq3164[1] = x.APIVersion != "" + yyq3164[4] = x.Reason != "" + yyq3164[5] = x.Message != "" + yyq3164[6] = true + yyq3164[7] = true + yyq3164[8] = true + yyq3164[9] = x.Count != 0 + yyq3164[10] = x.Type != "" + var yynn3164 int + if yyr3164 || yy2arr3164 { r.EncodeArrayStart(11) } else { - yynn3141 = 2 - for _, b := range yyq3141 { + yynn3164 = 2 + for _, b := range yyq3164 { if b { - yynn3141++ + yynn3164++ } } - r.EncodeMapStart(yynn3141) - yynn3141 = 0 + r.EncodeMapStart(yynn3164) + yynn3164 = 0 } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[0] { - yym3143 := z.EncBinary() - _ = yym3143 + if yyq3164[0] { + yym3166 := z.EncBinary() + _ = yym3166 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39566,23 +39837,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3141[0] { + if yyq3164[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3144 := z.EncBinary() - _ = yym3144 + yym3167 := z.EncBinary() + _ = yym3167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[1] { - yym3146 := z.EncBinary() - _ = yym3146 + if yyq3164[1] { + yym3169 := z.EncBinary() + _ = yym3169 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39591,45 +39862,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3141[1] { + if yyq3164[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3147 := z.EncBinary() - _ = yym3147 + yym3170 := z.EncBinary() + _ = yym3170 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3149 := &x.ObjectMeta - yy3149.CodecEncodeSelf(e) + yy3172 := &x.ObjectMeta + yy3172.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3150 := &x.ObjectMeta - yy3150.CodecEncodeSelf(e) + yy3173 := &x.ObjectMeta + yy3173.CodecEncodeSelf(e) } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3152 := &x.InvolvedObject - yy3152.CodecEncodeSelf(e) + yy3175 := &x.InvolvedObject + yy3175.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3153 := &x.InvolvedObject - yy3153.CodecEncodeSelf(e) + yy3176 := &x.InvolvedObject + yy3176.CodecEncodeSelf(e) } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[4] { - yym3155 := z.EncBinary() - _ = yym3155 + if yyq3164[4] { + yym3178 := z.EncBinary() + _ = yym3178 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -39638,23 +39909,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3141[4] { + if yyq3164[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3156 := z.EncBinary() - _ = yym3156 + yym3179 := z.EncBinary() + _ = yym3179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[5] { - yym3158 := z.EncBinary() - _ = yym3158 + if yyq3164[5] { + yym3181 := z.EncBinary() + _ = yym3181 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39663,114 +39934,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3141[5] { + if yyq3164[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3159 := z.EncBinary() - _ = yym3159 + yym3182 := z.EncBinary() + _ = yym3182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[6] { - yy3161 := &x.Source - yy3161.CodecEncodeSelf(e) + if yyq3164[6] { + yy3184 := &x.Source + yy3184.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3141[6] { + if yyq3164[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3162 := &x.Source - yy3162.CodecEncodeSelf(e) + yy3185 := &x.Source + yy3185.CodecEncodeSelf(e) } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[7] { - yy3164 := &x.FirstTimestamp - yym3165 := z.EncBinary() - _ = yym3165 + if yyq3164[7] { + yy3187 := &x.FirstTimestamp + yym3188 := z.EncBinary() + _ = yym3188 if false { - } else if z.HasExtensions() && z.EncExt(yy3164) { - } else if yym3165 { - z.EncBinaryMarshal(yy3164) - } else if !yym3165 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3164) + } else if z.HasExtensions() && z.EncExt(yy3187) { + } else if yym3188 { + z.EncBinaryMarshal(yy3187) + } else if !yym3188 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3187) } else { - z.EncFallback(yy3164) + z.EncFallback(yy3187) } } else { r.EncodeNil() } } else { - if yyq3141[7] { + if yyq3164[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3166 := &x.FirstTimestamp - yym3167 := z.EncBinary() - _ = yym3167 + yy3189 := &x.FirstTimestamp + yym3190 := z.EncBinary() + _ = yym3190 if false { - } else if z.HasExtensions() && z.EncExt(yy3166) { - } else if yym3167 { - z.EncBinaryMarshal(yy3166) - } else if !yym3167 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3166) + } else if z.HasExtensions() && z.EncExt(yy3189) { + } else if yym3190 { + z.EncBinaryMarshal(yy3189) + } else if !yym3190 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3189) } else { - z.EncFallback(yy3166) + z.EncFallback(yy3189) } } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[8] { - yy3169 := &x.LastTimestamp - yym3170 := z.EncBinary() - _ = yym3170 + if yyq3164[8] { + yy3192 := &x.LastTimestamp + yym3193 := z.EncBinary() + _ = yym3193 if false { - } else if z.HasExtensions() && z.EncExt(yy3169) { - } else if yym3170 { - z.EncBinaryMarshal(yy3169) - } else if !yym3170 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3169) + } else if z.HasExtensions() && z.EncExt(yy3192) { + } else if yym3193 { + z.EncBinaryMarshal(yy3192) + } else if !yym3193 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3192) } else { - z.EncFallback(yy3169) + z.EncFallback(yy3192) } } else { r.EncodeNil() } } else { - if yyq3141[8] { + if yyq3164[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3171 := &x.LastTimestamp - yym3172 := z.EncBinary() - _ = yym3172 + yy3194 := &x.LastTimestamp + yym3195 := z.EncBinary() + _ = yym3195 if false { - } else if z.HasExtensions() && z.EncExt(yy3171) { - } else if yym3172 { - z.EncBinaryMarshal(yy3171) - } else if !yym3172 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3171) + } else if z.HasExtensions() && z.EncExt(yy3194) { + } else if yym3195 { + z.EncBinaryMarshal(yy3194) + } else if !yym3195 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3194) } else { - z.EncFallback(yy3171) + z.EncFallback(yy3194) } } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[9] { - yym3174 := z.EncBinary() - _ = yym3174 + if yyq3164[9] { + yym3197 := z.EncBinary() + _ = yym3197 if false { } else { r.EncodeInt(int64(x.Count)) @@ -39779,23 +40050,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3141[9] { + if yyq3164[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3175 := z.EncBinary() - _ = yym3175 + yym3198 := z.EncBinary() + _ = yym3198 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3141[10] { - yym3177 := z.EncBinary() - _ = yym3177 + if yyq3164[10] { + yym3200 := z.EncBinary() + _ = yym3200 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -39804,19 +40075,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3141[10] { + if yyq3164[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3178 := z.EncBinary() - _ = yym3178 + yym3201 := z.EncBinary() + _ = yym3201 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3141 || yy2arr3141 { + if yyr3164 || yy2arr3164 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39829,25 +40100,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3179 := z.DecBinary() - _ = yym3179 + yym3202 := z.DecBinary() + _ = yym3202 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3180 := r.ContainerType() - if yyct3180 == codecSelferValueTypeMap1234 { - yyl3180 := r.ReadMapStart() - if yyl3180 == 0 { + yyct3203 := r.ContainerType() + if yyct3203 == codecSelferValueTypeMap1234 { + yyl3203 := r.ReadMapStart() + if yyl3203 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3180, d) + x.codecDecodeSelfFromMap(yyl3203, d) } - } else if yyct3180 == codecSelferValueTypeArray1234 { - yyl3180 := r.ReadArrayStart() - if yyl3180 == 0 { + } else if yyct3203 == codecSelferValueTypeArray1234 { + yyl3203 := r.ReadArrayStart() + if yyl3203 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3180, d) + x.codecDecodeSelfFromArray(yyl3203, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39859,12 +40130,12 @@ func (x *Event) 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 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 { @@ -39873,10 +40144,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3181Slc = r.DecodeBytes(yys3181Slc, true, true) - yys3181 := string(yys3181Slc) + yys3204Slc = r.DecodeBytes(yys3204Slc, true, true) + yys3204 := string(yys3204Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3181 { + switch yys3204 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39893,15 +40164,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3184 := &x.ObjectMeta - yyv3184.CodecDecodeSelf(d) + yyv3207 := &x.ObjectMeta + yyv3207.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3185 := &x.InvolvedObject - yyv3185.CodecDecodeSelf(d) + yyv3208 := &x.InvolvedObject + yyv3208.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -39919,41 +40190,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3188 := &x.Source - yyv3188.CodecDecodeSelf(d) + yyv3211 := &x.Source + yyv3211.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3189 := &x.FirstTimestamp - yym3190 := z.DecBinary() - _ = yym3190 + yyv3212 := &x.FirstTimestamp + yym3213 := z.DecBinary() + _ = yym3213 if false { - } else if z.HasExtensions() && z.DecExt(yyv3189) { - } else if yym3190 { - z.DecBinaryUnmarshal(yyv3189) - } else if !yym3190 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3189) + } else if z.HasExtensions() && z.DecExt(yyv3212) { + } else if yym3213 { + z.DecBinaryUnmarshal(yyv3212) + } else if !yym3213 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3212) } else { - z.DecFallback(yyv3189, false) + z.DecFallback(yyv3212, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3191 := &x.LastTimestamp - yym3192 := z.DecBinary() - _ = yym3192 + yyv3214 := &x.LastTimestamp + yym3215 := z.DecBinary() + _ = yym3215 if false { - } else if z.HasExtensions() && z.DecExt(yyv3191) { - } else if yym3192 { - z.DecBinaryUnmarshal(yyv3191) - } else if !yym3192 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3191) + } else if z.HasExtensions() && z.DecExt(yyv3214) { + } else if yym3215 { + z.DecBinaryUnmarshal(yyv3214) + } else if !yym3215 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3214) } else { - z.DecFallback(yyv3191, false) + z.DecFallback(yyv3214, false) } } case "count": @@ -39969,9 +40240,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3181) - } // end switch yys3181 - } // end for yyj3181 + z.DecStructFieldNotFound(-1, yys3204) + } // end switch yys3204 + } // end for yyj3204 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39979,16 +40250,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3195 int - var yyb3195 bool - var yyhl3195 bool = l >= 0 - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + var yyj3218 int + var yyb3218 bool + var yyhl3218 bool = l >= 0 + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39998,13 +40269,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40014,13 +40285,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40028,16 +40299,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3198 := &x.ObjectMeta - yyv3198.CodecDecodeSelf(d) + yyv3221 := &x.ObjectMeta + yyv3221.CodecDecodeSelf(d) } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40045,16 +40316,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3199 := &x.InvolvedObject - yyv3199.CodecDecodeSelf(d) + yyv3222 := &x.InvolvedObject + yyv3222.CodecDecodeSelf(d) } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40064,13 +40335,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40080,13 +40351,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40094,16 +40365,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3202 := &x.Source - yyv3202.CodecDecodeSelf(d) + yyv3225 := &x.Source + yyv3225.CodecDecodeSelf(d) } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40111,26 +40382,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3203 := &x.FirstTimestamp - yym3204 := z.DecBinary() - _ = yym3204 + yyv3226 := &x.FirstTimestamp + yym3227 := z.DecBinary() + _ = yym3227 if false { - } else if z.HasExtensions() && z.DecExt(yyv3203) { - } else if yym3204 { - z.DecBinaryUnmarshal(yyv3203) - } else if !yym3204 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3203) + } else if z.HasExtensions() && z.DecExt(yyv3226) { + } else if yym3227 { + z.DecBinaryUnmarshal(yyv3226) + } else if !yym3227 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3226) } else { - z.DecFallback(yyv3203, false) + z.DecFallback(yyv3226, false) } } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40138,26 +40409,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3205 := &x.LastTimestamp - yym3206 := z.DecBinary() - _ = yym3206 + yyv3228 := &x.LastTimestamp + yym3229 := z.DecBinary() + _ = yym3229 if false { - } else if z.HasExtensions() && z.DecExt(yyv3205) { - } else if yym3206 { - z.DecBinaryUnmarshal(yyv3205) - } else if !yym3206 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3205) + } else if z.HasExtensions() && z.DecExt(yyv3228) { + } else if yym3229 { + z.DecBinaryUnmarshal(yyv3228) + } else if !yym3229 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3228) } else { - z.DecFallback(yyv3205, false) + z.DecFallback(yyv3228, false) } } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40167,13 +40438,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40184,17 +40455,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3195++ - if yyhl3195 { - yyb3195 = yyj3195 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3195 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3195 { + if yyb3218 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3195-1, "") + z.DecStructFieldNotFound(yyj3218-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40206,37 +40477,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3209 := z.EncBinary() - _ = yym3209 + yym3232 := z.EncBinary() + _ = yym3232 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3210 := !z.EncBinary() - yy2arr3210 := z.EncBasicHandle().StructToArray - var yyq3210 [4]bool - _, _, _ = yysep3210, yyq3210, yy2arr3210 - const yyr3210 bool = false - yyq3210[0] = x.Kind != "" - yyq3210[1] = x.APIVersion != "" - yyq3210[2] = true - var yynn3210 int - if yyr3210 || yy2arr3210 { + yysep3233 := !z.EncBinary() + yy2arr3233 := z.EncBasicHandle().StructToArray + var yyq3233 [4]bool + _, _, _ = yysep3233, yyq3233, yy2arr3233 + const yyr3233 bool = false + yyq3233[0] = x.Kind != "" + yyq3233[1] = x.APIVersion != "" + yyq3233[2] = true + var yynn3233 int + if yyr3233 || yy2arr3233 { r.EncodeArrayStart(4) } else { - yynn3210 = 1 - for _, b := range yyq3210 { + yynn3233 = 1 + for _, b := range yyq3233 { if b { - yynn3210++ + yynn3233++ } } - r.EncodeMapStart(yynn3210) - yynn3210 = 0 + r.EncodeMapStart(yynn3233) + yynn3233 = 0 } - if yyr3210 || yy2arr3210 { + if yyr3233 || yy2arr3233 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3210[0] { - yym3212 := z.EncBinary() - _ = yym3212 + if yyq3233[0] { + yym3235 := z.EncBinary() + _ = yym3235 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40245,23 +40516,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3210[0] { + if yyq3233[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3213 := z.EncBinary() - _ = yym3213 + yym3236 := z.EncBinary() + _ = yym3236 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3210 || yy2arr3210 { + if yyr3233 || yy2arr3233 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3210[1] { - yym3215 := z.EncBinary() - _ = yym3215 + if yyq3233[1] { + yym3238 := z.EncBinary() + _ = yym3238 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40270,54 +40541,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3210[1] { + if yyq3233[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3216 := z.EncBinary() - _ = yym3216 + yym3239 := z.EncBinary() + _ = yym3239 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3210 || yy2arr3210 { + if yyr3233 || yy2arr3233 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3210[2] { - yy3218 := &x.ListMeta - yym3219 := z.EncBinary() - _ = yym3219 + if yyq3233[2] { + yy3241 := &x.ListMeta + yym3242 := z.EncBinary() + _ = yym3242 if false { - } else if z.HasExtensions() && z.EncExt(yy3218) { + } else if z.HasExtensions() && z.EncExt(yy3241) { } else { - z.EncFallback(yy3218) + z.EncFallback(yy3241) } } else { r.EncodeNil() } } else { - if yyq3210[2] { + if yyq3233[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3220 := &x.ListMeta - yym3221 := z.EncBinary() - _ = yym3221 + yy3243 := &x.ListMeta + yym3244 := z.EncBinary() + _ = yym3244 if false { - } else if z.HasExtensions() && z.EncExt(yy3220) { + } else if z.HasExtensions() && z.EncExt(yy3243) { } else { - z.EncFallback(yy3220) + z.EncFallback(yy3243) } } } - if yyr3210 || yy2arr3210 { + if yyr3233 || yy2arr3233 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3223 := z.EncBinary() - _ = yym3223 + yym3246 := z.EncBinary() + _ = yym3246 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -40330,15 +40601,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3224 := z.EncBinary() - _ = yym3224 + yym3247 := z.EncBinary() + _ = yym3247 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3210 || yy2arr3210 { + if yyr3233 || yy2arr3233 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40351,25 +40622,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3225 := z.DecBinary() - _ = yym3225 + yym3248 := z.DecBinary() + _ = yym3248 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3226 := r.ContainerType() - if yyct3226 == codecSelferValueTypeMap1234 { - yyl3226 := r.ReadMapStart() - if yyl3226 == 0 { + yyct3249 := r.ContainerType() + if yyct3249 == codecSelferValueTypeMap1234 { + yyl3249 := r.ReadMapStart() + if yyl3249 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3226, d) + x.codecDecodeSelfFromMap(yyl3249, d) } - } else if yyct3226 == codecSelferValueTypeArray1234 { - yyl3226 := r.ReadArrayStart() - if yyl3226 == 0 { + } else if yyct3249 == codecSelferValueTypeArray1234 { + yyl3249 := r.ReadArrayStart() + if yyl3249 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3226, d) + x.codecDecodeSelfFromArray(yyl3249, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40381,12 +40652,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3227Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3227Slc - var yyhl3227 bool = l >= 0 - for yyj3227 := 0; ; yyj3227++ { - if yyhl3227 { - if yyj3227 >= l { + var yys3250Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3250Slc + var yyhl3250 bool = l >= 0 + for yyj3250 := 0; ; yyj3250++ { + if yyhl3250 { + if yyj3250 >= l { break } } else { @@ -40395,10 +40666,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3227Slc = r.DecodeBytes(yys3227Slc, true, true) - yys3227 := string(yys3227Slc) + yys3250Slc = r.DecodeBytes(yys3250Slc, true, true) + yys3250 := string(yys3250Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3227 { + switch yys3250 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40415,31 +40686,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3230 := &x.ListMeta - yym3231 := z.DecBinary() - _ = yym3231 + yyv3253 := &x.ListMeta + yym3254 := z.DecBinary() + _ = yym3254 if false { - } else if z.HasExtensions() && z.DecExt(yyv3230) { + } else if z.HasExtensions() && z.DecExt(yyv3253) { } else { - z.DecFallback(yyv3230, false) + z.DecFallback(yyv3253, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3232 := &x.Items - yym3233 := z.DecBinary() - _ = yym3233 + yyv3255 := &x.Items + yym3256 := z.DecBinary() + _ = yym3256 if false { } else { - h.decSliceEvent((*[]Event)(yyv3232), d) + h.decSliceEvent((*[]Event)(yyv3255), d) } } default: - z.DecStructFieldNotFound(-1, yys3227) - } // end switch yys3227 - } // end for yyj3227 + z.DecStructFieldNotFound(-1, yys3250) + } // end switch yys3250 + } // end for yyj3250 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40447,16 +40718,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3234 int - var yyb3234 bool - var yyhl3234 bool = l >= 0 - yyj3234++ - if yyhl3234 { - yyb3234 = yyj3234 > l + var yyj3257 int + var yyb3257 bool + var yyhl3257 bool = l >= 0 + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3234 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3234 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40466,13 +40737,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3234++ - if yyhl3234 { - yyb3234 = yyj3234 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3234 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3234 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40482,13 +40753,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3234++ - if yyhl3234 { - yyb3234 = yyj3234 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3234 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3234 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40496,22 +40767,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3237 := &x.ListMeta - yym3238 := z.DecBinary() - _ = yym3238 + yyv3260 := &x.ListMeta + yym3261 := z.DecBinary() + _ = yym3261 if false { - } else if z.HasExtensions() && z.DecExt(yyv3237) { + } else if z.HasExtensions() && z.DecExt(yyv3260) { } else { - z.DecFallback(yyv3237, false) + z.DecFallback(yyv3260, false) } } - yyj3234++ - if yyhl3234 { - yyb3234 = yyj3234 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3234 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3234 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40519,26 +40790,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3239 := &x.Items - yym3240 := z.DecBinary() - _ = yym3240 + yyv3262 := &x.Items + yym3263 := z.DecBinary() + _ = yym3263 if false { } else { - h.decSliceEvent((*[]Event)(yyv3239), d) + h.decSliceEvent((*[]Event)(yyv3262), d) } } for { - yyj3234++ - if yyhl3234 { - yyb3234 = yyj3234 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3234 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3234 { + if yyb3257 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3234-1, "") + z.DecStructFieldNotFound(yyj3257-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40550,37 +40821,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3241 := z.EncBinary() - _ = yym3241 + yym3264 := z.EncBinary() + _ = yym3264 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3242 := !z.EncBinary() - yy2arr3242 := z.EncBasicHandle().StructToArray - var yyq3242 [4]bool - _, _, _ = yysep3242, yyq3242, yy2arr3242 - const yyr3242 bool = false - yyq3242[0] = x.Kind != "" - yyq3242[1] = x.APIVersion != "" - yyq3242[2] = true - var yynn3242 int - if yyr3242 || yy2arr3242 { + yysep3265 := !z.EncBinary() + yy2arr3265 := z.EncBasicHandle().StructToArray + var yyq3265 [4]bool + _, _, _ = yysep3265, yyq3265, yy2arr3265 + const yyr3265 bool = false + yyq3265[0] = x.Kind != "" + yyq3265[1] = x.APIVersion != "" + yyq3265[2] = true + var yynn3265 int + if yyr3265 || yy2arr3265 { r.EncodeArrayStart(4) } else { - yynn3242 = 1 - for _, b := range yyq3242 { + yynn3265 = 1 + for _, b := range yyq3265 { if b { - yynn3242++ + yynn3265++ } } - r.EncodeMapStart(yynn3242) - yynn3242 = 0 + r.EncodeMapStart(yynn3265) + yynn3265 = 0 } - if yyr3242 || yy2arr3242 { + if yyr3265 || yy2arr3265 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3242[0] { - yym3244 := z.EncBinary() - _ = yym3244 + if yyq3265[0] { + yym3267 := z.EncBinary() + _ = yym3267 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40589,23 +40860,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3242[0] { + if yyq3265[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3245 := z.EncBinary() - _ = yym3245 + yym3268 := z.EncBinary() + _ = yym3268 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3242 || yy2arr3242 { + if yyr3265 || yy2arr3265 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3242[1] { - yym3247 := z.EncBinary() - _ = yym3247 + if yyq3265[1] { + yym3270 := z.EncBinary() + _ = yym3270 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40614,54 +40885,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3242[1] { + if yyq3265[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3248 := z.EncBinary() - _ = yym3248 + yym3271 := z.EncBinary() + _ = yym3271 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3242 || yy2arr3242 { + if yyr3265 || yy2arr3265 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3242[2] { - yy3250 := &x.ListMeta - yym3251 := z.EncBinary() - _ = yym3251 + if yyq3265[2] { + yy3273 := &x.ListMeta + yym3274 := z.EncBinary() + _ = yym3274 if false { - } else if z.HasExtensions() && z.EncExt(yy3250) { + } else if z.HasExtensions() && z.EncExt(yy3273) { } else { - z.EncFallback(yy3250) + z.EncFallback(yy3273) } } else { r.EncodeNil() } } else { - if yyq3242[2] { + if yyq3265[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3252 := &x.ListMeta - yym3253 := z.EncBinary() - _ = yym3253 + yy3275 := &x.ListMeta + yym3276 := z.EncBinary() + _ = yym3276 if false { - } else if z.HasExtensions() && z.EncExt(yy3252) { + } else if z.HasExtensions() && z.EncExt(yy3275) { } else { - z.EncFallback(yy3252) + z.EncFallback(yy3275) } } } - if yyr3242 || yy2arr3242 { + if yyr3265 || yy2arr3265 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3255 := z.EncBinary() - _ = yym3255 + yym3278 := z.EncBinary() + _ = yym3278 if false { } else { h.encSliceruntime_RawExtension(([]pkg6_runtime.RawExtension)(x.Items), e) @@ -40674,15 +40945,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3256 := z.EncBinary() - _ = yym3256 + yym3279 := z.EncBinary() + _ = yym3279 if false { } else { h.encSliceruntime_RawExtension(([]pkg6_runtime.RawExtension)(x.Items), e) } } } - if yyr3242 || yy2arr3242 { + if yyr3265 || yy2arr3265 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40695,25 +40966,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3257 := z.DecBinary() - _ = yym3257 + yym3280 := z.DecBinary() + _ = yym3280 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3258 := r.ContainerType() - if yyct3258 == codecSelferValueTypeMap1234 { - yyl3258 := r.ReadMapStart() - if yyl3258 == 0 { + yyct3281 := r.ContainerType() + if yyct3281 == codecSelferValueTypeMap1234 { + yyl3281 := r.ReadMapStart() + if yyl3281 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3258, d) + x.codecDecodeSelfFromMap(yyl3281, d) } - } else if yyct3258 == codecSelferValueTypeArray1234 { - yyl3258 := r.ReadArrayStart() - if yyl3258 == 0 { + } else if yyct3281 == codecSelferValueTypeArray1234 { + yyl3281 := r.ReadArrayStart() + if yyl3281 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3258, d) + x.codecDecodeSelfFromArray(yyl3281, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40725,12 +40996,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3259Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3259Slc - var yyhl3259 bool = l >= 0 - for yyj3259 := 0; ; yyj3259++ { - if yyhl3259 { - if yyj3259 >= 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 { @@ -40739,10 +41010,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3259Slc = r.DecodeBytes(yys3259Slc, true, true) - yys3259 := string(yys3259Slc) + yys3282Slc = r.DecodeBytes(yys3282Slc, true, true) + yys3282 := string(yys3282Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3259 { + switch yys3282 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40759,31 +41030,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3262 := &x.ListMeta - yym3263 := z.DecBinary() - _ = yym3263 + yyv3285 := &x.ListMeta + yym3286 := z.DecBinary() + _ = yym3286 if false { - } else if z.HasExtensions() && z.DecExt(yyv3262) { + } else if z.HasExtensions() && z.DecExt(yyv3285) { } else { - z.DecFallback(yyv3262, false) + z.DecFallback(yyv3285, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3264 := &x.Items - yym3265 := z.DecBinary() - _ = yym3265 + yyv3287 := &x.Items + yym3288 := z.DecBinary() + _ = yym3288 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3264), d) + h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3287), d) } } default: - z.DecStructFieldNotFound(-1, yys3259) - } // end switch yys3259 - } // end for yyj3259 + z.DecStructFieldNotFound(-1, yys3282) + } // end switch yys3282 + } // end for yyj3282 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40791,16 +41062,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3266 int - var yyb3266 bool - var yyhl3266 bool = l >= 0 - yyj3266++ - if yyhl3266 { - yyb3266 = yyj3266 > l + var yyj3289 int + var yyb3289 bool + var yyhl3289 bool = l >= 0 + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3266 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3266 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40810,13 +41081,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3266++ - if yyhl3266 { - yyb3266 = yyj3266 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3266 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3266 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40826,13 +41097,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3266++ - if yyhl3266 { - yyb3266 = yyj3266 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3266 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3266 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40840,22 +41111,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3269 := &x.ListMeta - yym3270 := z.DecBinary() - _ = yym3270 + yyv3292 := &x.ListMeta + yym3293 := z.DecBinary() + _ = yym3293 if false { - } else if z.HasExtensions() && z.DecExt(yyv3269) { + } else if z.HasExtensions() && z.DecExt(yyv3292) { } else { - z.DecFallback(yyv3269, false) + z.DecFallback(yyv3292, false) } } - yyj3266++ - if yyhl3266 { - yyb3266 = yyj3266 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3266 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3266 { + if yyb3289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40863,26 +41134,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3271 := &x.Items - yym3272 := z.DecBinary() - _ = yym3272 + yyv3294 := &x.Items + yym3295 := z.DecBinary() + _ = yym3295 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3271), d) + h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3294), d) } } for { - yyj3266++ - if yyhl3266 { - yyb3266 = yyj3266 > l + yyj3289++ + if yyhl3289 { + yyb3289 = yyj3289 > l } else { - yyb3266 = r.CheckBreak() + yyb3289 = r.CheckBreak() } - if yyb3266 { + if yyb3289 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3266-1, "") + z.DecStructFieldNotFound(yyj3289-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40891,8 +41162,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3273 := z.EncBinary() - _ = yym3273 + yym3296 := z.EncBinary() + _ = yym3296 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40904,8 +41175,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3274 := z.DecBinary() - _ = yym3274 + yym3297 := z.DecBinary() + _ = yym3297 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40920,53 +41191,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3275 := z.EncBinary() - _ = yym3275 + yym3298 := z.EncBinary() + _ = yym3298 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3276 := !z.EncBinary() - yy2arr3276 := z.EncBasicHandle().StructToArray - var yyq3276 [6]bool - _, _, _ = yysep3276, yyq3276, yy2arr3276 - const yyr3276 bool = false - yyq3276[0] = x.Type != "" - yyq3276[1] = len(x.Max) != 0 - yyq3276[2] = len(x.Min) != 0 - yyq3276[3] = len(x.Default) != 0 - yyq3276[4] = len(x.DefaultRequest) != 0 - yyq3276[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3276 int - if yyr3276 || yy2arr3276 { + yysep3299 := !z.EncBinary() + yy2arr3299 := z.EncBasicHandle().StructToArray + var yyq3299 [6]bool + _, _, _ = yysep3299, yyq3299, yy2arr3299 + const yyr3299 bool = false + yyq3299[0] = x.Type != "" + yyq3299[1] = len(x.Max) != 0 + yyq3299[2] = len(x.Min) != 0 + yyq3299[3] = len(x.Default) != 0 + yyq3299[4] = len(x.DefaultRequest) != 0 + yyq3299[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3299 int + if yyr3299 || yy2arr3299 { r.EncodeArrayStart(6) } else { - yynn3276 = 0 - for _, b := range yyq3276 { + yynn3299 = 0 + for _, b := range yyq3299 { if b { - yynn3276++ + yynn3299++ } } - r.EncodeMapStart(yynn3276) - yynn3276 = 0 + r.EncodeMapStart(yynn3299) + yynn3299 = 0 } - if yyr3276 || yy2arr3276 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3276[0] { + if yyq3299[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3276[0] { + if yyq3299[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3276 || yy2arr3276 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3276[1] { + if yyq3299[1] { if x.Max == nil { r.EncodeNil() } else { @@ -40976,7 +41247,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3276[1] { + if yyq3299[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -40987,9 +41258,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3276 || yy2arr3276 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3276[2] { + if yyq3299[2] { if x.Min == nil { r.EncodeNil() } else { @@ -40999,7 +41270,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3276[2] { + if yyq3299[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41010,9 +41281,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3276 || yy2arr3276 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3276[3] { + if yyq3299[3] { if x.Default == nil { r.EncodeNil() } else { @@ -41022,7 +41293,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3276[3] { + if yyq3299[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41033,9 +41304,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3276 || yy2arr3276 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3276[4] { + if yyq3299[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -41045,7 +41316,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3276[4] { + if yyq3299[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41056,9 +41327,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3276 || yy2arr3276 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3276[5] { + if yyq3299[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -41068,7 +41339,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3276[5] { + if yyq3299[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41079,7 +41350,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3276 || yy2arr3276 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41092,25 +41363,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3283 := z.DecBinary() - _ = yym3283 + yym3306 := z.DecBinary() + _ = yym3306 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3284 := r.ContainerType() - if yyct3284 == codecSelferValueTypeMap1234 { - yyl3284 := r.ReadMapStart() - if yyl3284 == 0 { + yyct3307 := r.ContainerType() + if yyct3307 == codecSelferValueTypeMap1234 { + yyl3307 := r.ReadMapStart() + if yyl3307 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3284, d) + x.codecDecodeSelfFromMap(yyl3307, d) } - } else if yyct3284 == codecSelferValueTypeArray1234 { - yyl3284 := r.ReadArrayStart() - if yyl3284 == 0 { + } else if yyct3307 == codecSelferValueTypeArray1234 { + yyl3307 := r.ReadArrayStart() + if yyl3307 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3284, d) + x.codecDecodeSelfFromArray(yyl3307, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41122,12 +41393,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3285Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3285Slc - var yyhl3285 bool = l >= 0 - for yyj3285 := 0; ; yyj3285++ { - if yyhl3285 { - if yyj3285 >= l { + var yys3308Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3308Slc + var yyhl3308 bool = l >= 0 + for yyj3308 := 0; ; yyj3308++ { + if yyhl3308 { + if yyj3308 >= l { break } } else { @@ -41136,10 +41407,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3285Slc = r.DecodeBytes(yys3285Slc, true, true) - yys3285 := string(yys3285Slc) + yys3308Slc = r.DecodeBytes(yys3308Slc, true, true) + yys3308 := string(yys3308Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3285 { + switch yys3308 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -41150,41 +41421,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3287 := &x.Max - yyv3287.CodecDecodeSelf(d) + yyv3310 := &x.Max + yyv3310.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3288 := &x.Min - yyv3288.CodecDecodeSelf(d) + yyv3311 := &x.Min + yyv3311.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3289 := &x.Default - yyv3289.CodecDecodeSelf(d) + yyv3312 := &x.Default + yyv3312.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3290 := &x.DefaultRequest - yyv3290.CodecDecodeSelf(d) + yyv3313 := &x.DefaultRequest + yyv3313.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3291 := &x.MaxLimitRequestRatio - yyv3291.CodecDecodeSelf(d) + yyv3314 := &x.MaxLimitRequestRatio + yyv3314.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3285) - } // end switch yys3285 - } // end for yyj3285 + z.DecStructFieldNotFound(-1, yys3308) + } // end switch yys3308 + } // end for yyj3308 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41192,16 +41463,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3292 int - var yyb3292 bool - var yyhl3292 bool = l >= 0 - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + var yyj3315 int + var yyb3315 bool + var yyhl3315 bool = l >= 0 + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41211,13 +41482,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41225,16 +41496,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3294 := &x.Max - yyv3294.CodecDecodeSelf(d) + yyv3317 := &x.Max + yyv3317.CodecDecodeSelf(d) } - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41242,16 +41513,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3295 := &x.Min - yyv3295.CodecDecodeSelf(d) + yyv3318 := &x.Min + yyv3318.CodecDecodeSelf(d) } - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41259,16 +41530,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3296 := &x.Default - yyv3296.CodecDecodeSelf(d) + yyv3319 := &x.Default + yyv3319.CodecDecodeSelf(d) } - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41276,16 +41547,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3297 := &x.DefaultRequest - yyv3297.CodecDecodeSelf(d) + yyv3320 := &x.DefaultRequest + yyv3320.CodecDecodeSelf(d) } - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41293,21 +41564,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3298 := &x.MaxLimitRequestRatio - yyv3298.CodecDecodeSelf(d) + yyv3321 := &x.MaxLimitRequestRatio + yyv3321.CodecDecodeSelf(d) } for { - yyj3292++ - if yyhl3292 { - yyb3292 = yyj3292 > l + yyj3315++ + if yyhl3315 { + yyb3315 = yyj3315 > l } else { - yyb3292 = r.CheckBreak() + yyb3315 = r.CheckBreak() } - if yyb3292 { + if yyb3315 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3292-1, "") + z.DecStructFieldNotFound(yyj3315-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41319,36 +41590,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3299 := z.EncBinary() - _ = yym3299 + yym3322 := z.EncBinary() + _ = yym3322 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3300 := !z.EncBinary() - yy2arr3300 := z.EncBasicHandle().StructToArray - var yyq3300 [1]bool - _, _, _ = yysep3300, yyq3300, yy2arr3300 - const yyr3300 bool = false - var yynn3300 int - if yyr3300 || yy2arr3300 { + yysep3323 := !z.EncBinary() + yy2arr3323 := z.EncBasicHandle().StructToArray + var yyq3323 [1]bool + _, _, _ = yysep3323, yyq3323, yy2arr3323 + const yyr3323 bool = false + var yynn3323 int + if yyr3323 || yy2arr3323 { r.EncodeArrayStart(1) } else { - yynn3300 = 1 - for _, b := range yyq3300 { + yynn3323 = 1 + for _, b := range yyq3323 { if b { - yynn3300++ + yynn3323++ } } - r.EncodeMapStart(yynn3300) - yynn3300 = 0 + r.EncodeMapStart(yynn3323) + yynn3323 = 0 } - if yyr3300 || yy2arr3300 { + if yyr3323 || yy2arr3323 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3302 := z.EncBinary() - _ = yym3302 + yym3325 := z.EncBinary() + _ = yym3325 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -41361,15 +41632,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3303 := z.EncBinary() - _ = yym3303 + yym3326 := z.EncBinary() + _ = yym3326 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3300 || yy2arr3300 { + if yyr3323 || yy2arr3323 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41382,25 +41653,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3304 := z.DecBinary() - _ = yym3304 + yym3327 := z.DecBinary() + _ = yym3327 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3305 := r.ContainerType() - if yyct3305 == codecSelferValueTypeMap1234 { - yyl3305 := r.ReadMapStart() - if yyl3305 == 0 { + yyct3328 := r.ContainerType() + if yyct3328 == codecSelferValueTypeMap1234 { + yyl3328 := r.ReadMapStart() + if yyl3328 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3305, d) + x.codecDecodeSelfFromMap(yyl3328, d) } - } else if yyct3305 == codecSelferValueTypeArray1234 { - yyl3305 := r.ReadArrayStart() - if yyl3305 == 0 { + } else if yyct3328 == codecSelferValueTypeArray1234 { + yyl3328 := r.ReadArrayStart() + if yyl3328 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3305, d) + x.codecDecodeSelfFromArray(yyl3328, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41412,12 +41683,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3306Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3306Slc - var yyhl3306 bool = l >= 0 - for yyj3306 := 0; ; yyj3306++ { - if yyhl3306 { - if yyj3306 >= l { + var yys3329Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3329Slc + var yyhl3329 bool = l >= 0 + for yyj3329 := 0; ; yyj3329++ { + if yyhl3329 { + if yyj3329 >= l { break } } else { @@ -41426,26 +41697,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3306Slc = r.DecodeBytes(yys3306Slc, true, true) - yys3306 := string(yys3306Slc) + yys3329Slc = r.DecodeBytes(yys3329Slc, true, true) + yys3329 := string(yys3329Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3306 { + switch yys3329 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3307 := &x.Limits - yym3308 := z.DecBinary() - _ = yym3308 + yyv3330 := &x.Limits + yym3331 := z.DecBinary() + _ = yym3331 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3307), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3330), d) } } default: - z.DecStructFieldNotFound(-1, yys3306) - } // end switch yys3306 - } // end for yyj3306 + z.DecStructFieldNotFound(-1, yys3329) + } // end switch yys3329 + } // end for yyj3329 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41453,16 +41724,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3309 int - var yyb3309 bool - var yyhl3309 bool = l >= 0 - yyj3309++ - if yyhl3309 { - yyb3309 = yyj3309 > l + var yyj3332 int + var yyb3332 bool + var yyhl3332 bool = l >= 0 + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3309 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3309 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41470,26 +41741,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3310 := &x.Limits - yym3311 := z.DecBinary() - _ = yym3311 + yyv3333 := &x.Limits + yym3334 := z.DecBinary() + _ = yym3334 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3310), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3333), d) } } for { - yyj3309++ - if yyhl3309 { - yyb3309 = yyj3309 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3309 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3309 { + if yyb3332 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3309-1, "") + z.DecStructFieldNotFound(yyj3332-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41501,38 +41772,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3312 := z.EncBinary() - _ = yym3312 + yym3335 := z.EncBinary() + _ = yym3335 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3313 := !z.EncBinary() - yy2arr3313 := z.EncBasicHandle().StructToArray - var yyq3313 [4]bool - _, _, _ = yysep3313, yyq3313, yy2arr3313 - const yyr3313 bool = false - yyq3313[0] = x.Kind != "" - yyq3313[1] = x.APIVersion != "" - yyq3313[2] = true - yyq3313[3] = true - var yynn3313 int - if yyr3313 || yy2arr3313 { + yysep3336 := !z.EncBinary() + yy2arr3336 := z.EncBasicHandle().StructToArray + var yyq3336 [4]bool + _, _, _ = yysep3336, yyq3336, yy2arr3336 + const yyr3336 bool = false + yyq3336[0] = x.Kind != "" + yyq3336[1] = x.APIVersion != "" + yyq3336[2] = true + yyq3336[3] = true + var yynn3336 int + if yyr3336 || yy2arr3336 { r.EncodeArrayStart(4) } else { - yynn3313 = 0 - for _, b := range yyq3313 { + yynn3336 = 0 + for _, b := range yyq3336 { if b { - yynn3313++ + yynn3336++ } } - r.EncodeMapStart(yynn3313) - yynn3313 = 0 + r.EncodeMapStart(yynn3336) + yynn3336 = 0 } - if yyr3313 || yy2arr3313 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[0] { - yym3315 := z.EncBinary() - _ = yym3315 + if yyq3336[0] { + yym3338 := z.EncBinary() + _ = yym3338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41541,23 +41812,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3313[0] { + if yyq3336[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3316 := z.EncBinary() - _ = yym3316 + yym3339 := z.EncBinary() + _ = yym3339 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3313 || yy2arr3313 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[1] { - yym3318 := z.EncBinary() - _ = yym3318 + if yyq3336[1] { + yym3341 := z.EncBinary() + _ = yym3341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41566,53 +41837,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3313[1] { + if yyq3336[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3319 := z.EncBinary() - _ = yym3319 + yym3342 := z.EncBinary() + _ = yym3342 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3313 || yy2arr3313 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[2] { - yy3321 := &x.ObjectMeta - yy3321.CodecEncodeSelf(e) + if yyq3336[2] { + yy3344 := &x.ObjectMeta + yy3344.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3313[2] { + if yyq3336[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3322 := &x.ObjectMeta - yy3322.CodecEncodeSelf(e) + yy3345 := &x.ObjectMeta + yy3345.CodecEncodeSelf(e) } } - if yyr3313 || yy2arr3313 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[3] { - yy3324 := &x.Spec - yy3324.CodecEncodeSelf(e) + if yyq3336[3] { + yy3347 := &x.Spec + yy3347.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3313[3] { + if yyq3336[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3325 := &x.Spec - yy3325.CodecEncodeSelf(e) + yy3348 := &x.Spec + yy3348.CodecEncodeSelf(e) } } - if yyr3313 || yy2arr3313 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41625,25 +41896,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3326 := z.DecBinary() - _ = yym3326 + yym3349 := z.DecBinary() + _ = yym3349 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3327 := r.ContainerType() - if yyct3327 == codecSelferValueTypeMap1234 { - yyl3327 := r.ReadMapStart() - if yyl3327 == 0 { + yyct3350 := r.ContainerType() + if yyct3350 == codecSelferValueTypeMap1234 { + yyl3350 := r.ReadMapStart() + if yyl3350 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3327, d) + x.codecDecodeSelfFromMap(yyl3350, d) } - } else if yyct3327 == codecSelferValueTypeArray1234 { - yyl3327 := r.ReadArrayStart() - if yyl3327 == 0 { + } else if yyct3350 == codecSelferValueTypeArray1234 { + yyl3350 := r.ReadArrayStart() + if yyl3350 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3327, d) + x.codecDecodeSelfFromArray(yyl3350, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41655,12 +41926,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3328Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3328Slc - var yyhl3328 bool = l >= 0 - for yyj3328 := 0; ; yyj3328++ { - if yyhl3328 { - if yyj3328 >= l { + var yys3351Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3351Slc + var yyhl3351 bool = l >= 0 + for yyj3351 := 0; ; yyj3351++ { + if yyhl3351 { + if yyj3351 >= l { break } } else { @@ -41669,10 +41940,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3328Slc = r.DecodeBytes(yys3328Slc, true, true) - yys3328 := string(yys3328Slc) + yys3351Slc = r.DecodeBytes(yys3351Slc, true, true) + yys3351 := string(yys3351Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3328 { + switch yys3351 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41689,20 +41960,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3331 := &x.ObjectMeta - yyv3331.CodecDecodeSelf(d) + yyv3354 := &x.ObjectMeta + yyv3354.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3332 := &x.Spec - yyv3332.CodecDecodeSelf(d) + yyv3355 := &x.Spec + yyv3355.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3328) - } // end switch yys3328 - } // end for yyj3328 + z.DecStructFieldNotFound(-1, yys3351) + } // end switch yys3351 + } // end for yyj3351 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41710,16 +41981,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3333 int - var yyb3333 bool - var yyhl3333 bool = l >= 0 - yyj3333++ - if yyhl3333 { - yyb3333 = yyj3333 > l + var yyj3356 int + var yyb3356 bool + var yyhl3356 bool = l >= 0 + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l } else { - yyb3333 = r.CheckBreak() + yyb3356 = r.CheckBreak() } - if yyb3333 { + if yyb3356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41729,13 +42000,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3333++ - if yyhl3333 { - yyb3333 = yyj3333 > l + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l } else { - yyb3333 = r.CheckBreak() + yyb3356 = r.CheckBreak() } - if yyb3333 { + if yyb3356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41745,13 +42016,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3333++ - if yyhl3333 { - yyb3333 = yyj3333 > l + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l } else { - yyb3333 = r.CheckBreak() + yyb3356 = r.CheckBreak() } - if yyb3333 { + if yyb3356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41759,16 +42030,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3336 := &x.ObjectMeta - yyv3336.CodecDecodeSelf(d) + yyv3359 := &x.ObjectMeta + yyv3359.CodecDecodeSelf(d) } - yyj3333++ - if yyhl3333 { - yyb3333 = yyj3333 > l + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l } else { - yyb3333 = r.CheckBreak() + yyb3356 = r.CheckBreak() } - if yyb3333 { + if yyb3356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41776,21 +42047,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3337 := &x.Spec - yyv3337.CodecDecodeSelf(d) + yyv3360 := &x.Spec + yyv3360.CodecDecodeSelf(d) } for { - yyj3333++ - if yyhl3333 { - yyb3333 = yyj3333 > l + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l } else { - yyb3333 = r.CheckBreak() + yyb3356 = r.CheckBreak() } - if yyb3333 { + if yyb3356 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3333-1, "") + z.DecStructFieldNotFound(yyj3356-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41802,37 +42073,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3338 := z.EncBinary() - _ = yym3338 + yym3361 := z.EncBinary() + _ = yym3361 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3339 := !z.EncBinary() - yy2arr3339 := z.EncBasicHandle().StructToArray - var yyq3339 [4]bool - _, _, _ = yysep3339, yyq3339, yy2arr3339 - const yyr3339 bool = false - yyq3339[0] = x.Kind != "" - yyq3339[1] = x.APIVersion != "" - yyq3339[2] = true - var yynn3339 int - if yyr3339 || yy2arr3339 { + yysep3362 := !z.EncBinary() + yy2arr3362 := z.EncBasicHandle().StructToArray + var yyq3362 [4]bool + _, _, _ = yysep3362, yyq3362, yy2arr3362 + const yyr3362 bool = false + yyq3362[0] = x.Kind != "" + yyq3362[1] = x.APIVersion != "" + yyq3362[2] = true + var yynn3362 int + if yyr3362 || yy2arr3362 { r.EncodeArrayStart(4) } else { - yynn3339 = 1 - for _, b := range yyq3339 { + yynn3362 = 1 + for _, b := range yyq3362 { if b { - yynn3339++ + yynn3362++ } } - r.EncodeMapStart(yynn3339) - yynn3339 = 0 + r.EncodeMapStart(yynn3362) + yynn3362 = 0 } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[0] { - yym3341 := z.EncBinary() - _ = yym3341 + if yyq3362[0] { + yym3364 := z.EncBinary() + _ = yym3364 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41841,23 +42112,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3339[0] { + if yyq3362[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3342 := z.EncBinary() - _ = yym3342 + yym3365 := z.EncBinary() + _ = yym3365 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[1] { - yym3344 := z.EncBinary() - _ = yym3344 + if yyq3362[1] { + yym3367 := z.EncBinary() + _ = yym3367 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41866,54 +42137,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3339[1] { + if yyq3362[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3345 := z.EncBinary() - _ = yym3345 + yym3368 := z.EncBinary() + _ = yym3368 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[2] { - yy3347 := &x.ListMeta - yym3348 := z.EncBinary() - _ = yym3348 + if yyq3362[2] { + yy3370 := &x.ListMeta + yym3371 := z.EncBinary() + _ = yym3371 if false { - } else if z.HasExtensions() && z.EncExt(yy3347) { + } else if z.HasExtensions() && z.EncExt(yy3370) { } else { - z.EncFallback(yy3347) + z.EncFallback(yy3370) } } else { r.EncodeNil() } } else { - if yyq3339[2] { + if yyq3362[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3349 := &x.ListMeta - yym3350 := z.EncBinary() - _ = yym3350 + yy3372 := &x.ListMeta + yym3373 := z.EncBinary() + _ = yym3373 if false { - } else if z.HasExtensions() && z.EncExt(yy3349) { + } else if z.HasExtensions() && z.EncExt(yy3372) { } else { - z.EncFallback(yy3349) + z.EncFallback(yy3372) } } } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3352 := z.EncBinary() - _ = yym3352 + yym3375 := z.EncBinary() + _ = yym3375 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -41926,15 +42197,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3353 := z.EncBinary() - _ = yym3353 + yym3376 := z.EncBinary() + _ = yym3376 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3339 || yy2arr3339 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41947,25 +42218,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3354 := z.DecBinary() - _ = yym3354 + yym3377 := z.DecBinary() + _ = yym3377 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3355 := r.ContainerType() - if yyct3355 == codecSelferValueTypeMap1234 { - yyl3355 := r.ReadMapStart() - if yyl3355 == 0 { + yyct3378 := r.ContainerType() + if yyct3378 == codecSelferValueTypeMap1234 { + yyl3378 := r.ReadMapStart() + if yyl3378 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3355, d) + x.codecDecodeSelfFromMap(yyl3378, d) } - } else if yyct3355 == codecSelferValueTypeArray1234 { - yyl3355 := r.ReadArrayStart() - if yyl3355 == 0 { + } else if yyct3378 == codecSelferValueTypeArray1234 { + yyl3378 := r.ReadArrayStart() + if yyl3378 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3355, d) + x.codecDecodeSelfFromArray(yyl3378, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41977,12 +42248,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3356Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3356Slc - var yyhl3356 bool = l >= 0 - for yyj3356 := 0; ; yyj3356++ { - if yyhl3356 { - if yyj3356 >= l { + var yys3379Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3379Slc + var yyhl3379 bool = l >= 0 + for yyj3379 := 0; ; yyj3379++ { + if yyhl3379 { + if yyj3379 >= l { break } } else { @@ -41991,10 +42262,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3356Slc = r.DecodeBytes(yys3356Slc, true, true) - yys3356 := string(yys3356Slc) + yys3379Slc = r.DecodeBytes(yys3379Slc, true, true) + yys3379 := string(yys3379Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3356 { + switch yys3379 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42011,31 +42282,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3359 := &x.ListMeta - yym3360 := z.DecBinary() - _ = yym3360 + yyv3382 := &x.ListMeta + yym3383 := z.DecBinary() + _ = yym3383 if false { - } else if z.HasExtensions() && z.DecExt(yyv3359) { + } else if z.HasExtensions() && z.DecExt(yyv3382) { } else { - z.DecFallback(yyv3359, false) + z.DecFallback(yyv3382, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3361 := &x.Items - yym3362 := z.DecBinary() - _ = yym3362 + yyv3384 := &x.Items + yym3385 := z.DecBinary() + _ = yym3385 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3361), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3384), d) } } default: - z.DecStructFieldNotFound(-1, yys3356) - } // end switch yys3356 - } // end for yyj3356 + z.DecStructFieldNotFound(-1, yys3379) + } // end switch yys3379 + } // end for yyj3379 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42043,16 +42314,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3363 int - var yyb3363 bool - var yyhl3363 bool = l >= 0 - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + var yyj3386 int + var yyb3386 bool + var yyhl3386 bool = l >= 0 + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3363 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3363 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42062,13 +42333,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3363 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3363 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42078,13 +42349,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3363 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3363 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42092,22 +42363,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3366 := &x.ListMeta - yym3367 := z.DecBinary() - _ = yym3367 + yyv3389 := &x.ListMeta + yym3390 := z.DecBinary() + _ = yym3390 if false { - } else if z.HasExtensions() && z.DecExt(yyv3366) { + } else if z.HasExtensions() && z.DecExt(yyv3389) { } else { - z.DecFallback(yyv3366, false) + z.DecFallback(yyv3389, false) } } - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3363 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3363 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42115,26 +42386,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3368 := &x.Items - yym3369 := z.DecBinary() - _ = yym3369 + yyv3391 := &x.Items + yym3392 := z.DecBinary() + _ = yym3392 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3368), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3391), d) } } for { - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3363 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3363 { + if yyb3386 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3363-1, "") + z.DecStructFieldNotFound(yyj3386-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42146,33 +42417,33 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3370 := z.EncBinary() - _ = yym3370 + yym3393 := z.EncBinary() + _ = yym3393 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3371 := !z.EncBinary() - yy2arr3371 := z.EncBasicHandle().StructToArray - var yyq3371 [1]bool - _, _, _ = yysep3371, yyq3371, yy2arr3371 - const yyr3371 bool = false - yyq3371[0] = len(x.Hard) != 0 - var yynn3371 int - if yyr3371 || yy2arr3371 { + yysep3394 := !z.EncBinary() + yy2arr3394 := z.EncBasicHandle().StructToArray + var yyq3394 [1]bool + _, _, _ = yysep3394, yyq3394, yy2arr3394 + const yyr3394 bool = false + yyq3394[0] = len(x.Hard) != 0 + var yynn3394 int + if yyr3394 || yy2arr3394 { r.EncodeArrayStart(1) } else { - yynn3371 = 0 - for _, b := range yyq3371 { + yynn3394 = 0 + for _, b := range yyq3394 { if b { - yynn3371++ + yynn3394++ } } - r.EncodeMapStart(yynn3371) - yynn3371 = 0 + r.EncodeMapStart(yynn3394) + yynn3394 = 0 } - if yyr3371 || yy2arr3371 { + if yyr3394 || yy2arr3394 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3371[0] { + if yyq3394[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -42182,7 +42453,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3371[0] { + if yyq3394[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42193,7 +42464,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3371 || yy2arr3371 { + if yyr3394 || yy2arr3394 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42206,25 +42477,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3373 := z.DecBinary() - _ = yym3373 + yym3396 := z.DecBinary() + _ = yym3396 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3374 := r.ContainerType() - if yyct3374 == codecSelferValueTypeMap1234 { - yyl3374 := r.ReadMapStart() - if yyl3374 == 0 { + yyct3397 := r.ContainerType() + if yyct3397 == codecSelferValueTypeMap1234 { + yyl3397 := r.ReadMapStart() + if yyl3397 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3374, d) + x.codecDecodeSelfFromMap(yyl3397, d) } - } else if yyct3374 == codecSelferValueTypeArray1234 { - yyl3374 := r.ReadArrayStart() - if yyl3374 == 0 { + } else if yyct3397 == codecSelferValueTypeArray1234 { + yyl3397 := r.ReadArrayStart() + if yyl3397 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3374, d) + x.codecDecodeSelfFromArray(yyl3397, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42236,12 +42507,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3375Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3375Slc - var yyhl3375 bool = l >= 0 - for yyj3375 := 0; ; yyj3375++ { - if yyhl3375 { - if yyj3375 >= l { + var yys3398Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3398Slc + var yyhl3398 bool = l >= 0 + for yyj3398 := 0; ; yyj3398++ { + if yyhl3398 { + if yyj3398 >= l { break } } else { @@ -42250,21 +42521,21 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3375Slc = r.DecodeBytes(yys3375Slc, true, true) - yys3375 := string(yys3375Slc) + yys3398Slc = r.DecodeBytes(yys3398Slc, true, true) + yys3398 := string(yys3398Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3375 { + switch yys3398 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3376 := &x.Hard - yyv3376.CodecDecodeSelf(d) + yyv3399 := &x.Hard + yyv3399.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3375) - } // end switch yys3375 - } // end for yyj3375 + z.DecStructFieldNotFound(-1, yys3398) + } // end switch yys3398 + } // end for yyj3398 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42272,16 +42543,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3377 int - var yyb3377 bool - var yyhl3377 bool = l >= 0 - yyj3377++ - if yyhl3377 { - yyb3377 = yyj3377 > l + var yyj3400 int + var yyb3400 bool + var yyhl3400 bool = l >= 0 + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3377 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3377 { + if yyb3400 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42289,21 +42560,21 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3378 := &x.Hard - yyv3378.CodecDecodeSelf(d) + yyv3401 := &x.Hard + yyv3401.CodecDecodeSelf(d) } for { - yyj3377++ - if yyhl3377 { - yyb3377 = yyj3377 > l + yyj3400++ + if yyhl3400 { + yyb3400 = yyj3400 > l } else { - yyb3377 = r.CheckBreak() + yyb3400 = r.CheckBreak() } - if yyb3377 { + if yyb3400 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3377-1, "") + z.DecStructFieldNotFound(yyj3400-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42315,34 +42586,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3379 := z.EncBinary() - _ = yym3379 + yym3402 := z.EncBinary() + _ = yym3402 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3380 := !z.EncBinary() - yy2arr3380 := z.EncBasicHandle().StructToArray - var yyq3380 [2]bool - _, _, _ = yysep3380, yyq3380, yy2arr3380 - const yyr3380 bool = false - yyq3380[0] = len(x.Hard) != 0 - yyq3380[1] = len(x.Used) != 0 - var yynn3380 int - if yyr3380 || yy2arr3380 { + yysep3403 := !z.EncBinary() + yy2arr3403 := z.EncBasicHandle().StructToArray + var yyq3403 [2]bool + _, _, _ = yysep3403, yyq3403, yy2arr3403 + const yyr3403 bool = false + yyq3403[0] = len(x.Hard) != 0 + yyq3403[1] = len(x.Used) != 0 + var yynn3403 int + if yyr3403 || yy2arr3403 { r.EncodeArrayStart(2) } else { - yynn3380 = 0 - for _, b := range yyq3380 { + yynn3403 = 0 + for _, b := range yyq3403 { if b { - yynn3380++ + yynn3403++ } } - r.EncodeMapStart(yynn3380) - yynn3380 = 0 + r.EncodeMapStart(yynn3403) + yynn3403 = 0 } - if yyr3380 || yy2arr3380 { + if yyr3403 || yy2arr3403 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3380[0] { + if yyq3403[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -42352,7 +42623,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3380[0] { + if yyq3403[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42363,9 +42634,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3380 || yy2arr3380 { + if yyr3403 || yy2arr3403 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3380[1] { + if yyq3403[1] { if x.Used == nil { r.EncodeNil() } else { @@ -42375,7 +42646,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3380[1] { + if yyq3403[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42386,7 +42657,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3380 || yy2arr3380 { + if yyr3403 || yy2arr3403 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42399,25 +42670,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3383 := z.DecBinary() - _ = yym3383 + yym3406 := z.DecBinary() + _ = yym3406 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3384 := r.ContainerType() - if yyct3384 == codecSelferValueTypeMap1234 { - yyl3384 := r.ReadMapStart() - if yyl3384 == 0 { + yyct3407 := r.ContainerType() + if yyct3407 == codecSelferValueTypeMap1234 { + yyl3407 := r.ReadMapStart() + if yyl3407 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3384, d) + x.codecDecodeSelfFromMap(yyl3407, d) } - } else if yyct3384 == codecSelferValueTypeArray1234 { - yyl3384 := r.ReadArrayStart() - if yyl3384 == 0 { + } else if yyct3407 == codecSelferValueTypeArray1234 { + yyl3407 := r.ReadArrayStart() + if yyl3407 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3384, d) + x.codecDecodeSelfFromArray(yyl3407, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42429,12 +42700,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3385Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3385Slc - var yyhl3385 bool = l >= 0 - for yyj3385 := 0; ; yyj3385++ { - if yyhl3385 { - if yyj3385 >= l { + var yys3408Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3408Slc + var yyhl3408 bool = l >= 0 + for yyj3408 := 0; ; yyj3408++ { + if yyhl3408 { + if yyj3408 >= l { break } } else { @@ -42443,28 +42714,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3385Slc = r.DecodeBytes(yys3385Slc, true, true) - yys3385 := string(yys3385Slc) + yys3408Slc = r.DecodeBytes(yys3408Slc, true, true) + yys3408 := string(yys3408Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3385 { + switch yys3408 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3386 := &x.Hard - yyv3386.CodecDecodeSelf(d) + yyv3409 := &x.Hard + yyv3409.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3387 := &x.Used - yyv3387.CodecDecodeSelf(d) + yyv3410 := &x.Used + yyv3410.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3385) - } // end switch yys3385 - } // end for yyj3385 + z.DecStructFieldNotFound(-1, yys3408) + } // end switch yys3408 + } // end for yyj3408 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42472,16 +42743,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3388 int - var yyb3388 bool - var yyhl3388 bool = l >= 0 - yyj3388++ - if yyhl3388 { - yyb3388 = yyj3388 > l + var yyj3411 int + var yyb3411 bool + var yyhl3411 bool = l >= 0 + yyj3411++ + if yyhl3411 { + yyb3411 = yyj3411 > l } else { - yyb3388 = r.CheckBreak() + yyb3411 = r.CheckBreak() } - if yyb3388 { + if yyb3411 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42489,16 +42760,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3389 := &x.Hard - yyv3389.CodecDecodeSelf(d) + yyv3412 := &x.Hard + yyv3412.CodecDecodeSelf(d) } - yyj3388++ - if yyhl3388 { - yyb3388 = yyj3388 > l + yyj3411++ + if yyhl3411 { + yyb3411 = yyj3411 > l } else { - yyb3388 = r.CheckBreak() + yyb3411 = r.CheckBreak() } - if yyb3388 { + if yyb3411 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42506,21 +42777,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3390 := &x.Used - yyv3390.CodecDecodeSelf(d) + yyv3413 := &x.Used + yyv3413.CodecDecodeSelf(d) } for { - yyj3388++ - if yyhl3388 { - yyb3388 = yyj3388 > l + yyj3411++ + if yyhl3411 { + yyb3411 = yyj3411 > l } else { - yyb3388 = r.CheckBreak() + yyb3411 = r.CheckBreak() } - if yyb3388 { + if yyb3411 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3388-1, "") + z.DecStructFieldNotFound(yyj3411-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42532,39 +42803,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3391 := z.EncBinary() - _ = yym3391 + yym3414 := z.EncBinary() + _ = yym3414 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3392 := !z.EncBinary() - yy2arr3392 := z.EncBasicHandle().StructToArray - var yyq3392 [5]bool - _, _, _ = yysep3392, yyq3392, yy2arr3392 - const yyr3392 bool = false - yyq3392[0] = x.Kind != "" - yyq3392[1] = x.APIVersion != "" - yyq3392[2] = true - yyq3392[3] = true - yyq3392[4] = true - var yynn3392 int - if yyr3392 || yy2arr3392 { + yysep3415 := !z.EncBinary() + yy2arr3415 := z.EncBasicHandle().StructToArray + var yyq3415 [5]bool + _, _, _ = yysep3415, yyq3415, yy2arr3415 + const yyr3415 bool = false + yyq3415[0] = x.Kind != "" + yyq3415[1] = x.APIVersion != "" + yyq3415[2] = true + yyq3415[3] = true + yyq3415[4] = true + var yynn3415 int + if yyr3415 || yy2arr3415 { r.EncodeArrayStart(5) } else { - yynn3392 = 0 - for _, b := range yyq3392 { + yynn3415 = 0 + for _, b := range yyq3415 { if b { - yynn3392++ + yynn3415++ } } - r.EncodeMapStart(yynn3392) - yynn3392 = 0 + r.EncodeMapStart(yynn3415) + yynn3415 = 0 } - if yyr3392 || yy2arr3392 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3392[0] { - yym3394 := z.EncBinary() - _ = yym3394 + if yyq3415[0] { + yym3417 := z.EncBinary() + _ = yym3417 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42573,23 +42844,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3392[0] { + if yyq3415[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3395 := z.EncBinary() - _ = yym3395 + yym3418 := z.EncBinary() + _ = yym3418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3392 || yy2arr3392 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3392[1] { - yym3397 := z.EncBinary() - _ = yym3397 + if yyq3415[1] { + yym3420 := z.EncBinary() + _ = yym3420 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42598,70 +42869,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3392[1] { + if yyq3415[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3398 := z.EncBinary() - _ = yym3398 + yym3421 := z.EncBinary() + _ = yym3421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3392 || yy2arr3392 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3392[2] { - yy3400 := &x.ObjectMeta - yy3400.CodecEncodeSelf(e) + if yyq3415[2] { + yy3423 := &x.ObjectMeta + yy3423.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3392[2] { + if yyq3415[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3401 := &x.ObjectMeta - yy3401.CodecEncodeSelf(e) + yy3424 := &x.ObjectMeta + yy3424.CodecEncodeSelf(e) } } - if yyr3392 || yy2arr3392 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3392[3] { - yy3403 := &x.Spec - yy3403.CodecEncodeSelf(e) + if yyq3415[3] { + yy3426 := &x.Spec + yy3426.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3392[3] { + if yyq3415[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3404 := &x.Spec - yy3404.CodecEncodeSelf(e) + yy3427 := &x.Spec + yy3427.CodecEncodeSelf(e) } } - if yyr3392 || yy2arr3392 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3392[4] { - yy3406 := &x.Status - yy3406.CodecEncodeSelf(e) + if yyq3415[4] { + yy3429 := &x.Status + yy3429.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3392[4] { + if yyq3415[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3407 := &x.Status - yy3407.CodecEncodeSelf(e) + yy3430 := &x.Status + yy3430.CodecEncodeSelf(e) } } - if yyr3392 || yy2arr3392 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42674,25 +42945,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3408 := z.DecBinary() - _ = yym3408 + yym3431 := z.DecBinary() + _ = yym3431 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3409 := r.ContainerType() - if yyct3409 == codecSelferValueTypeMap1234 { - yyl3409 := r.ReadMapStart() - if yyl3409 == 0 { + yyct3432 := r.ContainerType() + if yyct3432 == codecSelferValueTypeMap1234 { + yyl3432 := r.ReadMapStart() + if yyl3432 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3409, d) + x.codecDecodeSelfFromMap(yyl3432, d) } - } else if yyct3409 == codecSelferValueTypeArray1234 { - yyl3409 := r.ReadArrayStart() - if yyl3409 == 0 { + } else if yyct3432 == codecSelferValueTypeArray1234 { + yyl3432 := r.ReadArrayStart() + if yyl3432 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3409, d) + x.codecDecodeSelfFromArray(yyl3432, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42704,12 +42975,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3410Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3410Slc - var yyhl3410 bool = l >= 0 - for yyj3410 := 0; ; yyj3410++ { - if yyhl3410 { - if yyj3410 >= l { + var yys3433Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3433Slc + var yyhl3433 bool = l >= 0 + for yyj3433 := 0; ; yyj3433++ { + if yyhl3433 { + if yyj3433 >= l { break } } else { @@ -42718,10 +42989,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3410Slc = r.DecodeBytes(yys3410Slc, true, true) - yys3410 := string(yys3410Slc) + yys3433Slc = r.DecodeBytes(yys3433Slc, true, true) + yys3433 := string(yys3433Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3410 { + switch yys3433 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42738,27 +43009,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3413 := &x.ObjectMeta - yyv3413.CodecDecodeSelf(d) + yyv3436 := &x.ObjectMeta + yyv3436.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3414 := &x.Spec - yyv3414.CodecDecodeSelf(d) + yyv3437 := &x.Spec + yyv3437.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3415 := &x.Status - yyv3415.CodecDecodeSelf(d) + yyv3438 := &x.Status + yyv3438.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3410) - } // end switch yys3410 - } // end for yyj3410 + z.DecStructFieldNotFound(-1, yys3433) + } // end switch yys3433 + } // end for yyj3433 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42766,16 +43037,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3416 int - var yyb3416 bool - var yyhl3416 bool = l >= 0 - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + var yyj3439 int + var yyb3439 bool + var yyhl3439 bool = l >= 0 + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3416 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3416 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42785,13 +43056,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3416 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3416 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42801,13 +43072,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3416 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3416 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42815,16 +43086,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3419 := &x.ObjectMeta - yyv3419.CodecDecodeSelf(d) + yyv3442 := &x.ObjectMeta + yyv3442.CodecDecodeSelf(d) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3416 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3416 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42832,16 +43103,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3420 := &x.Spec - yyv3420.CodecDecodeSelf(d) + yyv3443 := &x.Spec + yyv3443.CodecDecodeSelf(d) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3416 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3416 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42849,21 +43120,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3421 := &x.Status - yyv3421.CodecDecodeSelf(d) + yyv3444 := &x.Status + yyv3444.CodecDecodeSelf(d) } for { - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3416 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3416 { + if yyb3439 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3416-1, "") + z.DecStructFieldNotFound(yyj3439-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42875,37 +43146,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3422 := z.EncBinary() - _ = yym3422 + yym3445 := z.EncBinary() + _ = yym3445 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3423 := !z.EncBinary() - yy2arr3423 := z.EncBasicHandle().StructToArray - var yyq3423 [4]bool - _, _, _ = yysep3423, yyq3423, yy2arr3423 - const yyr3423 bool = false - yyq3423[0] = x.Kind != "" - yyq3423[1] = x.APIVersion != "" - yyq3423[2] = true - var yynn3423 int - if yyr3423 || yy2arr3423 { + yysep3446 := !z.EncBinary() + yy2arr3446 := z.EncBasicHandle().StructToArray + var yyq3446 [4]bool + _, _, _ = yysep3446, yyq3446, yy2arr3446 + const yyr3446 bool = false + yyq3446[0] = x.Kind != "" + yyq3446[1] = x.APIVersion != "" + yyq3446[2] = true + var yynn3446 int + if yyr3446 || yy2arr3446 { r.EncodeArrayStart(4) } else { - yynn3423 = 1 - for _, b := range yyq3423 { + yynn3446 = 1 + for _, b := range yyq3446 { if b { - yynn3423++ + yynn3446++ } } - r.EncodeMapStart(yynn3423) - yynn3423 = 0 + r.EncodeMapStart(yynn3446) + yynn3446 = 0 } - if yyr3423 || yy2arr3423 { + if yyr3446 || yy2arr3446 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3423[0] { - yym3425 := z.EncBinary() - _ = yym3425 + if yyq3446[0] { + yym3448 := z.EncBinary() + _ = yym3448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42914,23 +43185,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3423[0] { + if yyq3446[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3426 := z.EncBinary() - _ = yym3426 + yym3449 := z.EncBinary() + _ = yym3449 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3423 || yy2arr3423 { + if yyr3446 || yy2arr3446 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3423[1] { - yym3428 := z.EncBinary() - _ = yym3428 + if yyq3446[1] { + yym3451 := z.EncBinary() + _ = yym3451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42939,54 +43210,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3423[1] { + if yyq3446[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3429 := z.EncBinary() - _ = yym3429 + yym3452 := z.EncBinary() + _ = yym3452 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3423 || yy2arr3423 { + if yyr3446 || yy2arr3446 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3423[2] { - yy3431 := &x.ListMeta - yym3432 := z.EncBinary() - _ = yym3432 + if yyq3446[2] { + yy3454 := &x.ListMeta + yym3455 := z.EncBinary() + _ = yym3455 if false { - } else if z.HasExtensions() && z.EncExt(yy3431) { + } else if z.HasExtensions() && z.EncExt(yy3454) { } else { - z.EncFallback(yy3431) + z.EncFallback(yy3454) } } else { r.EncodeNil() } } else { - if yyq3423[2] { + if yyq3446[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3433 := &x.ListMeta - yym3434 := z.EncBinary() - _ = yym3434 + yy3456 := &x.ListMeta + yym3457 := z.EncBinary() + _ = yym3457 if false { - } else if z.HasExtensions() && z.EncExt(yy3433) { + } else if z.HasExtensions() && z.EncExt(yy3456) { } else { - z.EncFallback(yy3433) + z.EncFallback(yy3456) } } } - if yyr3423 || yy2arr3423 { + if yyr3446 || yy2arr3446 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3436 := z.EncBinary() - _ = yym3436 + yym3459 := z.EncBinary() + _ = yym3459 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -42999,15 +43270,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3437 := z.EncBinary() - _ = yym3437 + yym3460 := z.EncBinary() + _ = yym3460 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr3423 || yy2arr3423 { + if yyr3446 || yy2arr3446 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43020,25 +43291,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3438 := z.DecBinary() - _ = yym3438 + yym3461 := z.DecBinary() + _ = yym3461 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3439 := r.ContainerType() - if yyct3439 == codecSelferValueTypeMap1234 { - yyl3439 := r.ReadMapStart() - if yyl3439 == 0 { + yyct3462 := r.ContainerType() + if yyct3462 == codecSelferValueTypeMap1234 { + yyl3462 := r.ReadMapStart() + if yyl3462 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3439, d) + x.codecDecodeSelfFromMap(yyl3462, d) } - } else if yyct3439 == codecSelferValueTypeArray1234 { - yyl3439 := r.ReadArrayStart() - if yyl3439 == 0 { + } else if yyct3462 == codecSelferValueTypeArray1234 { + yyl3462 := r.ReadArrayStart() + if yyl3462 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3439, d) + x.codecDecodeSelfFromArray(yyl3462, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43050,12 +43321,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3440Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3440Slc - var yyhl3440 bool = l >= 0 - for yyj3440 := 0; ; yyj3440++ { - if yyhl3440 { - if yyj3440 >= l { + var yys3463Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3463Slc + var yyhl3463 bool = l >= 0 + for yyj3463 := 0; ; yyj3463++ { + if yyhl3463 { + if yyj3463 >= l { break } } else { @@ -43064,10 +43335,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3440Slc = r.DecodeBytes(yys3440Slc, true, true) - yys3440 := string(yys3440Slc) + yys3463Slc = r.DecodeBytes(yys3463Slc, true, true) + yys3463 := string(yys3463Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3440 { + switch yys3463 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43084,31 +43355,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3443 := &x.ListMeta - yym3444 := z.DecBinary() - _ = yym3444 + yyv3466 := &x.ListMeta + yym3467 := z.DecBinary() + _ = yym3467 if false { - } else if z.HasExtensions() && z.DecExt(yyv3443) { + } else if z.HasExtensions() && z.DecExt(yyv3466) { } else { - z.DecFallback(yyv3443, false) + z.DecFallback(yyv3466, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3445 := &x.Items - yym3446 := z.DecBinary() - _ = yym3446 + yyv3468 := &x.Items + yym3469 := z.DecBinary() + _ = yym3469 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3445), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3468), d) } } default: - z.DecStructFieldNotFound(-1, yys3440) - } // end switch yys3440 - } // end for yyj3440 + z.DecStructFieldNotFound(-1, yys3463) + } // end switch yys3463 + } // end for yyj3463 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43116,16 +43387,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3447 int - var yyb3447 bool - var yyhl3447 bool = l >= 0 - yyj3447++ - if yyhl3447 { - yyb3447 = yyj3447 > l + var yyj3470 int + var yyb3470 bool + var yyhl3470 bool = l >= 0 + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3447 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3447 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43135,13 +43406,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj3447++ - if yyhl3447 { - yyb3447 = yyj3447 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3447 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3447 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43151,13 +43422,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj3447++ - if yyhl3447 { - yyb3447 = yyj3447 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3447 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3447 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43165,22 +43436,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3450 := &x.ListMeta - yym3451 := z.DecBinary() - _ = yym3451 + yyv3473 := &x.ListMeta + yym3474 := z.DecBinary() + _ = yym3474 if false { - } else if z.HasExtensions() && z.DecExt(yyv3450) { + } else if z.HasExtensions() && z.DecExt(yyv3473) { } else { - z.DecFallback(yyv3450, false) + z.DecFallback(yyv3473, false) } } - yyj3447++ - if yyhl3447 { - yyb3447 = yyj3447 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3447 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3447 { + if yyb3470 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43188,26 +43459,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3452 := &x.Items - yym3453 := z.DecBinary() - _ = yym3453 + yyv3475 := &x.Items + yym3476 := z.DecBinary() + _ = yym3476 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3452), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3475), d) } } for { - yyj3447++ - if yyhl3447 { - yyb3447 = yyj3447 > l + yyj3470++ + if yyhl3470 { + yyb3470 = yyj3470 > l } else { - yyb3447 = r.CheckBreak() + yyb3470 = r.CheckBreak() } - if yyb3447 { + if yyb3470 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3447-1, "") + z.DecStructFieldNotFound(yyj3470-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43219,39 +43490,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3454 := z.EncBinary() - _ = yym3454 + yym3477 := z.EncBinary() + _ = yym3477 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3455 := !z.EncBinary() - yy2arr3455 := z.EncBasicHandle().StructToArray - var yyq3455 [5]bool - _, _, _ = yysep3455, yyq3455, yy2arr3455 - const yyr3455 bool = false - yyq3455[0] = x.Kind != "" - yyq3455[1] = x.APIVersion != "" - yyq3455[2] = true - yyq3455[3] = len(x.Data) != 0 - yyq3455[4] = x.Type != "" - var yynn3455 int - if yyr3455 || yy2arr3455 { + yysep3478 := !z.EncBinary() + yy2arr3478 := z.EncBasicHandle().StructToArray + var yyq3478 [5]bool + _, _, _ = yysep3478, yyq3478, yy2arr3478 + const yyr3478 bool = false + yyq3478[0] = x.Kind != "" + yyq3478[1] = x.APIVersion != "" + yyq3478[2] = true + yyq3478[3] = len(x.Data) != 0 + yyq3478[4] = x.Type != "" + var yynn3478 int + if yyr3478 || yy2arr3478 { r.EncodeArrayStart(5) } else { - yynn3455 = 0 - for _, b := range yyq3455 { + yynn3478 = 0 + for _, b := range yyq3478 { if b { - yynn3455++ + yynn3478++ } } - r.EncodeMapStart(yynn3455) - yynn3455 = 0 + r.EncodeMapStart(yynn3478) + yynn3478 = 0 } - if yyr3455 || yy2arr3455 { + if yyr3478 || yy2arr3478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3455[0] { - yym3457 := z.EncBinary() - _ = yym3457 + if yyq3478[0] { + yym3480 := z.EncBinary() + _ = yym3480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43260,23 +43531,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3455[0] { + if yyq3478[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3458 := z.EncBinary() - _ = yym3458 + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3455 || yy2arr3455 { + if yyr3478 || yy2arr3478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3455[1] { - yym3460 := z.EncBinary() - _ = yym3460 + if yyq3478[1] { + yym3483 := z.EncBinary() + _ = yym3483 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43285,43 +43556,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3455[1] { + if yyq3478[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3461 := z.EncBinary() - _ = yym3461 + yym3484 := z.EncBinary() + _ = yym3484 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3455 || yy2arr3455 { + if yyr3478 || yy2arr3478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3455[2] { - yy3463 := &x.ObjectMeta - yy3463.CodecEncodeSelf(e) + if yyq3478[2] { + yy3486 := &x.ObjectMeta + yy3486.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3455[2] { + if yyq3478[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3464 := &x.ObjectMeta - yy3464.CodecEncodeSelf(e) + yy3487 := &x.ObjectMeta + yy3487.CodecEncodeSelf(e) } } - if yyr3455 || yy2arr3455 { + if yyr3478 || yy2arr3478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3455[3] { + if yyq3478[3] { if x.Data == nil { r.EncodeNil() } else { - yym3466 := z.EncBinary() - _ = yym3466 + yym3489 := z.EncBinary() + _ = yym3489 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -43331,15 +43602,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3455[3] { + if yyq3478[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym3467 := z.EncBinary() - _ = yym3467 + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -43347,22 +43618,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3455 || yy2arr3455 { + if yyr3478 || yy2arr3478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3455[4] { + if yyq3478[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3455[4] { + if yyq3478[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3455 || yy2arr3455 { + if yyr3478 || yy2arr3478 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43375,25 +43646,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3469 := z.DecBinary() - _ = yym3469 + yym3492 := z.DecBinary() + _ = yym3492 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3470 := r.ContainerType() - if yyct3470 == codecSelferValueTypeMap1234 { - yyl3470 := r.ReadMapStart() - if yyl3470 == 0 { + yyct3493 := r.ContainerType() + if yyct3493 == codecSelferValueTypeMap1234 { + yyl3493 := r.ReadMapStart() + if yyl3493 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3470, d) + x.codecDecodeSelfFromMap(yyl3493, d) } - } else if yyct3470 == codecSelferValueTypeArray1234 { - yyl3470 := r.ReadArrayStart() - if yyl3470 == 0 { + } else if yyct3493 == codecSelferValueTypeArray1234 { + yyl3493 := r.ReadArrayStart() + if yyl3493 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3470, d) + x.codecDecodeSelfFromArray(yyl3493, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43405,12 +43676,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3471Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3471Slc - var yyhl3471 bool = l >= 0 - for yyj3471 := 0; ; yyj3471++ { - if yyhl3471 { - if yyj3471 >= l { + var yys3494Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3494Slc + var yyhl3494 bool = l >= 0 + for yyj3494 := 0; ; yyj3494++ { + if yyhl3494 { + if yyj3494 >= l { break } } else { @@ -43419,10 +43690,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3471Slc = r.DecodeBytes(yys3471Slc, true, true) - yys3471 := string(yys3471Slc) + yys3494Slc = r.DecodeBytes(yys3494Slc, true, true) + yys3494 := string(yys3494Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3471 { + switch yys3494 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43439,19 +43710,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3474 := &x.ObjectMeta - yyv3474.CodecDecodeSelf(d) + yyv3497 := &x.ObjectMeta + yyv3497.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3475 := &x.Data - yym3476 := z.DecBinary() - _ = yym3476 + yyv3498 := &x.Data + yym3499 := z.DecBinary() + _ = yym3499 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3475), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3498), d) } } case "type": @@ -43461,9 +43732,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3471) - } // end switch yys3471 - } // end for yyj3471 + z.DecStructFieldNotFound(-1, yys3494) + } // end switch yys3494 + } // end for yyj3494 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43471,16 +43742,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3478 int - var yyb3478 bool - var yyhl3478 bool = l >= 0 - yyj3478++ - if yyhl3478 { - yyb3478 = yyj3478 > l + var yyj3501 int + var yyb3501 bool + var yyhl3501 bool = l >= 0 + yyj3501++ + if yyhl3501 { + yyb3501 = yyj3501 > l } else { - yyb3478 = r.CheckBreak() + yyb3501 = r.CheckBreak() } - if yyb3478 { + if yyb3501 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43490,13 +43761,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3478++ - if yyhl3478 { - yyb3478 = yyj3478 > l + yyj3501++ + if yyhl3501 { + yyb3501 = yyj3501 > l } else { - yyb3478 = r.CheckBreak() + yyb3501 = r.CheckBreak() } - if yyb3478 { + if yyb3501 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43506,13 +43777,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3478++ - if yyhl3478 { - yyb3478 = yyj3478 > l + yyj3501++ + if yyhl3501 { + yyb3501 = yyj3501 > l } else { - yyb3478 = r.CheckBreak() + yyb3501 = r.CheckBreak() } - if yyb3478 { + if yyb3501 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43520,16 +43791,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3481 := &x.ObjectMeta - yyv3481.CodecDecodeSelf(d) + yyv3504 := &x.ObjectMeta + yyv3504.CodecDecodeSelf(d) } - yyj3478++ - if yyhl3478 { - yyb3478 = yyj3478 > l + yyj3501++ + if yyhl3501 { + yyb3501 = yyj3501 > l } else { - yyb3478 = r.CheckBreak() + yyb3501 = r.CheckBreak() } - if yyb3478 { + if yyb3501 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43537,21 +43808,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3482 := &x.Data - yym3483 := z.DecBinary() - _ = yym3483 + yyv3505 := &x.Data + yym3506 := z.DecBinary() + _ = yym3506 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3482), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3505), d) } } - yyj3478++ - if yyhl3478 { - yyb3478 = yyj3478 > l + yyj3501++ + if yyhl3501 { + yyb3501 = yyj3501 > l } else { - yyb3478 = r.CheckBreak() + yyb3501 = r.CheckBreak() } - if yyb3478 { + if yyb3501 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43562,17 +43833,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj3478++ - if yyhl3478 { - yyb3478 = yyj3478 > l + yyj3501++ + if yyhl3501 { + yyb3501 = yyj3501 > l } else { - yyb3478 = r.CheckBreak() + yyb3501 = r.CheckBreak() } - if yyb3478 { + if yyb3501 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3478-1, "") + z.DecStructFieldNotFound(yyj3501-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43581,8 +43852,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3485 := z.EncBinary() - _ = yym3485 + yym3508 := z.EncBinary() + _ = yym3508 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -43594,8 +43865,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3486 := z.DecBinary() - _ = yym3486 + yym3509 := z.DecBinary() + _ = yym3509 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -43610,37 +43881,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3487 := z.EncBinary() - _ = yym3487 + yym3510 := z.EncBinary() + _ = yym3510 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3488 := !z.EncBinary() - yy2arr3488 := z.EncBasicHandle().StructToArray - var yyq3488 [4]bool - _, _, _ = yysep3488, yyq3488, yy2arr3488 - const yyr3488 bool = false - yyq3488[0] = x.Kind != "" - yyq3488[1] = x.APIVersion != "" - yyq3488[2] = true - var yynn3488 int - if yyr3488 || yy2arr3488 { + yysep3511 := !z.EncBinary() + yy2arr3511 := z.EncBasicHandle().StructToArray + var yyq3511 [4]bool + _, _, _ = yysep3511, yyq3511, yy2arr3511 + const yyr3511 bool = false + yyq3511[0] = x.Kind != "" + yyq3511[1] = x.APIVersion != "" + yyq3511[2] = true + var yynn3511 int + if yyr3511 || yy2arr3511 { r.EncodeArrayStart(4) } else { - yynn3488 = 1 - for _, b := range yyq3488 { + yynn3511 = 1 + for _, b := range yyq3511 { if b { - yynn3488++ + yynn3511++ } } - r.EncodeMapStart(yynn3488) - yynn3488 = 0 + r.EncodeMapStart(yynn3511) + yynn3511 = 0 } - if yyr3488 || yy2arr3488 { + if yyr3511 || yy2arr3511 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3488[0] { - yym3490 := z.EncBinary() - _ = yym3490 + if yyq3511[0] { + yym3513 := z.EncBinary() + _ = yym3513 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43649,23 +43920,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3488[0] { + if yyq3511[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3491 := z.EncBinary() - _ = yym3491 + yym3514 := z.EncBinary() + _ = yym3514 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3488 || yy2arr3488 { + if yyr3511 || yy2arr3511 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3488[1] { - yym3493 := z.EncBinary() - _ = yym3493 + if yyq3511[1] { + yym3516 := z.EncBinary() + _ = yym3516 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43674,54 +43945,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3488[1] { + if yyq3511[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3494 := z.EncBinary() - _ = yym3494 + yym3517 := z.EncBinary() + _ = yym3517 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3488 || yy2arr3488 { + if yyr3511 || yy2arr3511 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3488[2] { - yy3496 := &x.ListMeta - yym3497 := z.EncBinary() - _ = yym3497 + if yyq3511[2] { + yy3519 := &x.ListMeta + yym3520 := z.EncBinary() + _ = yym3520 if false { - } else if z.HasExtensions() && z.EncExt(yy3496) { + } else if z.HasExtensions() && z.EncExt(yy3519) { } else { - z.EncFallback(yy3496) + z.EncFallback(yy3519) } } else { r.EncodeNil() } } else { - if yyq3488[2] { + if yyq3511[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3498 := &x.ListMeta - yym3499 := z.EncBinary() - _ = yym3499 + yy3521 := &x.ListMeta + yym3522 := z.EncBinary() + _ = yym3522 if false { - } else if z.HasExtensions() && z.EncExt(yy3498) { + } else if z.HasExtensions() && z.EncExt(yy3521) { } else { - z.EncFallback(yy3498) + z.EncFallback(yy3521) } } } - if yyr3488 || yy2arr3488 { + if yyr3511 || yy2arr3511 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3501 := z.EncBinary() - _ = yym3501 + yym3524 := z.EncBinary() + _ = yym3524 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -43734,15 +44005,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3502 := z.EncBinary() - _ = yym3502 + yym3525 := z.EncBinary() + _ = yym3525 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr3488 || yy2arr3488 { + if yyr3511 || yy2arr3511 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43755,25 +44026,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3503 := z.DecBinary() - _ = yym3503 + yym3526 := z.DecBinary() + _ = yym3526 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3504 := r.ContainerType() - if yyct3504 == codecSelferValueTypeMap1234 { - yyl3504 := r.ReadMapStart() - if yyl3504 == 0 { + yyct3527 := r.ContainerType() + if yyct3527 == codecSelferValueTypeMap1234 { + yyl3527 := r.ReadMapStart() + if yyl3527 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3504, d) + x.codecDecodeSelfFromMap(yyl3527, d) } - } else if yyct3504 == codecSelferValueTypeArray1234 { - yyl3504 := r.ReadArrayStart() - if yyl3504 == 0 { + } else if yyct3527 == codecSelferValueTypeArray1234 { + yyl3527 := r.ReadArrayStart() + if yyl3527 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3504, d) + x.codecDecodeSelfFromArray(yyl3527, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43785,12 +44056,12 @@ func (x *SecretList) 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 yys3528Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3528Slc + var yyhl3528 bool = l >= 0 + for yyj3528 := 0; ; yyj3528++ { + if yyhl3528 { + if yyj3528 >= l { break } } else { @@ -43799,10 +44070,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3505Slc = r.DecodeBytes(yys3505Slc, true, true) - yys3505 := string(yys3505Slc) + yys3528Slc = r.DecodeBytes(yys3528Slc, true, true) + yys3528 := string(yys3528Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3505 { + switch yys3528 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43819,31 +44090,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3508 := &x.ListMeta - yym3509 := z.DecBinary() - _ = yym3509 + yyv3531 := &x.ListMeta + yym3532 := z.DecBinary() + _ = yym3532 if false { - } else if z.HasExtensions() && z.DecExt(yyv3508) { + } else if z.HasExtensions() && z.DecExt(yyv3531) { } else { - z.DecFallback(yyv3508, false) + z.DecFallback(yyv3531, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3510 := &x.Items - yym3511 := z.DecBinary() - _ = yym3511 + yyv3533 := &x.Items + yym3534 := z.DecBinary() + _ = yym3534 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3510), d) + h.decSliceSecret((*[]Secret)(yyv3533), d) } } default: - z.DecStructFieldNotFound(-1, yys3505) - } // end switch yys3505 - } // end for yyj3505 + z.DecStructFieldNotFound(-1, yys3528) + } // end switch yys3528 + } // end for yyj3528 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43851,16 +44122,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3512 int - var yyb3512 bool - var yyhl3512 bool = l >= 0 - yyj3512++ - if yyhl3512 { - yyb3512 = yyj3512 > l + var yyj3535 int + var yyb3535 bool + var yyhl3535 bool = l >= 0 + yyj3535++ + if yyhl3535 { + yyb3535 = yyj3535 > l } else { - yyb3512 = r.CheckBreak() + yyb3535 = r.CheckBreak() } - if yyb3512 { + if yyb3535 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43870,13 +44141,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3512++ - if yyhl3512 { - yyb3512 = yyj3512 > l + yyj3535++ + if yyhl3535 { + yyb3535 = yyj3535 > l } else { - yyb3512 = r.CheckBreak() + yyb3535 = r.CheckBreak() } - if yyb3512 { + if yyb3535 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43886,13 +44157,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3512++ - if yyhl3512 { - yyb3512 = yyj3512 > l + yyj3535++ + if yyhl3535 { + yyb3535 = yyj3535 > l } else { - yyb3512 = r.CheckBreak() + yyb3535 = r.CheckBreak() } - if yyb3512 { + if yyb3535 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43900,22 +44171,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3515 := &x.ListMeta - yym3516 := z.DecBinary() - _ = yym3516 + yyv3538 := &x.ListMeta + yym3539 := z.DecBinary() + _ = yym3539 if false { - } else if z.HasExtensions() && z.DecExt(yyv3515) { + } else if z.HasExtensions() && z.DecExt(yyv3538) { } else { - z.DecFallback(yyv3515, false) + z.DecFallback(yyv3538, false) } } - yyj3512++ - if yyhl3512 { - yyb3512 = yyj3512 > l + yyj3535++ + if yyhl3535 { + yyb3535 = yyj3535 > l } else { - yyb3512 = r.CheckBreak() + yyb3535 = r.CheckBreak() } - if yyb3512 { + if yyb3535 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43923,26 +44194,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3517 := &x.Items - yym3518 := z.DecBinary() - _ = yym3518 + yyv3540 := &x.Items + yym3541 := z.DecBinary() + _ = yym3541 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3517), d) + h.decSliceSecret((*[]Secret)(yyv3540), d) } } for { - yyj3512++ - if yyhl3512 { - yyb3512 = yyj3512 > l + yyj3535++ + if yyhl3535 { + yyb3535 = yyj3535 > l } else { - yyb3512 = r.CheckBreak() + yyb3535 = r.CheckBreak() } - if yyb3512 { + if yyb3535 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3512-1, "") + z.DecStructFieldNotFound(yyj3535-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43954,38 +44225,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3519 := z.EncBinary() - _ = yym3519 + yym3542 := z.EncBinary() + _ = yym3542 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3520 := !z.EncBinary() - yy2arr3520 := z.EncBasicHandle().StructToArray - var yyq3520 [4]bool - _, _, _ = yysep3520, yyq3520, yy2arr3520 - const yyr3520 bool = false - yyq3520[0] = x.Kind != "" - yyq3520[1] = x.APIVersion != "" - yyq3520[2] = true - yyq3520[3] = len(x.Data) != 0 - var yynn3520 int - if yyr3520 || yy2arr3520 { + yysep3543 := !z.EncBinary() + yy2arr3543 := z.EncBasicHandle().StructToArray + var yyq3543 [4]bool + _, _, _ = yysep3543, yyq3543, yy2arr3543 + const yyr3543 bool = false + yyq3543[0] = x.Kind != "" + yyq3543[1] = x.APIVersion != "" + yyq3543[2] = true + yyq3543[3] = len(x.Data) != 0 + var yynn3543 int + if yyr3543 || yy2arr3543 { r.EncodeArrayStart(4) } else { - yynn3520 = 0 - for _, b := range yyq3520 { + yynn3543 = 0 + for _, b := range yyq3543 { if b { - yynn3520++ + yynn3543++ } } - r.EncodeMapStart(yynn3520) - yynn3520 = 0 + r.EncodeMapStart(yynn3543) + yynn3543 = 0 } - if yyr3520 || yy2arr3520 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3520[0] { - yym3522 := z.EncBinary() - _ = yym3522 + if yyq3543[0] { + yym3545 := z.EncBinary() + _ = yym3545 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43994,23 +44265,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3520[0] { + if yyq3543[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3523 := z.EncBinary() - _ = yym3523 + yym3546 := z.EncBinary() + _ = yym3546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3520 || yy2arr3520 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3520[1] { - yym3525 := z.EncBinary() - _ = yym3525 + if yyq3543[1] { + yym3548 := z.EncBinary() + _ = yym3548 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44019,43 +44290,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3520[1] { + if yyq3543[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3526 := z.EncBinary() - _ = yym3526 + yym3549 := z.EncBinary() + _ = yym3549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3520 || yy2arr3520 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3520[2] { - yy3528 := &x.ObjectMeta - yy3528.CodecEncodeSelf(e) + if yyq3543[2] { + yy3551 := &x.ObjectMeta + yy3551.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3520[2] { + if yyq3543[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3529 := &x.ObjectMeta - yy3529.CodecEncodeSelf(e) + yy3552 := &x.ObjectMeta + yy3552.CodecEncodeSelf(e) } } - if yyr3520 || yy2arr3520 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3520[3] { + if yyq3543[3] { if x.Data == nil { r.EncodeNil() } else { - yym3531 := z.EncBinary() - _ = yym3531 + yym3554 := z.EncBinary() + _ = yym3554 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -44065,15 +44336,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3520[3] { + if yyq3543[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym3532 := z.EncBinary() - _ = yym3532 + yym3555 := z.EncBinary() + _ = yym3555 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -44081,7 +44352,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3520 || yy2arr3520 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44094,25 +44365,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3533 := z.DecBinary() - _ = yym3533 + yym3556 := z.DecBinary() + _ = yym3556 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3534 := r.ContainerType() - if yyct3534 == codecSelferValueTypeMap1234 { - yyl3534 := r.ReadMapStart() - if yyl3534 == 0 { + yyct3557 := r.ContainerType() + if yyct3557 == codecSelferValueTypeMap1234 { + yyl3557 := r.ReadMapStart() + if yyl3557 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3534, d) + x.codecDecodeSelfFromMap(yyl3557, d) } - } else if yyct3534 == codecSelferValueTypeArray1234 { - yyl3534 := r.ReadArrayStart() - if yyl3534 == 0 { + } else if yyct3557 == codecSelferValueTypeArray1234 { + yyl3557 := r.ReadArrayStart() + if yyl3557 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3534, d) + x.codecDecodeSelfFromArray(yyl3557, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44124,12 +44395,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3535Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3535Slc - var yyhl3535 bool = l >= 0 - for yyj3535 := 0; ; yyj3535++ { - if yyhl3535 { - if yyj3535 >= l { + var yys3558Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3558Slc + var yyhl3558 bool = l >= 0 + for yyj3558 := 0; ; yyj3558++ { + if yyhl3558 { + if yyj3558 >= l { break } } else { @@ -44138,10 +44409,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3535Slc = r.DecodeBytes(yys3535Slc, true, true) - yys3535 := string(yys3535Slc) + yys3558Slc = r.DecodeBytes(yys3558Slc, true, true) + yys3558 := string(yys3558Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3535 { + switch yys3558 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44158,25 +44429,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3538 := &x.ObjectMeta - yyv3538.CodecDecodeSelf(d) + yyv3561 := &x.ObjectMeta + yyv3561.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3539 := &x.Data - yym3540 := z.DecBinary() - _ = yym3540 + yyv3562 := &x.Data + yym3563 := z.DecBinary() + _ = yym3563 if false { } else { - z.F.DecMapStringStringX(yyv3539, false, d) + z.F.DecMapStringStringX(yyv3562, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3535) - } // end switch yys3535 - } // end for yyj3535 + z.DecStructFieldNotFound(-1, yys3558) + } // end switch yys3558 + } // end for yyj3558 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44184,16 +44455,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3541 int - var yyb3541 bool - var yyhl3541 bool = l >= 0 - yyj3541++ - if yyhl3541 { - yyb3541 = yyj3541 > l + var yyj3564 int + var yyb3564 bool + var yyhl3564 bool = l >= 0 + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3541 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3541 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44203,13 +44474,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3541++ - if yyhl3541 { - yyb3541 = yyj3541 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3541 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3541 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44219,13 +44490,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3541++ - if yyhl3541 { - yyb3541 = yyj3541 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3541 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3541 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44233,16 +44504,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3544 := &x.ObjectMeta - yyv3544.CodecDecodeSelf(d) + yyv3567 := &x.ObjectMeta + yyv3567.CodecDecodeSelf(d) } - yyj3541++ - if yyhl3541 { - yyb3541 = yyj3541 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3541 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3541 { + if yyb3564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44250,26 +44521,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3545 := &x.Data - yym3546 := z.DecBinary() - _ = yym3546 + yyv3568 := &x.Data + yym3569 := z.DecBinary() + _ = yym3569 if false { } else { - z.F.DecMapStringStringX(yyv3545, false, d) + z.F.DecMapStringStringX(yyv3568, false, d) } } for { - yyj3541++ - if yyhl3541 { - yyb3541 = yyj3541 > l + yyj3564++ + if yyhl3564 { + yyb3564 = yyj3564 > l } else { - yyb3541 = r.CheckBreak() + yyb3564 = r.CheckBreak() } - if yyb3541 { + if yyb3564 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3541-1, "") + z.DecStructFieldNotFound(yyj3564-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44281,38 +44552,38 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3547 := z.EncBinary() - _ = yym3547 + yym3570 := z.EncBinary() + _ = yym3570 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3548 := !z.EncBinary() - yy2arr3548 := z.EncBasicHandle().StructToArray - var yyq3548 [4]bool - _, _, _ = yysep3548, yyq3548, yy2arr3548 - const yyr3548 bool = false - yyq3548[0] = x.Kind != "" - yyq3548[1] = x.APIVersion != "" - yyq3548[2] = true - yyq3548[3] = len(x.Items) != 0 - var yynn3548 int - if yyr3548 || yy2arr3548 { + yysep3571 := !z.EncBinary() + yy2arr3571 := z.EncBasicHandle().StructToArray + var yyq3571 [4]bool + _, _, _ = yysep3571, yyq3571, yy2arr3571 + const yyr3571 bool = false + yyq3571[0] = x.Kind != "" + yyq3571[1] = x.APIVersion != "" + yyq3571[2] = true + yyq3571[3] = len(x.Items) != 0 + var yynn3571 int + if yyr3571 || yy2arr3571 { r.EncodeArrayStart(4) } else { - yynn3548 = 0 - for _, b := range yyq3548 { + yynn3571 = 0 + for _, b := range yyq3571 { if b { - yynn3548++ + yynn3571++ } } - r.EncodeMapStart(yynn3548) - yynn3548 = 0 + r.EncodeMapStart(yynn3571) + yynn3571 = 0 } - if yyr3548 || yy2arr3548 { + if yyr3571 || yy2arr3571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[0] { - yym3550 := z.EncBinary() - _ = yym3550 + if yyq3571[0] { + yym3573 := z.EncBinary() + _ = yym3573 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44321,23 +44592,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[0] { + if yyq3571[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3551 := z.EncBinary() - _ = yym3551 + yym3574 := z.EncBinary() + _ = yym3574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3548 || yy2arr3548 { + if yyr3571 || yy2arr3571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[1] { - yym3553 := z.EncBinary() - _ = yym3553 + if yyq3571[1] { + yym3576 := z.EncBinary() + _ = yym3576 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44346,55 +44617,55 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[1] { + if yyq3571[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3554 := z.EncBinary() - _ = yym3554 + yym3577 := z.EncBinary() + _ = yym3577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3548 || yy2arr3548 { + if yyr3571 || yy2arr3571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[2] { - yy3556 := &x.ListMeta - yym3557 := z.EncBinary() - _ = yym3557 + if yyq3571[2] { + yy3579 := &x.ListMeta + yym3580 := z.EncBinary() + _ = yym3580 if false { - } else if z.HasExtensions() && z.EncExt(yy3556) { + } else if z.HasExtensions() && z.EncExt(yy3579) { } else { - z.EncFallback(yy3556) + z.EncFallback(yy3579) } } else { r.EncodeNil() } } else { - if yyq3548[2] { + if yyq3571[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3558 := &x.ListMeta - yym3559 := z.EncBinary() - _ = yym3559 + yy3581 := &x.ListMeta + yym3582 := z.EncBinary() + _ = yym3582 if false { - } else if z.HasExtensions() && z.EncExt(yy3558) { + } else if z.HasExtensions() && z.EncExt(yy3581) { } else { - z.EncFallback(yy3558) + z.EncFallback(yy3581) } } } - if yyr3548 || yy2arr3548 { + if yyr3571 || yy2arr3571 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[3] { + if yyq3571[3] { if x.Items == nil { r.EncodeNil() } else { - yym3561 := z.EncBinary() - _ = yym3561 + yym3584 := z.EncBinary() + _ = yym3584 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -44404,15 +44675,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3548[3] { + if yyq3571[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym3562 := z.EncBinary() - _ = yym3562 + yym3585 := z.EncBinary() + _ = yym3585 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -44420,7 +44691,7 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3548 || yy2arr3548 { + if yyr3571 || yy2arr3571 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44433,25 +44704,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3563 := z.DecBinary() - _ = yym3563 + yym3586 := z.DecBinary() + _ = yym3586 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3564 := r.ContainerType() - if yyct3564 == codecSelferValueTypeMap1234 { - yyl3564 := r.ReadMapStart() - if yyl3564 == 0 { + yyct3587 := r.ContainerType() + if yyct3587 == codecSelferValueTypeMap1234 { + yyl3587 := r.ReadMapStart() + if yyl3587 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3564, d) + x.codecDecodeSelfFromMap(yyl3587, d) } - } else if yyct3564 == codecSelferValueTypeArray1234 { - yyl3564 := r.ReadArrayStart() - if yyl3564 == 0 { + } else if yyct3587 == codecSelferValueTypeArray1234 { + yyl3587 := r.ReadArrayStart() + if yyl3587 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3564, d) + x.codecDecodeSelfFromArray(yyl3587, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44463,12 +44734,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3565Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3565Slc - var yyhl3565 bool = l >= 0 - for yyj3565 := 0; ; yyj3565++ { - if yyhl3565 { - if yyj3565 >= l { + var yys3588Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3588Slc + var yyhl3588 bool = l >= 0 + for yyj3588 := 0; ; yyj3588++ { + if yyhl3588 { + if yyj3588 >= l { break } } else { @@ -44477,10 +44748,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3565Slc = r.DecodeBytes(yys3565Slc, true, true) - yys3565 := string(yys3565Slc) + yys3588Slc = r.DecodeBytes(yys3588Slc, true, true) + yys3588 := string(yys3588Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3565 { + switch yys3588 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44497,31 +44768,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3568 := &x.ListMeta - yym3569 := z.DecBinary() - _ = yym3569 + yyv3591 := &x.ListMeta + yym3592 := z.DecBinary() + _ = yym3592 if false { - } else if z.HasExtensions() && z.DecExt(yyv3568) { + } else if z.HasExtensions() && z.DecExt(yyv3591) { } else { - z.DecFallback(yyv3568, false) + z.DecFallback(yyv3591, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3570 := &x.Items - yym3571 := z.DecBinary() - _ = yym3571 + yyv3593 := &x.Items + yym3594 := z.DecBinary() + _ = yym3594 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv3570), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv3593), d) } } default: - z.DecStructFieldNotFound(-1, yys3565) - } // end switch yys3565 - } // end for yyj3565 + z.DecStructFieldNotFound(-1, yys3588) + } // end switch yys3588 + } // end for yyj3588 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44529,16 +44800,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3572 int - var yyb3572 bool - var yyhl3572 bool = l >= 0 - yyj3572++ - if yyhl3572 { - yyb3572 = yyj3572 > l + var yyj3595 int + var yyb3595 bool + var yyhl3595 bool = l >= 0 + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3572 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3572 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44548,13 +44819,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3572++ - if yyhl3572 { - yyb3572 = yyj3572 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3572 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3572 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44564,13 +44835,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3572++ - if yyhl3572 { - yyb3572 = yyj3572 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3572 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3572 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44578,22 +44849,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3575 := &x.ListMeta - yym3576 := z.DecBinary() - _ = yym3576 + yyv3598 := &x.ListMeta + yym3599 := z.DecBinary() + _ = yym3599 if false { - } else if z.HasExtensions() && z.DecExt(yyv3575) { + } else if z.HasExtensions() && z.DecExt(yyv3598) { } else { - z.DecFallback(yyv3575, false) + z.DecFallback(yyv3598, false) } } - yyj3572++ - if yyhl3572 { - yyb3572 = yyj3572 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3572 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3572 { + if yyb3595 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44601,26 +44872,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3577 := &x.Items - yym3578 := z.DecBinary() - _ = yym3578 + yyv3600 := &x.Items + yym3601 := z.DecBinary() + _ = yym3601 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv3577), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv3600), d) } } for { - yyj3572++ - if yyhl3572 { - yyb3572 = yyj3572 > l + yyj3595++ + if yyhl3595 { + yyb3595 = yyj3595 > l } else { - yyb3572 = r.CheckBreak() + yyb3595 = r.CheckBreak() } - if yyb3572 { + if yyb3595 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3572-1, "") + z.DecStructFieldNotFound(yyj3595-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44629,8 +44900,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3579 := z.EncBinary() - _ = yym3579 + yym3602 := z.EncBinary() + _ = yym3602 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -44642,8 +44913,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3580 := z.DecBinary() - _ = yym3580 + yym3603 := z.DecBinary() + _ = yym3603 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -44658,32 +44929,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3581 := z.EncBinary() - _ = yym3581 + yym3604 := z.EncBinary() + _ = yym3604 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3582 := !z.EncBinary() - yy2arr3582 := z.EncBasicHandle().StructToArray - var yyq3582 [4]bool - _, _, _ = yysep3582, yyq3582, yy2arr3582 - const yyr3582 bool = false - yyq3582[2] = x.Message != "" - yyq3582[3] = x.Error != "" - var yynn3582 int - if yyr3582 || yy2arr3582 { + yysep3605 := !z.EncBinary() + yy2arr3605 := z.EncBasicHandle().StructToArray + var yyq3605 [4]bool + _, _, _ = yysep3605, yyq3605, yy2arr3605 + const yyr3605 bool = false + yyq3605[2] = x.Message != "" + yyq3605[3] = x.Error != "" + var yynn3605 int + if yyr3605 || yy2arr3605 { r.EncodeArrayStart(4) } else { - yynn3582 = 2 - for _, b := range yyq3582 { + yynn3605 = 2 + for _, b := range yyq3605 { if b { - yynn3582++ + yynn3605++ } } - r.EncodeMapStart(yynn3582) - yynn3582 = 0 + r.EncodeMapStart(yynn3605) + yynn3605 = 0 } - if yyr3582 || yy2arr3582 { + if yyr3605 || yy2arr3605 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -44692,7 +44963,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3582 || yy2arr3582 { + if yyr3605 || yy2arr3605 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -44701,11 +44972,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3582 || yy2arr3582 { + if yyr3605 || yy2arr3605 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3582[2] { - yym3586 := z.EncBinary() - _ = yym3586 + if yyq3605[2] { + yym3609 := z.EncBinary() + _ = yym3609 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -44714,23 +44985,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3582[2] { + if yyq3605[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3587 := z.EncBinary() - _ = yym3587 + yym3610 := z.EncBinary() + _ = yym3610 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3582 || yy2arr3582 { + if yyr3605 || yy2arr3605 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3582[3] { - yym3589 := z.EncBinary() - _ = yym3589 + if yyq3605[3] { + yym3612 := z.EncBinary() + _ = yym3612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -44739,19 +45010,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3582[3] { + if yyq3605[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3590 := z.EncBinary() - _ = yym3590 + yym3613 := z.EncBinary() + _ = yym3613 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr3582 || yy2arr3582 { + if yyr3605 || yy2arr3605 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44764,25 +45035,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3591 := z.DecBinary() - _ = yym3591 + yym3614 := z.DecBinary() + _ = yym3614 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3592 := r.ContainerType() - if yyct3592 == codecSelferValueTypeMap1234 { - yyl3592 := r.ReadMapStart() - if yyl3592 == 0 { + yyct3615 := r.ContainerType() + if yyct3615 == codecSelferValueTypeMap1234 { + yyl3615 := r.ReadMapStart() + if yyl3615 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3592, d) + x.codecDecodeSelfFromMap(yyl3615, d) } - } else if yyct3592 == codecSelferValueTypeArray1234 { - yyl3592 := r.ReadArrayStart() - if yyl3592 == 0 { + } else if yyct3615 == codecSelferValueTypeArray1234 { + yyl3615 := r.ReadArrayStart() + if yyl3615 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3592, d) + x.codecDecodeSelfFromArray(yyl3615, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44794,12 +45065,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3593Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3593Slc - var yyhl3593 bool = l >= 0 - for yyj3593 := 0; ; yyj3593++ { - if yyhl3593 { - if yyj3593 >= l { + var yys3616Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3616Slc + var yyhl3616 bool = l >= 0 + for yyj3616 := 0; ; yyj3616++ { + if yyhl3616 { + if yyj3616 >= l { break } } else { @@ -44808,10 +45079,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3593Slc = r.DecodeBytes(yys3593Slc, true, true) - yys3593 := string(yys3593Slc) + yys3616Slc = r.DecodeBytes(yys3616Slc, true, true) + yys3616 := string(yys3616Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3593 { + switch yys3616 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -44837,9 +45108,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3593) - } // end switch yys3593 - } // end for yyj3593 + z.DecStructFieldNotFound(-1, yys3616) + } // end switch yys3616 + } // end for yyj3616 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44847,16 +45118,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3598 int - var yyb3598 bool - var yyhl3598 bool = l >= 0 - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + var yyj3621 int + var yyb3621 bool + var yyhl3621 bool = l >= 0 + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44866,13 +45137,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44882,13 +45153,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44898,13 +45169,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44915,17 +45186,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj3598++ - if yyhl3598 { - yyb3598 = yyj3598 > l + yyj3621++ + if yyhl3621 { + yyb3621 = yyj3621 > l } else { - yyb3598 = r.CheckBreak() + yyb3621 = r.CheckBreak() } - if yyb3598 { + if yyb3621 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3598-1, "") + z.DecStructFieldNotFound(yyj3621-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44937,38 +45208,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3603 := z.EncBinary() - _ = yym3603 + yym3626 := z.EncBinary() + _ = yym3626 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3604 := !z.EncBinary() - yy2arr3604 := z.EncBasicHandle().StructToArray - var yyq3604 [4]bool - _, _, _ = yysep3604, yyq3604, yy2arr3604 - const yyr3604 bool = false - yyq3604[0] = x.Kind != "" - yyq3604[1] = x.APIVersion != "" - yyq3604[2] = true - yyq3604[3] = len(x.Conditions) != 0 - var yynn3604 int - if yyr3604 || yy2arr3604 { + yysep3627 := !z.EncBinary() + yy2arr3627 := z.EncBasicHandle().StructToArray + var yyq3627 [4]bool + _, _, _ = yysep3627, yyq3627, yy2arr3627 + const yyr3627 bool = false + yyq3627[0] = x.Kind != "" + yyq3627[1] = x.APIVersion != "" + yyq3627[2] = true + yyq3627[3] = len(x.Conditions) != 0 + var yynn3627 int + if yyr3627 || yy2arr3627 { r.EncodeArrayStart(4) } else { - yynn3604 = 0 - for _, b := range yyq3604 { + yynn3627 = 0 + for _, b := range yyq3627 { if b { - yynn3604++ + yynn3627++ } } - r.EncodeMapStart(yynn3604) - yynn3604 = 0 + r.EncodeMapStart(yynn3627) + yynn3627 = 0 } - if yyr3604 || yy2arr3604 { + if yyr3627 || yy2arr3627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3604[0] { - yym3606 := z.EncBinary() - _ = yym3606 + if yyq3627[0] { + yym3629 := z.EncBinary() + _ = yym3629 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44977,23 +45248,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3604[0] { + if yyq3627[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3607 := z.EncBinary() - _ = yym3607 + yym3630 := z.EncBinary() + _ = yym3630 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3604 || yy2arr3604 { + if yyr3627 || yy2arr3627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3604[1] { - yym3609 := z.EncBinary() - _ = yym3609 + if yyq3627[1] { + yym3632 := z.EncBinary() + _ = yym3632 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45002,43 +45273,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3604[1] { + if yyq3627[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3610 := z.EncBinary() - _ = yym3610 + yym3633 := z.EncBinary() + _ = yym3633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3604 || yy2arr3604 { + if yyr3627 || yy2arr3627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3604[2] { - yy3612 := &x.ObjectMeta - yy3612.CodecEncodeSelf(e) + if yyq3627[2] { + yy3635 := &x.ObjectMeta + yy3635.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3604[2] { + if yyq3627[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3613 := &x.ObjectMeta - yy3613.CodecEncodeSelf(e) + yy3636 := &x.ObjectMeta + yy3636.CodecEncodeSelf(e) } } - if yyr3604 || yy2arr3604 { + if yyr3627 || yy2arr3627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3604[3] { + if yyq3627[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym3615 := z.EncBinary() - _ = yym3615 + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -45048,15 +45319,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3604[3] { + if yyq3627[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym3616 := z.EncBinary() - _ = yym3616 + yym3639 := z.EncBinary() + _ = yym3639 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -45064,7 +45335,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3604 || yy2arr3604 { + if yyr3627 || yy2arr3627 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45077,25 +45348,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3617 := z.DecBinary() - _ = yym3617 + yym3640 := z.DecBinary() + _ = yym3640 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3618 := r.ContainerType() - if yyct3618 == codecSelferValueTypeMap1234 { - yyl3618 := r.ReadMapStart() - if yyl3618 == 0 { + yyct3641 := r.ContainerType() + if yyct3641 == codecSelferValueTypeMap1234 { + yyl3641 := r.ReadMapStart() + if yyl3641 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3618, d) + x.codecDecodeSelfFromMap(yyl3641, d) } - } else if yyct3618 == codecSelferValueTypeArray1234 { - yyl3618 := r.ReadArrayStart() - if yyl3618 == 0 { + } else if yyct3641 == codecSelferValueTypeArray1234 { + yyl3641 := r.ReadArrayStart() + if yyl3641 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3618, d) + x.codecDecodeSelfFromArray(yyl3641, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45107,12 +45378,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3619Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3619Slc - var yyhl3619 bool = l >= 0 - for yyj3619 := 0; ; yyj3619++ { - if yyhl3619 { - if yyj3619 >= l { + var yys3642Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3642Slc + var yyhl3642 bool = l >= 0 + for yyj3642 := 0; ; yyj3642++ { + if yyhl3642 { + if yyj3642 >= l { break } } else { @@ -45121,10 +45392,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3619Slc = r.DecodeBytes(yys3619Slc, true, true) - yys3619 := string(yys3619Slc) + yys3642Slc = r.DecodeBytes(yys3642Slc, true, true) + yys3642 := string(yys3642Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3619 { + switch yys3642 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45141,25 +45412,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3622 := &x.ObjectMeta - yyv3622.CodecDecodeSelf(d) + yyv3645 := &x.ObjectMeta + yyv3645.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3623 := &x.Conditions - yym3624 := z.DecBinary() - _ = yym3624 + yyv3646 := &x.Conditions + yym3647 := z.DecBinary() + _ = yym3647 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3623), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3646), d) } } default: - z.DecStructFieldNotFound(-1, yys3619) - } // end switch yys3619 - } // end for yyj3619 + z.DecStructFieldNotFound(-1, yys3642) + } // end switch yys3642 + } // end for yyj3642 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45167,16 +45438,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3625 int - var yyb3625 bool - var yyhl3625 bool = l >= 0 - yyj3625++ - if yyhl3625 { - yyb3625 = yyj3625 > l + var yyj3648 int + var yyb3648 bool + var yyhl3648 bool = l >= 0 + yyj3648++ + if yyhl3648 { + yyb3648 = yyj3648 > l } else { - yyb3625 = r.CheckBreak() + yyb3648 = r.CheckBreak() } - if yyb3625 { + if yyb3648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45186,13 +45457,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3625++ - if yyhl3625 { - yyb3625 = yyj3625 > l + yyj3648++ + if yyhl3648 { + yyb3648 = yyj3648 > l } else { - yyb3625 = r.CheckBreak() + yyb3648 = r.CheckBreak() } - if yyb3625 { + if yyb3648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45202,13 +45473,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3625++ - if yyhl3625 { - yyb3625 = yyj3625 > l + yyj3648++ + if yyhl3648 { + yyb3648 = yyj3648 > l } else { - yyb3625 = r.CheckBreak() + yyb3648 = r.CheckBreak() } - if yyb3625 { + if yyb3648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45216,16 +45487,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3628 := &x.ObjectMeta - yyv3628.CodecDecodeSelf(d) + yyv3651 := &x.ObjectMeta + yyv3651.CodecDecodeSelf(d) } - yyj3625++ - if yyhl3625 { - yyb3625 = yyj3625 > l + yyj3648++ + if yyhl3648 { + yyb3648 = yyj3648 > l } else { - yyb3625 = r.CheckBreak() + yyb3648 = r.CheckBreak() } - if yyb3625 { + if yyb3648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45233,26 +45504,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3629 := &x.Conditions - yym3630 := z.DecBinary() - _ = yym3630 + yyv3652 := &x.Conditions + yym3653 := z.DecBinary() + _ = yym3653 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3629), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3652), d) } } for { - yyj3625++ - if yyhl3625 { - yyb3625 = yyj3625 > l + yyj3648++ + if yyhl3648 { + yyb3648 = yyj3648 > l } else { - yyb3625 = r.CheckBreak() + yyb3648 = r.CheckBreak() } - if yyb3625 { + if yyb3648 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3625-1, "") + z.DecStructFieldNotFound(yyj3648-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45264,37 +45535,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3631 := z.EncBinary() - _ = yym3631 + yym3654 := z.EncBinary() + _ = yym3654 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3632 := !z.EncBinary() - yy2arr3632 := z.EncBasicHandle().StructToArray - var yyq3632 [4]bool - _, _, _ = yysep3632, yyq3632, yy2arr3632 - const yyr3632 bool = false - yyq3632[0] = x.Kind != "" - yyq3632[1] = x.APIVersion != "" - yyq3632[2] = true - var yynn3632 int - if yyr3632 || yy2arr3632 { + yysep3655 := !z.EncBinary() + yy2arr3655 := z.EncBasicHandle().StructToArray + var yyq3655 [4]bool + _, _, _ = yysep3655, yyq3655, yy2arr3655 + const yyr3655 bool = false + yyq3655[0] = x.Kind != "" + yyq3655[1] = x.APIVersion != "" + yyq3655[2] = true + var yynn3655 int + if yyr3655 || yy2arr3655 { r.EncodeArrayStart(4) } else { - yynn3632 = 1 - for _, b := range yyq3632 { + yynn3655 = 1 + for _, b := range yyq3655 { if b { - yynn3632++ + yynn3655++ } } - r.EncodeMapStart(yynn3632) - yynn3632 = 0 + r.EncodeMapStart(yynn3655) + yynn3655 = 0 } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[0] { - yym3634 := z.EncBinary() - _ = yym3634 + if yyq3655[0] { + yym3657 := z.EncBinary() + _ = yym3657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45303,23 +45574,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3632[0] { + if yyq3655[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3635 := z.EncBinary() - _ = yym3635 + yym3658 := z.EncBinary() + _ = yym3658 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[1] { - yym3637 := z.EncBinary() - _ = yym3637 + if yyq3655[1] { + yym3660 := z.EncBinary() + _ = yym3660 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45328,54 +45599,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3632[1] { + if yyq3655[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3638 := z.EncBinary() - _ = yym3638 + yym3661 := z.EncBinary() + _ = yym3661 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[2] { - yy3640 := &x.ListMeta - yym3641 := z.EncBinary() - _ = yym3641 + if yyq3655[2] { + yy3663 := &x.ListMeta + yym3664 := z.EncBinary() + _ = yym3664 if false { - } else if z.HasExtensions() && z.EncExt(yy3640) { + } else if z.HasExtensions() && z.EncExt(yy3663) { } else { - z.EncFallback(yy3640) + z.EncFallback(yy3663) } } else { r.EncodeNil() } } else { - if yyq3632[2] { + if yyq3655[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3642 := &x.ListMeta - yym3643 := z.EncBinary() - _ = yym3643 + yy3665 := &x.ListMeta + yym3666 := z.EncBinary() + _ = yym3666 if false { - } else if z.HasExtensions() && z.EncExt(yy3642) { + } else if z.HasExtensions() && z.EncExt(yy3665) { } else { - z.EncFallback(yy3642) + z.EncFallback(yy3665) } } } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3645 := z.EncBinary() - _ = yym3645 + yym3668 := z.EncBinary() + _ = yym3668 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -45388,15 +45659,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3646 := z.EncBinary() - _ = yym3646 + yym3669 := z.EncBinary() + _ = yym3669 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr3632 || yy2arr3632 { + if yyr3655 || yy2arr3655 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45409,25 +45680,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3647 := z.DecBinary() - _ = yym3647 + yym3670 := z.DecBinary() + _ = yym3670 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3648 := r.ContainerType() - if yyct3648 == codecSelferValueTypeMap1234 { - yyl3648 := r.ReadMapStart() - if yyl3648 == 0 { + yyct3671 := r.ContainerType() + if yyct3671 == codecSelferValueTypeMap1234 { + yyl3671 := r.ReadMapStart() + if yyl3671 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3648, d) + x.codecDecodeSelfFromMap(yyl3671, d) } - } else if yyct3648 == codecSelferValueTypeArray1234 { - yyl3648 := r.ReadArrayStart() - if yyl3648 == 0 { + } else if yyct3671 == codecSelferValueTypeArray1234 { + yyl3671 := r.ReadArrayStart() + if yyl3671 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3648, d) + x.codecDecodeSelfFromArray(yyl3671, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45439,12 +45710,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3649Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3649Slc - var yyhl3649 bool = l >= 0 - for yyj3649 := 0; ; yyj3649++ { - if yyhl3649 { - if yyj3649 >= l { + var yys3672Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3672Slc + var yyhl3672 bool = l >= 0 + for yyj3672 := 0; ; yyj3672++ { + if yyhl3672 { + if yyj3672 >= l { break } } else { @@ -45453,10 +45724,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3649Slc = r.DecodeBytes(yys3649Slc, true, true) - yys3649 := string(yys3649Slc) + yys3672Slc = r.DecodeBytes(yys3672Slc, true, true) + yys3672 := string(yys3672Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3649 { + switch yys3672 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45473,31 +45744,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3652 := &x.ListMeta - yym3653 := z.DecBinary() - _ = yym3653 + yyv3675 := &x.ListMeta + yym3676 := z.DecBinary() + _ = yym3676 if false { - } else if z.HasExtensions() && z.DecExt(yyv3652) { + } else if z.HasExtensions() && z.DecExt(yyv3675) { } else { - z.DecFallback(yyv3652, false) + z.DecFallback(yyv3675, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3654 := &x.Items - yym3655 := z.DecBinary() - _ = yym3655 + yyv3677 := &x.Items + yym3678 := z.DecBinary() + _ = yym3678 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3654), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3677), d) } } default: - z.DecStructFieldNotFound(-1, yys3649) - } // end switch yys3649 - } // end for yyj3649 + z.DecStructFieldNotFound(-1, yys3672) + } // end switch yys3672 + } // end for yyj3672 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45505,16 +45776,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3656 int - var yyb3656 bool - var yyhl3656 bool = l >= 0 - yyj3656++ - if yyhl3656 { - yyb3656 = yyj3656 > l + var yyj3679 int + var yyb3679 bool + var yyhl3679 bool = l >= 0 + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3656 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3656 { + if yyb3679 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45524,13 +45795,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3656++ - if yyhl3656 { - yyb3656 = yyj3656 > l + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3656 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3656 { + if yyb3679 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45540,13 +45811,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3656++ - if yyhl3656 { - yyb3656 = yyj3656 > l + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3656 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3656 { + if yyb3679 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45554,22 +45825,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3659 := &x.ListMeta - yym3660 := z.DecBinary() - _ = yym3660 + yyv3682 := &x.ListMeta + yym3683 := z.DecBinary() + _ = yym3683 if false { - } else if z.HasExtensions() && z.DecExt(yyv3659) { + } else if z.HasExtensions() && z.DecExt(yyv3682) { } else { - z.DecFallback(yyv3659, false) + z.DecFallback(yyv3682, false) } } - yyj3656++ - if yyhl3656 { - yyb3656 = yyj3656 > l + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3656 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3656 { + if yyb3679 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45577,26 +45848,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3661 := &x.Items - yym3662 := z.DecBinary() - _ = yym3662 + yyv3684 := &x.Items + yym3685 := z.DecBinary() + _ = yym3685 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3661), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3684), d) } } for { - yyj3656++ - if yyhl3656 { - yyb3656 = yyj3656 > l + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3656 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3656 { + if yyb3679 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3656-1, "") + z.DecStructFieldNotFound(yyj3679-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45608,38 +45879,38 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3663 := z.EncBinary() - _ = yym3663 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3664 := !z.EncBinary() - yy2arr3664 := z.EncBasicHandle().StructToArray - var yyq3664 [1]bool - _, _, _ = yysep3664, yyq3664, yy2arr3664 - const yyr3664 bool = false - yyq3664[0] = len(x.Items) != 0 - var yynn3664 int - if yyr3664 || yy2arr3664 { + yysep3687 := !z.EncBinary() + yy2arr3687 := z.EncBasicHandle().StructToArray + var yyq3687 [1]bool + _, _, _ = yysep3687, yyq3687, yy2arr3687 + const yyr3687 bool = false + yyq3687[0] = len(x.Items) != 0 + var yynn3687 int + if yyr3687 || yy2arr3687 { r.EncodeArrayStart(1) } else { - yynn3664 = 0 - for _, b := range yyq3664 { + yynn3687 = 0 + for _, b := range yyq3687 { if b { - yynn3664++ + yynn3687++ } } - r.EncodeMapStart(yynn3664) - yynn3664 = 0 + r.EncodeMapStart(yynn3687) + yynn3687 = 0 } - if yyr3664 || yy2arr3664 { + if yyr3687 || yy2arr3687 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3664[0] { + if yyq3687[0] { if x.Items == nil { r.EncodeNil() } else { - yym3666 := z.EncBinary() - _ = yym3666 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -45649,15 +45920,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3664[0] { + if yyq3687[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym3667 := z.EncBinary() - _ = yym3667 + yym3690 := z.EncBinary() + _ = yym3690 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -45665,7 +45936,7 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3664 || yy2arr3664 { + if yyr3687 || yy2arr3687 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45678,25 +45949,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3668 := z.DecBinary() - _ = yym3668 + yym3691 := z.DecBinary() + _ = yym3691 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3669 := r.ContainerType() - if yyct3669 == codecSelferValueTypeMap1234 { - yyl3669 := r.ReadMapStart() - if yyl3669 == 0 { + yyct3692 := r.ContainerType() + if yyct3692 == codecSelferValueTypeMap1234 { + yyl3692 := r.ReadMapStart() + if yyl3692 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3669, d) + x.codecDecodeSelfFromMap(yyl3692, d) } - } else if yyct3669 == codecSelferValueTypeArray1234 { - yyl3669 := r.ReadArrayStart() - if yyl3669 == 0 { + } else if yyct3692 == codecSelferValueTypeArray1234 { + yyl3692 := r.ReadArrayStart() + if yyl3692 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3669, d) + x.codecDecodeSelfFromArray(yyl3692, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45708,12 +45979,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3670Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3670Slc - var yyhl3670 bool = l >= 0 - for yyj3670 := 0; ; yyj3670++ { - if yyhl3670 { - if yyj3670 >= l { + var yys3693Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3693Slc + var yyhl3693 bool = l >= 0 + for yyj3693 := 0; ; yyj3693++ { + if yyhl3693 { + if yyj3693 >= l { break } } else { @@ -45722,26 +45993,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3670Slc = r.DecodeBytes(yys3670Slc, true, true) - yys3670 := string(yys3670Slc) + yys3693Slc = r.DecodeBytes(yys3693Slc, true, true) + yys3693 := string(yys3693Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3670 { + switch yys3693 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3671 := &x.Items - yym3672 := z.DecBinary() - _ = yym3672 + yyv3694 := &x.Items + yym3695 := z.DecBinary() + _ = yym3695 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3671), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3694), d) } } default: - z.DecStructFieldNotFound(-1, yys3670) - } // end switch yys3670 - } // end for yyj3670 + z.DecStructFieldNotFound(-1, yys3693) + } // end switch yys3693 + } // end for yyj3693 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45749,16 +46020,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D 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 yyj3696 int + var yyb3696 bool + var yyhl3696 bool = l >= 0 + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3673 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3673 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45766,26 +46037,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3674 := &x.Items - yym3675 := z.DecBinary() - _ = yym3675 + yyv3697 := &x.Items + yym3698 := z.DecBinary() + _ = yym3698 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3674), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3697), d) } } for { - yyj3673++ - if yyhl3673 { - yyb3673 = yyj3673 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3673 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3673 { + if yyb3696 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3673-1, "") + z.DecStructFieldNotFound(yyj3696-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45797,33 +46068,33 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3676 := z.EncBinary() - _ = yym3676 + yym3699 := z.EncBinary() + _ = yym3699 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3677 := !z.EncBinary() - yy2arr3677 := z.EncBasicHandle().StructToArray - var yyq3677 [2]bool - _, _, _ = yysep3677, yyq3677, yy2arr3677 - const yyr3677 bool = false - var yynn3677 int - if yyr3677 || yy2arr3677 { + yysep3700 := !z.EncBinary() + yy2arr3700 := z.EncBasicHandle().StructToArray + var yyq3700 [2]bool + _, _, _ = yysep3700, yyq3700, yy2arr3700 + const yyr3700 bool = false + var yynn3700 int + if yyr3700 || yy2arr3700 { r.EncodeArrayStart(2) } else { - yynn3677 = 2 - for _, b := range yyq3677 { + yynn3700 = 2 + for _, b := range yyq3700 { if b { - yynn3677++ + yynn3700++ } } - r.EncodeMapStart(yynn3677) - yynn3677 = 0 + r.EncodeMapStart(yynn3700) + yynn3700 = 0 } - if yyr3677 || yy2arr3677 { + if yyr3700 || yy2arr3700 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3679 := z.EncBinary() - _ = yym3679 + yym3702 := z.EncBinary() + _ = yym3702 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45832,25 +46103,25 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3703 := z.EncBinary() + _ = yym3703 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3677 || yy2arr3677 { + if yyr3700 || yy2arr3700 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3682 := &x.FieldRef - yy3682.CodecEncodeSelf(e) + yy3705 := &x.FieldRef + yy3705.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3683 := &x.FieldRef - yy3683.CodecEncodeSelf(e) + yy3706 := &x.FieldRef + yy3706.CodecEncodeSelf(e) } - if yyr3677 || yy2arr3677 { + if yyr3700 || yy2arr3700 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45863,25 +46134,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3684 := z.DecBinary() - _ = yym3684 + yym3707 := z.DecBinary() + _ = yym3707 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3685 := r.ContainerType() - if yyct3685 == codecSelferValueTypeMap1234 { - yyl3685 := r.ReadMapStart() - if yyl3685 == 0 { + yyct3708 := r.ContainerType() + if yyct3708 == codecSelferValueTypeMap1234 { + yyl3708 := r.ReadMapStart() + if yyl3708 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3685, d) + x.codecDecodeSelfFromMap(yyl3708, d) } - } else if yyct3685 == codecSelferValueTypeArray1234 { - yyl3685 := r.ReadArrayStart() - if yyl3685 == 0 { + } else if yyct3708 == codecSelferValueTypeArray1234 { + yyl3708 := r.ReadArrayStart() + if yyl3708 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3685, d) + x.codecDecodeSelfFromArray(yyl3708, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45893,12 +46164,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3686Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3686Slc - var yyhl3686 bool = l >= 0 - for yyj3686 := 0; ; yyj3686++ { - if yyhl3686 { - if yyj3686 >= l { + var yys3709Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3709Slc + var yyhl3709 bool = l >= 0 + for yyj3709 := 0; ; yyj3709++ { + if yyhl3709 { + if yyj3709 >= l { break } } else { @@ -45907,10 +46178,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3686Slc = r.DecodeBytes(yys3686Slc, true, true) - yys3686 := string(yys3686Slc) + yys3709Slc = r.DecodeBytes(yys3709Slc, true, true) + yys3709 := string(yys3709Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3686 { + switch yys3709 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -45921,13 +46192,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.FieldRef = ObjectFieldSelector{} } else { - yyv3688 := &x.FieldRef - yyv3688.CodecDecodeSelf(d) + yyv3711 := &x.FieldRef + yyv3711.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3686) - } // end switch yys3686 - } // end for yyj3686 + z.DecStructFieldNotFound(-1, yys3709) + } // end switch yys3709 + } // end for yyj3709 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45935,16 +46206,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3689 int - var yyb3689 bool - var yyhl3689 bool = l >= 0 - yyj3689++ - if yyhl3689 { - yyb3689 = yyj3689 > l + var yyj3712 int + var yyb3712 bool + var yyhl3712 bool = l >= 0 + yyj3712++ + if yyhl3712 { + yyb3712 = yyj3712 > l } else { - yyb3689 = r.CheckBreak() + yyb3712 = r.CheckBreak() } - if yyb3689 { + if yyb3712 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45954,13 +46225,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj3689++ - if yyhl3689 { - yyb3689 = yyj3689 > l + yyj3712++ + if yyhl3712 { + yyb3712 = yyj3712 > l } else { - yyb3689 = r.CheckBreak() + yyb3712 = r.CheckBreak() } - if yyb3689 { + if yyb3712 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45968,21 +46239,21 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.FieldRef = ObjectFieldSelector{} } else { - yyv3691 := &x.FieldRef - yyv3691.CodecDecodeSelf(d) + yyv3714 := &x.FieldRef + yyv3714.CodecDecodeSelf(d) } for { - yyj3689++ - if yyhl3689 { - yyb3689 = yyj3689 > l + yyj3712++ + if yyhl3712 { + yyb3712 = yyj3712 > l } else { - yyb3689 = r.CheckBreak() + yyb3712 = r.CheckBreak() } - if yyb3689 { + if yyb3712 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3689-1, "") + z.DecStructFieldNotFound(yyj3712-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45994,37 +46265,37 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3692 := z.EncBinary() - _ = yym3692 + yym3715 := z.EncBinary() + _ = yym3715 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3693 := !z.EncBinary() - yy2arr3693 := z.EncBasicHandle().StructToArray - var yyq3693 [5]bool - _, _, _ = yysep3693, yyq3693, yy2arr3693 - const yyr3693 bool = false - yyq3693[0] = x.Capabilities != nil - yyq3693[1] = x.Privileged != nil - yyq3693[2] = x.SELinuxOptions != nil - yyq3693[3] = x.RunAsUser != nil - yyq3693[4] = x.RunAsNonRoot != nil - var yynn3693 int - if yyr3693 || yy2arr3693 { + yysep3716 := !z.EncBinary() + yy2arr3716 := z.EncBasicHandle().StructToArray + var yyq3716 [5]bool + _, _, _ = yysep3716, yyq3716, yy2arr3716 + const yyr3716 bool = false + yyq3716[0] = x.Capabilities != nil + yyq3716[1] = x.Privileged != nil + yyq3716[2] = x.SELinuxOptions != nil + yyq3716[3] = x.RunAsUser != nil + yyq3716[4] = x.RunAsNonRoot != nil + var yynn3716 int + if yyr3716 || yy2arr3716 { r.EncodeArrayStart(5) } else { - yynn3693 = 0 - for _, b := range yyq3693 { + yynn3716 = 0 + for _, b := range yyq3716 { if b { - yynn3693++ + yynn3716++ } } - r.EncodeMapStart(yynn3693) - yynn3693 = 0 + r.EncodeMapStart(yynn3716) + yynn3716 = 0 } - if yyr3693 || yy2arr3693 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[0] { + if yyq3716[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -46034,7 +46305,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3693[0] { + if yyq3716[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -46045,44 +46316,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3693 || yy2arr3693 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[1] { + if yyq3716[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy3696 := *x.Privileged - yym3697 := z.EncBinary() - _ = yym3697 + yy3719 := *x.Privileged + yym3720 := z.EncBinary() + _ = yym3720 if false { } else { - r.EncodeBool(bool(yy3696)) + r.EncodeBool(bool(yy3719)) } } } else { r.EncodeNil() } } else { - if yyq3693[1] { + if yyq3716[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy3698 := *x.Privileged - yym3699 := z.EncBinary() - _ = yym3699 + yy3721 := *x.Privileged + yym3722 := z.EncBinary() + _ = yym3722 if false { } else { - r.EncodeBool(bool(yy3698)) + r.EncodeBool(bool(yy3721)) } } } } - if yyr3693 || yy2arr3693 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[2] { + if yyq3716[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -46092,7 +46363,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3693[2] { + if yyq3716[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -46103,77 +46374,77 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3693 || yy2arr3693 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[3] { + if yyq3716[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy3702 := *x.RunAsUser - yym3703 := z.EncBinary() - _ = yym3703 + yy3725 := *x.RunAsUser + yym3726 := z.EncBinary() + _ = yym3726 if false { } else { - r.EncodeInt(int64(yy3702)) + r.EncodeInt(int64(yy3725)) } } } else { r.EncodeNil() } } else { - if yyq3693[3] { + if yyq3716[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy3704 := *x.RunAsUser - yym3705 := z.EncBinary() - _ = yym3705 + yy3727 := *x.RunAsUser + yym3728 := z.EncBinary() + _ = yym3728 if false { } else { - r.EncodeInt(int64(yy3704)) + r.EncodeInt(int64(yy3727)) } } } } - if yyr3693 || yy2arr3693 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[4] { + if yyq3716[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3707 := *x.RunAsNonRoot - yym3708 := z.EncBinary() - _ = yym3708 + yy3730 := *x.RunAsNonRoot + yym3731 := z.EncBinary() + _ = yym3731 if false { } else { - r.EncodeBool(bool(yy3707)) + r.EncodeBool(bool(yy3730)) } } } else { r.EncodeNil() } } else { - if yyq3693[4] { + if yyq3716[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3709 := *x.RunAsNonRoot - yym3710 := z.EncBinary() - _ = yym3710 + yy3732 := *x.RunAsNonRoot + yym3733 := z.EncBinary() + _ = yym3733 if false { } else { - r.EncodeBool(bool(yy3709)) + r.EncodeBool(bool(yy3732)) } } } } - if yyr3693 || yy2arr3693 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46186,25 +46457,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3711 := z.DecBinary() - _ = yym3711 + yym3734 := z.DecBinary() + _ = yym3734 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3712 := r.ContainerType() - if yyct3712 == codecSelferValueTypeMap1234 { - yyl3712 := r.ReadMapStart() - if yyl3712 == 0 { + yyct3735 := r.ContainerType() + if yyct3735 == codecSelferValueTypeMap1234 { + yyl3735 := r.ReadMapStart() + if yyl3735 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3712, d) + x.codecDecodeSelfFromMap(yyl3735, d) } - } else if yyct3712 == codecSelferValueTypeArray1234 { - yyl3712 := r.ReadArrayStart() - if yyl3712 == 0 { + } else if yyct3735 == codecSelferValueTypeArray1234 { + yyl3735 := r.ReadArrayStart() + if yyl3735 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3712, d) + x.codecDecodeSelfFromArray(yyl3735, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46216,12 +46487,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3713Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3713Slc - var yyhl3713 bool = l >= 0 - for yyj3713 := 0; ; yyj3713++ { - if yyhl3713 { - if yyj3713 >= l { + var yys3736Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3736Slc + var yyhl3736 bool = l >= 0 + for yyj3736 := 0; ; yyj3736++ { + if yyhl3736 { + if yyj3736 >= l { break } } else { @@ -46230,10 +46501,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3713Slc = r.DecodeBytes(yys3713Slc, true, true) - yys3713 := string(yys3713Slc) + yys3736Slc = r.DecodeBytes(yys3736Slc, true, true) + yys3736 := string(yys3736Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3713 { + switch yys3736 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -46254,8 +46525,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym3716 := z.DecBinary() - _ = yym3716 + yym3739 := z.DecBinary() + _ = yym3739 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -46281,8 +46552,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3719 := z.DecBinary() - _ = yym3719 + yym3742 := z.DecBinary() + _ = yym3742 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -46297,17 +46568,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3721 := z.DecBinary() - _ = yym3721 + yym3744 := z.DecBinary() + _ = yym3744 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3713) - } // end switch yys3713 - } // end for yyj3713 + z.DecStructFieldNotFound(-1, yys3736) + } // end switch yys3736 + } // end for yyj3736 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46315,16 +46586,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3722 int - var yyb3722 bool - var yyhl3722 bool = l >= 0 - yyj3722++ - if yyhl3722 { - yyb3722 = yyj3722 > l + var yyj3745 int + var yyb3745 bool + var yyhl3745 bool = l >= 0 + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3722 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3722 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46339,13 +46610,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj3722++ - if yyhl3722 { - yyb3722 = yyj3722 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3722 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3722 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46358,20 +46629,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym3725 := z.DecBinary() - _ = yym3725 + yym3748 := z.DecBinary() + _ = yym3748 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj3722++ - if yyhl3722 { - yyb3722 = yyj3722 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3722 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3722 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46386,13 +46657,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj3722++ - if yyhl3722 { - yyb3722 = yyj3722 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3722 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3722 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46405,20 +46676,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3728 := z.DecBinary() - _ = yym3728 + yym3751 := z.DecBinary() + _ = yym3751 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj3722++ - if yyhl3722 { - yyb3722 = yyj3722 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3722 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3722 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46431,25 +46702,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3730 := z.DecBinary() - _ = yym3730 + yym3753 := z.DecBinary() + _ = yym3753 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } for { - yyj3722++ - if yyhl3722 { - yyb3722 = yyj3722 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3722 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3722 { + if yyb3745 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3722-1, "") + z.DecStructFieldNotFound(yyj3745-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46461,38 +46732,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3731 := z.EncBinary() - _ = yym3731 + yym3754 := z.EncBinary() + _ = yym3754 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3732 := !z.EncBinary() - yy2arr3732 := z.EncBasicHandle().StructToArray - var yyq3732 [4]bool - _, _, _ = yysep3732, yyq3732, yy2arr3732 - const yyr3732 bool = false - yyq3732[0] = x.User != "" - yyq3732[1] = x.Role != "" - yyq3732[2] = x.Type != "" - yyq3732[3] = x.Level != "" - var yynn3732 int - if yyr3732 || yy2arr3732 { + yysep3755 := !z.EncBinary() + yy2arr3755 := z.EncBasicHandle().StructToArray + var yyq3755 [4]bool + _, _, _ = yysep3755, yyq3755, yy2arr3755 + const yyr3755 bool = false + yyq3755[0] = x.User != "" + yyq3755[1] = x.Role != "" + yyq3755[2] = x.Type != "" + yyq3755[3] = x.Level != "" + var yynn3755 int + if yyr3755 || yy2arr3755 { r.EncodeArrayStart(4) } else { - yynn3732 = 0 - for _, b := range yyq3732 { + yynn3755 = 0 + for _, b := range yyq3755 { if b { - yynn3732++ + yynn3755++ } } - r.EncodeMapStart(yynn3732) - yynn3732 = 0 + r.EncodeMapStart(yynn3755) + yynn3755 = 0 } - if yyr3732 || yy2arr3732 { + if yyr3755 || yy2arr3755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3732[0] { - yym3734 := z.EncBinary() - _ = yym3734 + if yyq3755[0] { + yym3757 := z.EncBinary() + _ = yym3757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -46501,23 +46772,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3732[0] { + if yyq3755[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3735 := z.EncBinary() - _ = yym3735 + yym3758 := z.EncBinary() + _ = yym3758 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr3732 || yy2arr3732 { + if yyr3755 || yy2arr3755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3732[1] { - yym3737 := z.EncBinary() - _ = yym3737 + if yyq3755[1] { + yym3760 := z.EncBinary() + _ = yym3760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -46526,23 +46797,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3732[1] { + if yyq3755[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3738 := z.EncBinary() - _ = yym3738 + yym3761 := z.EncBinary() + _ = yym3761 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr3732 || yy2arr3732 { + if yyr3755 || yy2arr3755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3732[2] { - yym3740 := z.EncBinary() - _ = yym3740 + if yyq3755[2] { + yym3763 := z.EncBinary() + _ = yym3763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -46551,23 +46822,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3732[2] { + if yyq3755[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3741 := z.EncBinary() - _ = yym3741 + yym3764 := z.EncBinary() + _ = yym3764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3732 || yy2arr3732 { + if yyr3755 || yy2arr3755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3732[3] { - yym3743 := z.EncBinary() - _ = yym3743 + if yyq3755[3] { + yym3766 := z.EncBinary() + _ = yym3766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -46576,19 +46847,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3732[3] { + if yyq3755[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3744 := z.EncBinary() - _ = yym3744 + yym3767 := z.EncBinary() + _ = yym3767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr3732 || yy2arr3732 { + if yyr3755 || yy2arr3755 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46601,25 +46872,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3745 := z.DecBinary() - _ = yym3745 + yym3768 := z.DecBinary() + _ = yym3768 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3746 := r.ContainerType() - if yyct3746 == codecSelferValueTypeMap1234 { - yyl3746 := r.ReadMapStart() - if yyl3746 == 0 { + yyct3769 := r.ContainerType() + if yyct3769 == codecSelferValueTypeMap1234 { + yyl3769 := r.ReadMapStart() + if yyl3769 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3746, d) + x.codecDecodeSelfFromMap(yyl3769, d) } - } else if yyct3746 == codecSelferValueTypeArray1234 { - yyl3746 := r.ReadArrayStart() - if yyl3746 == 0 { + } else if yyct3769 == codecSelferValueTypeArray1234 { + yyl3769 := r.ReadArrayStart() + if yyl3769 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3746, d) + x.codecDecodeSelfFromArray(yyl3769, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46631,12 +46902,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3747Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3747Slc - var yyhl3747 bool = l >= 0 - for yyj3747 := 0; ; yyj3747++ { - if yyhl3747 { - if yyj3747 >= l { + var yys3770Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3770Slc + var yyhl3770 bool = l >= 0 + for yyj3770 := 0; ; yyj3770++ { + if yyhl3770 { + if yyj3770 >= l { break } } else { @@ -46645,10 +46916,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3747Slc = r.DecodeBytes(yys3747Slc, true, true) - yys3747 := string(yys3747Slc) + yys3770Slc = r.DecodeBytes(yys3770Slc, true, true) + yys3770 := string(yys3770Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3747 { + switch yys3770 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -46674,9 +46945,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3747) - } // end switch yys3747 - } // end for yyj3747 + z.DecStructFieldNotFound(-1, yys3770) + } // end switch yys3770 + } // end for yyj3770 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46684,16 +46955,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3752 int - var yyb3752 bool - var yyhl3752 bool = l >= 0 - yyj3752++ - if yyhl3752 { - yyb3752 = yyj3752 > l + var yyj3775 int + var yyb3775 bool + var yyhl3775 bool = l >= 0 + yyj3775++ + if yyhl3775 { + yyb3775 = yyj3775 > l } else { - yyb3752 = r.CheckBreak() + yyb3775 = r.CheckBreak() } - if yyb3752 { + if yyb3775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46703,13 +46974,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj3752++ - if yyhl3752 { - yyb3752 = yyj3752 > l + yyj3775++ + if yyhl3775 { + yyb3775 = yyj3775 > l } else { - yyb3752 = r.CheckBreak() + yyb3775 = r.CheckBreak() } - if yyb3752 { + if yyb3775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46719,13 +46990,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj3752++ - if yyhl3752 { - yyb3752 = yyj3752 > l + yyj3775++ + if yyhl3775 { + yyb3775 = yyj3775 > l } else { - yyb3752 = r.CheckBreak() + yyb3775 = r.CheckBreak() } - if yyb3752 { + if yyb3775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46735,13 +47006,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj3752++ - if yyhl3752 { - yyb3752 = yyj3752 > l + yyj3775++ + if yyhl3775 { + yyb3775 = yyj3775 > l } else { - yyb3752 = r.CheckBreak() + yyb3775 = r.CheckBreak() } - if yyb3752 { + if yyb3775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46752,17 +47023,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj3752++ - if yyhl3752 { - yyb3752 = yyj3752 > l + yyj3775++ + if yyhl3775 { + yyb3775 = yyj3775 > l } else { - yyb3752 = r.CheckBreak() + yyb3775 = r.CheckBreak() } - if yyb3752 { + if yyb3775 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3752-1, "") + z.DecStructFieldNotFound(yyj3775-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46774,37 +47045,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3757 := z.EncBinary() - _ = yym3757 + yym3780 := z.EncBinary() + _ = yym3780 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3758 := !z.EncBinary() - yy2arr3758 := z.EncBasicHandle().StructToArray - var yyq3758 [5]bool - _, _, _ = yysep3758, yyq3758, yy2arr3758 - const yyr3758 bool = false - yyq3758[0] = x.Kind != "" - yyq3758[1] = x.APIVersion != "" - yyq3758[2] = true - var yynn3758 int - if yyr3758 || yy2arr3758 { + yysep3781 := !z.EncBinary() + yy2arr3781 := z.EncBasicHandle().StructToArray + var yyq3781 [5]bool + _, _, _ = yysep3781, yyq3781, yy2arr3781 + const yyr3781 bool = false + yyq3781[0] = x.Kind != "" + yyq3781[1] = x.APIVersion != "" + yyq3781[2] = true + var yynn3781 int + if yyr3781 || yy2arr3781 { r.EncodeArrayStart(5) } else { - yynn3758 = 2 - for _, b := range yyq3758 { + yynn3781 = 2 + for _, b := range yyq3781 { if b { - yynn3758++ + yynn3781++ } } - r.EncodeMapStart(yynn3758) - yynn3758 = 0 + r.EncodeMapStart(yynn3781) + yynn3781 = 0 } - if yyr3758 || yy2arr3758 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3758[0] { - yym3760 := z.EncBinary() - _ = yym3760 + if yyq3781[0] { + yym3783 := z.EncBinary() + _ = yym3783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46813,23 +47084,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3758[0] { + if yyq3781[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3761 := z.EncBinary() - _ = yym3761 + yym3784 := z.EncBinary() + _ = yym3784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3758 || yy2arr3758 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3758[1] { - yym3763 := z.EncBinary() - _ = yym3763 + if yyq3781[1] { + yym3786 := z.EncBinary() + _ = yym3786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46838,39 +47109,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3758[1] { + if yyq3781[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3764 := z.EncBinary() - _ = yym3764 + yym3787 := z.EncBinary() + _ = yym3787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3758 || yy2arr3758 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3758[2] { - yy3766 := &x.ObjectMeta - yy3766.CodecEncodeSelf(e) + if yyq3781[2] { + yy3789 := &x.ObjectMeta + yy3789.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3758[2] { + if yyq3781[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3767 := &x.ObjectMeta - yy3767.CodecEncodeSelf(e) + yy3790 := &x.ObjectMeta + yy3790.CodecEncodeSelf(e) } } - if yyr3758 || yy2arr3758 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3769 := z.EncBinary() - _ = yym3769 + yym3792 := z.EncBinary() + _ = yym3792 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -46879,20 +47150,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3770 := z.EncBinary() - _ = yym3770 + yym3793 := z.EncBinary() + _ = yym3793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr3758 || yy2arr3758 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym3772 := z.EncBinary() - _ = yym3772 + yym3795 := z.EncBinary() + _ = yym3795 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -46905,15 +47176,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym3773 := z.EncBinary() - _ = yym3773 + yym3796 := z.EncBinary() + _ = yym3796 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr3758 || yy2arr3758 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46926,25 +47197,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3774 := z.DecBinary() - _ = yym3774 + yym3797 := z.DecBinary() + _ = yym3797 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3775 := r.ContainerType() - if yyct3775 == codecSelferValueTypeMap1234 { - yyl3775 := r.ReadMapStart() - if yyl3775 == 0 { + yyct3798 := r.ContainerType() + if yyct3798 == codecSelferValueTypeMap1234 { + yyl3798 := r.ReadMapStart() + if yyl3798 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3775, d) + x.codecDecodeSelfFromMap(yyl3798, d) } - } else if yyct3775 == codecSelferValueTypeArray1234 { - yyl3775 := r.ReadArrayStart() - if yyl3775 == 0 { + } else if yyct3798 == codecSelferValueTypeArray1234 { + yyl3798 := r.ReadArrayStart() + if yyl3798 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3775, d) + x.codecDecodeSelfFromArray(yyl3798, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46956,12 +47227,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3776Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3776Slc - var yyhl3776 bool = l >= 0 - for yyj3776 := 0; ; yyj3776++ { - if yyhl3776 { - if yyj3776 >= l { + var yys3799Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3799Slc + var yyhl3799 bool = l >= 0 + for yyj3799 := 0; ; yyj3799++ { + if yyhl3799 { + if yyj3799 >= l { break } } else { @@ -46970,10 +47241,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3776Slc = r.DecodeBytes(yys3776Slc, true, true) - yys3776 := string(yys3776Slc) + yys3799Slc = r.DecodeBytes(yys3799Slc, true, true) + yys3799 := string(yys3799Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3776 { + switch yys3799 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46990,8 +47261,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3779 := &x.ObjectMeta - yyv3779.CodecDecodeSelf(d) + yyv3802 := &x.ObjectMeta + yyv3802.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -47003,18 +47274,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3781 := &x.Data - yym3782 := z.DecBinary() - _ = yym3782 + yyv3804 := &x.Data + yym3805 := z.DecBinary() + _ = yym3805 if false { } else { - *yyv3781 = r.DecodeBytes(*(*[]byte)(yyv3781), false, false) + *yyv3804 = r.DecodeBytes(*(*[]byte)(yyv3804), false, false) } } default: - z.DecStructFieldNotFound(-1, yys3776) - } // end switch yys3776 - } // end for yyj3776 + z.DecStructFieldNotFound(-1, yys3799) + } // end switch yys3799 + } // end for yyj3799 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47022,16 +47293,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3783 int - var yyb3783 bool - var yyhl3783 bool = l >= 0 - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + var yyj3806 int + var yyb3806 bool + var yyhl3806 bool = l >= 0 + yyj3806++ + if yyhl3806 { + yyb3806 = yyj3806 > l } else { - yyb3783 = r.CheckBreak() + yyb3806 = r.CheckBreak() } - if yyb3783 { + if yyb3806 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47041,13 +47312,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3806++ + if yyhl3806 { + yyb3806 = yyj3806 > l } else { - yyb3783 = r.CheckBreak() + yyb3806 = r.CheckBreak() } - if yyb3783 { + if yyb3806 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47057,13 +47328,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3806++ + if yyhl3806 { + yyb3806 = yyj3806 > l } else { - yyb3783 = r.CheckBreak() + yyb3806 = r.CheckBreak() } - if yyb3783 { + if yyb3806 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47071,16 +47342,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3786 := &x.ObjectMeta - yyv3786.CodecDecodeSelf(d) + yyv3809 := &x.ObjectMeta + yyv3809.CodecDecodeSelf(d) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3806++ + if yyhl3806 { + yyb3806 = yyj3806 > l } else { - yyb3783 = r.CheckBreak() + yyb3806 = r.CheckBreak() } - if yyb3783 { + if yyb3806 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47090,13 +47361,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3806++ + if yyhl3806 { + yyb3806 = yyj3806 > l } else { - yyb3783 = r.CheckBreak() + yyb3806 = r.CheckBreak() } - if yyb3783 { + if yyb3806 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47104,26 +47375,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3788 := &x.Data - yym3789 := z.DecBinary() - _ = yym3789 + yyv3811 := &x.Data + yym3812 := z.DecBinary() + _ = yym3812 if false { } else { - *yyv3788 = r.DecodeBytes(*(*[]byte)(yyv3788), false, false) + *yyv3811 = r.DecodeBytes(*(*[]byte)(yyv3811), false, false) } } for { - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3806++ + if yyhl3806 { + yyb3806 = yyj3806 > l } else { - yyb3783 = r.CheckBreak() + yyb3806 = r.CheckBreak() } - if yyb3783 { + if yyb3806 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3783-1, "") + z.DecStructFieldNotFound(yyj3806-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47133,9 +47404,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3790 := range v { + for _, yyv3813 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3790.CodecEncodeSelf(e) + yyv3813.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47145,459 +47416,12 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3791 := *v - yyh3791, yyl3791 := z.DecSliceHelperStart() - var yyc3791 bool - if yyl3791 == 0 { - if yyv3791 == nil { - yyv3791 = []PersistentVolumeAccessMode{} - yyc3791 = true - } else if len(yyv3791) != 0 { - yyv3791 = yyv3791[:0] - yyc3791 = true - } - } else if yyl3791 > 0 { - var yyrr3791, yyrl3791 int - var yyrt3791 bool - if yyl3791 > cap(yyv3791) { - - yyrl3791, yyrt3791 = z.DecInferLen(yyl3791, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3791 { - if yyrl3791 <= cap(yyv3791) { - yyv3791 = yyv3791[:yyrl3791] - } else { - yyv3791 = make([]PersistentVolumeAccessMode, yyrl3791) - } - } else { - yyv3791 = make([]PersistentVolumeAccessMode, yyrl3791) - } - yyc3791 = true - yyrr3791 = len(yyv3791) - } else if yyl3791 != len(yyv3791) { - yyv3791 = yyv3791[:yyl3791] - yyc3791 = true - } - yyj3791 := 0 - for ; yyj3791 < yyrr3791; yyj3791++ { - yyh3791.ElemContainerState(yyj3791) - if r.TryDecodeAsNil() { - yyv3791[yyj3791] = "" - } else { - yyv3791[yyj3791] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - if yyrt3791 { - for ; yyj3791 < yyl3791; yyj3791++ { - yyv3791 = append(yyv3791, "") - yyh3791.ElemContainerState(yyj3791) - if r.TryDecodeAsNil() { - yyv3791[yyj3791] = "" - } else { - yyv3791[yyj3791] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - } - - } else { - yyj3791 := 0 - for ; !r.CheckBreak(); yyj3791++ { - - if yyj3791 >= len(yyv3791) { - yyv3791 = append(yyv3791, "") // var yyz3791 PersistentVolumeAccessMode - yyc3791 = true - } - yyh3791.ElemContainerState(yyj3791) - if yyj3791 < len(yyv3791) { - if r.TryDecodeAsNil() { - yyv3791[yyj3791] = "" - } else { - yyv3791[yyj3791] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj3791 < len(yyv3791) { - yyv3791 = yyv3791[:yyj3791] - yyc3791 = true - } else if yyj3791 == 0 && yyv3791 == nil { - yyv3791 = []PersistentVolumeAccessMode{} - yyc3791 = true - } - } - yyh3791.End() - if yyc3791 { - *v = yyv3791 - } -} - -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 _, yyv3795 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3796 := &yyv3795 - yy3796.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3797 := *v - yyh3797, yyl3797 := z.DecSliceHelperStart() - var yyc3797 bool - if yyl3797 == 0 { - if yyv3797 == nil { - yyv3797 = []PersistentVolume{} - yyc3797 = true - } else if len(yyv3797) != 0 { - yyv3797 = yyv3797[:0] - yyc3797 = true - } - } else if yyl3797 > 0 { - var yyrr3797, yyrl3797 int - var yyrt3797 bool - if yyl3797 > cap(yyv3797) { - - yyrg3797 := len(yyv3797) > 0 - yyv23797 := yyv3797 - yyrl3797, yyrt3797 = z.DecInferLen(yyl3797, z.DecBasicHandle().MaxInitLen, 392) - if yyrt3797 { - if yyrl3797 <= cap(yyv3797) { - yyv3797 = yyv3797[:yyrl3797] - } else { - yyv3797 = make([]PersistentVolume, yyrl3797) - } - } else { - yyv3797 = make([]PersistentVolume, yyrl3797) - } - yyc3797 = true - yyrr3797 = len(yyv3797) - if yyrg3797 { - copy(yyv3797, yyv23797) - } - } else if yyl3797 != len(yyv3797) { - yyv3797 = yyv3797[:yyl3797] - yyc3797 = true - } - yyj3797 := 0 - for ; yyj3797 < yyrr3797; yyj3797++ { - yyh3797.ElemContainerState(yyj3797) - if r.TryDecodeAsNil() { - yyv3797[yyj3797] = PersistentVolume{} - } else { - yyv3798 := &yyv3797[yyj3797] - yyv3798.CodecDecodeSelf(d) - } - - } - if yyrt3797 { - for ; yyj3797 < yyl3797; yyj3797++ { - yyv3797 = append(yyv3797, PersistentVolume{}) - yyh3797.ElemContainerState(yyj3797) - if r.TryDecodeAsNil() { - yyv3797[yyj3797] = PersistentVolume{} - } else { - yyv3799 := &yyv3797[yyj3797] - yyv3799.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3797 := 0 - for ; !r.CheckBreak(); yyj3797++ { - - if yyj3797 >= len(yyv3797) { - yyv3797 = append(yyv3797, PersistentVolume{}) // var yyz3797 PersistentVolume - yyc3797 = true - } - yyh3797.ElemContainerState(yyj3797) - if yyj3797 < len(yyv3797) { - if r.TryDecodeAsNil() { - yyv3797[yyj3797] = PersistentVolume{} - } else { - yyv3800 := &yyv3797[yyj3797] - yyv3800.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3797 < len(yyv3797) { - yyv3797 = yyv3797[:yyj3797] - yyc3797 = true - } else if yyj3797 == 0 && yyv3797 == nil { - yyv3797 = []PersistentVolume{} - yyc3797 = true - } - } - yyh3797.End() - if yyc3797 { - *v = yyv3797 - } -} - -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 _, yyv3801 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3802 := &yyv3801 - yy3802.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3803 := *v - yyh3803, yyl3803 := z.DecSliceHelperStart() - var yyc3803 bool - if yyl3803 == 0 { - if yyv3803 == nil { - yyv3803 = []PersistentVolumeClaim{} - yyc3803 = true - } else if len(yyv3803) != 0 { - yyv3803 = yyv3803[:0] - yyc3803 = true - } - } else if yyl3803 > 0 { - var yyrr3803, yyrl3803 int - var yyrt3803 bool - if yyl3803 > cap(yyv3803) { - - yyrg3803 := len(yyv3803) > 0 - yyv23803 := yyv3803 - yyrl3803, yyrt3803 = z.DecInferLen(yyl3803, z.DecBasicHandle().MaxInitLen, 296) - if yyrt3803 { - if yyrl3803 <= cap(yyv3803) { - yyv3803 = yyv3803[:yyrl3803] - } else { - yyv3803 = make([]PersistentVolumeClaim, yyrl3803) - } - } else { - yyv3803 = make([]PersistentVolumeClaim, yyrl3803) - } - yyc3803 = true - yyrr3803 = len(yyv3803) - if yyrg3803 { - copy(yyv3803, yyv23803) - } - } else if yyl3803 != len(yyv3803) { - yyv3803 = yyv3803[:yyl3803] - yyc3803 = true - } - yyj3803 := 0 - for ; yyj3803 < yyrr3803; yyj3803++ { - yyh3803.ElemContainerState(yyj3803) - if r.TryDecodeAsNil() { - yyv3803[yyj3803] = PersistentVolumeClaim{} - } else { - yyv3804 := &yyv3803[yyj3803] - yyv3804.CodecDecodeSelf(d) - } - - } - if yyrt3803 { - for ; yyj3803 < yyl3803; yyj3803++ { - yyv3803 = append(yyv3803, PersistentVolumeClaim{}) - yyh3803.ElemContainerState(yyj3803) - if r.TryDecodeAsNil() { - yyv3803[yyj3803] = PersistentVolumeClaim{} - } else { - yyv3805 := &yyv3803[yyj3803] - yyv3805.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3803 := 0 - for ; !r.CheckBreak(); yyj3803++ { - - if yyj3803 >= len(yyv3803) { - yyv3803 = append(yyv3803, PersistentVolumeClaim{}) // var yyz3803 PersistentVolumeClaim - yyc3803 = true - } - yyh3803.ElemContainerState(yyj3803) - if yyj3803 < len(yyv3803) { - if r.TryDecodeAsNil() { - yyv3803[yyj3803] = PersistentVolumeClaim{} - } else { - yyv3806 := &yyv3803[yyj3803] - yyv3806.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3803 < len(yyv3803) { - yyv3803 = yyv3803[:yyj3803] - yyc3803 = true - } else if yyj3803 == 0 && yyv3803 == nil { - yyv3803 = []PersistentVolumeClaim{} - yyc3803 = true - } - } - yyh3803.End() - if yyc3803 { - *v = yyv3803 - } -} - -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 _, yyv3807 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3807.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 - - yyv3808 := *v - yyh3808, yyl3808 := z.DecSliceHelperStart() - var yyc3808 bool - if yyl3808 == 0 { - if yyv3808 == nil { - yyv3808 = []Capability{} - yyc3808 = true - } else if len(yyv3808) != 0 { - yyv3808 = yyv3808[:0] - yyc3808 = true - } - } else if yyl3808 > 0 { - var yyrr3808, yyrl3808 int - var yyrt3808 bool - if yyl3808 > cap(yyv3808) { - - yyrl3808, yyrt3808 = z.DecInferLen(yyl3808, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3808 { - if yyrl3808 <= cap(yyv3808) { - yyv3808 = yyv3808[:yyrl3808] - } else { - yyv3808 = make([]Capability, yyrl3808) - } - } else { - yyv3808 = make([]Capability, yyrl3808) - } - yyc3808 = true - yyrr3808 = len(yyv3808) - } else if yyl3808 != len(yyv3808) { - yyv3808 = yyv3808[:yyl3808] - yyc3808 = true - } - yyj3808 := 0 - for ; yyj3808 < yyrr3808; yyj3808++ { - yyh3808.ElemContainerState(yyj3808) - if r.TryDecodeAsNil() { - yyv3808[yyj3808] = "" - } else { - yyv3808[yyj3808] = Capability(r.DecodeString()) - } - - } - if yyrt3808 { - for ; yyj3808 < yyl3808; yyj3808++ { - yyv3808 = append(yyv3808, "") - yyh3808.ElemContainerState(yyj3808) - if r.TryDecodeAsNil() { - yyv3808[yyj3808] = "" - } else { - yyv3808[yyj3808] = Capability(r.DecodeString()) - } - - } - } - - } else { - yyj3808 := 0 - for ; !r.CheckBreak(); yyj3808++ { - - if yyj3808 >= len(yyv3808) { - yyv3808 = append(yyv3808, "") // var yyz3808 Capability - yyc3808 = true - } - yyh3808.ElemContainerState(yyj3808) - if yyj3808 < len(yyv3808) { - if r.TryDecodeAsNil() { - yyv3808[yyj3808] = "" - } else { - yyv3808[yyj3808] = Capability(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj3808 < len(yyv3808) { - yyv3808 = yyv3808[:yyj3808] - yyc3808 = true - } else if yyj3808 == 0 && yyv3808 == nil { - yyv3808 = []Capability{} - yyc3808 = true - } - } - yyh3808.End() - if yyc3808 { - *v = yyv3808 - } -} - -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 _, yyv3812 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3813 := &yyv3812 - yy3813.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv3814 := *v yyh3814, yyl3814 := z.DecSliceHelperStart() var yyc3814 bool if yyl3814 == 0 { if yyv3814 == nil { - yyv3814 = []ContainerPort{} + yyv3814 = []PersistentVolumeAccessMode{} yyc3814 = true } else if len(yyv3814) != 0 { yyv3814 = yyv3814[:0] @@ -47608,23 +47432,18 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. var yyrt3814 bool if yyl3814 > cap(yyv3814) { - yyrg3814 := len(yyv3814) > 0 - yyv23814 := yyv3814 - yyrl3814, yyrt3814 = z.DecInferLen(yyl3814, z.DecBasicHandle().MaxInitLen, 56) + yyrl3814, yyrt3814 = z.DecInferLen(yyl3814, z.DecBasicHandle().MaxInitLen, 16) if yyrt3814 { if yyrl3814 <= cap(yyv3814) { yyv3814 = yyv3814[:yyrl3814] } else { - yyv3814 = make([]ContainerPort, yyrl3814) + yyv3814 = make([]PersistentVolumeAccessMode, yyrl3814) } } else { - yyv3814 = make([]ContainerPort, yyrl3814) + yyv3814 = make([]PersistentVolumeAccessMode, yyrl3814) } yyc3814 = true yyrr3814 = len(yyv3814) - if yyrg3814 { - copy(yyv3814, yyv23814) - } } else if yyl3814 != len(yyv3814) { yyv3814 = yyv3814[:yyl3814] yyc3814 = true @@ -47633,22 +47452,20 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. for ; yyj3814 < yyrr3814; yyj3814++ { yyh3814.ElemContainerState(yyj3814) if r.TryDecodeAsNil() { - yyv3814[yyj3814] = ContainerPort{} + yyv3814[yyj3814] = "" } else { - yyv3815 := &yyv3814[yyj3814] - yyv3815.CodecDecodeSelf(d) + yyv3814[yyj3814] = PersistentVolumeAccessMode(r.DecodeString()) } } if yyrt3814 { for ; yyj3814 < yyl3814; yyj3814++ { - yyv3814 = append(yyv3814, ContainerPort{}) + yyv3814 = append(yyv3814, "") yyh3814.ElemContainerState(yyj3814) if r.TryDecodeAsNil() { - yyv3814[yyj3814] = ContainerPort{} + yyv3814[yyj3814] = "" } else { - yyv3816 := &yyv3814[yyj3814] - yyv3816.CodecDecodeSelf(d) + yyv3814[yyj3814] = PersistentVolumeAccessMode(r.DecodeString()) } } @@ -47659,16 +47476,15 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. for ; !r.CheckBreak(); yyj3814++ { if yyj3814 >= len(yyv3814) { - yyv3814 = append(yyv3814, ContainerPort{}) // var yyz3814 ContainerPort + yyv3814 = append(yyv3814, "") // var yyz3814 PersistentVolumeAccessMode yyc3814 = true } yyh3814.ElemContainerState(yyj3814) if yyj3814 < len(yyv3814) { if r.TryDecodeAsNil() { - yyv3814[yyj3814] = ContainerPort{} + yyv3814[yyj3814] = "" } else { - yyv3817 := &yyv3814[yyj3814] - yyv3817.CodecDecodeSelf(d) + yyv3814[yyj3814] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -47680,7 +47496,7 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. yyv3814 = yyv3814[:yyj3814] yyc3814 = true } else if yyj3814 == 0 && yyv3814 == nil { - yyv3814 = []ContainerPort{} + yyv3814 = []PersistentVolumeAccessMode{} yyc3814 = true } } @@ -47690,7 +47506,7 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } -func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -47703,7 +47519,7 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47713,7 +47529,7 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { var yyc3820 bool if yyl3820 == 0 { if yyv3820 == nil { - yyv3820 = []EnvVar{} + yyv3820 = []PersistentVolume{} yyc3820 = true } else if len(yyv3820) != 0 { yyv3820 = yyv3820[:0] @@ -47726,15 +47542,15 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { yyrg3820 := len(yyv3820) > 0 yyv23820 := yyv3820 - yyrl3820, yyrt3820 = z.DecInferLen(yyl3820, z.DecBasicHandle().MaxInitLen, 40) + yyrl3820, yyrt3820 = z.DecInferLen(yyl3820, z.DecBasicHandle().MaxInitLen, 392) if yyrt3820 { if yyrl3820 <= cap(yyv3820) { yyv3820 = yyv3820[:yyrl3820] } else { - yyv3820 = make([]EnvVar, yyrl3820) + yyv3820 = make([]PersistentVolume, yyrl3820) } } else { - yyv3820 = make([]EnvVar, yyrl3820) + yyv3820 = make([]PersistentVolume, yyrl3820) } yyc3820 = true yyrr3820 = len(yyv3820) @@ -47749,7 +47565,7 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { for ; yyj3820 < yyrr3820; yyj3820++ { yyh3820.ElemContainerState(yyj3820) if r.TryDecodeAsNil() { - yyv3820[yyj3820] = EnvVar{} + yyv3820[yyj3820] = PersistentVolume{} } else { yyv3821 := &yyv3820[yyj3820] yyv3821.CodecDecodeSelf(d) @@ -47758,10 +47574,10 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } if yyrt3820 { for ; yyj3820 < yyl3820; yyj3820++ { - yyv3820 = append(yyv3820, EnvVar{}) + yyv3820 = append(yyv3820, PersistentVolume{}) yyh3820.ElemContainerState(yyj3820) if r.TryDecodeAsNil() { - yyv3820[yyj3820] = EnvVar{} + yyv3820[yyj3820] = PersistentVolume{} } else { yyv3822 := &yyv3820[yyj3820] yyv3822.CodecDecodeSelf(d) @@ -47775,13 +47591,13 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { for ; !r.CheckBreak(); yyj3820++ { if yyj3820 >= len(yyv3820) { - yyv3820 = append(yyv3820, EnvVar{}) // var yyz3820 EnvVar + yyv3820 = append(yyv3820, PersistentVolume{}) // var yyz3820 PersistentVolume yyc3820 = true } yyh3820.ElemContainerState(yyj3820) if yyj3820 < len(yyv3820) { if r.TryDecodeAsNil() { - yyv3820[yyj3820] = EnvVar{} + yyv3820[yyj3820] = PersistentVolume{} } else { yyv3823 := &yyv3820[yyj3820] yyv3823.CodecDecodeSelf(d) @@ -47796,7 +47612,7 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { yyv3820 = yyv3820[:yyj3820] yyc3820 = true } else if yyj3820 == 0 && yyv3820 == nil { - yyv3820 = []EnvVar{} + yyv3820 = []PersistentVolume{} yyc3820 = true } } @@ -47806,7 +47622,7 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } -func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -47819,7 +47635,7 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47829,7 +47645,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco var yyc3826 bool if yyl3826 == 0 { if yyv3826 == nil { - yyv3826 = []VolumeMount{} + yyv3826 = []PersistentVolumeClaim{} yyc3826 = true } else if len(yyv3826) != 0 { yyv3826 = yyv3826[:0] @@ -47842,15 +47658,15 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco yyrg3826 := len(yyv3826) > 0 yyv23826 := yyv3826 - yyrl3826, yyrt3826 = z.DecInferLen(yyl3826, z.DecBasicHandle().MaxInitLen, 40) + yyrl3826, yyrt3826 = z.DecInferLen(yyl3826, z.DecBasicHandle().MaxInitLen, 296) if yyrt3826 { if yyrl3826 <= cap(yyv3826) { yyv3826 = yyv3826[:yyrl3826] } else { - yyv3826 = make([]VolumeMount, yyrl3826) + yyv3826 = make([]PersistentVolumeClaim, yyrl3826) } } else { - yyv3826 = make([]VolumeMount, yyrl3826) + yyv3826 = make([]PersistentVolumeClaim, yyrl3826) } yyc3826 = true yyrr3826 = len(yyv3826) @@ -47865,7 +47681,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco for ; yyj3826 < yyrr3826; yyj3826++ { yyh3826.ElemContainerState(yyj3826) if r.TryDecodeAsNil() { - yyv3826[yyj3826] = VolumeMount{} + yyv3826[yyj3826] = PersistentVolumeClaim{} } else { yyv3827 := &yyv3826[yyj3826] yyv3827.CodecDecodeSelf(d) @@ -47874,10 +47690,10 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } if yyrt3826 { for ; yyj3826 < yyl3826; yyj3826++ { - yyv3826 = append(yyv3826, VolumeMount{}) + yyv3826 = append(yyv3826, PersistentVolumeClaim{}) yyh3826.ElemContainerState(yyj3826) if r.TryDecodeAsNil() { - yyv3826[yyj3826] = VolumeMount{} + yyv3826[yyj3826] = PersistentVolumeClaim{} } else { yyv3828 := &yyv3826[yyj3826] yyv3828.CodecDecodeSelf(d) @@ -47891,13 +47707,13 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco for ; !r.CheckBreak(); yyj3826++ { if yyj3826 >= len(yyv3826) { - yyv3826 = append(yyv3826, VolumeMount{}) // var yyz3826 VolumeMount + yyv3826 = append(yyv3826, PersistentVolumeClaim{}) // var yyz3826 PersistentVolumeClaim yyc3826 = true } yyh3826.ElemContainerState(yyj3826) if yyj3826 < len(yyv3826) { if r.TryDecodeAsNil() { - yyv3826[yyj3826] = VolumeMount{} + yyv3826[yyj3826] = PersistentVolumeClaim{} } else { yyv3829 := &yyv3826[yyj3826] yyv3829.CodecDecodeSelf(d) @@ -47912,7 +47728,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco yyv3826 = yyv3826[:yyj3826] yyc3826 = true } else if yyj3826 == 0 && yyv3826 == nil { - yyv3826 = []VolumeMount{} + yyv3826 = []PersistentVolumeClaim{} yyc3826 = true } } @@ -47922,7 +47738,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } -func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -47935,7 +47751,7 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47945,7 +47761,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code var yyc3832 bool if yyl3832 == 0 { if yyv3832 == nil { - yyv3832 = []NodeSelectorTerm{} + yyv3832 = []HTTPHeader{} yyc3832 = true } else if len(yyv3832) != 0 { yyv3832 = yyv3832[:0] @@ -47958,15 +47774,15 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code yyrg3832 := len(yyv3832) > 0 yyv23832 := yyv3832 - yyrl3832, yyrt3832 = z.DecInferLen(yyl3832, z.DecBasicHandle().MaxInitLen, 24) + yyrl3832, yyrt3832 = z.DecInferLen(yyl3832, z.DecBasicHandle().MaxInitLen, 32) if yyrt3832 { if yyrl3832 <= cap(yyv3832) { yyv3832 = yyv3832[:yyrl3832] } else { - yyv3832 = make([]NodeSelectorTerm, yyrl3832) + yyv3832 = make([]HTTPHeader, yyrl3832) } } else { - yyv3832 = make([]NodeSelectorTerm, yyrl3832) + yyv3832 = make([]HTTPHeader, yyrl3832) } yyc3832 = true yyrr3832 = len(yyv3832) @@ -47981,7 +47797,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code for ; yyj3832 < yyrr3832; yyj3832++ { yyh3832.ElemContainerState(yyj3832) if r.TryDecodeAsNil() { - yyv3832[yyj3832] = NodeSelectorTerm{} + yyv3832[yyj3832] = HTTPHeader{} } else { yyv3833 := &yyv3832[yyj3832] yyv3833.CodecDecodeSelf(d) @@ -47990,10 +47806,10 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } if yyrt3832 { for ; yyj3832 < yyl3832; yyj3832++ { - yyv3832 = append(yyv3832, NodeSelectorTerm{}) + yyv3832 = append(yyv3832, HTTPHeader{}) yyh3832.ElemContainerState(yyj3832) if r.TryDecodeAsNil() { - yyv3832[yyj3832] = NodeSelectorTerm{} + yyv3832[yyj3832] = HTTPHeader{} } else { yyv3834 := &yyv3832[yyj3832] yyv3834.CodecDecodeSelf(d) @@ -48007,13 +47823,13 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code for ; !r.CheckBreak(); yyj3832++ { if yyj3832 >= len(yyv3832) { - yyv3832 = append(yyv3832, NodeSelectorTerm{}) // var yyz3832 NodeSelectorTerm + yyv3832 = append(yyv3832, HTTPHeader{}) // var yyz3832 HTTPHeader yyc3832 = true } yyh3832.ElemContainerState(yyj3832) if yyj3832 < len(yyv3832) { if r.TryDecodeAsNil() { - yyv3832[yyj3832] = NodeSelectorTerm{} + yyv3832[yyj3832] = HTTPHeader{} } else { yyv3835 := &yyv3832[yyj3832] yyv3835.CodecDecodeSelf(d) @@ -48028,7 +47844,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code yyv3832 = yyv3832[:yyj3832] yyc3832 = true } else if yyj3832 == 0 && yyv3832 == nil { - yyv3832 = []NodeSelectorTerm{} + yyv3832 = []HTTPHeader{} yyc3832 = true } } @@ -48038,15 +47854,586 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } -func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequirement, 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 _, yyv3836 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3837 := &yyv3836 - yy3837.CodecEncodeSelf(e) + yyv3836.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 + + yyv3837 := *v + yyh3837, yyl3837 := z.DecSliceHelperStart() + var yyc3837 bool + if yyl3837 == 0 { + if yyv3837 == nil { + yyv3837 = []Capability{} + yyc3837 = true + } else if len(yyv3837) != 0 { + yyv3837 = yyv3837[:0] + yyc3837 = true + } + } else if yyl3837 > 0 { + var yyrr3837, yyrl3837 int + var yyrt3837 bool + if yyl3837 > cap(yyv3837) { + + yyrl3837, yyrt3837 = z.DecInferLen(yyl3837, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3837 { + if yyrl3837 <= cap(yyv3837) { + yyv3837 = yyv3837[:yyrl3837] + } else { + yyv3837 = make([]Capability, yyrl3837) + } + } else { + yyv3837 = make([]Capability, yyrl3837) + } + yyc3837 = true + yyrr3837 = len(yyv3837) + } else if yyl3837 != len(yyv3837) { + yyv3837 = yyv3837[:yyl3837] + yyc3837 = true + } + yyj3837 := 0 + for ; yyj3837 < yyrr3837; yyj3837++ { + yyh3837.ElemContainerState(yyj3837) + if r.TryDecodeAsNil() { + yyv3837[yyj3837] = "" + } else { + yyv3837[yyj3837] = Capability(r.DecodeString()) + } + + } + if yyrt3837 { + for ; yyj3837 < yyl3837; yyj3837++ { + yyv3837 = append(yyv3837, "") + yyh3837.ElemContainerState(yyj3837) + if r.TryDecodeAsNil() { + yyv3837[yyj3837] = "" + } else { + yyv3837[yyj3837] = Capability(r.DecodeString()) + } + + } + } + + } else { + yyj3837 := 0 + for ; !r.CheckBreak(); yyj3837++ { + + if yyj3837 >= len(yyv3837) { + yyv3837 = append(yyv3837, "") // var yyz3837 Capability + yyc3837 = true + } + yyh3837.ElemContainerState(yyj3837) + if yyj3837 < len(yyv3837) { + if r.TryDecodeAsNil() { + yyv3837[yyj3837] = "" + } else { + yyv3837[yyj3837] = Capability(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj3837 < len(yyv3837) { + yyv3837 = yyv3837[:yyj3837] + yyc3837 = true + } else if yyj3837 == 0 && yyv3837 == nil { + yyv3837 = []Capability{} + yyc3837 = true + } + } + yyh3837.End() + if yyc3837 { + *v = yyv3837 + } +} + +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 _, yyv3841 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3842 := &yyv3841 + yy3842.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3843 := *v + yyh3843, yyl3843 := z.DecSliceHelperStart() + var yyc3843 bool + if yyl3843 == 0 { + if yyv3843 == nil { + yyv3843 = []ContainerPort{} + yyc3843 = true + } else if len(yyv3843) != 0 { + yyv3843 = yyv3843[:0] + yyc3843 = true + } + } else if yyl3843 > 0 { + var yyrr3843, yyrl3843 int + var yyrt3843 bool + if yyl3843 > cap(yyv3843) { + + yyrg3843 := len(yyv3843) > 0 + yyv23843 := yyv3843 + yyrl3843, yyrt3843 = z.DecInferLen(yyl3843, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3843 { + if yyrl3843 <= cap(yyv3843) { + yyv3843 = yyv3843[:yyrl3843] + } else { + yyv3843 = make([]ContainerPort, yyrl3843) + } + } else { + yyv3843 = make([]ContainerPort, yyrl3843) + } + yyc3843 = true + yyrr3843 = len(yyv3843) + if yyrg3843 { + copy(yyv3843, yyv23843) + } + } else if yyl3843 != len(yyv3843) { + yyv3843 = yyv3843[:yyl3843] + yyc3843 = true + } + yyj3843 := 0 + for ; yyj3843 < yyrr3843; yyj3843++ { + yyh3843.ElemContainerState(yyj3843) + if r.TryDecodeAsNil() { + yyv3843[yyj3843] = ContainerPort{} + } else { + yyv3844 := &yyv3843[yyj3843] + yyv3844.CodecDecodeSelf(d) + } + + } + if yyrt3843 { + for ; yyj3843 < yyl3843; yyj3843++ { + yyv3843 = append(yyv3843, ContainerPort{}) + yyh3843.ElemContainerState(yyj3843) + if r.TryDecodeAsNil() { + yyv3843[yyj3843] = ContainerPort{} + } else { + yyv3845 := &yyv3843[yyj3843] + yyv3845.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3843 := 0 + for ; !r.CheckBreak(); yyj3843++ { + + if yyj3843 >= len(yyv3843) { + yyv3843 = append(yyv3843, ContainerPort{}) // var yyz3843 ContainerPort + yyc3843 = true + } + yyh3843.ElemContainerState(yyj3843) + if yyj3843 < len(yyv3843) { + if r.TryDecodeAsNil() { + yyv3843[yyj3843] = ContainerPort{} + } else { + yyv3846 := &yyv3843[yyj3843] + yyv3846.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3843 < len(yyv3843) { + yyv3843 = yyv3843[:yyj3843] + yyc3843 = true + } else if yyj3843 == 0 && yyv3843 == nil { + yyv3843 = []ContainerPort{} + yyc3843 = true + } + } + yyh3843.End() + if yyc3843 { + *v = yyv3843 + } +} + +func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3847 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3848 := &yyv3847 + yy3848.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3849 := *v + yyh3849, yyl3849 := z.DecSliceHelperStart() + var yyc3849 bool + if yyl3849 == 0 { + if yyv3849 == nil { + yyv3849 = []EnvVar{} + yyc3849 = true + } else if len(yyv3849) != 0 { + yyv3849 = yyv3849[:0] + yyc3849 = true + } + } else if yyl3849 > 0 { + var yyrr3849, yyrl3849 int + var yyrt3849 bool + if yyl3849 > cap(yyv3849) { + + yyrg3849 := len(yyv3849) > 0 + yyv23849 := yyv3849 + yyrl3849, yyrt3849 = z.DecInferLen(yyl3849, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3849 { + if yyrl3849 <= cap(yyv3849) { + yyv3849 = yyv3849[:yyrl3849] + } else { + yyv3849 = make([]EnvVar, yyrl3849) + } + } else { + yyv3849 = make([]EnvVar, yyrl3849) + } + yyc3849 = true + yyrr3849 = len(yyv3849) + if yyrg3849 { + copy(yyv3849, yyv23849) + } + } else if yyl3849 != len(yyv3849) { + yyv3849 = yyv3849[:yyl3849] + yyc3849 = true + } + yyj3849 := 0 + for ; yyj3849 < yyrr3849; yyj3849++ { + yyh3849.ElemContainerState(yyj3849) + if r.TryDecodeAsNil() { + yyv3849[yyj3849] = EnvVar{} + } else { + yyv3850 := &yyv3849[yyj3849] + yyv3850.CodecDecodeSelf(d) + } + + } + if yyrt3849 { + for ; yyj3849 < yyl3849; yyj3849++ { + yyv3849 = append(yyv3849, EnvVar{}) + yyh3849.ElemContainerState(yyj3849) + if r.TryDecodeAsNil() { + yyv3849[yyj3849] = EnvVar{} + } else { + yyv3851 := &yyv3849[yyj3849] + yyv3851.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3849 := 0 + for ; !r.CheckBreak(); yyj3849++ { + + if yyj3849 >= len(yyv3849) { + yyv3849 = append(yyv3849, EnvVar{}) // var yyz3849 EnvVar + yyc3849 = true + } + yyh3849.ElemContainerState(yyj3849) + if yyj3849 < len(yyv3849) { + if r.TryDecodeAsNil() { + yyv3849[yyj3849] = EnvVar{} + } else { + yyv3852 := &yyv3849[yyj3849] + yyv3852.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3849 < len(yyv3849) { + yyv3849 = yyv3849[:yyj3849] + yyc3849 = true + } else if yyj3849 == 0 && yyv3849 == nil { + yyv3849 = []EnvVar{} + yyc3849 = true + } + } + yyh3849.End() + if yyc3849 { + *v = yyv3849 + } +} + +func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3853 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3854 := &yyv3853 + yy3854.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3855 := *v + yyh3855, yyl3855 := z.DecSliceHelperStart() + var yyc3855 bool + if yyl3855 == 0 { + if yyv3855 == nil { + yyv3855 = []VolumeMount{} + yyc3855 = true + } else if len(yyv3855) != 0 { + yyv3855 = yyv3855[:0] + yyc3855 = true + } + } else if yyl3855 > 0 { + var yyrr3855, yyrl3855 int + var yyrt3855 bool + if yyl3855 > cap(yyv3855) { + + yyrg3855 := len(yyv3855) > 0 + yyv23855 := yyv3855 + yyrl3855, yyrt3855 = z.DecInferLen(yyl3855, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3855 { + if yyrl3855 <= cap(yyv3855) { + yyv3855 = yyv3855[:yyrl3855] + } else { + yyv3855 = make([]VolumeMount, yyrl3855) + } + } else { + yyv3855 = make([]VolumeMount, yyrl3855) + } + yyc3855 = true + yyrr3855 = len(yyv3855) + if yyrg3855 { + copy(yyv3855, yyv23855) + } + } else if yyl3855 != len(yyv3855) { + yyv3855 = yyv3855[:yyl3855] + yyc3855 = true + } + yyj3855 := 0 + for ; yyj3855 < yyrr3855; yyj3855++ { + yyh3855.ElemContainerState(yyj3855) + if r.TryDecodeAsNil() { + yyv3855[yyj3855] = VolumeMount{} + } else { + yyv3856 := &yyv3855[yyj3855] + yyv3856.CodecDecodeSelf(d) + } + + } + if yyrt3855 { + for ; yyj3855 < yyl3855; yyj3855++ { + yyv3855 = append(yyv3855, VolumeMount{}) + yyh3855.ElemContainerState(yyj3855) + if r.TryDecodeAsNil() { + yyv3855[yyj3855] = VolumeMount{} + } else { + yyv3857 := &yyv3855[yyj3855] + yyv3857.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3855 := 0 + for ; !r.CheckBreak(); yyj3855++ { + + if yyj3855 >= len(yyv3855) { + yyv3855 = append(yyv3855, VolumeMount{}) // var yyz3855 VolumeMount + yyc3855 = true + } + yyh3855.ElemContainerState(yyj3855) + if yyj3855 < len(yyv3855) { + if r.TryDecodeAsNil() { + yyv3855[yyj3855] = VolumeMount{} + } else { + yyv3858 := &yyv3855[yyj3855] + yyv3858.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3855 < len(yyv3855) { + yyv3855 = yyv3855[:yyj3855] + yyc3855 = true + } else if yyj3855 == 0 && yyv3855 == nil { + yyv3855 = []VolumeMount{} + yyc3855 = true + } + } + yyh3855.End() + if yyc3855 { + *v = yyv3855 + } +} + +func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3859 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3860 := &yyv3859 + yy3860.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3861 := *v + yyh3861, yyl3861 := z.DecSliceHelperStart() + var yyc3861 bool + if yyl3861 == 0 { + if yyv3861 == nil { + yyv3861 = []NodeSelectorTerm{} + yyc3861 = true + } else if len(yyv3861) != 0 { + yyv3861 = yyv3861[:0] + yyc3861 = true + } + } else if yyl3861 > 0 { + var yyrr3861, yyrl3861 int + var yyrt3861 bool + if yyl3861 > cap(yyv3861) { + + yyrg3861 := len(yyv3861) > 0 + yyv23861 := yyv3861 + yyrl3861, yyrt3861 = z.DecInferLen(yyl3861, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3861 { + if yyrl3861 <= cap(yyv3861) { + yyv3861 = yyv3861[:yyrl3861] + } else { + yyv3861 = make([]NodeSelectorTerm, yyrl3861) + } + } else { + yyv3861 = make([]NodeSelectorTerm, yyrl3861) + } + yyc3861 = true + yyrr3861 = len(yyv3861) + if yyrg3861 { + copy(yyv3861, yyv23861) + } + } else if yyl3861 != len(yyv3861) { + yyv3861 = yyv3861[:yyl3861] + yyc3861 = true + } + yyj3861 := 0 + for ; yyj3861 < yyrr3861; yyj3861++ { + yyh3861.ElemContainerState(yyj3861) + if r.TryDecodeAsNil() { + yyv3861[yyj3861] = NodeSelectorTerm{} + } else { + yyv3862 := &yyv3861[yyj3861] + yyv3862.CodecDecodeSelf(d) + } + + } + if yyrt3861 { + for ; yyj3861 < yyl3861; yyj3861++ { + yyv3861 = append(yyv3861, NodeSelectorTerm{}) + yyh3861.ElemContainerState(yyj3861) + if r.TryDecodeAsNil() { + yyv3861[yyj3861] = NodeSelectorTerm{} + } else { + yyv3863 := &yyv3861[yyj3861] + yyv3863.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3861 := 0 + for ; !r.CheckBreak(); yyj3861++ { + + if yyj3861 >= len(yyv3861) { + yyv3861 = append(yyv3861, NodeSelectorTerm{}) // var yyz3861 NodeSelectorTerm + yyc3861 = true + } + yyh3861.ElemContainerState(yyj3861) + if yyj3861 < len(yyv3861) { + if r.TryDecodeAsNil() { + yyv3861[yyj3861] = NodeSelectorTerm{} + } else { + yyv3864 := &yyv3861[yyj3861] + yyv3864.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3861 < len(yyv3861) { + yyv3861 = yyv3861[:yyj3861] + yyc3861 = true + } else if yyj3861 == 0 && yyv3861 == nil { + yyv3861 = []NodeSelectorTerm{} + yyc3861 = true + } + } + yyh3861.End() + if yyc3861 { + *v = yyv3861 + } +} + +func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequirement, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3865 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3866 := &yyv3865 + yy3866.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48056,83 +48443,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3838 := *v - yyh3838, yyl3838 := z.DecSliceHelperStart() - var yyc3838 bool - if yyl3838 == 0 { - if yyv3838 == nil { - yyv3838 = []NodeSelectorRequirement{} - yyc3838 = true - } else if len(yyv3838) != 0 { - yyv3838 = yyv3838[:0] - yyc3838 = true + yyv3867 := *v + yyh3867, yyl3867 := z.DecSliceHelperStart() + var yyc3867 bool + if yyl3867 == 0 { + if yyv3867 == nil { + yyv3867 = []NodeSelectorRequirement{} + yyc3867 = true + } else if len(yyv3867) != 0 { + yyv3867 = yyv3867[:0] + yyc3867 = true } - } else if yyl3838 > 0 { - var yyrr3838, yyrl3838 int - var yyrt3838 bool - if yyl3838 > cap(yyv3838) { + } else if yyl3867 > 0 { + var yyrr3867, yyrl3867 int + var yyrt3867 bool + if yyl3867 > cap(yyv3867) { - yyrg3838 := len(yyv3838) > 0 - yyv23838 := yyv3838 - yyrl3838, yyrt3838 = z.DecInferLen(yyl3838, z.DecBasicHandle().MaxInitLen, 56) - if yyrt3838 { - if yyrl3838 <= cap(yyv3838) { - yyv3838 = yyv3838[:yyrl3838] + yyrg3867 := len(yyv3867) > 0 + yyv23867 := yyv3867 + yyrl3867, yyrt3867 = z.DecInferLen(yyl3867, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3867 { + if yyrl3867 <= cap(yyv3867) { + yyv3867 = yyv3867[:yyrl3867] } else { - yyv3838 = make([]NodeSelectorRequirement, yyrl3838) + yyv3867 = make([]NodeSelectorRequirement, yyrl3867) } } else { - yyv3838 = make([]NodeSelectorRequirement, yyrl3838) + yyv3867 = make([]NodeSelectorRequirement, yyrl3867) } - yyc3838 = true - yyrr3838 = len(yyv3838) - if yyrg3838 { - copy(yyv3838, yyv23838) + yyc3867 = true + yyrr3867 = len(yyv3867) + if yyrg3867 { + copy(yyv3867, yyv23867) } - } else if yyl3838 != len(yyv3838) { - yyv3838 = yyv3838[:yyl3838] - yyc3838 = true + } else if yyl3867 != len(yyv3867) { + yyv3867 = yyv3867[:yyl3867] + yyc3867 = true } - yyj3838 := 0 - for ; yyj3838 < yyrr3838; yyj3838++ { - yyh3838.ElemContainerState(yyj3838) + yyj3867 := 0 + for ; yyj3867 < yyrr3867; yyj3867++ { + yyh3867.ElemContainerState(yyj3867) if r.TryDecodeAsNil() { - yyv3838[yyj3838] = NodeSelectorRequirement{} + yyv3867[yyj3867] = NodeSelectorRequirement{} } else { - yyv3839 := &yyv3838[yyj3838] - yyv3839.CodecDecodeSelf(d) + yyv3868 := &yyv3867[yyj3867] + yyv3868.CodecDecodeSelf(d) } } - if yyrt3838 { - for ; yyj3838 < yyl3838; yyj3838++ { - yyv3838 = append(yyv3838, NodeSelectorRequirement{}) - yyh3838.ElemContainerState(yyj3838) + if yyrt3867 { + for ; yyj3867 < yyl3867; yyj3867++ { + yyv3867 = append(yyv3867, NodeSelectorRequirement{}) + yyh3867.ElemContainerState(yyj3867) if r.TryDecodeAsNil() { - yyv3838[yyj3838] = NodeSelectorRequirement{} + yyv3867[yyj3867] = NodeSelectorRequirement{} } else { - yyv3840 := &yyv3838[yyj3838] - yyv3840.CodecDecodeSelf(d) + yyv3869 := &yyv3867[yyj3867] + yyv3869.CodecDecodeSelf(d) } } } } else { - yyj3838 := 0 - for ; !r.CheckBreak(); yyj3838++ { + yyj3867 := 0 + for ; !r.CheckBreak(); yyj3867++ { - if yyj3838 >= len(yyv3838) { - yyv3838 = append(yyv3838, NodeSelectorRequirement{}) // var yyz3838 NodeSelectorRequirement - yyc3838 = true + if yyj3867 >= len(yyv3867) { + yyv3867 = append(yyv3867, NodeSelectorRequirement{}) // var yyz3867 NodeSelectorRequirement + yyc3867 = true } - yyh3838.ElemContainerState(yyj3838) - if yyj3838 < len(yyv3838) { + yyh3867.ElemContainerState(yyj3867) + if yyj3867 < len(yyv3867) { if r.TryDecodeAsNil() { - yyv3838[yyj3838] = NodeSelectorRequirement{} + yyv3867[yyj3867] = NodeSelectorRequirement{} } else { - yyv3841 := &yyv3838[yyj3838] - yyv3841.CodecDecodeSelf(d) + yyv3870 := &yyv3867[yyj3867] + yyv3870.CodecDecodeSelf(d) } } else { @@ -48140,17 +48527,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj3838 < len(yyv3838) { - yyv3838 = yyv3838[:yyj3838] - yyc3838 = true - } else if yyj3838 == 0 && yyv3838 == nil { - yyv3838 = []NodeSelectorRequirement{} - yyc3838 = true + if yyj3867 < len(yyv3867) { + yyv3867 = yyv3867[:yyj3867] + yyc3867 = true + } else if yyj3867 == 0 && yyv3867 == nil { + yyv3867 = []NodeSelectorRequirement{} + yyc3867 = true } } - yyh3838.End() - if yyc3838 { - *v = yyv3838 + yyh3867.End() + if yyc3867 { + *v = yyv3867 } } @@ -48159,10 +48546,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3842 := range v { + for _, yyv3871 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3843 := &yyv3842 - yy3843.CodecEncodeSelf(e) + yy3872 := &yyv3871 + yy3872.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48172,83 +48559,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3844 := *v - yyh3844, yyl3844 := z.DecSliceHelperStart() - var yyc3844 bool - if yyl3844 == 0 { - if yyv3844 == nil { - yyv3844 = []PreferredSchedulingTerm{} - yyc3844 = true - } else if len(yyv3844) != 0 { - yyv3844 = yyv3844[:0] - yyc3844 = true + yyv3873 := *v + yyh3873, yyl3873 := z.DecSliceHelperStart() + var yyc3873 bool + if yyl3873 == 0 { + if yyv3873 == nil { + yyv3873 = []PreferredSchedulingTerm{} + yyc3873 = true + } else if len(yyv3873) != 0 { + yyv3873 = yyv3873[:0] + yyc3873 = true } - } else if yyl3844 > 0 { - var yyrr3844, yyrl3844 int - var yyrt3844 bool - if yyl3844 > cap(yyv3844) { + } else if yyl3873 > 0 { + var yyrr3873, yyrl3873 int + var yyrt3873 bool + if yyl3873 > cap(yyv3873) { - yyrg3844 := len(yyv3844) > 0 - yyv23844 := yyv3844 - yyrl3844, yyrt3844 = z.DecInferLen(yyl3844, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3844 { - if yyrl3844 <= cap(yyv3844) { - yyv3844 = yyv3844[:yyrl3844] + yyrg3873 := len(yyv3873) > 0 + yyv23873 := yyv3873 + yyrl3873, yyrt3873 = z.DecInferLen(yyl3873, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3873 { + if yyrl3873 <= cap(yyv3873) { + yyv3873 = yyv3873[:yyrl3873] } else { - yyv3844 = make([]PreferredSchedulingTerm, yyrl3844) + yyv3873 = make([]PreferredSchedulingTerm, yyrl3873) } } else { - yyv3844 = make([]PreferredSchedulingTerm, yyrl3844) + yyv3873 = make([]PreferredSchedulingTerm, yyrl3873) } - yyc3844 = true - yyrr3844 = len(yyv3844) - if yyrg3844 { - copy(yyv3844, yyv23844) + yyc3873 = true + yyrr3873 = len(yyv3873) + if yyrg3873 { + copy(yyv3873, yyv23873) } - } else if yyl3844 != len(yyv3844) { - yyv3844 = yyv3844[:yyl3844] - yyc3844 = true + } else if yyl3873 != len(yyv3873) { + yyv3873 = yyv3873[:yyl3873] + yyc3873 = true } - yyj3844 := 0 - for ; yyj3844 < yyrr3844; yyj3844++ { - yyh3844.ElemContainerState(yyj3844) + yyj3873 := 0 + for ; yyj3873 < yyrr3873; yyj3873++ { + yyh3873.ElemContainerState(yyj3873) if r.TryDecodeAsNil() { - yyv3844[yyj3844] = PreferredSchedulingTerm{} + yyv3873[yyj3873] = PreferredSchedulingTerm{} } else { - yyv3845 := &yyv3844[yyj3844] - yyv3845.CodecDecodeSelf(d) + yyv3874 := &yyv3873[yyj3873] + yyv3874.CodecDecodeSelf(d) } } - if yyrt3844 { - for ; yyj3844 < yyl3844; yyj3844++ { - yyv3844 = append(yyv3844, PreferredSchedulingTerm{}) - yyh3844.ElemContainerState(yyj3844) + if yyrt3873 { + for ; yyj3873 < yyl3873; yyj3873++ { + yyv3873 = append(yyv3873, PreferredSchedulingTerm{}) + yyh3873.ElemContainerState(yyj3873) if r.TryDecodeAsNil() { - yyv3844[yyj3844] = PreferredSchedulingTerm{} + yyv3873[yyj3873] = PreferredSchedulingTerm{} } else { - yyv3846 := &yyv3844[yyj3844] - yyv3846.CodecDecodeSelf(d) + yyv3875 := &yyv3873[yyj3873] + yyv3875.CodecDecodeSelf(d) } } } } else { - yyj3844 := 0 - for ; !r.CheckBreak(); yyj3844++ { + yyj3873 := 0 + for ; !r.CheckBreak(); yyj3873++ { - if yyj3844 >= len(yyv3844) { - yyv3844 = append(yyv3844, PreferredSchedulingTerm{}) // var yyz3844 PreferredSchedulingTerm - yyc3844 = true + if yyj3873 >= len(yyv3873) { + yyv3873 = append(yyv3873, PreferredSchedulingTerm{}) // var yyz3873 PreferredSchedulingTerm + yyc3873 = true } - yyh3844.ElemContainerState(yyj3844) - if yyj3844 < len(yyv3844) { + yyh3873.ElemContainerState(yyj3873) + if yyj3873 < len(yyv3873) { if r.TryDecodeAsNil() { - yyv3844[yyj3844] = PreferredSchedulingTerm{} + yyv3873[yyj3873] = PreferredSchedulingTerm{} } else { - yyv3847 := &yyv3844[yyj3844] - yyv3847.CodecDecodeSelf(d) + yyv3876 := &yyv3873[yyj3873] + yyv3876.CodecDecodeSelf(d) } } else { @@ -48256,17 +48643,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj3844 < len(yyv3844) { - yyv3844 = yyv3844[:yyj3844] - yyc3844 = true - } else if yyj3844 == 0 && yyv3844 == nil { - yyv3844 = []PreferredSchedulingTerm{} - yyc3844 = true + if yyj3873 < len(yyv3873) { + yyv3873 = yyv3873[:yyj3873] + yyc3873 = true + } else if yyj3873 == 0 && yyv3873 == nil { + yyv3873 = []PreferredSchedulingTerm{} + yyc3873 = true } } - yyh3844.End() - if yyc3844 { - *v = yyv3844 + yyh3873.End() + if yyc3873 { + *v = yyv3873 } } @@ -48275,10 +48662,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3848 := range v { + for _, yyv3877 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3849 := &yyv3848 - yy3849.CodecEncodeSelf(e) + yy3878 := &yyv3877 + yy3878.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48288,83 +48675,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3850 := *v - yyh3850, yyl3850 := z.DecSliceHelperStart() - var yyc3850 bool - if yyl3850 == 0 { - if yyv3850 == nil { - yyv3850 = []Volume{} - yyc3850 = true - } else if len(yyv3850) != 0 { - yyv3850 = yyv3850[:0] - yyc3850 = true + yyv3879 := *v + yyh3879, yyl3879 := z.DecSliceHelperStart() + var yyc3879 bool + if yyl3879 == 0 { + if yyv3879 == nil { + yyv3879 = []Volume{} + yyc3879 = true + } else if len(yyv3879) != 0 { + yyv3879 = yyv3879[:0] + yyc3879 = true } - } else if yyl3850 > 0 { - var yyrr3850, yyrl3850 int - var yyrt3850 bool - if yyl3850 > cap(yyv3850) { + } else if yyl3879 > 0 { + var yyrr3879, yyrl3879 int + var yyrt3879 bool + if yyl3879 > cap(yyv3879) { - yyrg3850 := len(yyv3850) > 0 - yyv23850 := yyv3850 - yyrl3850, yyrt3850 = z.DecInferLen(yyl3850, z.DecBasicHandle().MaxInitLen, 152) - if yyrt3850 { - if yyrl3850 <= cap(yyv3850) { - yyv3850 = yyv3850[:yyrl3850] + yyrg3879 := len(yyv3879) > 0 + yyv23879 := yyv3879 + yyrl3879, yyrt3879 = z.DecInferLen(yyl3879, z.DecBasicHandle().MaxInitLen, 152) + if yyrt3879 { + if yyrl3879 <= cap(yyv3879) { + yyv3879 = yyv3879[:yyrl3879] } else { - yyv3850 = make([]Volume, yyrl3850) + yyv3879 = make([]Volume, yyrl3879) } } else { - yyv3850 = make([]Volume, yyrl3850) + yyv3879 = make([]Volume, yyrl3879) } - yyc3850 = true - yyrr3850 = len(yyv3850) - if yyrg3850 { - copy(yyv3850, yyv23850) + yyc3879 = true + yyrr3879 = len(yyv3879) + if yyrg3879 { + copy(yyv3879, yyv23879) } - } else if yyl3850 != len(yyv3850) { - yyv3850 = yyv3850[:yyl3850] - yyc3850 = true + } else if yyl3879 != len(yyv3879) { + yyv3879 = yyv3879[:yyl3879] + yyc3879 = true } - yyj3850 := 0 - for ; yyj3850 < yyrr3850; yyj3850++ { - yyh3850.ElemContainerState(yyj3850) + yyj3879 := 0 + for ; yyj3879 < yyrr3879; yyj3879++ { + yyh3879.ElemContainerState(yyj3879) if r.TryDecodeAsNil() { - yyv3850[yyj3850] = Volume{} + yyv3879[yyj3879] = Volume{} } else { - yyv3851 := &yyv3850[yyj3850] - yyv3851.CodecDecodeSelf(d) + yyv3880 := &yyv3879[yyj3879] + yyv3880.CodecDecodeSelf(d) } } - if yyrt3850 { - for ; yyj3850 < yyl3850; yyj3850++ { - yyv3850 = append(yyv3850, Volume{}) - yyh3850.ElemContainerState(yyj3850) + if yyrt3879 { + for ; yyj3879 < yyl3879; yyj3879++ { + yyv3879 = append(yyv3879, Volume{}) + yyh3879.ElemContainerState(yyj3879) if r.TryDecodeAsNil() { - yyv3850[yyj3850] = Volume{} + yyv3879[yyj3879] = Volume{} } else { - yyv3852 := &yyv3850[yyj3850] - yyv3852.CodecDecodeSelf(d) + yyv3881 := &yyv3879[yyj3879] + yyv3881.CodecDecodeSelf(d) } } } } else { - yyj3850 := 0 - for ; !r.CheckBreak(); yyj3850++ { + yyj3879 := 0 + for ; !r.CheckBreak(); yyj3879++ { - if yyj3850 >= len(yyv3850) { - yyv3850 = append(yyv3850, Volume{}) // var yyz3850 Volume - yyc3850 = true + if yyj3879 >= len(yyv3879) { + yyv3879 = append(yyv3879, Volume{}) // var yyz3879 Volume + yyc3879 = true } - yyh3850.ElemContainerState(yyj3850) - if yyj3850 < len(yyv3850) { + yyh3879.ElemContainerState(yyj3879) + if yyj3879 < len(yyv3879) { if r.TryDecodeAsNil() { - yyv3850[yyj3850] = Volume{} + yyv3879[yyj3879] = Volume{} } else { - yyv3853 := &yyv3850[yyj3850] - yyv3853.CodecDecodeSelf(d) + yyv3882 := &yyv3879[yyj3879] + yyv3882.CodecDecodeSelf(d) } } else { @@ -48372,17 +48759,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj3850 < len(yyv3850) { - yyv3850 = yyv3850[:yyj3850] - yyc3850 = true - } else if yyj3850 == 0 && yyv3850 == nil { - yyv3850 = []Volume{} - yyc3850 = true + if yyj3879 < len(yyv3879) { + yyv3879 = yyv3879[:yyj3879] + yyc3879 = true + } else if yyj3879 == 0 && yyv3879 == nil { + yyv3879 = []Volume{} + yyc3879 = true } } - yyh3850.End() - if yyc3850 { - *v = yyv3850 + yyh3879.End() + if yyc3879 { + *v = yyv3879 } } @@ -48391,10 +48778,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3854 := range v { + for _, yyv3883 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3855 := &yyv3854 - yy3855.CodecEncodeSelf(e) + yy3884 := &yyv3883 + yy3884.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48404,83 +48791,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3856 := *v - yyh3856, yyl3856 := z.DecSliceHelperStart() - var yyc3856 bool - if yyl3856 == 0 { - if yyv3856 == nil { - yyv3856 = []Container{} - yyc3856 = true - } else if len(yyv3856) != 0 { - yyv3856 = yyv3856[:0] - yyc3856 = true + yyv3885 := *v + yyh3885, yyl3885 := z.DecSliceHelperStart() + var yyc3885 bool + if yyl3885 == 0 { + if yyv3885 == nil { + yyv3885 = []Container{} + yyc3885 = true + } else if len(yyv3885) != 0 { + yyv3885 = yyv3885[:0] + yyc3885 = true } - } else if yyl3856 > 0 { - var yyrr3856, yyrl3856 int - var yyrt3856 bool - if yyl3856 > cap(yyv3856) { + } else if yyl3885 > 0 { + var yyrr3885, yyrl3885 int + var yyrt3885 bool + if yyl3885 > cap(yyv3885) { - yyrg3856 := len(yyv3856) > 0 - yyv23856 := yyv3856 - yyrl3856, yyrt3856 = z.DecInferLen(yyl3856, z.DecBasicHandle().MaxInitLen, 256) - if yyrt3856 { - if yyrl3856 <= cap(yyv3856) { - yyv3856 = yyv3856[:yyrl3856] + yyrg3885 := len(yyv3885) > 0 + yyv23885 := yyv3885 + yyrl3885, yyrt3885 = z.DecInferLen(yyl3885, z.DecBasicHandle().MaxInitLen, 256) + if yyrt3885 { + if yyrl3885 <= cap(yyv3885) { + yyv3885 = yyv3885[:yyrl3885] } else { - yyv3856 = make([]Container, yyrl3856) + yyv3885 = make([]Container, yyrl3885) } } else { - yyv3856 = make([]Container, yyrl3856) + yyv3885 = make([]Container, yyrl3885) } - yyc3856 = true - yyrr3856 = len(yyv3856) - if yyrg3856 { - copy(yyv3856, yyv23856) + yyc3885 = true + yyrr3885 = len(yyv3885) + if yyrg3885 { + copy(yyv3885, yyv23885) } - } else if yyl3856 != len(yyv3856) { - yyv3856 = yyv3856[:yyl3856] - yyc3856 = true + } else if yyl3885 != len(yyv3885) { + yyv3885 = yyv3885[:yyl3885] + yyc3885 = true } - yyj3856 := 0 - for ; yyj3856 < yyrr3856; yyj3856++ { - yyh3856.ElemContainerState(yyj3856) + yyj3885 := 0 + for ; yyj3885 < yyrr3885; yyj3885++ { + yyh3885.ElemContainerState(yyj3885) if r.TryDecodeAsNil() { - yyv3856[yyj3856] = Container{} + yyv3885[yyj3885] = Container{} } else { - yyv3857 := &yyv3856[yyj3856] - yyv3857.CodecDecodeSelf(d) + yyv3886 := &yyv3885[yyj3885] + yyv3886.CodecDecodeSelf(d) } } - if yyrt3856 { - for ; yyj3856 < yyl3856; yyj3856++ { - yyv3856 = append(yyv3856, Container{}) - yyh3856.ElemContainerState(yyj3856) + if yyrt3885 { + for ; yyj3885 < yyl3885; yyj3885++ { + yyv3885 = append(yyv3885, Container{}) + yyh3885.ElemContainerState(yyj3885) if r.TryDecodeAsNil() { - yyv3856[yyj3856] = Container{} + yyv3885[yyj3885] = Container{} } else { - yyv3858 := &yyv3856[yyj3856] - yyv3858.CodecDecodeSelf(d) + yyv3887 := &yyv3885[yyj3885] + yyv3887.CodecDecodeSelf(d) } } } } else { - yyj3856 := 0 - for ; !r.CheckBreak(); yyj3856++ { + yyj3885 := 0 + for ; !r.CheckBreak(); yyj3885++ { - if yyj3856 >= len(yyv3856) { - yyv3856 = append(yyv3856, Container{}) // var yyz3856 Container - yyc3856 = true + if yyj3885 >= len(yyv3885) { + yyv3885 = append(yyv3885, Container{}) // var yyz3885 Container + yyc3885 = true } - yyh3856.ElemContainerState(yyj3856) - if yyj3856 < len(yyv3856) { + yyh3885.ElemContainerState(yyj3885) + if yyj3885 < len(yyv3885) { if r.TryDecodeAsNil() { - yyv3856[yyj3856] = Container{} + yyv3885[yyj3885] = Container{} } else { - yyv3859 := &yyv3856[yyj3856] - yyv3859.CodecDecodeSelf(d) + yyv3888 := &yyv3885[yyj3885] + yyv3888.CodecDecodeSelf(d) } } else { @@ -48488,17 +48875,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj3856 < len(yyv3856) { - yyv3856 = yyv3856[:yyj3856] - yyc3856 = true - } else if yyj3856 == 0 && yyv3856 == nil { - yyv3856 = []Container{} - yyc3856 = true + if yyj3885 < len(yyv3885) { + yyv3885 = yyv3885[:yyj3885] + yyc3885 = true + } else if yyj3885 == 0 && yyv3885 == nil { + yyv3885 = []Container{} + yyc3885 = true } } - yyh3856.End() - if yyc3856 { - *v = yyv3856 + yyh3885.End() + if yyc3885 { + *v = yyv3885 } } @@ -48507,10 +48894,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3860 := range v { + for _, yyv3889 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3861 := &yyv3860 - yy3861.CodecEncodeSelf(e) + yy3890 := &yyv3889 + yy3890.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48520,83 +48907,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3862 := *v - yyh3862, yyl3862 := z.DecSliceHelperStart() - var yyc3862 bool - if yyl3862 == 0 { - if yyv3862 == nil { - yyv3862 = []LocalObjectReference{} - yyc3862 = true - } else if len(yyv3862) != 0 { - yyv3862 = yyv3862[:0] - yyc3862 = true + yyv3891 := *v + yyh3891, yyl3891 := z.DecSliceHelperStart() + var yyc3891 bool + if yyl3891 == 0 { + if yyv3891 == nil { + yyv3891 = []LocalObjectReference{} + yyc3891 = true + } else if len(yyv3891) != 0 { + yyv3891 = yyv3891[:0] + yyc3891 = true } - } else if yyl3862 > 0 { - var yyrr3862, yyrl3862 int - var yyrt3862 bool - if yyl3862 > cap(yyv3862) { + } else if yyl3891 > 0 { + var yyrr3891, yyrl3891 int + var yyrt3891 bool + if yyl3891 > cap(yyv3891) { - yyrg3862 := len(yyv3862) > 0 - yyv23862 := yyv3862 - yyrl3862, yyrt3862 = z.DecInferLen(yyl3862, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3862 { - if yyrl3862 <= cap(yyv3862) { - yyv3862 = yyv3862[:yyrl3862] + yyrg3891 := len(yyv3891) > 0 + yyv23891 := yyv3891 + yyrl3891, yyrt3891 = z.DecInferLen(yyl3891, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3891 { + if yyrl3891 <= cap(yyv3891) { + yyv3891 = yyv3891[:yyrl3891] } else { - yyv3862 = make([]LocalObjectReference, yyrl3862) + yyv3891 = make([]LocalObjectReference, yyrl3891) } } else { - yyv3862 = make([]LocalObjectReference, yyrl3862) + yyv3891 = make([]LocalObjectReference, yyrl3891) } - yyc3862 = true - yyrr3862 = len(yyv3862) - if yyrg3862 { - copy(yyv3862, yyv23862) + yyc3891 = true + yyrr3891 = len(yyv3891) + if yyrg3891 { + copy(yyv3891, yyv23891) } - } else if yyl3862 != len(yyv3862) { - yyv3862 = yyv3862[:yyl3862] - yyc3862 = true + } else if yyl3891 != len(yyv3891) { + yyv3891 = yyv3891[:yyl3891] + yyc3891 = true } - yyj3862 := 0 - for ; yyj3862 < yyrr3862; yyj3862++ { - yyh3862.ElemContainerState(yyj3862) + yyj3891 := 0 + for ; yyj3891 < yyrr3891; yyj3891++ { + yyh3891.ElemContainerState(yyj3891) if r.TryDecodeAsNil() { - yyv3862[yyj3862] = LocalObjectReference{} + yyv3891[yyj3891] = LocalObjectReference{} } else { - yyv3863 := &yyv3862[yyj3862] - yyv3863.CodecDecodeSelf(d) + yyv3892 := &yyv3891[yyj3891] + yyv3892.CodecDecodeSelf(d) } } - if yyrt3862 { - for ; yyj3862 < yyl3862; yyj3862++ { - yyv3862 = append(yyv3862, LocalObjectReference{}) - yyh3862.ElemContainerState(yyj3862) + if yyrt3891 { + for ; yyj3891 < yyl3891; yyj3891++ { + yyv3891 = append(yyv3891, LocalObjectReference{}) + yyh3891.ElemContainerState(yyj3891) if r.TryDecodeAsNil() { - yyv3862[yyj3862] = LocalObjectReference{} + yyv3891[yyj3891] = LocalObjectReference{} } else { - yyv3864 := &yyv3862[yyj3862] - yyv3864.CodecDecodeSelf(d) + yyv3893 := &yyv3891[yyj3891] + yyv3893.CodecDecodeSelf(d) } } } } else { - yyj3862 := 0 - for ; !r.CheckBreak(); yyj3862++ { + yyj3891 := 0 + for ; !r.CheckBreak(); yyj3891++ { - if yyj3862 >= len(yyv3862) { - yyv3862 = append(yyv3862, LocalObjectReference{}) // var yyz3862 LocalObjectReference - yyc3862 = true + if yyj3891 >= len(yyv3891) { + yyv3891 = append(yyv3891, LocalObjectReference{}) // var yyz3891 LocalObjectReference + yyc3891 = true } - yyh3862.ElemContainerState(yyj3862) - if yyj3862 < len(yyv3862) { + yyh3891.ElemContainerState(yyj3891) + if yyj3891 < len(yyv3891) { if r.TryDecodeAsNil() { - yyv3862[yyj3862] = LocalObjectReference{} + yyv3891[yyj3891] = LocalObjectReference{} } else { - yyv3865 := &yyv3862[yyj3862] - yyv3865.CodecDecodeSelf(d) + yyv3894 := &yyv3891[yyj3891] + yyv3894.CodecDecodeSelf(d) } } else { @@ -48604,17 +48991,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj3862 < len(yyv3862) { - yyv3862 = yyv3862[:yyj3862] - yyc3862 = true - } else if yyj3862 == 0 && yyv3862 == nil { - yyv3862 = []LocalObjectReference{} - yyc3862 = true + if yyj3891 < len(yyv3891) { + yyv3891 = yyv3891[:yyj3891] + yyc3891 = true + } else if yyj3891 == 0 && yyv3891 == nil { + yyv3891 = []LocalObjectReference{} + yyc3891 = true } } - yyh3862.End() - if yyc3862 { - *v = yyv3862 + yyh3891.End() + if yyc3891 { + *v = yyv3891 } } @@ -48623,10 +49010,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3866 := range v { + for _, yyv3895 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3867 := &yyv3866 - yy3867.CodecEncodeSelf(e) + yy3896 := &yyv3895 + yy3896.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48636,83 +49023,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3868 := *v - yyh3868, yyl3868 := z.DecSliceHelperStart() - var yyc3868 bool - if yyl3868 == 0 { - if yyv3868 == nil { - yyv3868 = []PodCondition{} - yyc3868 = true - } else if len(yyv3868) != 0 { - yyv3868 = yyv3868[:0] - yyc3868 = true + yyv3897 := *v + yyh3897, yyl3897 := z.DecSliceHelperStart() + var yyc3897 bool + if yyl3897 == 0 { + if yyv3897 == nil { + yyv3897 = []PodCondition{} + yyc3897 = true + } else if len(yyv3897) != 0 { + yyv3897 = yyv3897[:0] + yyc3897 = true } - } else if yyl3868 > 0 { - var yyrr3868, yyrl3868 int - var yyrt3868 bool - if yyl3868 > cap(yyv3868) { + } else if yyl3897 > 0 { + var yyrr3897, yyrl3897 int + var yyrt3897 bool + if yyl3897 > cap(yyv3897) { - yyrg3868 := len(yyv3868) > 0 - yyv23868 := yyv3868 - yyrl3868, yyrt3868 = z.DecInferLen(yyl3868, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3868 { - if yyrl3868 <= cap(yyv3868) { - yyv3868 = yyv3868[:yyrl3868] + yyrg3897 := len(yyv3897) > 0 + yyv23897 := yyv3897 + yyrl3897, yyrt3897 = z.DecInferLen(yyl3897, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3897 { + if yyrl3897 <= cap(yyv3897) { + yyv3897 = yyv3897[:yyrl3897] } else { - yyv3868 = make([]PodCondition, yyrl3868) + yyv3897 = make([]PodCondition, yyrl3897) } } else { - yyv3868 = make([]PodCondition, yyrl3868) + yyv3897 = make([]PodCondition, yyrl3897) } - yyc3868 = true - yyrr3868 = len(yyv3868) - if yyrg3868 { - copy(yyv3868, yyv23868) + yyc3897 = true + yyrr3897 = len(yyv3897) + if yyrg3897 { + copy(yyv3897, yyv23897) } - } else if yyl3868 != len(yyv3868) { - yyv3868 = yyv3868[:yyl3868] - yyc3868 = true + } else if yyl3897 != len(yyv3897) { + yyv3897 = yyv3897[:yyl3897] + yyc3897 = true } - yyj3868 := 0 - for ; yyj3868 < yyrr3868; yyj3868++ { - yyh3868.ElemContainerState(yyj3868) + yyj3897 := 0 + for ; yyj3897 < yyrr3897; yyj3897++ { + yyh3897.ElemContainerState(yyj3897) if r.TryDecodeAsNil() { - yyv3868[yyj3868] = PodCondition{} + yyv3897[yyj3897] = PodCondition{} } else { - yyv3869 := &yyv3868[yyj3868] - yyv3869.CodecDecodeSelf(d) + yyv3898 := &yyv3897[yyj3897] + yyv3898.CodecDecodeSelf(d) } } - if yyrt3868 { - for ; yyj3868 < yyl3868; yyj3868++ { - yyv3868 = append(yyv3868, PodCondition{}) - yyh3868.ElemContainerState(yyj3868) + if yyrt3897 { + for ; yyj3897 < yyl3897; yyj3897++ { + yyv3897 = append(yyv3897, PodCondition{}) + yyh3897.ElemContainerState(yyj3897) if r.TryDecodeAsNil() { - yyv3868[yyj3868] = PodCondition{} + yyv3897[yyj3897] = PodCondition{} } else { - yyv3870 := &yyv3868[yyj3868] - yyv3870.CodecDecodeSelf(d) + yyv3899 := &yyv3897[yyj3897] + yyv3899.CodecDecodeSelf(d) } } } } else { - yyj3868 := 0 - for ; !r.CheckBreak(); yyj3868++ { + yyj3897 := 0 + for ; !r.CheckBreak(); yyj3897++ { - if yyj3868 >= len(yyv3868) { - yyv3868 = append(yyv3868, PodCondition{}) // var yyz3868 PodCondition - yyc3868 = true + if yyj3897 >= len(yyv3897) { + yyv3897 = append(yyv3897, PodCondition{}) // var yyz3897 PodCondition + yyc3897 = true } - yyh3868.ElemContainerState(yyj3868) - if yyj3868 < len(yyv3868) { + yyh3897.ElemContainerState(yyj3897) + if yyj3897 < len(yyv3897) { if r.TryDecodeAsNil() { - yyv3868[yyj3868] = PodCondition{} + yyv3897[yyj3897] = PodCondition{} } else { - yyv3871 := &yyv3868[yyj3868] - yyv3871.CodecDecodeSelf(d) + yyv3900 := &yyv3897[yyj3897] + yyv3900.CodecDecodeSelf(d) } } else { @@ -48720,17 +49107,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj3868 < len(yyv3868) { - yyv3868 = yyv3868[:yyj3868] - yyc3868 = true - } else if yyj3868 == 0 && yyv3868 == nil { - yyv3868 = []PodCondition{} - yyc3868 = true + if yyj3897 < len(yyv3897) { + yyv3897 = yyv3897[:yyj3897] + yyc3897 = true + } else if yyj3897 == 0 && yyv3897 == nil { + yyv3897 = []PodCondition{} + yyc3897 = true } } - yyh3868.End() - if yyc3868 { - *v = yyv3868 + yyh3897.End() + if yyc3897 { + *v = yyv3897 } } @@ -48739,10 +49126,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3872 := range v { + for _, yyv3901 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3873 := &yyv3872 - yy3873.CodecEncodeSelf(e) + yy3902 := &yyv3901 + yy3902.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48752,83 +49139,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3874 := *v - yyh3874, yyl3874 := z.DecSliceHelperStart() - var yyc3874 bool - if yyl3874 == 0 { - if yyv3874 == nil { - yyv3874 = []ContainerStatus{} - yyc3874 = true - } else if len(yyv3874) != 0 { - yyv3874 = yyv3874[:0] - yyc3874 = true + yyv3903 := *v + yyh3903, yyl3903 := z.DecSliceHelperStart() + var yyc3903 bool + if yyl3903 == 0 { + if yyv3903 == nil { + yyv3903 = []ContainerStatus{} + yyc3903 = true + } else if len(yyv3903) != 0 { + yyv3903 = yyv3903[:0] + yyc3903 = true } - } else if yyl3874 > 0 { - var yyrr3874, yyrl3874 int - var yyrt3874 bool - if yyl3874 > cap(yyv3874) { + } else if yyl3903 > 0 { + var yyrr3903, yyrl3903 int + var yyrt3903 bool + if yyl3903 > cap(yyv3903) { - yyrg3874 := len(yyv3874) > 0 - yyv23874 := yyv3874 - yyrl3874, yyrt3874 = z.DecInferLen(yyl3874, z.DecBasicHandle().MaxInitLen, 120) - if yyrt3874 { - if yyrl3874 <= cap(yyv3874) { - yyv3874 = yyv3874[:yyrl3874] + yyrg3903 := len(yyv3903) > 0 + yyv23903 := yyv3903 + yyrl3903, yyrt3903 = z.DecInferLen(yyl3903, z.DecBasicHandle().MaxInitLen, 120) + if yyrt3903 { + if yyrl3903 <= cap(yyv3903) { + yyv3903 = yyv3903[:yyrl3903] } else { - yyv3874 = make([]ContainerStatus, yyrl3874) + yyv3903 = make([]ContainerStatus, yyrl3903) } } else { - yyv3874 = make([]ContainerStatus, yyrl3874) + yyv3903 = make([]ContainerStatus, yyrl3903) } - yyc3874 = true - yyrr3874 = len(yyv3874) - if yyrg3874 { - copy(yyv3874, yyv23874) + yyc3903 = true + yyrr3903 = len(yyv3903) + if yyrg3903 { + copy(yyv3903, yyv23903) } - } else if yyl3874 != len(yyv3874) { - yyv3874 = yyv3874[:yyl3874] - yyc3874 = true + } else if yyl3903 != len(yyv3903) { + yyv3903 = yyv3903[:yyl3903] + yyc3903 = true } - yyj3874 := 0 - for ; yyj3874 < yyrr3874; yyj3874++ { - yyh3874.ElemContainerState(yyj3874) + yyj3903 := 0 + for ; yyj3903 < yyrr3903; yyj3903++ { + yyh3903.ElemContainerState(yyj3903) if r.TryDecodeAsNil() { - yyv3874[yyj3874] = ContainerStatus{} + yyv3903[yyj3903] = ContainerStatus{} } else { - yyv3875 := &yyv3874[yyj3874] - yyv3875.CodecDecodeSelf(d) + yyv3904 := &yyv3903[yyj3903] + yyv3904.CodecDecodeSelf(d) } } - if yyrt3874 { - for ; yyj3874 < yyl3874; yyj3874++ { - yyv3874 = append(yyv3874, ContainerStatus{}) - yyh3874.ElemContainerState(yyj3874) + if yyrt3903 { + for ; yyj3903 < yyl3903; yyj3903++ { + yyv3903 = append(yyv3903, ContainerStatus{}) + yyh3903.ElemContainerState(yyj3903) if r.TryDecodeAsNil() { - yyv3874[yyj3874] = ContainerStatus{} + yyv3903[yyj3903] = ContainerStatus{} } else { - yyv3876 := &yyv3874[yyj3874] - yyv3876.CodecDecodeSelf(d) + yyv3905 := &yyv3903[yyj3903] + yyv3905.CodecDecodeSelf(d) } } } } else { - yyj3874 := 0 - for ; !r.CheckBreak(); yyj3874++ { + yyj3903 := 0 + for ; !r.CheckBreak(); yyj3903++ { - if yyj3874 >= len(yyv3874) { - yyv3874 = append(yyv3874, ContainerStatus{}) // var yyz3874 ContainerStatus - yyc3874 = true + if yyj3903 >= len(yyv3903) { + yyv3903 = append(yyv3903, ContainerStatus{}) // var yyz3903 ContainerStatus + yyc3903 = true } - yyh3874.ElemContainerState(yyj3874) - if yyj3874 < len(yyv3874) { + yyh3903.ElemContainerState(yyj3903) + if yyj3903 < len(yyv3903) { if r.TryDecodeAsNil() { - yyv3874[yyj3874] = ContainerStatus{} + yyv3903[yyj3903] = ContainerStatus{} } else { - yyv3877 := &yyv3874[yyj3874] - yyv3877.CodecDecodeSelf(d) + yyv3906 := &yyv3903[yyj3903] + yyv3906.CodecDecodeSelf(d) } } else { @@ -48836,17 +49223,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj3874 < len(yyv3874) { - yyv3874 = yyv3874[:yyj3874] - yyc3874 = true - } else if yyj3874 == 0 && yyv3874 == nil { - yyv3874 = []ContainerStatus{} - yyc3874 = true + if yyj3903 < len(yyv3903) { + yyv3903 = yyv3903[:yyj3903] + yyc3903 = true + } else if yyj3903 == 0 && yyv3903 == nil { + yyv3903 = []ContainerStatus{} + yyc3903 = true } } - yyh3874.End() - if yyc3874 { - *v = yyv3874 + yyh3903.End() + if yyc3903 { + *v = yyv3903 } } @@ -48855,10 +49242,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3878 := range v { + for _, yyv3907 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3879 := &yyv3878 - yy3879.CodecEncodeSelf(e) + yy3908 := &yyv3907 + yy3908.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48868,83 +49255,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3880 := *v - yyh3880, yyl3880 := z.DecSliceHelperStart() - var yyc3880 bool - if yyl3880 == 0 { - if yyv3880 == nil { - yyv3880 = []Pod{} - yyc3880 = true - } else if len(yyv3880) != 0 { - yyv3880 = yyv3880[:0] - yyc3880 = true + yyv3909 := *v + yyh3909, yyl3909 := z.DecSliceHelperStart() + var yyc3909 bool + if yyl3909 == 0 { + if yyv3909 == nil { + yyv3909 = []Pod{} + yyc3909 = true + } else if len(yyv3909) != 0 { + yyv3909 = yyv3909[:0] + yyc3909 = true } - } else if yyl3880 > 0 { - var yyrr3880, yyrl3880 int - var yyrt3880 bool - if yyl3880 > cap(yyv3880) { + } else if yyl3909 > 0 { + var yyrr3909, yyrl3909 int + var yyrt3909 bool + if yyl3909 > cap(yyv3909) { - yyrg3880 := len(yyv3880) > 0 - yyv23880 := yyv3880 - yyrl3880, yyrt3880 = z.DecInferLen(yyl3880, z.DecBasicHandle().MaxInitLen, 520) - if yyrt3880 { - if yyrl3880 <= cap(yyv3880) { - yyv3880 = yyv3880[:yyrl3880] + yyrg3909 := len(yyv3909) > 0 + yyv23909 := yyv3909 + yyrl3909, yyrt3909 = z.DecInferLen(yyl3909, z.DecBasicHandle().MaxInitLen, 520) + if yyrt3909 { + if yyrl3909 <= cap(yyv3909) { + yyv3909 = yyv3909[:yyrl3909] } else { - yyv3880 = make([]Pod, yyrl3880) + yyv3909 = make([]Pod, yyrl3909) } } else { - yyv3880 = make([]Pod, yyrl3880) + yyv3909 = make([]Pod, yyrl3909) } - yyc3880 = true - yyrr3880 = len(yyv3880) - if yyrg3880 { - copy(yyv3880, yyv23880) + yyc3909 = true + yyrr3909 = len(yyv3909) + if yyrg3909 { + copy(yyv3909, yyv23909) } - } else if yyl3880 != len(yyv3880) { - yyv3880 = yyv3880[:yyl3880] - yyc3880 = true + } else if yyl3909 != len(yyv3909) { + yyv3909 = yyv3909[:yyl3909] + yyc3909 = true } - yyj3880 := 0 - for ; yyj3880 < yyrr3880; yyj3880++ { - yyh3880.ElemContainerState(yyj3880) + yyj3909 := 0 + for ; yyj3909 < yyrr3909; yyj3909++ { + yyh3909.ElemContainerState(yyj3909) if r.TryDecodeAsNil() { - yyv3880[yyj3880] = Pod{} + yyv3909[yyj3909] = Pod{} } else { - yyv3881 := &yyv3880[yyj3880] - yyv3881.CodecDecodeSelf(d) + yyv3910 := &yyv3909[yyj3909] + yyv3910.CodecDecodeSelf(d) } } - if yyrt3880 { - for ; yyj3880 < yyl3880; yyj3880++ { - yyv3880 = append(yyv3880, Pod{}) - yyh3880.ElemContainerState(yyj3880) + if yyrt3909 { + for ; yyj3909 < yyl3909; yyj3909++ { + yyv3909 = append(yyv3909, Pod{}) + yyh3909.ElemContainerState(yyj3909) if r.TryDecodeAsNil() { - yyv3880[yyj3880] = Pod{} + yyv3909[yyj3909] = Pod{} } else { - yyv3882 := &yyv3880[yyj3880] - yyv3882.CodecDecodeSelf(d) + yyv3911 := &yyv3909[yyj3909] + yyv3911.CodecDecodeSelf(d) } } } } else { - yyj3880 := 0 - for ; !r.CheckBreak(); yyj3880++ { + yyj3909 := 0 + for ; !r.CheckBreak(); yyj3909++ { - if yyj3880 >= len(yyv3880) { - yyv3880 = append(yyv3880, Pod{}) // var yyz3880 Pod - yyc3880 = true + if yyj3909 >= len(yyv3909) { + yyv3909 = append(yyv3909, Pod{}) // var yyz3909 Pod + yyc3909 = true } - yyh3880.ElemContainerState(yyj3880) - if yyj3880 < len(yyv3880) { + yyh3909.ElemContainerState(yyj3909) + if yyj3909 < len(yyv3909) { if r.TryDecodeAsNil() { - yyv3880[yyj3880] = Pod{} + yyv3909[yyj3909] = Pod{} } else { - yyv3883 := &yyv3880[yyj3880] - yyv3883.CodecDecodeSelf(d) + yyv3912 := &yyv3909[yyj3909] + yyv3912.CodecDecodeSelf(d) } } else { @@ -48952,17 +49339,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj3880 < len(yyv3880) { - yyv3880 = yyv3880[:yyj3880] - yyc3880 = true - } else if yyj3880 == 0 && yyv3880 == nil { - yyv3880 = []Pod{} - yyc3880 = true + if yyj3909 < len(yyv3909) { + yyv3909 = yyv3909[:yyj3909] + yyc3909 = true + } else if yyj3909 == 0 && yyv3909 == nil { + yyv3909 = []Pod{} + yyc3909 = true } } - yyh3880.End() - if yyc3880 { - *v = yyv3880 + yyh3909.End() + if yyc3909 { + *v = yyv3909 } } @@ -48971,10 +49358,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3884 := range v { + for _, yyv3913 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3885 := &yyv3884 - yy3885.CodecEncodeSelf(e) + yy3914 := &yyv3913 + yy3914.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48984,83 +49371,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3886 := *v - yyh3886, yyl3886 := z.DecSliceHelperStart() - var yyc3886 bool - if yyl3886 == 0 { - if yyv3886 == nil { - yyv3886 = []PodTemplate{} - yyc3886 = true - } else if len(yyv3886) != 0 { - yyv3886 = yyv3886[:0] - yyc3886 = true + yyv3915 := *v + yyh3915, yyl3915 := z.DecSliceHelperStart() + var yyc3915 bool + if yyl3915 == 0 { + if yyv3915 == nil { + yyv3915 = []PodTemplate{} + yyc3915 = true + } else if len(yyv3915) != 0 { + yyv3915 = yyv3915[:0] + yyc3915 = true } - } else if yyl3886 > 0 { - var yyrr3886, yyrl3886 int - var yyrt3886 bool - if yyl3886 > cap(yyv3886) { + } else if yyl3915 > 0 { + var yyrr3915, yyrl3915 int + var yyrt3915 bool + if yyl3915 > cap(yyv3915) { - yyrg3886 := len(yyv3886) > 0 - yyv23886 := yyv3886 - yyrl3886, yyrt3886 = z.DecInferLen(yyl3886, z.DecBasicHandle().MaxInitLen, 544) - if yyrt3886 { - if yyrl3886 <= cap(yyv3886) { - yyv3886 = yyv3886[:yyrl3886] + yyrg3915 := len(yyv3915) > 0 + yyv23915 := yyv3915 + yyrl3915, yyrt3915 = z.DecInferLen(yyl3915, z.DecBasicHandle().MaxInitLen, 544) + if yyrt3915 { + if yyrl3915 <= cap(yyv3915) { + yyv3915 = yyv3915[:yyrl3915] } else { - yyv3886 = make([]PodTemplate, yyrl3886) + yyv3915 = make([]PodTemplate, yyrl3915) } } else { - yyv3886 = make([]PodTemplate, yyrl3886) + yyv3915 = make([]PodTemplate, yyrl3915) } - yyc3886 = true - yyrr3886 = len(yyv3886) - if yyrg3886 { - copy(yyv3886, yyv23886) + yyc3915 = true + yyrr3915 = len(yyv3915) + if yyrg3915 { + copy(yyv3915, yyv23915) } - } else if yyl3886 != len(yyv3886) { - yyv3886 = yyv3886[:yyl3886] - yyc3886 = true + } else if yyl3915 != len(yyv3915) { + yyv3915 = yyv3915[:yyl3915] + yyc3915 = true } - yyj3886 := 0 - for ; yyj3886 < yyrr3886; yyj3886++ { - yyh3886.ElemContainerState(yyj3886) + yyj3915 := 0 + for ; yyj3915 < yyrr3915; yyj3915++ { + yyh3915.ElemContainerState(yyj3915) if r.TryDecodeAsNil() { - yyv3886[yyj3886] = PodTemplate{} + yyv3915[yyj3915] = PodTemplate{} } else { - yyv3887 := &yyv3886[yyj3886] - yyv3887.CodecDecodeSelf(d) + yyv3916 := &yyv3915[yyj3915] + yyv3916.CodecDecodeSelf(d) } } - if yyrt3886 { - for ; yyj3886 < yyl3886; yyj3886++ { - yyv3886 = append(yyv3886, PodTemplate{}) - yyh3886.ElemContainerState(yyj3886) + if yyrt3915 { + for ; yyj3915 < yyl3915; yyj3915++ { + yyv3915 = append(yyv3915, PodTemplate{}) + yyh3915.ElemContainerState(yyj3915) if r.TryDecodeAsNil() { - yyv3886[yyj3886] = PodTemplate{} + yyv3915[yyj3915] = PodTemplate{} } else { - yyv3888 := &yyv3886[yyj3886] - yyv3888.CodecDecodeSelf(d) + yyv3917 := &yyv3915[yyj3915] + yyv3917.CodecDecodeSelf(d) } } } } else { - yyj3886 := 0 - for ; !r.CheckBreak(); yyj3886++ { + yyj3915 := 0 + for ; !r.CheckBreak(); yyj3915++ { - if yyj3886 >= len(yyv3886) { - yyv3886 = append(yyv3886, PodTemplate{}) // var yyz3886 PodTemplate - yyc3886 = true + if yyj3915 >= len(yyv3915) { + yyv3915 = append(yyv3915, PodTemplate{}) // var yyz3915 PodTemplate + yyc3915 = true } - yyh3886.ElemContainerState(yyj3886) - if yyj3886 < len(yyv3886) { + yyh3915.ElemContainerState(yyj3915) + if yyj3915 < len(yyv3915) { if r.TryDecodeAsNil() { - yyv3886[yyj3886] = PodTemplate{} + yyv3915[yyj3915] = PodTemplate{} } else { - yyv3889 := &yyv3886[yyj3886] - yyv3889.CodecDecodeSelf(d) + yyv3918 := &yyv3915[yyj3915] + yyv3918.CodecDecodeSelf(d) } } else { @@ -49068,17 +49455,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj3886 < len(yyv3886) { - yyv3886 = yyv3886[:yyj3886] - yyc3886 = true - } else if yyj3886 == 0 && yyv3886 == nil { - yyv3886 = []PodTemplate{} - yyc3886 = true + if yyj3915 < len(yyv3915) { + yyv3915 = yyv3915[:yyj3915] + yyc3915 = true + } else if yyj3915 == 0 && yyv3915 == nil { + yyv3915 = []PodTemplate{} + yyc3915 = true } } - yyh3886.End() - if yyc3886 { - *v = yyv3886 + yyh3915.End() + if yyc3915 { + *v = yyv3915 } } @@ -49087,10 +49474,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3890 := range v { + for _, yyv3919 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3891 := &yyv3890 - yy3891.CodecEncodeSelf(e) + yy3920 := &yyv3919 + yy3920.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49100,83 +49487,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3892 := *v - yyh3892, yyl3892 := z.DecSliceHelperStart() - var yyc3892 bool - if yyl3892 == 0 { - if yyv3892 == nil { - yyv3892 = []ReplicationController{} - yyc3892 = true - } else if len(yyv3892) != 0 { - yyv3892 = yyv3892[:0] - yyc3892 = true + yyv3921 := *v + yyh3921, yyl3921 := z.DecSliceHelperStart() + var yyc3921 bool + if yyl3921 == 0 { + if yyv3921 == nil { + yyv3921 = []ReplicationController{} + yyc3921 = true + } else if len(yyv3921) != 0 { + yyv3921 = yyv3921[:0] + yyc3921 = true } - } else if yyl3892 > 0 { - var yyrr3892, yyrl3892 int - var yyrt3892 bool - if yyl3892 > cap(yyv3892) { + } else if yyl3921 > 0 { + var yyrr3921, yyrl3921 int + var yyrt3921 bool + if yyl3921 > cap(yyv3921) { - yyrg3892 := len(yyv3892) > 0 - yyv23892 := yyv3892 - yyrl3892, yyrt3892 = z.DecInferLen(yyl3892, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3892 { - if yyrl3892 <= cap(yyv3892) { - yyv3892 = yyv3892[:yyrl3892] + yyrg3921 := len(yyv3921) > 0 + yyv23921 := yyv3921 + yyrl3921, yyrt3921 = z.DecInferLen(yyl3921, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3921 { + if yyrl3921 <= cap(yyv3921) { + yyv3921 = yyv3921[:yyrl3921] } else { - yyv3892 = make([]ReplicationController, yyrl3892) + yyv3921 = make([]ReplicationController, yyrl3921) } } else { - yyv3892 = make([]ReplicationController, yyrl3892) + yyv3921 = make([]ReplicationController, yyrl3921) } - yyc3892 = true - yyrr3892 = len(yyv3892) - if yyrg3892 { - copy(yyv3892, yyv23892) + yyc3921 = true + yyrr3921 = len(yyv3921) + if yyrg3921 { + copy(yyv3921, yyv23921) } - } else if yyl3892 != len(yyv3892) { - yyv3892 = yyv3892[:yyl3892] - yyc3892 = true + } else if yyl3921 != len(yyv3921) { + yyv3921 = yyv3921[:yyl3921] + yyc3921 = true } - yyj3892 := 0 - for ; yyj3892 < yyrr3892; yyj3892++ { - yyh3892.ElemContainerState(yyj3892) + yyj3921 := 0 + for ; yyj3921 < yyrr3921; yyj3921++ { + yyh3921.ElemContainerState(yyj3921) if r.TryDecodeAsNil() { - yyv3892[yyj3892] = ReplicationController{} + yyv3921[yyj3921] = ReplicationController{} } else { - yyv3893 := &yyv3892[yyj3892] - yyv3893.CodecDecodeSelf(d) + yyv3922 := &yyv3921[yyj3921] + yyv3922.CodecDecodeSelf(d) } } - if yyrt3892 { - for ; yyj3892 < yyl3892; yyj3892++ { - yyv3892 = append(yyv3892, ReplicationController{}) - yyh3892.ElemContainerState(yyj3892) + if yyrt3921 { + for ; yyj3921 < yyl3921; yyj3921++ { + yyv3921 = append(yyv3921, ReplicationController{}) + yyh3921.ElemContainerState(yyj3921) if r.TryDecodeAsNil() { - yyv3892[yyj3892] = ReplicationController{} + yyv3921[yyj3921] = ReplicationController{} } else { - yyv3894 := &yyv3892[yyj3892] - yyv3894.CodecDecodeSelf(d) + yyv3923 := &yyv3921[yyj3921] + yyv3923.CodecDecodeSelf(d) } } } } else { - yyj3892 := 0 - for ; !r.CheckBreak(); yyj3892++ { + yyj3921 := 0 + for ; !r.CheckBreak(); yyj3921++ { - if yyj3892 >= len(yyv3892) { - yyv3892 = append(yyv3892, ReplicationController{}) // var yyz3892 ReplicationController - yyc3892 = true + if yyj3921 >= len(yyv3921) { + yyv3921 = append(yyv3921, ReplicationController{}) // var yyz3921 ReplicationController + yyc3921 = true } - yyh3892.ElemContainerState(yyj3892) - if yyj3892 < len(yyv3892) { + yyh3921.ElemContainerState(yyj3921) + if yyj3921 < len(yyv3921) { if r.TryDecodeAsNil() { - yyv3892[yyj3892] = ReplicationController{} + yyv3921[yyj3921] = ReplicationController{} } else { - yyv3895 := &yyv3892[yyj3892] - yyv3895.CodecDecodeSelf(d) + yyv3924 := &yyv3921[yyj3921] + yyv3924.CodecDecodeSelf(d) } } else { @@ -49184,17 +49571,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj3892 < len(yyv3892) { - yyv3892 = yyv3892[:yyj3892] - yyc3892 = true - } else if yyj3892 == 0 && yyv3892 == nil { - yyv3892 = []ReplicationController{} - yyc3892 = true + if yyj3921 < len(yyv3921) { + yyv3921 = yyv3921[:yyj3921] + yyc3921 = true + } else if yyj3921 == 0 && yyv3921 == nil { + yyv3921 = []ReplicationController{} + yyc3921 = true } } - yyh3892.End() - if yyc3892 { - *v = yyv3892 + yyh3921.End() + if yyc3921 { + *v = yyv3921 } } @@ -49203,10 +49590,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3896 := range v { + for _, yyv3925 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3897 := &yyv3896 - yy3897.CodecEncodeSelf(e) + yy3926 := &yyv3925 + yy3926.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49216,83 +49603,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3898 := *v - yyh3898, yyl3898 := z.DecSliceHelperStart() - var yyc3898 bool - if yyl3898 == 0 { - if yyv3898 == nil { - yyv3898 = []LoadBalancerIngress{} - yyc3898 = true - } else if len(yyv3898) != 0 { - yyv3898 = yyv3898[:0] - yyc3898 = true + yyv3927 := *v + yyh3927, yyl3927 := z.DecSliceHelperStart() + var yyc3927 bool + if yyl3927 == 0 { + if yyv3927 == nil { + yyv3927 = []LoadBalancerIngress{} + yyc3927 = true + } else if len(yyv3927) != 0 { + yyv3927 = yyv3927[:0] + yyc3927 = true } - } else if yyl3898 > 0 { - var yyrr3898, yyrl3898 int - var yyrt3898 bool - if yyl3898 > cap(yyv3898) { + } else if yyl3927 > 0 { + var yyrr3927, yyrl3927 int + var yyrt3927 bool + if yyl3927 > cap(yyv3927) { - yyrg3898 := len(yyv3898) > 0 - yyv23898 := yyv3898 - yyrl3898, yyrt3898 = z.DecInferLen(yyl3898, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3898 { - if yyrl3898 <= cap(yyv3898) { - yyv3898 = yyv3898[:yyrl3898] + yyrg3927 := len(yyv3927) > 0 + yyv23927 := yyv3927 + yyrl3927, yyrt3927 = z.DecInferLen(yyl3927, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3927 { + if yyrl3927 <= cap(yyv3927) { + yyv3927 = yyv3927[:yyrl3927] } else { - yyv3898 = make([]LoadBalancerIngress, yyrl3898) + yyv3927 = make([]LoadBalancerIngress, yyrl3927) } } else { - yyv3898 = make([]LoadBalancerIngress, yyrl3898) + yyv3927 = make([]LoadBalancerIngress, yyrl3927) } - yyc3898 = true - yyrr3898 = len(yyv3898) - if yyrg3898 { - copy(yyv3898, yyv23898) + yyc3927 = true + yyrr3927 = len(yyv3927) + if yyrg3927 { + copy(yyv3927, yyv23927) } - } else if yyl3898 != len(yyv3898) { - yyv3898 = yyv3898[:yyl3898] - yyc3898 = true + } else if yyl3927 != len(yyv3927) { + yyv3927 = yyv3927[:yyl3927] + yyc3927 = true } - yyj3898 := 0 - for ; yyj3898 < yyrr3898; yyj3898++ { - yyh3898.ElemContainerState(yyj3898) + yyj3927 := 0 + for ; yyj3927 < yyrr3927; yyj3927++ { + yyh3927.ElemContainerState(yyj3927) if r.TryDecodeAsNil() { - yyv3898[yyj3898] = LoadBalancerIngress{} + yyv3927[yyj3927] = LoadBalancerIngress{} } else { - yyv3899 := &yyv3898[yyj3898] - yyv3899.CodecDecodeSelf(d) + yyv3928 := &yyv3927[yyj3927] + yyv3928.CodecDecodeSelf(d) } } - if yyrt3898 { - for ; yyj3898 < yyl3898; yyj3898++ { - yyv3898 = append(yyv3898, LoadBalancerIngress{}) - yyh3898.ElemContainerState(yyj3898) + if yyrt3927 { + for ; yyj3927 < yyl3927; yyj3927++ { + yyv3927 = append(yyv3927, LoadBalancerIngress{}) + yyh3927.ElemContainerState(yyj3927) if r.TryDecodeAsNil() { - yyv3898[yyj3898] = LoadBalancerIngress{} + yyv3927[yyj3927] = LoadBalancerIngress{} } else { - yyv3900 := &yyv3898[yyj3898] - yyv3900.CodecDecodeSelf(d) + yyv3929 := &yyv3927[yyj3927] + yyv3929.CodecDecodeSelf(d) } } } } else { - yyj3898 := 0 - for ; !r.CheckBreak(); yyj3898++ { + yyj3927 := 0 + for ; !r.CheckBreak(); yyj3927++ { - if yyj3898 >= len(yyv3898) { - yyv3898 = append(yyv3898, LoadBalancerIngress{}) // var yyz3898 LoadBalancerIngress - yyc3898 = true + if yyj3927 >= len(yyv3927) { + yyv3927 = append(yyv3927, LoadBalancerIngress{}) // var yyz3927 LoadBalancerIngress + yyc3927 = true } - yyh3898.ElemContainerState(yyj3898) - if yyj3898 < len(yyv3898) { + yyh3927.ElemContainerState(yyj3927) + if yyj3927 < len(yyv3927) { if r.TryDecodeAsNil() { - yyv3898[yyj3898] = LoadBalancerIngress{} + yyv3927[yyj3927] = LoadBalancerIngress{} } else { - yyv3901 := &yyv3898[yyj3898] - yyv3901.CodecDecodeSelf(d) + yyv3930 := &yyv3927[yyj3927] + yyv3930.CodecDecodeSelf(d) } } else { @@ -49300,17 +49687,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj3898 < len(yyv3898) { - yyv3898 = yyv3898[:yyj3898] - yyc3898 = true - } else if yyj3898 == 0 && yyv3898 == nil { - yyv3898 = []LoadBalancerIngress{} - yyc3898 = true + if yyj3927 < len(yyv3927) { + yyv3927 = yyv3927[:yyj3927] + yyc3927 = true + } else if yyj3927 == 0 && yyv3927 == nil { + yyv3927 = []LoadBalancerIngress{} + yyc3927 = true } } - yyh3898.End() - if yyc3898 { - *v = yyv3898 + yyh3927.End() + if yyc3927 { + *v = yyv3927 } } @@ -49319,10 +49706,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3902 := range v { + for _, yyv3931 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3903 := &yyv3902 - yy3903.CodecEncodeSelf(e) + yy3932 := &yyv3931 + yy3932.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49332,83 +49719,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3904 := *v - yyh3904, yyl3904 := z.DecSliceHelperStart() - var yyc3904 bool - if yyl3904 == 0 { - if yyv3904 == nil { - yyv3904 = []ServicePort{} - yyc3904 = true - } else if len(yyv3904) != 0 { - yyv3904 = yyv3904[:0] - yyc3904 = true + yyv3933 := *v + yyh3933, yyl3933 := z.DecSliceHelperStart() + var yyc3933 bool + if yyl3933 == 0 { + if yyv3933 == nil { + yyv3933 = []ServicePort{} + yyc3933 = true + } else if len(yyv3933) != 0 { + yyv3933 = yyv3933[:0] + yyc3933 = true } - } else if yyl3904 > 0 { - var yyrr3904, yyrl3904 int - var yyrt3904 bool - if yyl3904 > cap(yyv3904) { + } else if yyl3933 > 0 { + var yyrr3933, yyrl3933 int + var yyrt3933 bool + if yyl3933 > cap(yyv3933) { - yyrg3904 := len(yyv3904) > 0 - yyv23904 := yyv3904 - yyrl3904, yyrt3904 = z.DecInferLen(yyl3904, z.DecBasicHandle().MaxInitLen, 80) - if yyrt3904 { - if yyrl3904 <= cap(yyv3904) { - yyv3904 = yyv3904[:yyrl3904] + yyrg3933 := len(yyv3933) > 0 + yyv23933 := yyv3933 + yyrl3933, yyrt3933 = z.DecInferLen(yyl3933, z.DecBasicHandle().MaxInitLen, 80) + if yyrt3933 { + if yyrl3933 <= cap(yyv3933) { + yyv3933 = yyv3933[:yyrl3933] } else { - yyv3904 = make([]ServicePort, yyrl3904) + yyv3933 = make([]ServicePort, yyrl3933) } } else { - yyv3904 = make([]ServicePort, yyrl3904) + yyv3933 = make([]ServicePort, yyrl3933) } - yyc3904 = true - yyrr3904 = len(yyv3904) - if yyrg3904 { - copy(yyv3904, yyv23904) + yyc3933 = true + yyrr3933 = len(yyv3933) + if yyrg3933 { + copy(yyv3933, yyv23933) } - } else if yyl3904 != len(yyv3904) { - yyv3904 = yyv3904[:yyl3904] - yyc3904 = true + } else if yyl3933 != len(yyv3933) { + yyv3933 = yyv3933[:yyl3933] + yyc3933 = true } - yyj3904 := 0 - for ; yyj3904 < yyrr3904; yyj3904++ { - yyh3904.ElemContainerState(yyj3904) + yyj3933 := 0 + for ; yyj3933 < yyrr3933; yyj3933++ { + yyh3933.ElemContainerState(yyj3933) if r.TryDecodeAsNil() { - yyv3904[yyj3904] = ServicePort{} + yyv3933[yyj3933] = ServicePort{} } else { - yyv3905 := &yyv3904[yyj3904] - yyv3905.CodecDecodeSelf(d) + yyv3934 := &yyv3933[yyj3933] + yyv3934.CodecDecodeSelf(d) } } - if yyrt3904 { - for ; yyj3904 < yyl3904; yyj3904++ { - yyv3904 = append(yyv3904, ServicePort{}) - yyh3904.ElemContainerState(yyj3904) + if yyrt3933 { + for ; yyj3933 < yyl3933; yyj3933++ { + yyv3933 = append(yyv3933, ServicePort{}) + yyh3933.ElemContainerState(yyj3933) if r.TryDecodeAsNil() { - yyv3904[yyj3904] = ServicePort{} + yyv3933[yyj3933] = ServicePort{} } else { - yyv3906 := &yyv3904[yyj3904] - yyv3906.CodecDecodeSelf(d) + yyv3935 := &yyv3933[yyj3933] + yyv3935.CodecDecodeSelf(d) } } } } else { - yyj3904 := 0 - for ; !r.CheckBreak(); yyj3904++ { + yyj3933 := 0 + for ; !r.CheckBreak(); yyj3933++ { - if yyj3904 >= len(yyv3904) { - yyv3904 = append(yyv3904, ServicePort{}) // var yyz3904 ServicePort - yyc3904 = true + if yyj3933 >= len(yyv3933) { + yyv3933 = append(yyv3933, ServicePort{}) // var yyz3933 ServicePort + yyc3933 = true } - yyh3904.ElemContainerState(yyj3904) - if yyj3904 < len(yyv3904) { + yyh3933.ElemContainerState(yyj3933) + if yyj3933 < len(yyv3933) { if r.TryDecodeAsNil() { - yyv3904[yyj3904] = ServicePort{} + yyv3933[yyj3933] = ServicePort{} } else { - yyv3907 := &yyv3904[yyj3904] - yyv3907.CodecDecodeSelf(d) + yyv3936 := &yyv3933[yyj3933] + yyv3936.CodecDecodeSelf(d) } } else { @@ -49416,17 +49803,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj3904 < len(yyv3904) { - yyv3904 = yyv3904[:yyj3904] - yyc3904 = true - } else if yyj3904 == 0 && yyv3904 == nil { - yyv3904 = []ServicePort{} - yyc3904 = true + if yyj3933 < len(yyv3933) { + yyv3933 = yyv3933[:yyj3933] + yyc3933 = true + } else if yyj3933 == 0 && yyv3933 == nil { + yyv3933 = []ServicePort{} + yyc3933 = true } } - yyh3904.End() - if yyc3904 { - *v = yyv3904 + yyh3933.End() + if yyc3933 { + *v = yyv3933 } } @@ -49435,10 +49822,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3908 := range v { + for _, yyv3937 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3909 := &yyv3908 - yy3909.CodecEncodeSelf(e) + yy3938 := &yyv3937 + yy3938.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49448,83 +49835,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3910 := *v - yyh3910, yyl3910 := z.DecSliceHelperStart() - var yyc3910 bool - if yyl3910 == 0 { - if yyv3910 == nil { - yyv3910 = []Service{} - yyc3910 = true - } else if len(yyv3910) != 0 { - yyv3910 = yyv3910[:0] - yyc3910 = true + yyv3939 := *v + yyh3939, yyl3939 := z.DecSliceHelperStart() + var yyc3939 bool + if yyl3939 == 0 { + if yyv3939 == nil { + yyv3939 = []Service{} + yyc3939 = true + } else if len(yyv3939) != 0 { + yyv3939 = yyv3939[:0] + yyc3939 = true } - } else if yyl3910 > 0 { - var yyrr3910, yyrl3910 int - var yyrt3910 bool - if yyl3910 > cap(yyv3910) { + } else if yyl3939 > 0 { + var yyrr3939, yyrl3939 int + var yyrt3939 bool + if yyl3939 > cap(yyv3939) { - yyrg3910 := len(yyv3910) > 0 - yyv23910 := yyv3910 - yyrl3910, yyrt3910 = z.DecInferLen(yyl3910, z.DecBasicHandle().MaxInitLen, 360) - if yyrt3910 { - if yyrl3910 <= cap(yyv3910) { - yyv3910 = yyv3910[:yyrl3910] + yyrg3939 := len(yyv3939) > 0 + yyv23939 := yyv3939 + yyrl3939, yyrt3939 = z.DecInferLen(yyl3939, z.DecBasicHandle().MaxInitLen, 360) + if yyrt3939 { + if yyrl3939 <= cap(yyv3939) { + yyv3939 = yyv3939[:yyrl3939] } else { - yyv3910 = make([]Service, yyrl3910) + yyv3939 = make([]Service, yyrl3939) } } else { - yyv3910 = make([]Service, yyrl3910) + yyv3939 = make([]Service, yyrl3939) } - yyc3910 = true - yyrr3910 = len(yyv3910) - if yyrg3910 { - copy(yyv3910, yyv23910) + yyc3939 = true + yyrr3939 = len(yyv3939) + if yyrg3939 { + copy(yyv3939, yyv23939) } - } else if yyl3910 != len(yyv3910) { - yyv3910 = yyv3910[:yyl3910] - yyc3910 = true + } else if yyl3939 != len(yyv3939) { + yyv3939 = yyv3939[:yyl3939] + yyc3939 = true } - yyj3910 := 0 - for ; yyj3910 < yyrr3910; yyj3910++ { - yyh3910.ElemContainerState(yyj3910) + yyj3939 := 0 + for ; yyj3939 < yyrr3939; yyj3939++ { + yyh3939.ElemContainerState(yyj3939) if r.TryDecodeAsNil() { - yyv3910[yyj3910] = Service{} + yyv3939[yyj3939] = Service{} } else { - yyv3911 := &yyv3910[yyj3910] - yyv3911.CodecDecodeSelf(d) + yyv3940 := &yyv3939[yyj3939] + yyv3940.CodecDecodeSelf(d) } } - if yyrt3910 { - for ; yyj3910 < yyl3910; yyj3910++ { - yyv3910 = append(yyv3910, Service{}) - yyh3910.ElemContainerState(yyj3910) + if yyrt3939 { + for ; yyj3939 < yyl3939; yyj3939++ { + yyv3939 = append(yyv3939, Service{}) + yyh3939.ElemContainerState(yyj3939) if r.TryDecodeAsNil() { - yyv3910[yyj3910] = Service{} + yyv3939[yyj3939] = Service{} } else { - yyv3912 := &yyv3910[yyj3910] - yyv3912.CodecDecodeSelf(d) + yyv3941 := &yyv3939[yyj3939] + yyv3941.CodecDecodeSelf(d) } } } } else { - yyj3910 := 0 - for ; !r.CheckBreak(); yyj3910++ { + yyj3939 := 0 + for ; !r.CheckBreak(); yyj3939++ { - if yyj3910 >= len(yyv3910) { - yyv3910 = append(yyv3910, Service{}) // var yyz3910 Service - yyc3910 = true + if yyj3939 >= len(yyv3939) { + yyv3939 = append(yyv3939, Service{}) // var yyz3939 Service + yyc3939 = true } - yyh3910.ElemContainerState(yyj3910) - if yyj3910 < len(yyv3910) { + yyh3939.ElemContainerState(yyj3939) + if yyj3939 < len(yyv3939) { if r.TryDecodeAsNil() { - yyv3910[yyj3910] = Service{} + yyv3939[yyj3939] = Service{} } else { - yyv3913 := &yyv3910[yyj3910] - yyv3913.CodecDecodeSelf(d) + yyv3942 := &yyv3939[yyj3939] + yyv3942.CodecDecodeSelf(d) } } else { @@ -49532,17 +49919,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj3910 < len(yyv3910) { - yyv3910 = yyv3910[:yyj3910] - yyc3910 = true - } else if yyj3910 == 0 && yyv3910 == nil { - yyv3910 = []Service{} - yyc3910 = true + if yyj3939 < len(yyv3939) { + yyv3939 = yyv3939[:yyj3939] + yyc3939 = true + } else if yyj3939 == 0 && yyv3939 == nil { + yyv3939 = []Service{} + yyc3939 = true } } - yyh3910.End() - if yyc3910 { - *v = yyv3910 + yyh3939.End() + if yyc3939 { + *v = yyv3939 } } @@ -49551,10 +49938,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3914 := range v { + for _, yyv3943 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3915 := &yyv3914 - yy3915.CodecEncodeSelf(e) + yy3944 := &yyv3943 + yy3944.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49564,83 +49951,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3916 := *v - yyh3916, yyl3916 := z.DecSliceHelperStart() - var yyc3916 bool - if yyl3916 == 0 { - if yyv3916 == nil { - yyv3916 = []ObjectReference{} - yyc3916 = true - } else if len(yyv3916) != 0 { - yyv3916 = yyv3916[:0] - yyc3916 = true + yyv3945 := *v + yyh3945, yyl3945 := z.DecSliceHelperStart() + var yyc3945 bool + if yyl3945 == 0 { + if yyv3945 == nil { + yyv3945 = []ObjectReference{} + yyc3945 = true + } else if len(yyv3945) != 0 { + yyv3945 = yyv3945[:0] + yyc3945 = true } - } else if yyl3916 > 0 { - var yyrr3916, yyrl3916 int - var yyrt3916 bool - if yyl3916 > cap(yyv3916) { + } else if yyl3945 > 0 { + var yyrr3945, yyrl3945 int + var yyrt3945 bool + if yyl3945 > cap(yyv3945) { - yyrg3916 := len(yyv3916) > 0 - yyv23916 := yyv3916 - yyrl3916, yyrt3916 = z.DecInferLen(yyl3916, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3916 { - if yyrl3916 <= cap(yyv3916) { - yyv3916 = yyv3916[:yyrl3916] + yyrg3945 := len(yyv3945) > 0 + yyv23945 := yyv3945 + yyrl3945, yyrt3945 = z.DecInferLen(yyl3945, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3945 { + if yyrl3945 <= cap(yyv3945) { + yyv3945 = yyv3945[:yyrl3945] } else { - yyv3916 = make([]ObjectReference, yyrl3916) + yyv3945 = make([]ObjectReference, yyrl3945) } } else { - yyv3916 = make([]ObjectReference, yyrl3916) + yyv3945 = make([]ObjectReference, yyrl3945) } - yyc3916 = true - yyrr3916 = len(yyv3916) - if yyrg3916 { - copy(yyv3916, yyv23916) + yyc3945 = true + yyrr3945 = len(yyv3945) + if yyrg3945 { + copy(yyv3945, yyv23945) } - } else if yyl3916 != len(yyv3916) { - yyv3916 = yyv3916[:yyl3916] - yyc3916 = true + } else if yyl3945 != len(yyv3945) { + yyv3945 = yyv3945[:yyl3945] + yyc3945 = true } - yyj3916 := 0 - for ; yyj3916 < yyrr3916; yyj3916++ { - yyh3916.ElemContainerState(yyj3916) + yyj3945 := 0 + for ; yyj3945 < yyrr3945; yyj3945++ { + yyh3945.ElemContainerState(yyj3945) if r.TryDecodeAsNil() { - yyv3916[yyj3916] = ObjectReference{} + yyv3945[yyj3945] = ObjectReference{} } else { - yyv3917 := &yyv3916[yyj3916] - yyv3917.CodecDecodeSelf(d) + yyv3946 := &yyv3945[yyj3945] + yyv3946.CodecDecodeSelf(d) } } - if yyrt3916 { - for ; yyj3916 < yyl3916; yyj3916++ { - yyv3916 = append(yyv3916, ObjectReference{}) - yyh3916.ElemContainerState(yyj3916) + if yyrt3945 { + for ; yyj3945 < yyl3945; yyj3945++ { + yyv3945 = append(yyv3945, ObjectReference{}) + yyh3945.ElemContainerState(yyj3945) if r.TryDecodeAsNil() { - yyv3916[yyj3916] = ObjectReference{} + yyv3945[yyj3945] = ObjectReference{} } else { - yyv3918 := &yyv3916[yyj3916] - yyv3918.CodecDecodeSelf(d) + yyv3947 := &yyv3945[yyj3945] + yyv3947.CodecDecodeSelf(d) } } } } else { - yyj3916 := 0 - for ; !r.CheckBreak(); yyj3916++ { + yyj3945 := 0 + for ; !r.CheckBreak(); yyj3945++ { - if yyj3916 >= len(yyv3916) { - yyv3916 = append(yyv3916, ObjectReference{}) // var yyz3916 ObjectReference - yyc3916 = true + if yyj3945 >= len(yyv3945) { + yyv3945 = append(yyv3945, ObjectReference{}) // var yyz3945 ObjectReference + yyc3945 = true } - yyh3916.ElemContainerState(yyj3916) - if yyj3916 < len(yyv3916) { + yyh3945.ElemContainerState(yyj3945) + if yyj3945 < len(yyv3945) { if r.TryDecodeAsNil() { - yyv3916[yyj3916] = ObjectReference{} + yyv3945[yyj3945] = ObjectReference{} } else { - yyv3919 := &yyv3916[yyj3916] - yyv3919.CodecDecodeSelf(d) + yyv3948 := &yyv3945[yyj3945] + yyv3948.CodecDecodeSelf(d) } } else { @@ -49648,17 +50035,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj3916 < len(yyv3916) { - yyv3916 = yyv3916[:yyj3916] - yyc3916 = true - } else if yyj3916 == 0 && yyv3916 == nil { - yyv3916 = []ObjectReference{} - yyc3916 = true + if yyj3945 < len(yyv3945) { + yyv3945 = yyv3945[:yyj3945] + yyc3945 = true + } else if yyj3945 == 0 && yyv3945 == nil { + yyv3945 = []ObjectReference{} + yyc3945 = true } } - yyh3916.End() - if yyc3916 { - *v = yyv3916 + yyh3945.End() + if yyc3945 { + *v = yyv3945 } } @@ -49667,10 +50054,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3920 := range v { + for _, yyv3949 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3921 := &yyv3920 - yy3921.CodecEncodeSelf(e) + yy3950 := &yyv3949 + yy3950.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49680,83 +50067,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3922 := *v - yyh3922, yyl3922 := z.DecSliceHelperStart() - var yyc3922 bool - if yyl3922 == 0 { - if yyv3922 == nil { - yyv3922 = []ServiceAccount{} - yyc3922 = true - } else if len(yyv3922) != 0 { - yyv3922 = yyv3922[:0] - yyc3922 = true + yyv3951 := *v + yyh3951, yyl3951 := z.DecSliceHelperStart() + var yyc3951 bool + if yyl3951 == 0 { + if yyv3951 == nil { + yyv3951 = []ServiceAccount{} + yyc3951 = true + } else if len(yyv3951) != 0 { + yyv3951 = yyv3951[:0] + yyc3951 = true } - } else if yyl3922 > 0 { - var yyrr3922, yyrl3922 int - var yyrt3922 bool - if yyl3922 > cap(yyv3922) { + } else if yyl3951 > 0 { + var yyrr3951, yyrl3951 int + var yyrt3951 bool + if yyl3951 > cap(yyv3951) { - yyrg3922 := len(yyv3922) > 0 - yyv23922 := yyv3922 - yyrl3922, yyrt3922 = z.DecInferLen(yyl3922, z.DecBasicHandle().MaxInitLen, 240) - if yyrt3922 { - if yyrl3922 <= cap(yyv3922) { - yyv3922 = yyv3922[:yyrl3922] + yyrg3951 := len(yyv3951) > 0 + yyv23951 := yyv3951 + yyrl3951, yyrt3951 = z.DecInferLen(yyl3951, z.DecBasicHandle().MaxInitLen, 240) + if yyrt3951 { + if yyrl3951 <= cap(yyv3951) { + yyv3951 = yyv3951[:yyrl3951] } else { - yyv3922 = make([]ServiceAccount, yyrl3922) + yyv3951 = make([]ServiceAccount, yyrl3951) } } else { - yyv3922 = make([]ServiceAccount, yyrl3922) + yyv3951 = make([]ServiceAccount, yyrl3951) } - yyc3922 = true - yyrr3922 = len(yyv3922) - if yyrg3922 { - copy(yyv3922, yyv23922) + yyc3951 = true + yyrr3951 = len(yyv3951) + if yyrg3951 { + copy(yyv3951, yyv23951) } - } else if yyl3922 != len(yyv3922) { - yyv3922 = yyv3922[:yyl3922] - yyc3922 = true + } else if yyl3951 != len(yyv3951) { + yyv3951 = yyv3951[:yyl3951] + yyc3951 = true } - yyj3922 := 0 - for ; yyj3922 < yyrr3922; yyj3922++ { - yyh3922.ElemContainerState(yyj3922) + yyj3951 := 0 + for ; yyj3951 < yyrr3951; yyj3951++ { + yyh3951.ElemContainerState(yyj3951) if r.TryDecodeAsNil() { - yyv3922[yyj3922] = ServiceAccount{} + yyv3951[yyj3951] = ServiceAccount{} } else { - yyv3923 := &yyv3922[yyj3922] - yyv3923.CodecDecodeSelf(d) + yyv3952 := &yyv3951[yyj3951] + yyv3952.CodecDecodeSelf(d) } } - if yyrt3922 { - for ; yyj3922 < yyl3922; yyj3922++ { - yyv3922 = append(yyv3922, ServiceAccount{}) - yyh3922.ElemContainerState(yyj3922) + if yyrt3951 { + for ; yyj3951 < yyl3951; yyj3951++ { + yyv3951 = append(yyv3951, ServiceAccount{}) + yyh3951.ElemContainerState(yyj3951) if r.TryDecodeAsNil() { - yyv3922[yyj3922] = ServiceAccount{} + yyv3951[yyj3951] = ServiceAccount{} } else { - yyv3924 := &yyv3922[yyj3922] - yyv3924.CodecDecodeSelf(d) + yyv3953 := &yyv3951[yyj3951] + yyv3953.CodecDecodeSelf(d) } } } } else { - yyj3922 := 0 - for ; !r.CheckBreak(); yyj3922++ { + yyj3951 := 0 + for ; !r.CheckBreak(); yyj3951++ { - if yyj3922 >= len(yyv3922) { - yyv3922 = append(yyv3922, ServiceAccount{}) // var yyz3922 ServiceAccount - yyc3922 = true + if yyj3951 >= len(yyv3951) { + yyv3951 = append(yyv3951, ServiceAccount{}) // var yyz3951 ServiceAccount + yyc3951 = true } - yyh3922.ElemContainerState(yyj3922) - if yyj3922 < len(yyv3922) { + yyh3951.ElemContainerState(yyj3951) + if yyj3951 < len(yyv3951) { if r.TryDecodeAsNil() { - yyv3922[yyj3922] = ServiceAccount{} + yyv3951[yyj3951] = ServiceAccount{} } else { - yyv3925 := &yyv3922[yyj3922] - yyv3925.CodecDecodeSelf(d) + yyv3954 := &yyv3951[yyj3951] + yyv3954.CodecDecodeSelf(d) } } else { @@ -49764,17 +50151,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj3922 < len(yyv3922) { - yyv3922 = yyv3922[:yyj3922] - yyc3922 = true - } else if yyj3922 == 0 && yyv3922 == nil { - yyv3922 = []ServiceAccount{} - yyc3922 = true + if yyj3951 < len(yyv3951) { + yyv3951 = yyv3951[:yyj3951] + yyc3951 = true + } else if yyj3951 == 0 && yyv3951 == nil { + yyv3951 = []ServiceAccount{} + yyc3951 = true } } - yyh3922.End() - if yyc3922 { - *v = yyv3922 + yyh3951.End() + if yyc3951 { + *v = yyv3951 } } @@ -49783,10 +50170,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3926 := range v { + for _, yyv3955 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3927 := &yyv3926 - yy3927.CodecEncodeSelf(e) + yy3956 := &yyv3955 + yy3956.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49796,83 +50183,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3928 := *v - yyh3928, yyl3928 := z.DecSliceHelperStart() - var yyc3928 bool - if yyl3928 == 0 { - if yyv3928 == nil { - yyv3928 = []EndpointSubset{} - yyc3928 = true - } else if len(yyv3928) != 0 { - yyv3928 = yyv3928[:0] - yyc3928 = true + yyv3957 := *v + yyh3957, yyl3957 := z.DecSliceHelperStart() + var yyc3957 bool + if yyl3957 == 0 { + if yyv3957 == nil { + yyv3957 = []EndpointSubset{} + yyc3957 = true + } else if len(yyv3957) != 0 { + yyv3957 = yyv3957[:0] + yyc3957 = true } - } else if yyl3928 > 0 { - var yyrr3928, yyrl3928 int - var yyrt3928 bool - if yyl3928 > cap(yyv3928) { + } else if yyl3957 > 0 { + var yyrr3957, yyrl3957 int + var yyrt3957 bool + if yyl3957 > cap(yyv3957) { - yyrg3928 := len(yyv3928) > 0 - yyv23928 := yyv3928 - yyrl3928, yyrt3928 = z.DecInferLen(yyl3928, z.DecBasicHandle().MaxInitLen, 72) - if yyrt3928 { - if yyrl3928 <= cap(yyv3928) { - yyv3928 = yyv3928[:yyrl3928] + yyrg3957 := len(yyv3957) > 0 + yyv23957 := yyv3957 + yyrl3957, yyrt3957 = z.DecInferLen(yyl3957, z.DecBasicHandle().MaxInitLen, 72) + if yyrt3957 { + if yyrl3957 <= cap(yyv3957) { + yyv3957 = yyv3957[:yyrl3957] } else { - yyv3928 = make([]EndpointSubset, yyrl3928) + yyv3957 = make([]EndpointSubset, yyrl3957) } } else { - yyv3928 = make([]EndpointSubset, yyrl3928) + yyv3957 = make([]EndpointSubset, yyrl3957) } - yyc3928 = true - yyrr3928 = len(yyv3928) - if yyrg3928 { - copy(yyv3928, yyv23928) + yyc3957 = true + yyrr3957 = len(yyv3957) + if yyrg3957 { + copy(yyv3957, yyv23957) } - } else if yyl3928 != len(yyv3928) { - yyv3928 = yyv3928[:yyl3928] - yyc3928 = true + } else if yyl3957 != len(yyv3957) { + yyv3957 = yyv3957[:yyl3957] + yyc3957 = true } - yyj3928 := 0 - for ; yyj3928 < yyrr3928; yyj3928++ { - yyh3928.ElemContainerState(yyj3928) + yyj3957 := 0 + for ; yyj3957 < yyrr3957; yyj3957++ { + yyh3957.ElemContainerState(yyj3957) if r.TryDecodeAsNil() { - yyv3928[yyj3928] = EndpointSubset{} + yyv3957[yyj3957] = EndpointSubset{} } else { - yyv3929 := &yyv3928[yyj3928] - yyv3929.CodecDecodeSelf(d) + yyv3958 := &yyv3957[yyj3957] + yyv3958.CodecDecodeSelf(d) } } - if yyrt3928 { - for ; yyj3928 < yyl3928; yyj3928++ { - yyv3928 = append(yyv3928, EndpointSubset{}) - yyh3928.ElemContainerState(yyj3928) + if yyrt3957 { + for ; yyj3957 < yyl3957; yyj3957++ { + yyv3957 = append(yyv3957, EndpointSubset{}) + yyh3957.ElemContainerState(yyj3957) if r.TryDecodeAsNil() { - yyv3928[yyj3928] = EndpointSubset{} + yyv3957[yyj3957] = EndpointSubset{} } else { - yyv3930 := &yyv3928[yyj3928] - yyv3930.CodecDecodeSelf(d) + yyv3959 := &yyv3957[yyj3957] + yyv3959.CodecDecodeSelf(d) } } } } else { - yyj3928 := 0 - for ; !r.CheckBreak(); yyj3928++ { + yyj3957 := 0 + for ; !r.CheckBreak(); yyj3957++ { - if yyj3928 >= len(yyv3928) { - yyv3928 = append(yyv3928, EndpointSubset{}) // var yyz3928 EndpointSubset - yyc3928 = true + if yyj3957 >= len(yyv3957) { + yyv3957 = append(yyv3957, EndpointSubset{}) // var yyz3957 EndpointSubset + yyc3957 = true } - yyh3928.ElemContainerState(yyj3928) - if yyj3928 < len(yyv3928) { + yyh3957.ElemContainerState(yyj3957) + if yyj3957 < len(yyv3957) { if r.TryDecodeAsNil() { - yyv3928[yyj3928] = EndpointSubset{} + yyv3957[yyj3957] = EndpointSubset{} } else { - yyv3931 := &yyv3928[yyj3928] - yyv3931.CodecDecodeSelf(d) + yyv3960 := &yyv3957[yyj3957] + yyv3960.CodecDecodeSelf(d) } } else { @@ -49880,17 +50267,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj3928 < len(yyv3928) { - yyv3928 = yyv3928[:yyj3928] - yyc3928 = true - } else if yyj3928 == 0 && yyv3928 == nil { - yyv3928 = []EndpointSubset{} - yyc3928 = true + if yyj3957 < len(yyv3957) { + yyv3957 = yyv3957[:yyj3957] + yyc3957 = true + } else if yyj3957 == 0 && yyv3957 == nil { + yyv3957 = []EndpointSubset{} + yyc3957 = true } } - yyh3928.End() - if yyc3928 { - *v = yyv3928 + yyh3957.End() + if yyc3957 { + *v = yyv3957 } } @@ -49899,10 +50286,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3932 := range v { + for _, yyv3961 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3933 := &yyv3932 - yy3933.CodecEncodeSelf(e) + yy3962 := &yyv3961 + yy3962.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49912,83 +50299,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3934 := *v - yyh3934, yyl3934 := z.DecSliceHelperStart() - var yyc3934 bool - if yyl3934 == 0 { - if yyv3934 == nil { - yyv3934 = []EndpointAddress{} - yyc3934 = true - } else if len(yyv3934) != 0 { - yyv3934 = yyv3934[:0] - yyc3934 = true + yyv3963 := *v + yyh3963, yyl3963 := z.DecSliceHelperStart() + var yyc3963 bool + if yyl3963 == 0 { + if yyv3963 == nil { + yyv3963 = []EndpointAddress{} + yyc3963 = true + } else if len(yyv3963) != 0 { + yyv3963 = yyv3963[:0] + yyc3963 = true } - } else if yyl3934 > 0 { - var yyrr3934, yyrl3934 int - var yyrt3934 bool - if yyl3934 > cap(yyv3934) { + } else if yyl3963 > 0 { + var yyrr3963, yyrl3963 int + var yyrt3963 bool + if yyl3963 > cap(yyv3963) { - yyrg3934 := len(yyv3934) > 0 - yyv23934 := yyv3934 - yyrl3934, yyrt3934 = z.DecInferLen(yyl3934, z.DecBasicHandle().MaxInitLen, 24) - if yyrt3934 { - if yyrl3934 <= cap(yyv3934) { - yyv3934 = yyv3934[:yyrl3934] + yyrg3963 := len(yyv3963) > 0 + yyv23963 := yyv3963 + yyrl3963, yyrt3963 = z.DecInferLen(yyl3963, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3963 { + if yyrl3963 <= cap(yyv3963) { + yyv3963 = yyv3963[:yyrl3963] } else { - yyv3934 = make([]EndpointAddress, yyrl3934) + yyv3963 = make([]EndpointAddress, yyrl3963) } } else { - yyv3934 = make([]EndpointAddress, yyrl3934) + yyv3963 = make([]EndpointAddress, yyrl3963) } - yyc3934 = true - yyrr3934 = len(yyv3934) - if yyrg3934 { - copy(yyv3934, yyv23934) + yyc3963 = true + yyrr3963 = len(yyv3963) + if yyrg3963 { + copy(yyv3963, yyv23963) } - } else if yyl3934 != len(yyv3934) { - yyv3934 = yyv3934[:yyl3934] - yyc3934 = true + } else if yyl3963 != len(yyv3963) { + yyv3963 = yyv3963[:yyl3963] + yyc3963 = true } - yyj3934 := 0 - for ; yyj3934 < yyrr3934; yyj3934++ { - yyh3934.ElemContainerState(yyj3934) + yyj3963 := 0 + for ; yyj3963 < yyrr3963; yyj3963++ { + yyh3963.ElemContainerState(yyj3963) if r.TryDecodeAsNil() { - yyv3934[yyj3934] = EndpointAddress{} + yyv3963[yyj3963] = EndpointAddress{} } else { - yyv3935 := &yyv3934[yyj3934] - yyv3935.CodecDecodeSelf(d) + yyv3964 := &yyv3963[yyj3963] + yyv3964.CodecDecodeSelf(d) } } - if yyrt3934 { - for ; yyj3934 < yyl3934; yyj3934++ { - yyv3934 = append(yyv3934, EndpointAddress{}) - yyh3934.ElemContainerState(yyj3934) + if yyrt3963 { + for ; yyj3963 < yyl3963; yyj3963++ { + yyv3963 = append(yyv3963, EndpointAddress{}) + yyh3963.ElemContainerState(yyj3963) if r.TryDecodeAsNil() { - yyv3934[yyj3934] = EndpointAddress{} + yyv3963[yyj3963] = EndpointAddress{} } else { - yyv3936 := &yyv3934[yyj3934] - yyv3936.CodecDecodeSelf(d) + yyv3965 := &yyv3963[yyj3963] + yyv3965.CodecDecodeSelf(d) } } } } else { - yyj3934 := 0 - for ; !r.CheckBreak(); yyj3934++ { + yyj3963 := 0 + for ; !r.CheckBreak(); yyj3963++ { - if yyj3934 >= len(yyv3934) { - yyv3934 = append(yyv3934, EndpointAddress{}) // var yyz3934 EndpointAddress - yyc3934 = true + if yyj3963 >= len(yyv3963) { + yyv3963 = append(yyv3963, EndpointAddress{}) // var yyz3963 EndpointAddress + yyc3963 = true } - yyh3934.ElemContainerState(yyj3934) - if yyj3934 < len(yyv3934) { + yyh3963.ElemContainerState(yyj3963) + if yyj3963 < len(yyv3963) { if r.TryDecodeAsNil() { - yyv3934[yyj3934] = EndpointAddress{} + yyv3963[yyj3963] = EndpointAddress{} } else { - yyv3937 := &yyv3934[yyj3934] - yyv3937.CodecDecodeSelf(d) + yyv3966 := &yyv3963[yyj3963] + yyv3966.CodecDecodeSelf(d) } } else { @@ -49996,17 +50383,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj3934 < len(yyv3934) { - yyv3934 = yyv3934[:yyj3934] - yyc3934 = true - } else if yyj3934 == 0 && yyv3934 == nil { - yyv3934 = []EndpointAddress{} - yyc3934 = true + if yyj3963 < len(yyv3963) { + yyv3963 = yyv3963[:yyj3963] + yyc3963 = true + } else if yyj3963 == 0 && yyv3963 == nil { + yyv3963 = []EndpointAddress{} + yyc3963 = true } } - yyh3934.End() - if yyc3934 { - *v = yyv3934 + yyh3963.End() + if yyc3963 { + *v = yyv3963 } } @@ -50015,10 +50402,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3938 := range v { + for _, yyv3967 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3939 := &yyv3938 - yy3939.CodecEncodeSelf(e) + yy3968 := &yyv3967 + yy3968.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50028,83 +50415,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3940 := *v - yyh3940, yyl3940 := z.DecSliceHelperStart() - var yyc3940 bool - if yyl3940 == 0 { - if yyv3940 == nil { - yyv3940 = []EndpointPort{} - yyc3940 = true - } else if len(yyv3940) != 0 { - yyv3940 = yyv3940[:0] - yyc3940 = true + yyv3969 := *v + yyh3969, yyl3969 := z.DecSliceHelperStart() + var yyc3969 bool + if yyl3969 == 0 { + if yyv3969 == nil { + yyv3969 = []EndpointPort{} + yyc3969 = true + } else if len(yyv3969) != 0 { + yyv3969 = yyv3969[:0] + yyc3969 = true } - } else if yyl3940 > 0 { - var yyrr3940, yyrl3940 int - var yyrt3940 bool - if yyl3940 > cap(yyv3940) { + } else if yyl3969 > 0 { + var yyrr3969, yyrl3969 int + var yyrt3969 bool + if yyl3969 > cap(yyv3969) { - yyrg3940 := len(yyv3940) > 0 - yyv23940 := yyv3940 - yyrl3940, yyrt3940 = z.DecInferLen(yyl3940, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3940 { - if yyrl3940 <= cap(yyv3940) { - yyv3940 = yyv3940[:yyrl3940] + yyrg3969 := len(yyv3969) > 0 + yyv23969 := yyv3969 + yyrl3969, yyrt3969 = z.DecInferLen(yyl3969, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3969 { + if yyrl3969 <= cap(yyv3969) { + yyv3969 = yyv3969[:yyrl3969] } else { - yyv3940 = make([]EndpointPort, yyrl3940) + yyv3969 = make([]EndpointPort, yyrl3969) } } else { - yyv3940 = make([]EndpointPort, yyrl3940) + yyv3969 = make([]EndpointPort, yyrl3969) } - yyc3940 = true - yyrr3940 = len(yyv3940) - if yyrg3940 { - copy(yyv3940, yyv23940) + yyc3969 = true + yyrr3969 = len(yyv3969) + if yyrg3969 { + copy(yyv3969, yyv23969) } - } else if yyl3940 != len(yyv3940) { - yyv3940 = yyv3940[:yyl3940] - yyc3940 = true + } else if yyl3969 != len(yyv3969) { + yyv3969 = yyv3969[:yyl3969] + yyc3969 = true } - yyj3940 := 0 - for ; yyj3940 < yyrr3940; yyj3940++ { - yyh3940.ElemContainerState(yyj3940) + yyj3969 := 0 + for ; yyj3969 < yyrr3969; yyj3969++ { + yyh3969.ElemContainerState(yyj3969) if r.TryDecodeAsNil() { - yyv3940[yyj3940] = EndpointPort{} + yyv3969[yyj3969] = EndpointPort{} } else { - yyv3941 := &yyv3940[yyj3940] - yyv3941.CodecDecodeSelf(d) + yyv3970 := &yyv3969[yyj3969] + yyv3970.CodecDecodeSelf(d) } } - if yyrt3940 { - for ; yyj3940 < yyl3940; yyj3940++ { - yyv3940 = append(yyv3940, EndpointPort{}) - yyh3940.ElemContainerState(yyj3940) + if yyrt3969 { + for ; yyj3969 < yyl3969; yyj3969++ { + yyv3969 = append(yyv3969, EndpointPort{}) + yyh3969.ElemContainerState(yyj3969) if r.TryDecodeAsNil() { - yyv3940[yyj3940] = EndpointPort{} + yyv3969[yyj3969] = EndpointPort{} } else { - yyv3942 := &yyv3940[yyj3940] - yyv3942.CodecDecodeSelf(d) + yyv3971 := &yyv3969[yyj3969] + yyv3971.CodecDecodeSelf(d) } } } } else { - yyj3940 := 0 - for ; !r.CheckBreak(); yyj3940++ { + yyj3969 := 0 + for ; !r.CheckBreak(); yyj3969++ { - if yyj3940 >= len(yyv3940) { - yyv3940 = append(yyv3940, EndpointPort{}) // var yyz3940 EndpointPort - yyc3940 = true + if yyj3969 >= len(yyv3969) { + yyv3969 = append(yyv3969, EndpointPort{}) // var yyz3969 EndpointPort + yyc3969 = true } - yyh3940.ElemContainerState(yyj3940) - if yyj3940 < len(yyv3940) { + yyh3969.ElemContainerState(yyj3969) + if yyj3969 < len(yyv3969) { if r.TryDecodeAsNil() { - yyv3940[yyj3940] = EndpointPort{} + yyv3969[yyj3969] = EndpointPort{} } else { - yyv3943 := &yyv3940[yyj3940] - yyv3943.CodecDecodeSelf(d) + yyv3972 := &yyv3969[yyj3969] + yyv3972.CodecDecodeSelf(d) } } else { @@ -50112,17 +50499,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj3940 < len(yyv3940) { - yyv3940 = yyv3940[:yyj3940] - yyc3940 = true - } else if yyj3940 == 0 && yyv3940 == nil { - yyv3940 = []EndpointPort{} - yyc3940 = true + if yyj3969 < len(yyv3969) { + yyv3969 = yyv3969[:yyj3969] + yyc3969 = true + } else if yyj3969 == 0 && yyv3969 == nil { + yyv3969 = []EndpointPort{} + yyc3969 = true } } - yyh3940.End() - if yyc3940 { - *v = yyv3940 + yyh3969.End() + if yyc3969 { + *v = yyv3969 } } @@ -50131,10 +50518,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3944 := range v { + for _, yyv3973 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3945 := &yyv3944 - yy3945.CodecEncodeSelf(e) + yy3974 := &yyv3973 + yy3974.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50144,83 +50531,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3946 := *v - yyh3946, yyl3946 := z.DecSliceHelperStart() - var yyc3946 bool - if yyl3946 == 0 { - if yyv3946 == nil { - yyv3946 = []Endpoints{} - yyc3946 = true - } else if len(yyv3946) != 0 { - yyv3946 = yyv3946[:0] - yyc3946 = true + yyv3975 := *v + yyh3975, yyl3975 := z.DecSliceHelperStart() + var yyc3975 bool + if yyl3975 == 0 { + if yyv3975 == nil { + yyv3975 = []Endpoints{} + yyc3975 = true + } else if len(yyv3975) != 0 { + yyv3975 = yyv3975[:0] + yyc3975 = true } - } else if yyl3946 > 0 { - var yyrr3946, yyrl3946 int - var yyrt3946 bool - if yyl3946 > cap(yyv3946) { + } else if yyl3975 > 0 { + var yyrr3975, yyrl3975 int + var yyrt3975 bool + if yyl3975 > cap(yyv3975) { - yyrg3946 := len(yyv3946) > 0 - yyv23946 := yyv3946 - yyrl3946, yyrt3946 = z.DecInferLen(yyl3946, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3946 { - if yyrl3946 <= cap(yyv3946) { - yyv3946 = yyv3946[:yyrl3946] + yyrg3975 := len(yyv3975) > 0 + yyv23975 := yyv3975 + yyrl3975, yyrt3975 = z.DecInferLen(yyl3975, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3975 { + if yyrl3975 <= cap(yyv3975) { + yyv3975 = yyv3975[:yyrl3975] } else { - yyv3946 = make([]Endpoints, yyrl3946) + yyv3975 = make([]Endpoints, yyrl3975) } } else { - yyv3946 = make([]Endpoints, yyrl3946) + yyv3975 = make([]Endpoints, yyrl3975) } - yyc3946 = true - yyrr3946 = len(yyv3946) - if yyrg3946 { - copy(yyv3946, yyv23946) + yyc3975 = true + yyrr3975 = len(yyv3975) + if yyrg3975 { + copy(yyv3975, yyv23975) } - } else if yyl3946 != len(yyv3946) { - yyv3946 = yyv3946[:yyl3946] - yyc3946 = true + } else if yyl3975 != len(yyv3975) { + yyv3975 = yyv3975[:yyl3975] + yyc3975 = true } - yyj3946 := 0 - for ; yyj3946 < yyrr3946; yyj3946++ { - yyh3946.ElemContainerState(yyj3946) + yyj3975 := 0 + for ; yyj3975 < yyrr3975; yyj3975++ { + yyh3975.ElemContainerState(yyj3975) if r.TryDecodeAsNil() { - yyv3946[yyj3946] = Endpoints{} + yyv3975[yyj3975] = Endpoints{} } else { - yyv3947 := &yyv3946[yyj3946] - yyv3947.CodecDecodeSelf(d) + yyv3976 := &yyv3975[yyj3975] + yyv3976.CodecDecodeSelf(d) } } - if yyrt3946 { - for ; yyj3946 < yyl3946; yyj3946++ { - yyv3946 = append(yyv3946, Endpoints{}) - yyh3946.ElemContainerState(yyj3946) + if yyrt3975 { + for ; yyj3975 < yyl3975; yyj3975++ { + yyv3975 = append(yyv3975, Endpoints{}) + yyh3975.ElemContainerState(yyj3975) if r.TryDecodeAsNil() { - yyv3946[yyj3946] = Endpoints{} + yyv3975[yyj3975] = Endpoints{} } else { - yyv3948 := &yyv3946[yyj3946] - yyv3948.CodecDecodeSelf(d) + yyv3977 := &yyv3975[yyj3975] + yyv3977.CodecDecodeSelf(d) } } } } else { - yyj3946 := 0 - for ; !r.CheckBreak(); yyj3946++ { + yyj3975 := 0 + for ; !r.CheckBreak(); yyj3975++ { - if yyj3946 >= len(yyv3946) { - yyv3946 = append(yyv3946, Endpoints{}) // var yyz3946 Endpoints - yyc3946 = true + if yyj3975 >= len(yyv3975) { + yyv3975 = append(yyv3975, Endpoints{}) // var yyz3975 Endpoints + yyc3975 = true } - yyh3946.ElemContainerState(yyj3946) - if yyj3946 < len(yyv3946) { + yyh3975.ElemContainerState(yyj3975) + if yyj3975 < len(yyv3975) { if r.TryDecodeAsNil() { - yyv3946[yyj3946] = Endpoints{} + yyv3975[yyj3975] = Endpoints{} } else { - yyv3949 := &yyv3946[yyj3946] - yyv3949.CodecDecodeSelf(d) + yyv3978 := &yyv3975[yyj3975] + yyv3978.CodecDecodeSelf(d) } } else { @@ -50228,17 +50615,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj3946 < len(yyv3946) { - yyv3946 = yyv3946[:yyj3946] - yyc3946 = true - } else if yyj3946 == 0 && yyv3946 == nil { - yyv3946 = []Endpoints{} - yyc3946 = true + if yyj3975 < len(yyv3975) { + yyv3975 = yyv3975[:yyj3975] + yyc3975 = true + } else if yyj3975 == 0 && yyv3975 == nil { + yyv3975 = []Endpoints{} + yyc3975 = true } } - yyh3946.End() - if yyc3946 { - *v = yyv3946 + yyh3975.End() + if yyc3975 { + *v = yyv3975 } } @@ -50247,10 +50634,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3950 := range v { + for _, yyv3979 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3951 := &yyv3950 - yy3951.CodecEncodeSelf(e) + yy3980 := &yyv3979 + yy3980.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50260,83 +50647,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3952 := *v - yyh3952, yyl3952 := z.DecSliceHelperStart() - var yyc3952 bool - if yyl3952 == 0 { - if yyv3952 == nil { - yyv3952 = []NodeCondition{} - yyc3952 = true - } else if len(yyv3952) != 0 { - yyv3952 = yyv3952[:0] - yyc3952 = true + yyv3981 := *v + yyh3981, yyl3981 := z.DecSliceHelperStart() + var yyc3981 bool + if yyl3981 == 0 { + if yyv3981 == nil { + yyv3981 = []NodeCondition{} + yyc3981 = true + } else if len(yyv3981) != 0 { + yyv3981 = yyv3981[:0] + yyc3981 = true } - } else if yyl3952 > 0 { - var yyrr3952, yyrl3952 int - var yyrt3952 bool - if yyl3952 > cap(yyv3952) { + } else if yyl3981 > 0 { + var yyrr3981, yyrl3981 int + var yyrt3981 bool + if yyl3981 > cap(yyv3981) { - yyrg3952 := len(yyv3952) > 0 - yyv23952 := yyv3952 - yyrl3952, yyrt3952 = z.DecInferLen(yyl3952, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3952 { - if yyrl3952 <= cap(yyv3952) { - yyv3952 = yyv3952[:yyrl3952] + yyrg3981 := len(yyv3981) > 0 + yyv23981 := yyv3981 + yyrl3981, yyrt3981 = z.DecInferLen(yyl3981, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3981 { + if yyrl3981 <= cap(yyv3981) { + yyv3981 = yyv3981[:yyrl3981] } else { - yyv3952 = make([]NodeCondition, yyrl3952) + yyv3981 = make([]NodeCondition, yyrl3981) } } else { - yyv3952 = make([]NodeCondition, yyrl3952) + yyv3981 = make([]NodeCondition, yyrl3981) } - yyc3952 = true - yyrr3952 = len(yyv3952) - if yyrg3952 { - copy(yyv3952, yyv23952) + yyc3981 = true + yyrr3981 = len(yyv3981) + if yyrg3981 { + copy(yyv3981, yyv23981) } - } else if yyl3952 != len(yyv3952) { - yyv3952 = yyv3952[:yyl3952] - yyc3952 = true + } else if yyl3981 != len(yyv3981) { + yyv3981 = yyv3981[:yyl3981] + yyc3981 = true } - yyj3952 := 0 - for ; yyj3952 < yyrr3952; yyj3952++ { - yyh3952.ElemContainerState(yyj3952) + yyj3981 := 0 + for ; yyj3981 < yyrr3981; yyj3981++ { + yyh3981.ElemContainerState(yyj3981) if r.TryDecodeAsNil() { - yyv3952[yyj3952] = NodeCondition{} + yyv3981[yyj3981] = NodeCondition{} } else { - yyv3953 := &yyv3952[yyj3952] - yyv3953.CodecDecodeSelf(d) + yyv3982 := &yyv3981[yyj3981] + yyv3982.CodecDecodeSelf(d) } } - if yyrt3952 { - for ; yyj3952 < yyl3952; yyj3952++ { - yyv3952 = append(yyv3952, NodeCondition{}) - yyh3952.ElemContainerState(yyj3952) + if yyrt3981 { + for ; yyj3981 < yyl3981; yyj3981++ { + yyv3981 = append(yyv3981, NodeCondition{}) + yyh3981.ElemContainerState(yyj3981) if r.TryDecodeAsNil() { - yyv3952[yyj3952] = NodeCondition{} + yyv3981[yyj3981] = NodeCondition{} } else { - yyv3954 := &yyv3952[yyj3952] - yyv3954.CodecDecodeSelf(d) + yyv3983 := &yyv3981[yyj3981] + yyv3983.CodecDecodeSelf(d) } } } } else { - yyj3952 := 0 - for ; !r.CheckBreak(); yyj3952++ { + yyj3981 := 0 + for ; !r.CheckBreak(); yyj3981++ { - if yyj3952 >= len(yyv3952) { - yyv3952 = append(yyv3952, NodeCondition{}) // var yyz3952 NodeCondition - yyc3952 = true + if yyj3981 >= len(yyv3981) { + yyv3981 = append(yyv3981, NodeCondition{}) // var yyz3981 NodeCondition + yyc3981 = true } - yyh3952.ElemContainerState(yyj3952) - if yyj3952 < len(yyv3952) { + yyh3981.ElemContainerState(yyj3981) + if yyj3981 < len(yyv3981) { if r.TryDecodeAsNil() { - yyv3952[yyj3952] = NodeCondition{} + yyv3981[yyj3981] = NodeCondition{} } else { - yyv3955 := &yyv3952[yyj3952] - yyv3955.CodecDecodeSelf(d) + yyv3984 := &yyv3981[yyj3981] + yyv3984.CodecDecodeSelf(d) } } else { @@ -50344,17 +50731,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj3952 < len(yyv3952) { - yyv3952 = yyv3952[:yyj3952] - yyc3952 = true - } else if yyj3952 == 0 && yyv3952 == nil { - yyv3952 = []NodeCondition{} - yyc3952 = true + if yyj3981 < len(yyv3981) { + yyv3981 = yyv3981[:yyj3981] + yyc3981 = true + } else if yyj3981 == 0 && yyv3981 == nil { + yyv3981 = []NodeCondition{} + yyc3981 = true } } - yyh3952.End() - if yyc3952 { - *v = yyv3952 + yyh3981.End() + if yyc3981 { + *v = yyv3981 } } @@ -50363,10 +50750,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3956 := range v { + for _, yyv3985 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3957 := &yyv3956 - yy3957.CodecEncodeSelf(e) + yy3986 := &yyv3985 + yy3986.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50376,83 +50763,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3958 := *v - yyh3958, yyl3958 := z.DecSliceHelperStart() - var yyc3958 bool - if yyl3958 == 0 { - if yyv3958 == nil { - yyv3958 = []NodeAddress{} - yyc3958 = true - } else if len(yyv3958) != 0 { - yyv3958 = yyv3958[:0] - yyc3958 = true + yyv3987 := *v + yyh3987, yyl3987 := z.DecSliceHelperStart() + var yyc3987 bool + if yyl3987 == 0 { + if yyv3987 == nil { + yyv3987 = []NodeAddress{} + yyc3987 = true + } else if len(yyv3987) != 0 { + yyv3987 = yyv3987[:0] + yyc3987 = true } - } else if yyl3958 > 0 { - var yyrr3958, yyrl3958 int - var yyrt3958 bool - if yyl3958 > cap(yyv3958) { + } else if yyl3987 > 0 { + var yyrr3987, yyrl3987 int + var yyrt3987 bool + if yyl3987 > cap(yyv3987) { - yyrg3958 := len(yyv3958) > 0 - yyv23958 := yyv3958 - yyrl3958, yyrt3958 = z.DecInferLen(yyl3958, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3958 { - if yyrl3958 <= cap(yyv3958) { - yyv3958 = yyv3958[:yyrl3958] + yyrg3987 := len(yyv3987) > 0 + yyv23987 := yyv3987 + yyrl3987, yyrt3987 = z.DecInferLen(yyl3987, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3987 { + if yyrl3987 <= cap(yyv3987) { + yyv3987 = yyv3987[:yyrl3987] } else { - yyv3958 = make([]NodeAddress, yyrl3958) + yyv3987 = make([]NodeAddress, yyrl3987) } } else { - yyv3958 = make([]NodeAddress, yyrl3958) + yyv3987 = make([]NodeAddress, yyrl3987) } - yyc3958 = true - yyrr3958 = len(yyv3958) - if yyrg3958 { - copy(yyv3958, yyv23958) + yyc3987 = true + yyrr3987 = len(yyv3987) + if yyrg3987 { + copy(yyv3987, yyv23987) } - } else if yyl3958 != len(yyv3958) { - yyv3958 = yyv3958[:yyl3958] - yyc3958 = true + } else if yyl3987 != len(yyv3987) { + yyv3987 = yyv3987[:yyl3987] + yyc3987 = true } - yyj3958 := 0 - for ; yyj3958 < yyrr3958; yyj3958++ { - yyh3958.ElemContainerState(yyj3958) + yyj3987 := 0 + for ; yyj3987 < yyrr3987; yyj3987++ { + yyh3987.ElemContainerState(yyj3987) if r.TryDecodeAsNil() { - yyv3958[yyj3958] = NodeAddress{} + yyv3987[yyj3987] = NodeAddress{} } else { - yyv3959 := &yyv3958[yyj3958] - yyv3959.CodecDecodeSelf(d) + yyv3988 := &yyv3987[yyj3987] + yyv3988.CodecDecodeSelf(d) } } - if yyrt3958 { - for ; yyj3958 < yyl3958; yyj3958++ { - yyv3958 = append(yyv3958, NodeAddress{}) - yyh3958.ElemContainerState(yyj3958) + if yyrt3987 { + for ; yyj3987 < yyl3987; yyj3987++ { + yyv3987 = append(yyv3987, NodeAddress{}) + yyh3987.ElemContainerState(yyj3987) if r.TryDecodeAsNil() { - yyv3958[yyj3958] = NodeAddress{} + yyv3987[yyj3987] = NodeAddress{} } else { - yyv3960 := &yyv3958[yyj3958] - yyv3960.CodecDecodeSelf(d) + yyv3989 := &yyv3987[yyj3987] + yyv3989.CodecDecodeSelf(d) } } } } else { - yyj3958 := 0 - for ; !r.CheckBreak(); yyj3958++ { + yyj3987 := 0 + for ; !r.CheckBreak(); yyj3987++ { - if yyj3958 >= len(yyv3958) { - yyv3958 = append(yyv3958, NodeAddress{}) // var yyz3958 NodeAddress - yyc3958 = true + if yyj3987 >= len(yyv3987) { + yyv3987 = append(yyv3987, NodeAddress{}) // var yyz3987 NodeAddress + yyc3987 = true } - yyh3958.ElemContainerState(yyj3958) - if yyj3958 < len(yyv3958) { + yyh3987.ElemContainerState(yyj3987) + if yyj3987 < len(yyv3987) { if r.TryDecodeAsNil() { - yyv3958[yyj3958] = NodeAddress{} + yyv3987[yyj3987] = NodeAddress{} } else { - yyv3961 := &yyv3958[yyj3958] - yyv3961.CodecDecodeSelf(d) + yyv3990 := &yyv3987[yyj3987] + yyv3990.CodecDecodeSelf(d) } } else { @@ -50460,17 +50847,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj3958 < len(yyv3958) { - yyv3958 = yyv3958[:yyj3958] - yyc3958 = true - } else if yyj3958 == 0 && yyv3958 == nil { - yyv3958 = []NodeAddress{} - yyc3958 = true + if yyj3987 < len(yyv3987) { + yyv3987 = yyv3987[:yyj3987] + yyc3987 = true + } else if yyj3987 == 0 && yyv3987 == nil { + yyv3987 = []NodeAddress{} + yyc3987 = true } } - yyh3958.End() - if yyc3958 { - *v = yyv3958 + yyh3987.End() + if yyc3987 { + *v = yyv3987 } } @@ -50479,10 +50866,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3962 := range v { + for _, yyv3991 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3963 := &yyv3962 - yy3963.CodecEncodeSelf(e) + yy3992 := &yyv3991 + yy3992.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50492,83 +50879,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3964 := *v - yyh3964, yyl3964 := z.DecSliceHelperStart() - var yyc3964 bool - if yyl3964 == 0 { - if yyv3964 == nil { - yyv3964 = []ContainerImage{} - yyc3964 = true - } else if len(yyv3964) != 0 { - yyv3964 = yyv3964[:0] - yyc3964 = true + yyv3993 := *v + yyh3993, yyl3993 := z.DecSliceHelperStart() + var yyc3993 bool + if yyl3993 == 0 { + if yyv3993 == nil { + yyv3993 = []ContainerImage{} + yyc3993 = true + } else if len(yyv3993) != 0 { + yyv3993 = yyv3993[:0] + yyc3993 = true } - } else if yyl3964 > 0 { - var yyrr3964, yyrl3964 int - var yyrt3964 bool - if yyl3964 > cap(yyv3964) { + } else if yyl3993 > 0 { + var yyrr3993, yyrl3993 int + var yyrt3993 bool + if yyl3993 > cap(yyv3993) { - yyrg3964 := len(yyv3964) > 0 - yyv23964 := yyv3964 - yyrl3964, yyrt3964 = z.DecInferLen(yyl3964, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3964 { - if yyrl3964 <= cap(yyv3964) { - yyv3964 = yyv3964[:yyrl3964] + yyrg3993 := len(yyv3993) > 0 + yyv23993 := yyv3993 + yyrl3993, yyrt3993 = z.DecInferLen(yyl3993, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3993 { + if yyrl3993 <= cap(yyv3993) { + yyv3993 = yyv3993[:yyrl3993] } else { - yyv3964 = make([]ContainerImage, yyrl3964) + yyv3993 = make([]ContainerImage, yyrl3993) } } else { - yyv3964 = make([]ContainerImage, yyrl3964) + yyv3993 = make([]ContainerImage, yyrl3993) } - yyc3964 = true - yyrr3964 = len(yyv3964) - if yyrg3964 { - copy(yyv3964, yyv23964) + yyc3993 = true + yyrr3993 = len(yyv3993) + if yyrg3993 { + copy(yyv3993, yyv23993) } - } else if yyl3964 != len(yyv3964) { - yyv3964 = yyv3964[:yyl3964] - yyc3964 = true + } else if yyl3993 != len(yyv3993) { + yyv3993 = yyv3993[:yyl3993] + yyc3993 = true } - yyj3964 := 0 - for ; yyj3964 < yyrr3964; yyj3964++ { - yyh3964.ElemContainerState(yyj3964) + yyj3993 := 0 + for ; yyj3993 < yyrr3993; yyj3993++ { + yyh3993.ElemContainerState(yyj3993) if r.TryDecodeAsNil() { - yyv3964[yyj3964] = ContainerImage{} + yyv3993[yyj3993] = ContainerImage{} } else { - yyv3965 := &yyv3964[yyj3964] - yyv3965.CodecDecodeSelf(d) + yyv3994 := &yyv3993[yyj3993] + yyv3994.CodecDecodeSelf(d) } } - if yyrt3964 { - for ; yyj3964 < yyl3964; yyj3964++ { - yyv3964 = append(yyv3964, ContainerImage{}) - yyh3964.ElemContainerState(yyj3964) + if yyrt3993 { + for ; yyj3993 < yyl3993; yyj3993++ { + yyv3993 = append(yyv3993, ContainerImage{}) + yyh3993.ElemContainerState(yyj3993) if r.TryDecodeAsNil() { - yyv3964[yyj3964] = ContainerImage{} + yyv3993[yyj3993] = ContainerImage{} } else { - yyv3966 := &yyv3964[yyj3964] - yyv3966.CodecDecodeSelf(d) + yyv3995 := &yyv3993[yyj3993] + yyv3995.CodecDecodeSelf(d) } } } } else { - yyj3964 := 0 - for ; !r.CheckBreak(); yyj3964++ { + yyj3993 := 0 + for ; !r.CheckBreak(); yyj3993++ { - if yyj3964 >= len(yyv3964) { - yyv3964 = append(yyv3964, ContainerImage{}) // var yyz3964 ContainerImage - yyc3964 = true + if yyj3993 >= len(yyv3993) { + yyv3993 = append(yyv3993, ContainerImage{}) // var yyz3993 ContainerImage + yyc3993 = true } - yyh3964.ElemContainerState(yyj3964) - if yyj3964 < len(yyv3964) { + yyh3993.ElemContainerState(yyj3993) + if yyj3993 < len(yyv3993) { if r.TryDecodeAsNil() { - yyv3964[yyj3964] = ContainerImage{} + yyv3993[yyj3993] = ContainerImage{} } else { - yyv3967 := &yyv3964[yyj3964] - yyv3967.CodecDecodeSelf(d) + yyv3996 := &yyv3993[yyj3993] + yyv3996.CodecDecodeSelf(d) } } else { @@ -50576,17 +50963,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj3964 < len(yyv3964) { - yyv3964 = yyv3964[:yyj3964] - yyc3964 = true - } else if yyj3964 == 0 && yyv3964 == nil { - yyv3964 = []ContainerImage{} - yyc3964 = true + if yyj3993 < len(yyv3993) { + yyv3993 = yyv3993[:yyj3993] + yyc3993 = true + } else if yyj3993 == 0 && yyv3993 == nil { + yyv3993 = []ContainerImage{} + yyc3993 = true } } - yyh3964.End() - if yyc3964 { - *v = yyv3964 + yyh3993.End() + if yyc3993 { + *v = yyv3993 } } @@ -50595,19 +50982,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3968, yyv3968 := range v { + for yyk3997, yyv3997 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk3968.CodecEncodeSelf(e) + yyk3997.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3969 := &yyv3968 - yym3970 := z.EncBinary() - _ = yym3970 + yy3998 := &yyv3997 + yym3999 := z.EncBinary() + _ = yym3999 if false { - } else if z.HasExtensions() && z.EncExt(yy3969) { - } else if !yym3970 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3969) + } else if z.HasExtensions() && z.EncExt(yy3998) { + } else if !yym3999 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3998) } else { - z.EncFallback(yy3969) + z.EncFallback(yy3998) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50618,617 +51005,73 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3971 := *v - yyl3971 := r.ReadMapStart() - yybh3971 := z.DecBasicHandle() - if yyv3971 == nil { - yyrl3971, _ := z.DecInferLen(yyl3971, yybh3971.MaxInitLen, 40) - yyv3971 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3971) - *v = yyv3971 + yyv4000 := *v + yyl4000 := r.ReadMapStart() + yybh4000 := z.DecBasicHandle() + if yyv4000 == nil { + yyrl4000, _ := z.DecInferLen(yyl4000, yybh4000.MaxInitLen, 40) + yyv4000 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4000) + *v = yyv4000 } - var yymk3971 ResourceName - var yymv3971 pkg3_resource.Quantity - var yymg3971 bool - if yybh3971.MapValueReset { - yymg3971 = true + var yymk4000 ResourceName + var yymv4000 pkg3_resource.Quantity + var yymg4000 bool + if yybh4000.MapValueReset { + yymg4000 = true } - if yyl3971 > 0 { - for yyj3971 := 0; yyj3971 < yyl3971; yyj3971++ { + if yyl4000 > 0 { + for yyj4000 := 0; yyj4000 < yyl4000; yyj4000++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3971 = "" + yymk4000 = "" } else { - yymk3971 = ResourceName(r.DecodeString()) + yymk4000 = ResourceName(r.DecodeString()) } - if yymg3971 { - yymv3971 = yyv3971[yymk3971] + if yymg4000 { + yymv4000 = yyv4000[yymk4000] } else { - yymv3971 = pkg3_resource.Quantity{} + yymv4000 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3971 = pkg3_resource.Quantity{} + yymv4000 = pkg3_resource.Quantity{} } else { - yyv3973 := &yymv3971 - yym3974 := z.DecBinary() - _ = yym3974 + yyv4002 := &yymv4000 + yym4003 := z.DecBinary() + _ = yym4003 if false { - } else if z.HasExtensions() && z.DecExt(yyv3973) { - } else if !yym3974 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3973) + } else if z.HasExtensions() && z.DecExt(yyv4002) { + } else if !yym4003 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4002) } else { - z.DecFallback(yyv3973, false) + z.DecFallback(yyv4002, false) } } - if yyv3971 != nil { - yyv3971[yymk3971] = yymv3971 + if yyv4000 != nil { + yyv4000[yymk4000] = yymv4000 } } - } else if yyl3971 < 0 { - for yyj3971 := 0; !r.CheckBreak(); yyj3971++ { + } else if yyl4000 < 0 { + for yyj4000 := 0; !r.CheckBreak(); yyj4000++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3971 = "" + yymk4000 = "" } else { - yymk3971 = ResourceName(r.DecodeString()) + yymk4000 = ResourceName(r.DecodeString()) } - if yymg3971 { - yymv3971 = yyv3971[yymk3971] + if yymg4000 { + yymv4000 = yyv4000[yymk4000] } else { - yymv3971 = pkg3_resource.Quantity{} + yymv4000 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3971 = pkg3_resource.Quantity{} + yymv4000 = pkg3_resource.Quantity{} } else { - yyv3976 := &yymv3971 - yym3977 := z.DecBinary() - _ = yym3977 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3976) { - } else if !yym3977 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3976) - } else { - z.DecFallback(yyv3976, false) - } - } - - if yyv3971 != nil { - yyv3971[yymk3971] = yymv3971 - } - } - } // else len==0: TODO: Should we clear map entries? - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv3978 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3979 := &yyv3978 - yy3979.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3980 := *v - yyh3980, yyl3980 := z.DecSliceHelperStart() - var yyc3980 bool - if yyl3980 == 0 { - if yyv3980 == nil { - yyv3980 = []Node{} - yyc3980 = true - } else if len(yyv3980) != 0 { - yyv3980 = yyv3980[:0] - yyc3980 = true - } - } else if yyl3980 > 0 { - var yyrr3980, yyrl3980 int - var yyrt3980 bool - if yyl3980 > cap(yyv3980) { - - yyrg3980 := len(yyv3980) > 0 - yyv23980 := yyv3980 - yyrl3980, yyrt3980 = z.DecInferLen(yyl3980, z.DecBasicHandle().MaxInitLen, 488) - if yyrt3980 { - if yyrl3980 <= cap(yyv3980) { - yyv3980 = yyv3980[:yyrl3980] - } else { - yyv3980 = make([]Node, yyrl3980) - } - } else { - yyv3980 = make([]Node, yyrl3980) - } - yyc3980 = true - yyrr3980 = len(yyv3980) - if yyrg3980 { - copy(yyv3980, yyv23980) - } - } else if yyl3980 != len(yyv3980) { - yyv3980 = yyv3980[:yyl3980] - yyc3980 = true - } - yyj3980 := 0 - for ; yyj3980 < yyrr3980; yyj3980++ { - yyh3980.ElemContainerState(yyj3980) - if r.TryDecodeAsNil() { - yyv3980[yyj3980] = Node{} - } else { - yyv3981 := &yyv3980[yyj3980] - yyv3981.CodecDecodeSelf(d) - } - - } - if yyrt3980 { - for ; yyj3980 < yyl3980; yyj3980++ { - yyv3980 = append(yyv3980, Node{}) - yyh3980.ElemContainerState(yyj3980) - if r.TryDecodeAsNil() { - yyv3980[yyj3980] = Node{} - } else { - yyv3982 := &yyv3980[yyj3980] - yyv3982.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3980 := 0 - for ; !r.CheckBreak(); yyj3980++ { - - if yyj3980 >= len(yyv3980) { - yyv3980 = append(yyv3980, Node{}) // var yyz3980 Node - yyc3980 = true - } - yyh3980.ElemContainerState(yyj3980) - if yyj3980 < len(yyv3980) { - if r.TryDecodeAsNil() { - yyv3980[yyj3980] = Node{} - } else { - yyv3983 := &yyv3980[yyj3980] - yyv3983.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3980 < len(yyv3980) { - yyv3980 = yyv3980[:yyj3980] - yyc3980 = true - } else if yyj3980 == 0 && yyv3980 == nil { - yyv3980 = []Node{} - yyc3980 = true - } - } - yyh3980.End() - if yyc3980 { - *v = yyv3980 - } -} - -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 _, yyv3984 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3984.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 - - yyv3985 := *v - yyh3985, yyl3985 := z.DecSliceHelperStart() - var yyc3985 bool - if yyl3985 == 0 { - if yyv3985 == nil { - yyv3985 = []FinalizerName{} - yyc3985 = true - } else if len(yyv3985) != 0 { - yyv3985 = yyv3985[:0] - yyc3985 = true - } - } else if yyl3985 > 0 { - var yyrr3985, yyrl3985 int - var yyrt3985 bool - if yyl3985 > cap(yyv3985) { - - yyrl3985, yyrt3985 = z.DecInferLen(yyl3985, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3985 { - if yyrl3985 <= cap(yyv3985) { - yyv3985 = yyv3985[:yyrl3985] - } else { - yyv3985 = make([]FinalizerName, yyrl3985) - } - } else { - yyv3985 = make([]FinalizerName, yyrl3985) - } - yyc3985 = true - yyrr3985 = len(yyv3985) - } else if yyl3985 != len(yyv3985) { - yyv3985 = yyv3985[:yyl3985] - yyc3985 = true - } - yyj3985 := 0 - for ; yyj3985 < yyrr3985; yyj3985++ { - yyh3985.ElemContainerState(yyj3985) - if r.TryDecodeAsNil() { - yyv3985[yyj3985] = "" - } else { - yyv3985[yyj3985] = FinalizerName(r.DecodeString()) - } - - } - if yyrt3985 { - for ; yyj3985 < yyl3985; yyj3985++ { - yyv3985 = append(yyv3985, "") - yyh3985.ElemContainerState(yyj3985) - if r.TryDecodeAsNil() { - yyv3985[yyj3985] = "" - } else { - yyv3985[yyj3985] = FinalizerName(r.DecodeString()) - } - - } - } - - } else { - yyj3985 := 0 - for ; !r.CheckBreak(); yyj3985++ { - - if yyj3985 >= len(yyv3985) { - yyv3985 = append(yyv3985, "") // var yyz3985 FinalizerName - yyc3985 = true - } - yyh3985.ElemContainerState(yyj3985) - if yyj3985 < len(yyv3985) { - if r.TryDecodeAsNil() { - yyv3985[yyj3985] = "" - } else { - yyv3985[yyj3985] = FinalizerName(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj3985 < len(yyv3985) { - yyv3985 = yyv3985[:yyj3985] - yyc3985 = true - } else if yyj3985 == 0 && yyv3985 == nil { - yyv3985 = []FinalizerName{} - yyc3985 = true - } - } - yyh3985.End() - if yyc3985 { - *v = yyv3985 - } -} - -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 _, yyv3989 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3990 := &yyv3989 - yy3990.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3991 := *v - yyh3991, yyl3991 := z.DecSliceHelperStart() - var yyc3991 bool - if yyl3991 == 0 { - if yyv3991 == nil { - yyv3991 = []Namespace{} - yyc3991 = true - } else if len(yyv3991) != 0 { - yyv3991 = yyv3991[:0] - yyc3991 = true - } - } else if yyl3991 > 0 { - var yyrr3991, yyrl3991 int - var yyrt3991 bool - if yyl3991 > cap(yyv3991) { - - yyrg3991 := len(yyv3991) > 0 - yyv23991 := yyv3991 - yyrl3991, yyrt3991 = z.DecInferLen(yyl3991, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3991 { - if yyrl3991 <= cap(yyv3991) { - yyv3991 = yyv3991[:yyrl3991] - } else { - yyv3991 = make([]Namespace, yyrl3991) - } - } else { - yyv3991 = make([]Namespace, yyrl3991) - } - yyc3991 = true - yyrr3991 = len(yyv3991) - if yyrg3991 { - copy(yyv3991, yyv23991) - } - } else if yyl3991 != len(yyv3991) { - yyv3991 = yyv3991[:yyl3991] - yyc3991 = true - } - yyj3991 := 0 - for ; yyj3991 < yyrr3991; yyj3991++ { - yyh3991.ElemContainerState(yyj3991) - if r.TryDecodeAsNil() { - yyv3991[yyj3991] = Namespace{} - } else { - yyv3992 := &yyv3991[yyj3991] - yyv3992.CodecDecodeSelf(d) - } - - } - if yyrt3991 { - for ; yyj3991 < yyl3991; yyj3991++ { - yyv3991 = append(yyv3991, Namespace{}) - yyh3991.ElemContainerState(yyj3991) - if r.TryDecodeAsNil() { - yyv3991[yyj3991] = Namespace{} - } else { - yyv3993 := &yyv3991[yyj3991] - yyv3993.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3991 := 0 - for ; !r.CheckBreak(); yyj3991++ { - - if yyj3991 >= len(yyv3991) { - yyv3991 = append(yyv3991, Namespace{}) // var yyz3991 Namespace - yyc3991 = true - } - yyh3991.ElemContainerState(yyj3991) - if yyj3991 < len(yyv3991) { - if r.TryDecodeAsNil() { - yyv3991[yyj3991] = Namespace{} - } else { - yyv3994 := &yyv3991[yyj3991] - yyv3994.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3991 < len(yyv3991) { - yyv3991 = yyv3991[:yyj3991] - yyc3991 = true - } else if yyj3991 == 0 && yyv3991 == nil { - yyv3991 = []Namespace{} - yyc3991 = true - } - } - yyh3991.End() - if yyc3991 { - *v = yyv3991 - } -} - -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 _, yyv3995 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3996 := &yyv3995 - yy3996.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3997 := *v - yyh3997, yyl3997 := z.DecSliceHelperStart() - var yyc3997 bool - if yyl3997 == 0 { - if yyv3997 == nil { - yyv3997 = []Event{} - yyc3997 = true - } else if len(yyv3997) != 0 { - yyv3997 = yyv3997[:0] - yyc3997 = true - } - } else if yyl3997 > 0 { - var yyrr3997, yyrl3997 int - var yyrt3997 bool - if yyl3997 > cap(yyv3997) { - - yyrg3997 := len(yyv3997) > 0 - yyv23997 := yyv3997 - yyrl3997, yyrt3997 = z.DecInferLen(yyl3997, z.DecBasicHandle().MaxInitLen, 440) - if yyrt3997 { - if yyrl3997 <= cap(yyv3997) { - yyv3997 = yyv3997[:yyrl3997] - } else { - yyv3997 = make([]Event, yyrl3997) - } - } else { - yyv3997 = make([]Event, yyrl3997) - } - yyc3997 = true - yyrr3997 = len(yyv3997) - if yyrg3997 { - copy(yyv3997, yyv23997) - } - } else if yyl3997 != len(yyv3997) { - yyv3997 = yyv3997[:yyl3997] - yyc3997 = true - } - yyj3997 := 0 - for ; yyj3997 < yyrr3997; yyj3997++ { - yyh3997.ElemContainerState(yyj3997) - if r.TryDecodeAsNil() { - yyv3997[yyj3997] = Event{} - } else { - yyv3998 := &yyv3997[yyj3997] - yyv3998.CodecDecodeSelf(d) - } - - } - if yyrt3997 { - for ; yyj3997 < yyl3997; yyj3997++ { - yyv3997 = append(yyv3997, Event{}) - yyh3997.ElemContainerState(yyj3997) - if r.TryDecodeAsNil() { - yyv3997[yyj3997] = Event{} - } else { - yyv3999 := &yyv3997[yyj3997] - yyv3999.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3997 := 0 - for ; !r.CheckBreak(); yyj3997++ { - - if yyj3997 >= len(yyv3997) { - yyv3997 = append(yyv3997, Event{}) // var yyz3997 Event - yyc3997 = true - } - yyh3997.ElemContainerState(yyj3997) - if yyj3997 < len(yyv3997) { - if r.TryDecodeAsNil() { - yyv3997[yyj3997] = Event{} - } else { - yyv4000 := &yyv3997[yyj3997] - yyv4000.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3997 < len(yyv3997) { - yyv3997 = yyv3997[:yyj3997] - yyc3997 = true - } else if yyj3997 == 0 && yyv3997 == nil { - yyv3997 = []Event{} - yyc3997 = true - } - } - yyh3997.End() - if yyc3997 { - *v = yyv3997 - } -} - -func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg6_runtime.RawExtension, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4001 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4002 := &yyv4001 - yym4003 := z.EncBinary() - _ = yym4003 - if false { - } else if z.HasExtensions() && z.EncExt(yy4002) { - } else if !yym4003 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4002) - } else { - z.EncFallback(yy4002) - } - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExtension, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4004 := *v - yyh4004, yyl4004 := z.DecSliceHelperStart() - var yyc4004 bool - if yyl4004 == 0 { - if yyv4004 == nil { - yyv4004 = []pkg6_runtime.RawExtension{} - yyc4004 = true - } else if len(yyv4004) != 0 { - yyv4004 = yyv4004[:0] - yyc4004 = true - } - } else if yyl4004 > 0 { - var yyrr4004, yyrl4004 int - var yyrt4004 bool - if yyl4004 > cap(yyv4004) { - - yyrg4004 := len(yyv4004) > 0 - yyv24004 := yyv4004 - yyrl4004, yyrt4004 = z.DecInferLen(yyl4004, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4004 { - if yyrl4004 <= cap(yyv4004) { - yyv4004 = yyv4004[:yyrl4004] - } else { - yyv4004 = make([]pkg6_runtime.RawExtension, yyrl4004) - } - } else { - yyv4004 = make([]pkg6_runtime.RawExtension, yyrl4004) - } - yyc4004 = true - yyrr4004 = len(yyv4004) - if yyrg4004 { - copy(yyv4004, yyv24004) - } - } else if yyl4004 != len(yyv4004) { - yyv4004 = yyv4004[:yyl4004] - yyc4004 = true - } - yyj4004 := 0 - for ; yyj4004 < yyrr4004; yyj4004++ { - yyh4004.ElemContainerState(yyj4004) - if r.TryDecodeAsNil() { - yyv4004[yyj4004] = pkg6_runtime.RawExtension{} - } else { - yyv4005 := &yyv4004[yyj4004] + yyv4005 := &yymv4000 yym4006 := z.DecBinary() _ = yym4006 if false { @@ -51240,23 +51083,567 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten } } + if yyv4000 != nil { + yyv4000[yymk4000] = yymv4000 + } } - if yyrt4004 { - for ; yyj4004 < yyl4004; yyj4004++ { - yyv4004 = append(yyv4004, pkg6_runtime.RawExtension{}) - yyh4004.ElemContainerState(yyj4004) - if r.TryDecodeAsNil() { - yyv4004[yyj4004] = pkg6_runtime.RawExtension{} + } // else len==0: TODO: Should we clear map entries? + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4007 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4008 := &yyv4007 + yy4008.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4009 := *v + yyh4009, yyl4009 := z.DecSliceHelperStart() + var yyc4009 bool + if yyl4009 == 0 { + if yyv4009 == nil { + yyv4009 = []Node{} + yyc4009 = true + } else if len(yyv4009) != 0 { + yyv4009 = yyv4009[:0] + yyc4009 = true + } + } else if yyl4009 > 0 { + var yyrr4009, yyrl4009 int + var yyrt4009 bool + if yyl4009 > cap(yyv4009) { + + yyrg4009 := len(yyv4009) > 0 + yyv24009 := yyv4009 + yyrl4009, yyrt4009 = z.DecInferLen(yyl4009, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4009 { + if yyrl4009 <= cap(yyv4009) { + yyv4009 = yyv4009[:yyrl4009] } else { - yyv4007 := &yyv4004[yyj4004] - yym4008 := z.DecBinary() - _ = yym4008 + yyv4009 = make([]Node, yyrl4009) + } + } else { + yyv4009 = make([]Node, yyrl4009) + } + yyc4009 = true + yyrr4009 = len(yyv4009) + if yyrg4009 { + copy(yyv4009, yyv24009) + } + } else if yyl4009 != len(yyv4009) { + yyv4009 = yyv4009[:yyl4009] + yyc4009 = true + } + yyj4009 := 0 + for ; yyj4009 < yyrr4009; yyj4009++ { + yyh4009.ElemContainerState(yyj4009) + if r.TryDecodeAsNil() { + yyv4009[yyj4009] = Node{} + } else { + yyv4010 := &yyv4009[yyj4009] + yyv4010.CodecDecodeSelf(d) + } + + } + if yyrt4009 { + for ; yyj4009 < yyl4009; yyj4009++ { + yyv4009 = append(yyv4009, Node{}) + yyh4009.ElemContainerState(yyj4009) + if r.TryDecodeAsNil() { + yyv4009[yyj4009] = Node{} + } else { + yyv4011 := &yyv4009[yyj4009] + yyv4011.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4009 := 0 + for ; !r.CheckBreak(); yyj4009++ { + + if yyj4009 >= len(yyv4009) { + yyv4009 = append(yyv4009, Node{}) // var yyz4009 Node + yyc4009 = true + } + yyh4009.ElemContainerState(yyj4009) + if yyj4009 < len(yyv4009) { + if r.TryDecodeAsNil() { + yyv4009[yyj4009] = Node{} + } else { + yyv4012 := &yyv4009[yyj4009] + yyv4012.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4009 < len(yyv4009) { + yyv4009 = yyv4009[:yyj4009] + yyc4009 = true + } else if yyj4009 == 0 && yyv4009 == nil { + yyv4009 = []Node{} + yyc4009 = true + } + } + yyh4009.End() + if yyc4009 { + *v = yyv4009 + } +} + +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 _, yyv4013 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yyv4013.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 + + yyv4014 := *v + yyh4014, yyl4014 := z.DecSliceHelperStart() + var yyc4014 bool + if yyl4014 == 0 { + if yyv4014 == nil { + yyv4014 = []FinalizerName{} + yyc4014 = true + } else if len(yyv4014) != 0 { + yyv4014 = yyv4014[:0] + yyc4014 = true + } + } else if yyl4014 > 0 { + var yyrr4014, yyrl4014 int + var yyrt4014 bool + if yyl4014 > cap(yyv4014) { + + yyrl4014, yyrt4014 = z.DecInferLen(yyl4014, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4014 { + if yyrl4014 <= cap(yyv4014) { + yyv4014 = yyv4014[:yyrl4014] + } else { + yyv4014 = make([]FinalizerName, yyrl4014) + } + } else { + yyv4014 = make([]FinalizerName, yyrl4014) + } + yyc4014 = true + yyrr4014 = len(yyv4014) + } else if yyl4014 != len(yyv4014) { + yyv4014 = yyv4014[:yyl4014] + yyc4014 = true + } + yyj4014 := 0 + for ; yyj4014 < yyrr4014; yyj4014++ { + yyh4014.ElemContainerState(yyj4014) + if r.TryDecodeAsNil() { + yyv4014[yyj4014] = "" + } else { + yyv4014[yyj4014] = FinalizerName(r.DecodeString()) + } + + } + if yyrt4014 { + for ; yyj4014 < yyl4014; yyj4014++ { + yyv4014 = append(yyv4014, "") + yyh4014.ElemContainerState(yyj4014) + if r.TryDecodeAsNil() { + yyv4014[yyj4014] = "" + } else { + yyv4014[yyj4014] = FinalizerName(r.DecodeString()) + } + + } + } + + } else { + yyj4014 := 0 + for ; !r.CheckBreak(); yyj4014++ { + + if yyj4014 >= len(yyv4014) { + yyv4014 = append(yyv4014, "") // var yyz4014 FinalizerName + yyc4014 = true + } + yyh4014.ElemContainerState(yyj4014) + if yyj4014 < len(yyv4014) { + if r.TryDecodeAsNil() { + yyv4014[yyj4014] = "" + } else { + yyv4014[yyj4014] = FinalizerName(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4014 < len(yyv4014) { + yyv4014 = yyv4014[:yyj4014] + yyc4014 = true + } else if yyj4014 == 0 && yyv4014 == nil { + yyv4014 = []FinalizerName{} + yyc4014 = true + } + } + yyh4014.End() + if yyc4014 { + *v = yyv4014 + } +} + +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 _, yyv4018 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4019 := &yyv4018 + yy4019.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4020 := *v + yyh4020, yyl4020 := z.DecSliceHelperStart() + var yyc4020 bool + if yyl4020 == 0 { + if yyv4020 == nil { + yyv4020 = []Namespace{} + yyc4020 = true + } else if len(yyv4020) != 0 { + yyv4020 = yyv4020[:0] + yyc4020 = true + } + } else if yyl4020 > 0 { + var yyrr4020, yyrl4020 int + var yyrt4020 bool + if yyl4020 > cap(yyv4020) { + + yyrg4020 := len(yyv4020) > 0 + yyv24020 := yyv4020 + yyrl4020, yyrt4020 = z.DecInferLen(yyl4020, z.DecBasicHandle().MaxInitLen, 232) + if yyrt4020 { + if yyrl4020 <= cap(yyv4020) { + yyv4020 = yyv4020[:yyrl4020] + } else { + yyv4020 = make([]Namespace, yyrl4020) + } + } else { + yyv4020 = make([]Namespace, yyrl4020) + } + yyc4020 = true + yyrr4020 = len(yyv4020) + if yyrg4020 { + copy(yyv4020, yyv24020) + } + } else if yyl4020 != len(yyv4020) { + yyv4020 = yyv4020[:yyl4020] + yyc4020 = true + } + yyj4020 := 0 + for ; yyj4020 < yyrr4020; yyj4020++ { + yyh4020.ElemContainerState(yyj4020) + if r.TryDecodeAsNil() { + yyv4020[yyj4020] = Namespace{} + } else { + yyv4021 := &yyv4020[yyj4020] + yyv4021.CodecDecodeSelf(d) + } + + } + if yyrt4020 { + for ; yyj4020 < yyl4020; yyj4020++ { + yyv4020 = append(yyv4020, Namespace{}) + yyh4020.ElemContainerState(yyj4020) + if r.TryDecodeAsNil() { + yyv4020[yyj4020] = Namespace{} + } else { + yyv4022 := &yyv4020[yyj4020] + yyv4022.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4020 := 0 + for ; !r.CheckBreak(); yyj4020++ { + + if yyj4020 >= len(yyv4020) { + yyv4020 = append(yyv4020, Namespace{}) // var yyz4020 Namespace + yyc4020 = true + } + yyh4020.ElemContainerState(yyj4020) + if yyj4020 < len(yyv4020) { + if r.TryDecodeAsNil() { + yyv4020[yyj4020] = Namespace{} + } else { + yyv4023 := &yyv4020[yyj4020] + yyv4023.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4020 < len(yyv4020) { + yyv4020 = yyv4020[:yyj4020] + yyc4020 = true + } else if yyj4020 == 0 && yyv4020 == nil { + yyv4020 = []Namespace{} + yyc4020 = true + } + } + yyh4020.End() + if yyc4020 { + *v = yyv4020 + } +} + +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 _, yyv4024 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4025 := &yyv4024 + yy4025.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4026 := *v + yyh4026, yyl4026 := z.DecSliceHelperStart() + var yyc4026 bool + if yyl4026 == 0 { + if yyv4026 == nil { + yyv4026 = []Event{} + yyc4026 = true + } else if len(yyv4026) != 0 { + yyv4026 = yyv4026[:0] + yyc4026 = true + } + } else if yyl4026 > 0 { + var yyrr4026, yyrl4026 int + var yyrt4026 bool + if yyl4026 > cap(yyv4026) { + + yyrg4026 := len(yyv4026) > 0 + yyv24026 := yyv4026 + yyrl4026, yyrt4026 = z.DecInferLen(yyl4026, z.DecBasicHandle().MaxInitLen, 440) + if yyrt4026 { + if yyrl4026 <= cap(yyv4026) { + yyv4026 = yyv4026[:yyrl4026] + } else { + yyv4026 = make([]Event, yyrl4026) + } + } else { + yyv4026 = make([]Event, yyrl4026) + } + yyc4026 = true + yyrr4026 = len(yyv4026) + if yyrg4026 { + copy(yyv4026, yyv24026) + } + } else if yyl4026 != len(yyv4026) { + yyv4026 = yyv4026[:yyl4026] + yyc4026 = true + } + yyj4026 := 0 + for ; yyj4026 < yyrr4026; yyj4026++ { + yyh4026.ElemContainerState(yyj4026) + if r.TryDecodeAsNil() { + yyv4026[yyj4026] = Event{} + } else { + yyv4027 := &yyv4026[yyj4026] + yyv4027.CodecDecodeSelf(d) + } + + } + if yyrt4026 { + for ; yyj4026 < yyl4026; yyj4026++ { + yyv4026 = append(yyv4026, Event{}) + yyh4026.ElemContainerState(yyj4026) + if r.TryDecodeAsNil() { + yyv4026[yyj4026] = Event{} + } else { + yyv4028 := &yyv4026[yyj4026] + yyv4028.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4026 := 0 + for ; !r.CheckBreak(); yyj4026++ { + + if yyj4026 >= len(yyv4026) { + yyv4026 = append(yyv4026, Event{}) // var yyz4026 Event + yyc4026 = true + } + yyh4026.ElemContainerState(yyj4026) + if yyj4026 < len(yyv4026) { + if r.TryDecodeAsNil() { + yyv4026[yyj4026] = Event{} + } else { + yyv4029 := &yyv4026[yyj4026] + yyv4029.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4026 < len(yyv4026) { + yyv4026 = yyv4026[:yyj4026] + yyc4026 = true + } else if yyj4026 == 0 && yyv4026 == nil { + yyv4026 = []Event{} + yyc4026 = true + } + } + yyh4026.End() + if yyc4026 { + *v = yyv4026 + } +} + +func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg6_runtime.RawExtension, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4030 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4031 := &yyv4030 + yym4032 := z.EncBinary() + _ = yym4032 + if false { + } else if z.HasExtensions() && z.EncExt(yy4031) { + } else if !yym4032 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4031) + } else { + z.EncFallback(yy4031) + } + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExtension, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4033 := *v + yyh4033, yyl4033 := z.DecSliceHelperStart() + var yyc4033 bool + if yyl4033 == 0 { + if yyv4033 == nil { + yyv4033 = []pkg6_runtime.RawExtension{} + yyc4033 = true + } else if len(yyv4033) != 0 { + yyv4033 = yyv4033[:0] + yyc4033 = true + } + } else if yyl4033 > 0 { + var yyrr4033, yyrl4033 int + var yyrt4033 bool + if yyl4033 > cap(yyv4033) { + + yyrg4033 := len(yyv4033) > 0 + yyv24033 := yyv4033 + yyrl4033, yyrt4033 = z.DecInferLen(yyl4033, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4033 { + if yyrl4033 <= cap(yyv4033) { + yyv4033 = yyv4033[:yyrl4033] + } else { + yyv4033 = make([]pkg6_runtime.RawExtension, yyrl4033) + } + } else { + yyv4033 = make([]pkg6_runtime.RawExtension, yyrl4033) + } + yyc4033 = true + yyrr4033 = len(yyv4033) + if yyrg4033 { + copy(yyv4033, yyv24033) + } + } else if yyl4033 != len(yyv4033) { + yyv4033 = yyv4033[:yyl4033] + yyc4033 = true + } + yyj4033 := 0 + for ; yyj4033 < yyrr4033; yyj4033++ { + yyh4033.ElemContainerState(yyj4033) + if r.TryDecodeAsNil() { + yyv4033[yyj4033] = pkg6_runtime.RawExtension{} + } else { + yyv4034 := &yyv4033[yyj4033] + yym4035 := z.DecBinary() + _ = yym4035 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4034) { + } else if !yym4035 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4034) + } else { + z.DecFallback(yyv4034, false) + } + } + + } + if yyrt4033 { + for ; yyj4033 < yyl4033; yyj4033++ { + yyv4033 = append(yyv4033, pkg6_runtime.RawExtension{}) + yyh4033.ElemContainerState(yyj4033) + if r.TryDecodeAsNil() { + yyv4033[yyj4033] = pkg6_runtime.RawExtension{} + } else { + yyv4036 := &yyv4033[yyj4033] + yym4037 := z.DecBinary() + _ = yym4037 if false { - } else if z.HasExtensions() && z.DecExt(yyv4007) { - } else if !yym4008 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4007) + } else if z.HasExtensions() && z.DecExt(yyv4036) { + } else if !yym4037 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4036) } else { - z.DecFallback(yyv4007, false) + z.DecFallback(yyv4036, false) } } @@ -51264,27 +51651,27 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten } } else { - yyj4004 := 0 - for ; !r.CheckBreak(); yyj4004++ { + yyj4033 := 0 + for ; !r.CheckBreak(); yyj4033++ { - if yyj4004 >= len(yyv4004) { - yyv4004 = append(yyv4004, pkg6_runtime.RawExtension{}) // var yyz4004 pkg6_runtime.RawExtension - yyc4004 = true + if yyj4033 >= len(yyv4033) { + yyv4033 = append(yyv4033, pkg6_runtime.RawExtension{}) // var yyz4033 pkg6_runtime.RawExtension + yyc4033 = true } - yyh4004.ElemContainerState(yyj4004) - if yyj4004 < len(yyv4004) { + yyh4033.ElemContainerState(yyj4033) + if yyj4033 < len(yyv4033) { if r.TryDecodeAsNil() { - yyv4004[yyj4004] = pkg6_runtime.RawExtension{} + yyv4033[yyj4033] = pkg6_runtime.RawExtension{} } else { - yyv4009 := &yyv4004[yyj4004] - yym4010 := z.DecBinary() - _ = yym4010 + yyv4038 := &yyv4033[yyj4033] + yym4039 := z.DecBinary() + _ = yym4039 if false { - } else if z.HasExtensions() && z.DecExt(yyv4009) { - } else if !yym4010 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4009) + } else if z.HasExtensions() && z.DecExt(yyv4038) { + } else if !yym4039 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4038) } else { - z.DecFallback(yyv4009, false) + z.DecFallback(yyv4038, false) } } @@ -51293,17 +51680,17 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten } } - if yyj4004 < len(yyv4004) { - yyv4004 = yyv4004[:yyj4004] - yyc4004 = true - } else if yyj4004 == 0 && yyv4004 == nil { - yyv4004 = []pkg6_runtime.RawExtension{} - yyc4004 = true + if yyj4033 < len(yyv4033) { + yyv4033 = yyv4033[:yyj4033] + yyc4033 = true + } else if yyj4033 == 0 && yyv4033 == nil { + yyv4033 = []pkg6_runtime.RawExtension{} + yyc4033 = true } } - yyh4004.End() - if yyc4004 { - *v = yyv4004 + yyh4033.End() + if yyc4033 { + *v = yyv4033 } } @@ -51312,10 +51699,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4011 := range v { + for _, yyv4040 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4012 := &yyv4011 - yy4012.CodecEncodeSelf(e) + yy4041 := &yyv4040 + yy4041.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51325,83 +51712,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4013 := *v - yyh4013, yyl4013 := z.DecSliceHelperStart() - var yyc4013 bool - if yyl4013 == 0 { - if yyv4013 == nil { - yyv4013 = []LimitRangeItem{} - yyc4013 = true - } else if len(yyv4013) != 0 { - yyv4013 = yyv4013[:0] - yyc4013 = true + yyv4042 := *v + yyh4042, yyl4042 := z.DecSliceHelperStart() + var yyc4042 bool + if yyl4042 == 0 { + if yyv4042 == nil { + yyv4042 = []LimitRangeItem{} + yyc4042 = true + } else if len(yyv4042) != 0 { + yyv4042 = yyv4042[:0] + yyc4042 = true } - } else if yyl4013 > 0 { - var yyrr4013, yyrl4013 int - var yyrt4013 bool - if yyl4013 > cap(yyv4013) { + } else if yyl4042 > 0 { + var yyrr4042, yyrl4042 int + var yyrt4042 bool + if yyl4042 > cap(yyv4042) { - yyrg4013 := len(yyv4013) > 0 - yyv24013 := yyv4013 - yyrl4013, yyrt4013 = z.DecInferLen(yyl4013, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4013 { - if yyrl4013 <= cap(yyv4013) { - yyv4013 = yyv4013[:yyrl4013] + yyrg4042 := len(yyv4042) > 0 + yyv24042 := yyv4042 + yyrl4042, yyrt4042 = z.DecInferLen(yyl4042, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4042 { + if yyrl4042 <= cap(yyv4042) { + yyv4042 = yyv4042[:yyrl4042] } else { - yyv4013 = make([]LimitRangeItem, yyrl4013) + yyv4042 = make([]LimitRangeItem, yyrl4042) } } else { - yyv4013 = make([]LimitRangeItem, yyrl4013) + yyv4042 = make([]LimitRangeItem, yyrl4042) } - yyc4013 = true - yyrr4013 = len(yyv4013) - if yyrg4013 { - copy(yyv4013, yyv24013) + yyc4042 = true + yyrr4042 = len(yyv4042) + if yyrg4042 { + copy(yyv4042, yyv24042) } - } else if yyl4013 != len(yyv4013) { - yyv4013 = yyv4013[:yyl4013] - yyc4013 = true + } else if yyl4042 != len(yyv4042) { + yyv4042 = yyv4042[:yyl4042] + yyc4042 = true } - yyj4013 := 0 - for ; yyj4013 < yyrr4013; yyj4013++ { - yyh4013.ElemContainerState(yyj4013) + yyj4042 := 0 + for ; yyj4042 < yyrr4042; yyj4042++ { + yyh4042.ElemContainerState(yyj4042) if r.TryDecodeAsNil() { - yyv4013[yyj4013] = LimitRangeItem{} + yyv4042[yyj4042] = LimitRangeItem{} } else { - yyv4014 := &yyv4013[yyj4013] - yyv4014.CodecDecodeSelf(d) + yyv4043 := &yyv4042[yyj4042] + yyv4043.CodecDecodeSelf(d) } } - if yyrt4013 { - for ; yyj4013 < yyl4013; yyj4013++ { - yyv4013 = append(yyv4013, LimitRangeItem{}) - yyh4013.ElemContainerState(yyj4013) + if yyrt4042 { + for ; yyj4042 < yyl4042; yyj4042++ { + yyv4042 = append(yyv4042, LimitRangeItem{}) + yyh4042.ElemContainerState(yyj4042) if r.TryDecodeAsNil() { - yyv4013[yyj4013] = LimitRangeItem{} + yyv4042[yyj4042] = LimitRangeItem{} } else { - yyv4015 := &yyv4013[yyj4013] - yyv4015.CodecDecodeSelf(d) + yyv4044 := &yyv4042[yyj4042] + yyv4044.CodecDecodeSelf(d) } } } } else { - yyj4013 := 0 - for ; !r.CheckBreak(); yyj4013++ { + yyj4042 := 0 + for ; !r.CheckBreak(); yyj4042++ { - if yyj4013 >= len(yyv4013) { - yyv4013 = append(yyv4013, LimitRangeItem{}) // var yyz4013 LimitRangeItem - yyc4013 = true + if yyj4042 >= len(yyv4042) { + yyv4042 = append(yyv4042, LimitRangeItem{}) // var yyz4042 LimitRangeItem + yyc4042 = true } - yyh4013.ElemContainerState(yyj4013) - if yyj4013 < len(yyv4013) { + yyh4042.ElemContainerState(yyj4042) + if yyj4042 < len(yyv4042) { if r.TryDecodeAsNil() { - yyv4013[yyj4013] = LimitRangeItem{} + yyv4042[yyj4042] = LimitRangeItem{} } else { - yyv4016 := &yyv4013[yyj4013] - yyv4016.CodecDecodeSelf(d) + yyv4045 := &yyv4042[yyj4042] + yyv4045.CodecDecodeSelf(d) } } else { @@ -51409,17 +51796,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4013 < len(yyv4013) { - yyv4013 = yyv4013[:yyj4013] - yyc4013 = true - } else if yyj4013 == 0 && yyv4013 == nil { - yyv4013 = []LimitRangeItem{} - yyc4013 = true + if yyj4042 < len(yyv4042) { + yyv4042 = yyv4042[:yyj4042] + yyc4042 = true + } else if yyj4042 == 0 && yyv4042 == nil { + yyv4042 = []LimitRangeItem{} + yyc4042 = true } } - yyh4013.End() - if yyc4013 { - *v = yyv4013 + yyh4042.End() + if yyc4042 { + *v = yyv4042 } } @@ -51428,10 +51815,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4017 := range v { + for _, yyv4046 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4018 := &yyv4017 - yy4018.CodecEncodeSelf(e) + yy4047 := &yyv4046 + yy4047.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51441,83 +51828,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4019 := *v - yyh4019, yyl4019 := z.DecSliceHelperStart() - var yyc4019 bool - if yyl4019 == 0 { - if yyv4019 == nil { - yyv4019 = []LimitRange{} - yyc4019 = true - } else if len(yyv4019) != 0 { - yyv4019 = yyv4019[:0] - yyc4019 = true + yyv4048 := *v + yyh4048, yyl4048 := z.DecSliceHelperStart() + var yyc4048 bool + if yyl4048 == 0 { + if yyv4048 == nil { + yyv4048 = []LimitRange{} + yyc4048 = true + } else if len(yyv4048) != 0 { + yyv4048 = yyv4048[:0] + yyc4048 = true } - } else if yyl4019 > 0 { - var yyrr4019, yyrl4019 int - var yyrt4019 bool - if yyl4019 > cap(yyv4019) { + } else if yyl4048 > 0 { + var yyrr4048, yyrl4048 int + var yyrt4048 bool + if yyl4048 > cap(yyv4048) { - yyrg4019 := len(yyv4019) > 0 - yyv24019 := yyv4019 - yyrl4019, yyrt4019 = z.DecInferLen(yyl4019, z.DecBasicHandle().MaxInitLen, 216) - if yyrt4019 { - if yyrl4019 <= cap(yyv4019) { - yyv4019 = yyv4019[:yyrl4019] + yyrg4048 := len(yyv4048) > 0 + yyv24048 := yyv4048 + yyrl4048, yyrt4048 = z.DecInferLen(yyl4048, z.DecBasicHandle().MaxInitLen, 216) + if yyrt4048 { + if yyrl4048 <= cap(yyv4048) { + yyv4048 = yyv4048[:yyrl4048] } else { - yyv4019 = make([]LimitRange, yyrl4019) + yyv4048 = make([]LimitRange, yyrl4048) } } else { - yyv4019 = make([]LimitRange, yyrl4019) + yyv4048 = make([]LimitRange, yyrl4048) } - yyc4019 = true - yyrr4019 = len(yyv4019) - if yyrg4019 { - copy(yyv4019, yyv24019) + yyc4048 = true + yyrr4048 = len(yyv4048) + if yyrg4048 { + copy(yyv4048, yyv24048) } - } else if yyl4019 != len(yyv4019) { - yyv4019 = yyv4019[:yyl4019] - yyc4019 = true + } else if yyl4048 != len(yyv4048) { + yyv4048 = yyv4048[:yyl4048] + yyc4048 = true } - yyj4019 := 0 - for ; yyj4019 < yyrr4019; yyj4019++ { - yyh4019.ElemContainerState(yyj4019) + yyj4048 := 0 + for ; yyj4048 < yyrr4048; yyj4048++ { + yyh4048.ElemContainerState(yyj4048) if r.TryDecodeAsNil() { - yyv4019[yyj4019] = LimitRange{} + yyv4048[yyj4048] = LimitRange{} } else { - yyv4020 := &yyv4019[yyj4019] - yyv4020.CodecDecodeSelf(d) + yyv4049 := &yyv4048[yyj4048] + yyv4049.CodecDecodeSelf(d) } } - if yyrt4019 { - for ; yyj4019 < yyl4019; yyj4019++ { - yyv4019 = append(yyv4019, LimitRange{}) - yyh4019.ElemContainerState(yyj4019) + if yyrt4048 { + for ; yyj4048 < yyl4048; yyj4048++ { + yyv4048 = append(yyv4048, LimitRange{}) + yyh4048.ElemContainerState(yyj4048) if r.TryDecodeAsNil() { - yyv4019[yyj4019] = LimitRange{} + yyv4048[yyj4048] = LimitRange{} } else { - yyv4021 := &yyv4019[yyj4019] - yyv4021.CodecDecodeSelf(d) + yyv4050 := &yyv4048[yyj4048] + yyv4050.CodecDecodeSelf(d) } } } } else { - yyj4019 := 0 - for ; !r.CheckBreak(); yyj4019++ { + yyj4048 := 0 + for ; !r.CheckBreak(); yyj4048++ { - if yyj4019 >= len(yyv4019) { - yyv4019 = append(yyv4019, LimitRange{}) // var yyz4019 LimitRange - yyc4019 = true + if yyj4048 >= len(yyv4048) { + yyv4048 = append(yyv4048, LimitRange{}) // var yyz4048 LimitRange + yyc4048 = true } - yyh4019.ElemContainerState(yyj4019) - if yyj4019 < len(yyv4019) { + yyh4048.ElemContainerState(yyj4048) + if yyj4048 < len(yyv4048) { if r.TryDecodeAsNil() { - yyv4019[yyj4019] = LimitRange{} + yyv4048[yyj4048] = LimitRange{} } else { - yyv4022 := &yyv4019[yyj4019] - yyv4022.CodecDecodeSelf(d) + yyv4051 := &yyv4048[yyj4048] + yyv4051.CodecDecodeSelf(d) } } else { @@ -51525,17 +51912,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4019 < len(yyv4019) { - yyv4019 = yyv4019[:yyj4019] - yyc4019 = true - } else if yyj4019 == 0 && yyv4019 == nil { - yyv4019 = []LimitRange{} - yyc4019 = true + if yyj4048 < len(yyv4048) { + yyv4048 = yyv4048[:yyj4048] + yyc4048 = true + } else if yyj4048 == 0 && yyv4048 == nil { + yyv4048 = []LimitRange{} + yyc4048 = true } } - yyh4019.End() - if yyc4019 { - *v = yyv4019 + yyh4048.End() + if yyc4048 { + *v = yyv4048 } } @@ -51544,10 +51931,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4023 := range v { + for _, yyv4052 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4024 := &yyv4023 - yy4024.CodecEncodeSelf(e) + yy4053 := &yyv4052 + yy4053.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51557,83 +51944,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4025 := *v - yyh4025, yyl4025 := z.DecSliceHelperStart() - var yyc4025 bool - if yyl4025 == 0 { - if yyv4025 == nil { - yyv4025 = []ResourceQuota{} - yyc4025 = true - } else if len(yyv4025) != 0 { - yyv4025 = yyv4025[:0] - yyc4025 = true + yyv4054 := *v + yyh4054, yyl4054 := z.DecSliceHelperStart() + var yyc4054 bool + if yyl4054 == 0 { + if yyv4054 == nil { + yyv4054 = []ResourceQuota{} + yyc4054 = true + } else if len(yyv4054) != 0 { + yyv4054 = yyv4054[:0] + yyc4054 = true } - } else if yyl4025 > 0 { - var yyrr4025, yyrl4025 int - var yyrt4025 bool - if yyl4025 > cap(yyv4025) { + } else if yyl4054 > 0 { + var yyrr4054, yyrl4054 int + var yyrt4054 bool + if yyl4054 > cap(yyv4054) { - yyrg4025 := len(yyv4025) > 0 - yyv24025 := yyv4025 - yyrl4025, yyrt4025 = z.DecInferLen(yyl4025, z.DecBasicHandle().MaxInitLen, 216) - if yyrt4025 { - if yyrl4025 <= cap(yyv4025) { - yyv4025 = yyv4025[:yyrl4025] + yyrg4054 := len(yyv4054) > 0 + yyv24054 := yyv4054 + yyrl4054, yyrt4054 = z.DecInferLen(yyl4054, z.DecBasicHandle().MaxInitLen, 216) + if yyrt4054 { + if yyrl4054 <= cap(yyv4054) { + yyv4054 = yyv4054[:yyrl4054] } else { - yyv4025 = make([]ResourceQuota, yyrl4025) + yyv4054 = make([]ResourceQuota, yyrl4054) } } else { - yyv4025 = make([]ResourceQuota, yyrl4025) + yyv4054 = make([]ResourceQuota, yyrl4054) } - yyc4025 = true - yyrr4025 = len(yyv4025) - if yyrg4025 { - copy(yyv4025, yyv24025) + yyc4054 = true + yyrr4054 = len(yyv4054) + if yyrg4054 { + copy(yyv4054, yyv24054) } - } else if yyl4025 != len(yyv4025) { - yyv4025 = yyv4025[:yyl4025] - yyc4025 = true + } else if yyl4054 != len(yyv4054) { + yyv4054 = yyv4054[:yyl4054] + yyc4054 = true } - yyj4025 := 0 - for ; yyj4025 < yyrr4025; yyj4025++ { - yyh4025.ElemContainerState(yyj4025) + yyj4054 := 0 + for ; yyj4054 < yyrr4054; yyj4054++ { + yyh4054.ElemContainerState(yyj4054) if r.TryDecodeAsNil() { - yyv4025[yyj4025] = ResourceQuota{} + yyv4054[yyj4054] = ResourceQuota{} } else { - yyv4026 := &yyv4025[yyj4025] - yyv4026.CodecDecodeSelf(d) + yyv4055 := &yyv4054[yyj4054] + yyv4055.CodecDecodeSelf(d) } } - if yyrt4025 { - for ; yyj4025 < yyl4025; yyj4025++ { - yyv4025 = append(yyv4025, ResourceQuota{}) - yyh4025.ElemContainerState(yyj4025) + if yyrt4054 { + for ; yyj4054 < yyl4054; yyj4054++ { + yyv4054 = append(yyv4054, ResourceQuota{}) + yyh4054.ElemContainerState(yyj4054) if r.TryDecodeAsNil() { - yyv4025[yyj4025] = ResourceQuota{} + yyv4054[yyj4054] = ResourceQuota{} } else { - yyv4027 := &yyv4025[yyj4025] - yyv4027.CodecDecodeSelf(d) + yyv4056 := &yyv4054[yyj4054] + yyv4056.CodecDecodeSelf(d) } } } } else { - yyj4025 := 0 - for ; !r.CheckBreak(); yyj4025++ { + yyj4054 := 0 + for ; !r.CheckBreak(); yyj4054++ { - if yyj4025 >= len(yyv4025) { - yyv4025 = append(yyv4025, ResourceQuota{}) // var yyz4025 ResourceQuota - yyc4025 = true + if yyj4054 >= len(yyv4054) { + yyv4054 = append(yyv4054, ResourceQuota{}) // var yyz4054 ResourceQuota + yyc4054 = true } - yyh4025.ElemContainerState(yyj4025) - if yyj4025 < len(yyv4025) { + yyh4054.ElemContainerState(yyj4054) + if yyj4054 < len(yyv4054) { if r.TryDecodeAsNil() { - yyv4025[yyj4025] = ResourceQuota{} + yyv4054[yyj4054] = ResourceQuota{} } else { - yyv4028 := &yyv4025[yyj4025] - yyv4028.CodecDecodeSelf(d) + yyv4057 := &yyv4054[yyj4054] + yyv4057.CodecDecodeSelf(d) } } else { @@ -51641,17 +52028,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4025 < len(yyv4025) { - yyv4025 = yyv4025[:yyj4025] - yyc4025 = true - } else if yyj4025 == 0 && yyv4025 == nil { - yyv4025 = []ResourceQuota{} - yyc4025 = true + if yyj4054 < len(yyv4054) { + yyv4054 = yyv4054[:yyj4054] + yyc4054 = true + } else if yyj4054 == 0 && yyv4054 == nil { + yyv4054 = []ResourceQuota{} + yyc4054 = true } } - yyh4025.End() - if yyc4025 { - *v = yyv4025 + yyh4054.End() + if yyc4054 { + *v = yyv4054 } } @@ -51660,23 +52047,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4029, yyv4029 := range v { + for yyk4058, yyv4058 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4030 := z.EncBinary() - _ = yym4030 + yym4059 := z.EncBinary() + _ = yym4059 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4029)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4058)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4029 == nil { + if yyv4058 == nil { r.EncodeNil() } else { - yym4031 := z.EncBinary() - _ = yym4031 + yym4060 := z.EncBinary() + _ = yym4060 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4029)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4058)) } } } @@ -51688,80 +52075,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4032 := *v - yyl4032 := r.ReadMapStart() - yybh4032 := z.DecBasicHandle() - if yyv4032 == nil { - yyrl4032, _ := z.DecInferLen(yyl4032, yybh4032.MaxInitLen, 40) - yyv4032 = make(map[string][]uint8, yyrl4032) - *v = yyv4032 + yyv4061 := *v + yyl4061 := r.ReadMapStart() + yybh4061 := z.DecBasicHandle() + if yyv4061 == nil { + yyrl4061, _ := z.DecInferLen(yyl4061, yybh4061.MaxInitLen, 40) + yyv4061 = make(map[string][]uint8, yyrl4061) + *v = yyv4061 } - var yymk4032 string - var yymv4032 []uint8 - var yymg4032 bool - if yybh4032.MapValueReset { - yymg4032 = true + var yymk4061 string + var yymv4061 []uint8 + var yymg4061 bool + if yybh4061.MapValueReset { + yymg4061 = true } - if yyl4032 > 0 { - for yyj4032 := 0; yyj4032 < yyl4032; yyj4032++ { + if yyl4061 > 0 { + for yyj4061 := 0; yyj4061 < yyl4061; yyj4061++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4032 = "" + yymk4061 = "" } else { - yymk4032 = string(r.DecodeString()) + yymk4061 = string(r.DecodeString()) } - if yymg4032 { - yymv4032 = yyv4032[yymk4032] + if yymg4061 { + yymv4061 = yyv4061[yymk4061] } else { - yymv4032 = nil + yymv4061 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4032 = nil + yymv4061 = nil } else { - yyv4034 := &yymv4032 - yym4035 := z.DecBinary() - _ = yym4035 + yyv4063 := &yymv4061 + yym4064 := z.DecBinary() + _ = yym4064 if false { } else { - *yyv4034 = r.DecodeBytes(*(*[]byte)(yyv4034), false, false) + *yyv4063 = r.DecodeBytes(*(*[]byte)(yyv4063), false, false) } } - if yyv4032 != nil { - yyv4032[yymk4032] = yymv4032 + if yyv4061 != nil { + yyv4061[yymk4061] = yymv4061 } } - } else if yyl4032 < 0 { - for yyj4032 := 0; !r.CheckBreak(); yyj4032++ { + } else if yyl4061 < 0 { + for yyj4061 := 0; !r.CheckBreak(); yyj4061++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4032 = "" + yymk4061 = "" } else { - yymk4032 = string(r.DecodeString()) + yymk4061 = string(r.DecodeString()) } - if yymg4032 { - yymv4032 = yyv4032[yymk4032] + if yymg4061 { + yymv4061 = yyv4061[yymk4061] } else { - yymv4032 = nil + yymv4061 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4032 = nil + yymv4061 = nil } else { - yyv4037 := &yymv4032 - yym4038 := z.DecBinary() - _ = yym4038 + yyv4066 := &yymv4061 + yym4067 := z.DecBinary() + _ = yym4067 if false { } else { - *yyv4037 = r.DecodeBytes(*(*[]byte)(yyv4037), false, false) + *yyv4066 = r.DecodeBytes(*(*[]byte)(yyv4066), false, false) } } - if yyv4032 != nil { - yyv4032[yymk4032] = yymv4032 + if yyv4061 != nil { + yyv4061[yymk4061] = yymv4061 } } } // else len==0: TODO: Should we clear map entries? @@ -51773,10 +52160,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4039 := range v { + for _, yyv4068 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4040 := &yyv4039 - yy4040.CodecEncodeSelf(e) + yy4069 := &yyv4068 + yy4069.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51786,83 +52173,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4041 := *v - yyh4041, yyl4041 := z.DecSliceHelperStart() - var yyc4041 bool - if yyl4041 == 0 { - if yyv4041 == nil { - yyv4041 = []Secret{} - yyc4041 = true - } else if len(yyv4041) != 0 { - yyv4041 = yyv4041[:0] - yyc4041 = true + yyv4070 := *v + yyh4070, yyl4070 := z.DecSliceHelperStart() + var yyc4070 bool + if yyl4070 == 0 { + if yyv4070 == nil { + yyv4070 = []Secret{} + yyc4070 = true + } else if len(yyv4070) != 0 { + yyv4070 = yyv4070[:0] + yyc4070 = true } - } else if yyl4041 > 0 { - var yyrr4041, yyrl4041 int - var yyrt4041 bool - if yyl4041 > cap(yyv4041) { + } else if yyl4070 > 0 { + var yyrr4070, yyrl4070 int + var yyrt4070 bool + if yyl4070 > cap(yyv4070) { - yyrg4041 := len(yyv4041) > 0 - yyv24041 := yyv4041 - yyrl4041, yyrt4041 = z.DecInferLen(yyl4041, z.DecBasicHandle().MaxInitLen, 216) - if yyrt4041 { - if yyrl4041 <= cap(yyv4041) { - yyv4041 = yyv4041[:yyrl4041] + yyrg4070 := len(yyv4070) > 0 + yyv24070 := yyv4070 + yyrl4070, yyrt4070 = z.DecInferLen(yyl4070, z.DecBasicHandle().MaxInitLen, 216) + if yyrt4070 { + if yyrl4070 <= cap(yyv4070) { + yyv4070 = yyv4070[:yyrl4070] } else { - yyv4041 = make([]Secret, yyrl4041) + yyv4070 = make([]Secret, yyrl4070) } } else { - yyv4041 = make([]Secret, yyrl4041) + yyv4070 = make([]Secret, yyrl4070) } - yyc4041 = true - yyrr4041 = len(yyv4041) - if yyrg4041 { - copy(yyv4041, yyv24041) + yyc4070 = true + yyrr4070 = len(yyv4070) + if yyrg4070 { + copy(yyv4070, yyv24070) } - } else if yyl4041 != len(yyv4041) { - yyv4041 = yyv4041[:yyl4041] - yyc4041 = true + } else if yyl4070 != len(yyv4070) { + yyv4070 = yyv4070[:yyl4070] + yyc4070 = true } - yyj4041 := 0 - for ; yyj4041 < yyrr4041; yyj4041++ { - yyh4041.ElemContainerState(yyj4041) + yyj4070 := 0 + for ; yyj4070 < yyrr4070; yyj4070++ { + yyh4070.ElemContainerState(yyj4070) if r.TryDecodeAsNil() { - yyv4041[yyj4041] = Secret{} + yyv4070[yyj4070] = Secret{} } else { - yyv4042 := &yyv4041[yyj4041] - yyv4042.CodecDecodeSelf(d) + yyv4071 := &yyv4070[yyj4070] + yyv4071.CodecDecodeSelf(d) } } - if yyrt4041 { - for ; yyj4041 < yyl4041; yyj4041++ { - yyv4041 = append(yyv4041, Secret{}) - yyh4041.ElemContainerState(yyj4041) + if yyrt4070 { + for ; yyj4070 < yyl4070; yyj4070++ { + yyv4070 = append(yyv4070, Secret{}) + yyh4070.ElemContainerState(yyj4070) if r.TryDecodeAsNil() { - yyv4041[yyj4041] = Secret{} + yyv4070[yyj4070] = Secret{} } else { - yyv4043 := &yyv4041[yyj4041] - yyv4043.CodecDecodeSelf(d) + yyv4072 := &yyv4070[yyj4070] + yyv4072.CodecDecodeSelf(d) } } } } else { - yyj4041 := 0 - for ; !r.CheckBreak(); yyj4041++ { + yyj4070 := 0 + for ; !r.CheckBreak(); yyj4070++ { - if yyj4041 >= len(yyv4041) { - yyv4041 = append(yyv4041, Secret{}) // var yyz4041 Secret - yyc4041 = true + if yyj4070 >= len(yyv4070) { + yyv4070 = append(yyv4070, Secret{}) // var yyz4070 Secret + yyc4070 = true } - yyh4041.ElemContainerState(yyj4041) - if yyj4041 < len(yyv4041) { + yyh4070.ElemContainerState(yyj4070) + if yyj4070 < len(yyv4070) { if r.TryDecodeAsNil() { - yyv4041[yyj4041] = Secret{} + yyv4070[yyj4070] = Secret{} } else { - yyv4044 := &yyv4041[yyj4041] - yyv4044.CodecDecodeSelf(d) + yyv4073 := &yyv4070[yyj4070] + yyv4073.CodecDecodeSelf(d) } } else { @@ -51870,17 +52257,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4041 < len(yyv4041) { - yyv4041 = yyv4041[:yyj4041] - yyc4041 = true - } else if yyj4041 == 0 && yyv4041 == nil { - yyv4041 = []Secret{} - yyc4041 = true + if yyj4070 < len(yyv4070) { + yyv4070 = yyv4070[:yyj4070] + yyc4070 = true + } else if yyj4070 == 0 && yyv4070 == nil { + yyv4070 = []Secret{} + yyc4070 = true } } - yyh4041.End() - if yyc4041 { - *v = yyv4041 + yyh4070.End() + if yyc4070 { + *v = yyv4070 } } @@ -51889,10 +52276,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4045 := range v { + for _, yyv4074 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4046 := &yyv4045 - yy4046.CodecEncodeSelf(e) + yy4075 := &yyv4074 + yy4075.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51902,83 +52289,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4047 := *v - yyh4047, yyl4047 := z.DecSliceHelperStart() - var yyc4047 bool - if yyl4047 == 0 { - if yyv4047 == nil { - yyv4047 = []ConfigMap{} - yyc4047 = true - } else if len(yyv4047) != 0 { - yyv4047 = yyv4047[:0] - yyc4047 = true + yyv4076 := *v + yyh4076, yyl4076 := z.DecSliceHelperStart() + var yyc4076 bool + if yyl4076 == 0 { + if yyv4076 == nil { + yyv4076 = []ConfigMap{} + yyc4076 = true + } else if len(yyv4076) != 0 { + yyv4076 = yyv4076[:0] + yyc4076 = true } - } else if yyl4047 > 0 { - var yyrr4047, yyrl4047 int - var yyrt4047 bool - if yyl4047 > cap(yyv4047) { + } else if yyl4076 > 0 { + var yyrr4076, yyrl4076 int + var yyrt4076 bool + if yyl4076 > cap(yyv4076) { - yyrg4047 := len(yyv4047) > 0 - yyv24047 := yyv4047 - yyrl4047, yyrt4047 = z.DecInferLen(yyl4047, z.DecBasicHandle().MaxInitLen, 200) - if yyrt4047 { - if yyrl4047 <= cap(yyv4047) { - yyv4047 = yyv4047[:yyrl4047] + yyrg4076 := len(yyv4076) > 0 + yyv24076 := yyv4076 + yyrl4076, yyrt4076 = z.DecInferLen(yyl4076, z.DecBasicHandle().MaxInitLen, 200) + if yyrt4076 { + if yyrl4076 <= cap(yyv4076) { + yyv4076 = yyv4076[:yyrl4076] } else { - yyv4047 = make([]ConfigMap, yyrl4047) + yyv4076 = make([]ConfigMap, yyrl4076) } } else { - yyv4047 = make([]ConfigMap, yyrl4047) + yyv4076 = make([]ConfigMap, yyrl4076) } - yyc4047 = true - yyrr4047 = len(yyv4047) - if yyrg4047 { - copy(yyv4047, yyv24047) + yyc4076 = true + yyrr4076 = len(yyv4076) + if yyrg4076 { + copy(yyv4076, yyv24076) } - } else if yyl4047 != len(yyv4047) { - yyv4047 = yyv4047[:yyl4047] - yyc4047 = true + } else if yyl4076 != len(yyv4076) { + yyv4076 = yyv4076[:yyl4076] + yyc4076 = true } - yyj4047 := 0 - for ; yyj4047 < yyrr4047; yyj4047++ { - yyh4047.ElemContainerState(yyj4047) + yyj4076 := 0 + for ; yyj4076 < yyrr4076; yyj4076++ { + yyh4076.ElemContainerState(yyj4076) if r.TryDecodeAsNil() { - yyv4047[yyj4047] = ConfigMap{} + yyv4076[yyj4076] = ConfigMap{} } else { - yyv4048 := &yyv4047[yyj4047] - yyv4048.CodecDecodeSelf(d) + yyv4077 := &yyv4076[yyj4076] + yyv4077.CodecDecodeSelf(d) } } - if yyrt4047 { - for ; yyj4047 < yyl4047; yyj4047++ { - yyv4047 = append(yyv4047, ConfigMap{}) - yyh4047.ElemContainerState(yyj4047) + if yyrt4076 { + for ; yyj4076 < yyl4076; yyj4076++ { + yyv4076 = append(yyv4076, ConfigMap{}) + yyh4076.ElemContainerState(yyj4076) if r.TryDecodeAsNil() { - yyv4047[yyj4047] = ConfigMap{} + yyv4076[yyj4076] = ConfigMap{} } else { - yyv4049 := &yyv4047[yyj4047] - yyv4049.CodecDecodeSelf(d) + yyv4078 := &yyv4076[yyj4076] + yyv4078.CodecDecodeSelf(d) } } } } else { - yyj4047 := 0 - for ; !r.CheckBreak(); yyj4047++ { + yyj4076 := 0 + for ; !r.CheckBreak(); yyj4076++ { - if yyj4047 >= len(yyv4047) { - yyv4047 = append(yyv4047, ConfigMap{}) // var yyz4047 ConfigMap - yyc4047 = true + if yyj4076 >= len(yyv4076) { + yyv4076 = append(yyv4076, ConfigMap{}) // var yyz4076 ConfigMap + yyc4076 = true } - yyh4047.ElemContainerState(yyj4047) - if yyj4047 < len(yyv4047) { + yyh4076.ElemContainerState(yyj4076) + if yyj4076 < len(yyv4076) { if r.TryDecodeAsNil() { - yyv4047[yyj4047] = ConfigMap{} + yyv4076[yyj4076] = ConfigMap{} } else { - yyv4050 := &yyv4047[yyj4047] - yyv4050.CodecDecodeSelf(d) + yyv4079 := &yyv4076[yyj4076] + yyv4079.CodecDecodeSelf(d) } } else { @@ -51986,17 +52373,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4047 < len(yyv4047) { - yyv4047 = yyv4047[:yyj4047] - yyc4047 = true - } else if yyj4047 == 0 && yyv4047 == nil { - yyv4047 = []ConfigMap{} - yyc4047 = true + if yyj4076 < len(yyv4076) { + yyv4076 = yyv4076[:yyj4076] + yyc4076 = true + } else if yyj4076 == 0 && yyv4076 == nil { + yyv4076 = []ConfigMap{} + yyc4076 = true } } - yyh4047.End() - if yyc4047 { - *v = yyv4047 + yyh4076.End() + if yyc4076 { + *v = yyv4076 } } @@ -52005,10 +52392,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4051 := range v { + for _, yyv4080 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4052 := &yyv4051 - yy4052.CodecEncodeSelf(e) + yy4081 := &yyv4080 + yy4081.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52018,83 +52405,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4053 := *v - yyh4053, yyl4053 := z.DecSliceHelperStart() - var yyc4053 bool - if yyl4053 == 0 { - if yyv4053 == nil { - yyv4053 = []ComponentCondition{} - yyc4053 = true - } else if len(yyv4053) != 0 { - yyv4053 = yyv4053[:0] - yyc4053 = true + yyv4082 := *v + yyh4082, yyl4082 := z.DecSliceHelperStart() + var yyc4082 bool + if yyl4082 == 0 { + if yyv4082 == nil { + yyv4082 = []ComponentCondition{} + yyc4082 = true + } else if len(yyv4082) != 0 { + yyv4082 = yyv4082[:0] + yyc4082 = true } - } else if yyl4053 > 0 { - var yyrr4053, yyrl4053 int - var yyrt4053 bool - if yyl4053 > cap(yyv4053) { + } else if yyl4082 > 0 { + var yyrr4082, yyrl4082 int + var yyrt4082 bool + if yyl4082 > cap(yyv4082) { - yyrg4053 := len(yyv4053) > 0 - yyv24053 := yyv4053 - yyrl4053, yyrt4053 = z.DecInferLen(yyl4053, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4053 { - if yyrl4053 <= cap(yyv4053) { - yyv4053 = yyv4053[:yyrl4053] + yyrg4082 := len(yyv4082) > 0 + yyv24082 := yyv4082 + yyrl4082, yyrt4082 = z.DecInferLen(yyl4082, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4082 { + if yyrl4082 <= cap(yyv4082) { + yyv4082 = yyv4082[:yyrl4082] } else { - yyv4053 = make([]ComponentCondition, yyrl4053) + yyv4082 = make([]ComponentCondition, yyrl4082) } } else { - yyv4053 = make([]ComponentCondition, yyrl4053) + yyv4082 = make([]ComponentCondition, yyrl4082) } - yyc4053 = true - yyrr4053 = len(yyv4053) - if yyrg4053 { - copy(yyv4053, yyv24053) + yyc4082 = true + yyrr4082 = len(yyv4082) + if yyrg4082 { + copy(yyv4082, yyv24082) } - } else if yyl4053 != len(yyv4053) { - yyv4053 = yyv4053[:yyl4053] - yyc4053 = true + } else if yyl4082 != len(yyv4082) { + yyv4082 = yyv4082[:yyl4082] + yyc4082 = true } - yyj4053 := 0 - for ; yyj4053 < yyrr4053; yyj4053++ { - yyh4053.ElemContainerState(yyj4053) + yyj4082 := 0 + for ; yyj4082 < yyrr4082; yyj4082++ { + yyh4082.ElemContainerState(yyj4082) if r.TryDecodeAsNil() { - yyv4053[yyj4053] = ComponentCondition{} + yyv4082[yyj4082] = ComponentCondition{} } else { - yyv4054 := &yyv4053[yyj4053] - yyv4054.CodecDecodeSelf(d) + yyv4083 := &yyv4082[yyj4082] + yyv4083.CodecDecodeSelf(d) } } - if yyrt4053 { - for ; yyj4053 < yyl4053; yyj4053++ { - yyv4053 = append(yyv4053, ComponentCondition{}) - yyh4053.ElemContainerState(yyj4053) + if yyrt4082 { + for ; yyj4082 < yyl4082; yyj4082++ { + yyv4082 = append(yyv4082, ComponentCondition{}) + yyh4082.ElemContainerState(yyj4082) if r.TryDecodeAsNil() { - yyv4053[yyj4053] = ComponentCondition{} + yyv4082[yyj4082] = ComponentCondition{} } else { - yyv4055 := &yyv4053[yyj4053] - yyv4055.CodecDecodeSelf(d) + yyv4084 := &yyv4082[yyj4082] + yyv4084.CodecDecodeSelf(d) } } } } else { - yyj4053 := 0 - for ; !r.CheckBreak(); yyj4053++ { + yyj4082 := 0 + for ; !r.CheckBreak(); yyj4082++ { - if yyj4053 >= len(yyv4053) { - yyv4053 = append(yyv4053, ComponentCondition{}) // var yyz4053 ComponentCondition - yyc4053 = true + if yyj4082 >= len(yyv4082) { + yyv4082 = append(yyv4082, ComponentCondition{}) // var yyz4082 ComponentCondition + yyc4082 = true } - yyh4053.ElemContainerState(yyj4053) - if yyj4053 < len(yyv4053) { + yyh4082.ElemContainerState(yyj4082) + if yyj4082 < len(yyv4082) { if r.TryDecodeAsNil() { - yyv4053[yyj4053] = ComponentCondition{} + yyv4082[yyj4082] = ComponentCondition{} } else { - yyv4056 := &yyv4053[yyj4053] - yyv4056.CodecDecodeSelf(d) + yyv4085 := &yyv4082[yyj4082] + yyv4085.CodecDecodeSelf(d) } } else { @@ -52102,17 +52489,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4053 < len(yyv4053) { - yyv4053 = yyv4053[:yyj4053] - yyc4053 = true - } else if yyj4053 == 0 && yyv4053 == nil { - yyv4053 = []ComponentCondition{} - yyc4053 = true + if yyj4082 < len(yyv4082) { + yyv4082 = yyv4082[:yyj4082] + yyc4082 = true + } else if yyj4082 == 0 && yyv4082 == nil { + yyv4082 = []ComponentCondition{} + yyc4082 = true } } - yyh4053.End() - if yyc4053 { - *v = yyv4053 + yyh4082.End() + if yyc4082 { + *v = yyv4082 } } @@ -52121,10 +52508,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4057 := range v { + for _, yyv4086 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4058 := &yyv4057 - yy4058.CodecEncodeSelf(e) + yy4087 := &yyv4086 + yy4087.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52134,83 +52521,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4059 := *v - yyh4059, yyl4059 := z.DecSliceHelperStart() - var yyc4059 bool - if yyl4059 == 0 { - if yyv4059 == nil { - yyv4059 = []ComponentStatus{} - yyc4059 = true - } else if len(yyv4059) != 0 { - yyv4059 = yyv4059[:0] - yyc4059 = true + yyv4088 := *v + yyh4088, yyl4088 := z.DecSliceHelperStart() + var yyc4088 bool + if yyl4088 == 0 { + if yyv4088 == nil { + yyv4088 = []ComponentStatus{} + yyc4088 = true + } else if len(yyv4088) != 0 { + yyv4088 = yyv4088[:0] + yyc4088 = true } - } else if yyl4059 > 0 { - var yyrr4059, yyrl4059 int - var yyrt4059 bool - if yyl4059 > cap(yyv4059) { + } else if yyl4088 > 0 { + var yyrr4088, yyrl4088 int + var yyrt4088 bool + if yyl4088 > cap(yyv4088) { - yyrg4059 := len(yyv4059) > 0 - yyv24059 := yyv4059 - yyrl4059, yyrt4059 = z.DecInferLen(yyl4059, z.DecBasicHandle().MaxInitLen, 216) - if yyrt4059 { - if yyrl4059 <= cap(yyv4059) { - yyv4059 = yyv4059[:yyrl4059] + yyrg4088 := len(yyv4088) > 0 + yyv24088 := yyv4088 + yyrl4088, yyrt4088 = z.DecInferLen(yyl4088, z.DecBasicHandle().MaxInitLen, 216) + if yyrt4088 { + if yyrl4088 <= cap(yyv4088) { + yyv4088 = yyv4088[:yyrl4088] } else { - yyv4059 = make([]ComponentStatus, yyrl4059) + yyv4088 = make([]ComponentStatus, yyrl4088) } } else { - yyv4059 = make([]ComponentStatus, yyrl4059) + yyv4088 = make([]ComponentStatus, yyrl4088) } - yyc4059 = true - yyrr4059 = len(yyv4059) - if yyrg4059 { - copy(yyv4059, yyv24059) + yyc4088 = true + yyrr4088 = len(yyv4088) + if yyrg4088 { + copy(yyv4088, yyv24088) } - } else if yyl4059 != len(yyv4059) { - yyv4059 = yyv4059[:yyl4059] - yyc4059 = true + } else if yyl4088 != len(yyv4088) { + yyv4088 = yyv4088[:yyl4088] + yyc4088 = true } - yyj4059 := 0 - for ; yyj4059 < yyrr4059; yyj4059++ { - yyh4059.ElemContainerState(yyj4059) + yyj4088 := 0 + for ; yyj4088 < yyrr4088; yyj4088++ { + yyh4088.ElemContainerState(yyj4088) if r.TryDecodeAsNil() { - yyv4059[yyj4059] = ComponentStatus{} + yyv4088[yyj4088] = ComponentStatus{} } else { - yyv4060 := &yyv4059[yyj4059] - yyv4060.CodecDecodeSelf(d) + yyv4089 := &yyv4088[yyj4088] + yyv4089.CodecDecodeSelf(d) } } - if yyrt4059 { - for ; yyj4059 < yyl4059; yyj4059++ { - yyv4059 = append(yyv4059, ComponentStatus{}) - yyh4059.ElemContainerState(yyj4059) + if yyrt4088 { + for ; yyj4088 < yyl4088; yyj4088++ { + yyv4088 = append(yyv4088, ComponentStatus{}) + yyh4088.ElemContainerState(yyj4088) if r.TryDecodeAsNil() { - yyv4059[yyj4059] = ComponentStatus{} + yyv4088[yyj4088] = ComponentStatus{} } else { - yyv4061 := &yyv4059[yyj4059] - yyv4061.CodecDecodeSelf(d) + yyv4090 := &yyv4088[yyj4088] + yyv4090.CodecDecodeSelf(d) } } } } else { - yyj4059 := 0 - for ; !r.CheckBreak(); yyj4059++ { + yyj4088 := 0 + for ; !r.CheckBreak(); yyj4088++ { - if yyj4059 >= len(yyv4059) { - yyv4059 = append(yyv4059, ComponentStatus{}) // var yyz4059 ComponentStatus - yyc4059 = true + if yyj4088 >= len(yyv4088) { + yyv4088 = append(yyv4088, ComponentStatus{}) // var yyz4088 ComponentStatus + yyc4088 = true } - yyh4059.ElemContainerState(yyj4059) - if yyj4059 < len(yyv4059) { + yyh4088.ElemContainerState(yyj4088) + if yyj4088 < len(yyv4088) { if r.TryDecodeAsNil() { - yyv4059[yyj4059] = ComponentStatus{} + yyv4088[yyj4088] = ComponentStatus{} } else { - yyv4062 := &yyv4059[yyj4059] - yyv4062.CodecDecodeSelf(d) + yyv4091 := &yyv4088[yyj4088] + yyv4091.CodecDecodeSelf(d) } } else { @@ -52218,17 +52605,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4059 < len(yyv4059) { - yyv4059 = yyv4059[:yyj4059] - yyc4059 = true - } else if yyj4059 == 0 && yyv4059 == nil { - yyv4059 = []ComponentStatus{} - yyc4059 = true + if yyj4088 < len(yyv4088) { + yyv4088 = yyv4088[:yyj4088] + yyc4088 = true + } else if yyj4088 == 0 && yyv4088 == nil { + yyv4088 = []ComponentStatus{} + yyc4088 = true } } - yyh4059.End() - if yyc4059 { - *v = yyv4059 + yyh4088.End() + if yyc4088 { + *v = yyv4088 } } @@ -52237,10 +52624,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4063 := range v { + for _, yyv4092 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4064 := &yyv4063 - yy4064.CodecEncodeSelf(e) + yy4093 := &yyv4092 + yy4093.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52250,83 +52637,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4065 := *v - yyh4065, yyl4065 := z.DecSliceHelperStart() - var yyc4065 bool - if yyl4065 == 0 { - if yyv4065 == nil { - yyv4065 = []DownwardAPIVolumeFile{} - yyc4065 = true - } else if len(yyv4065) != 0 { - yyv4065 = yyv4065[:0] - yyc4065 = true + yyv4094 := *v + yyh4094, yyl4094 := z.DecSliceHelperStart() + var yyc4094 bool + if yyl4094 == 0 { + if yyv4094 == nil { + yyv4094 = []DownwardAPIVolumeFile{} + yyc4094 = true + } else if len(yyv4094) != 0 { + yyv4094 = yyv4094[:0] + yyc4094 = true } - } else if yyl4065 > 0 { - var yyrr4065, yyrl4065 int - var yyrt4065 bool - if yyl4065 > cap(yyv4065) { + } else if yyl4094 > 0 { + var yyrr4094, yyrl4094 int + var yyrt4094 bool + if yyl4094 > cap(yyv4094) { - yyrg4065 := len(yyv4065) > 0 - yyv24065 := yyv4065 - yyrl4065, yyrt4065 = z.DecInferLen(yyl4065, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4065 { - if yyrl4065 <= cap(yyv4065) { - yyv4065 = yyv4065[:yyrl4065] + yyrg4094 := len(yyv4094) > 0 + yyv24094 := yyv4094 + yyrl4094, yyrt4094 = z.DecInferLen(yyl4094, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4094 { + if yyrl4094 <= cap(yyv4094) { + yyv4094 = yyv4094[:yyrl4094] } else { - yyv4065 = make([]DownwardAPIVolumeFile, yyrl4065) + yyv4094 = make([]DownwardAPIVolumeFile, yyrl4094) } } else { - yyv4065 = make([]DownwardAPIVolumeFile, yyrl4065) + yyv4094 = make([]DownwardAPIVolumeFile, yyrl4094) } - yyc4065 = true - yyrr4065 = len(yyv4065) - if yyrg4065 { - copy(yyv4065, yyv24065) + yyc4094 = true + yyrr4094 = len(yyv4094) + if yyrg4094 { + copy(yyv4094, yyv24094) } - } else if yyl4065 != len(yyv4065) { - yyv4065 = yyv4065[:yyl4065] - yyc4065 = true + } else if yyl4094 != len(yyv4094) { + yyv4094 = yyv4094[:yyl4094] + yyc4094 = true } - yyj4065 := 0 - for ; yyj4065 < yyrr4065; yyj4065++ { - yyh4065.ElemContainerState(yyj4065) + yyj4094 := 0 + for ; yyj4094 < yyrr4094; yyj4094++ { + yyh4094.ElemContainerState(yyj4094) if r.TryDecodeAsNil() { - yyv4065[yyj4065] = DownwardAPIVolumeFile{} + yyv4094[yyj4094] = DownwardAPIVolumeFile{} } else { - yyv4066 := &yyv4065[yyj4065] - yyv4066.CodecDecodeSelf(d) + yyv4095 := &yyv4094[yyj4094] + yyv4095.CodecDecodeSelf(d) } } - if yyrt4065 { - for ; yyj4065 < yyl4065; yyj4065++ { - yyv4065 = append(yyv4065, DownwardAPIVolumeFile{}) - yyh4065.ElemContainerState(yyj4065) + if yyrt4094 { + for ; yyj4094 < yyl4094; yyj4094++ { + yyv4094 = append(yyv4094, DownwardAPIVolumeFile{}) + yyh4094.ElemContainerState(yyj4094) if r.TryDecodeAsNil() { - yyv4065[yyj4065] = DownwardAPIVolumeFile{} + yyv4094[yyj4094] = DownwardAPIVolumeFile{} } else { - yyv4067 := &yyv4065[yyj4065] - yyv4067.CodecDecodeSelf(d) + yyv4096 := &yyv4094[yyj4094] + yyv4096.CodecDecodeSelf(d) } } } } else { - yyj4065 := 0 - for ; !r.CheckBreak(); yyj4065++ { + yyj4094 := 0 + for ; !r.CheckBreak(); yyj4094++ { - if yyj4065 >= len(yyv4065) { - yyv4065 = append(yyv4065, DownwardAPIVolumeFile{}) // var yyz4065 DownwardAPIVolumeFile - yyc4065 = true + if yyj4094 >= len(yyv4094) { + yyv4094 = append(yyv4094, DownwardAPIVolumeFile{}) // var yyz4094 DownwardAPIVolumeFile + yyc4094 = true } - yyh4065.ElemContainerState(yyj4065) - if yyj4065 < len(yyv4065) { + yyh4094.ElemContainerState(yyj4094) + if yyj4094 < len(yyv4094) { if r.TryDecodeAsNil() { - yyv4065[yyj4065] = DownwardAPIVolumeFile{} + yyv4094[yyj4094] = DownwardAPIVolumeFile{} } else { - yyv4068 := &yyv4065[yyj4065] - yyv4068.CodecDecodeSelf(d) + yyv4097 := &yyv4094[yyj4094] + yyv4097.CodecDecodeSelf(d) } } else { @@ -52334,16 +52721,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4065 < len(yyv4065) { - yyv4065 = yyv4065[:yyj4065] - yyc4065 = true - } else if yyj4065 == 0 && yyv4065 == nil { - yyv4065 = []DownwardAPIVolumeFile{} - yyc4065 = true + if yyj4094 < len(yyv4094) { + yyv4094 = yyv4094[:yyj4094] + yyc4094 = true + } else if yyj4094 == 0 && yyv4094 == nil { + yyv4094 = []DownwardAPIVolumeFile{} + yyc4094 = true } } - yyh4065.End() - if yyc4065 { - *v = yyv4065 + yyh4094.End() + if yyc4094 { + *v = yyv4094 } } diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index cd2ae253dc..cf3b45f469 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -877,6 +877,14 @@ type SecretKeySelector struct { Key string `json:"key"` } +// HTTPHeader describes a custom header to be used in HTTP probes +type HTTPHeader struct { + // The header field name + Name string `json:"name"` + // The header field value + Value string `json:"value"` +} + // HTTPGetAction describes an action based on HTTP Get requests. type HTTPGetAction struct { // Path to access on the HTTP server. @@ -885,11 +893,14 @@ type HTTPGetAction struct { // Number must be in the range 1 to 65535. // Name must be an IANA_SVC_NAME. Port intstr.IntOrString `json:"port"` - // Host name to connect to, defaults to the pod IP. + // Host name to connect to, defaults to the pod IP. You probably want to set + // "Host" in httpHeaders instead. Host string `json:"host,omitempty"` // Scheme to use for connecting to the host. // Defaults to HTTP. Scheme URIScheme `json:"scheme,omitempty"` + // Custom headers to set in the request. HTTP allows repeated headers. + HTTPHeaders []HTTPHeader `json:"httpHeaders,omitempty"` } // URIScheme identifies the scheme used for connection to a host for Get actions diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index 94d36038a2..17efbb0be6 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -509,17 +509,28 @@ func (GlusterfsVolumeSource) SwaggerDoc() map[string]string { } var map_HTTPGetAction = map[string]string{ - "": "HTTPGetAction describes an action based on HTTP Get requests.", - "path": "Path to access on the HTTP server.", - "port": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.", - "host": "Host name to connect to, defaults to the pod IP.", - "scheme": "Scheme to use for connecting to the host. Defaults to HTTP.", + "": "HTTPGetAction describes an action based on HTTP Get requests.", + "path": "Path to access on the HTTP server.", + "port": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.", + "host": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", + "scheme": "Scheme to use for connecting to the host. Defaults to HTTP.", + "httpHeaders": "Custom headers to set in the request. HTTP allows repeated headers.", } func (HTTPGetAction) SwaggerDoc() map[string]string { return map_HTTPGetAction } +var map_HTTPHeader = map[string]string{ + "": "HTTPHeader describes a custom header to be used in HTTP probes", + "name": "The header field name", + "value": "The header field value", +} + +func (HTTPHeader) SwaggerDoc() map[string]string { + return map_HTTPHeader +} + var map_Handler = map[string]string{ "": "Handler defines a specific action that should be taken", "exec": "One and only one of the following should be specified. Exec specifies the action to take.", diff --git a/pkg/api/validation/validation.go b/pkg/api/validation/validation.go index 657f1aae5f..3bd87102e7 100644 --- a/pkg/api/validation/validation.go +++ b/pkg/api/validation/validation.go @@ -1128,6 +1128,11 @@ func validateHTTPGetAction(http *api.HTTPGetAction, fldPath *field.Path) field.E if !supportedSchemes.Has(string(http.Scheme)) { allErrors = append(allErrors, field.Invalid(fldPath.Child("scheme"), http.Scheme, fmt.Sprintf("must be one of %v", supportedSchemes.List()))) } + for _, header := range http.HTTPHeaders { + if !validation.IsHTTPHeaderName(header.Name) { + allErrors = append(allErrors, field.Invalid(fldPath.Child("httpHeaders"), header.Name, fmt.Sprintf("name must match %s", validation.HTTPHeaderNameFmt))) + } + } return allErrors } diff --git a/pkg/api/validation/validation_test.go b/pkg/api/validation/validation_test.go index 62f1c0ac18..579e333476 100644 --- a/pkg/api/validation/validation_test.go +++ b/pkg/api/validation/validation_test.go @@ -1082,6 +1082,8 @@ func TestValidateHandler(t *testing.T) { {HTTPGet: &api.HTTPGetAction{Path: "/", Port: intstr.FromInt(1), Host: "", Scheme: "HTTP"}}, {HTTPGet: &api.HTTPGetAction{Path: "/foo", Port: intstr.FromInt(65535), Host: "host", Scheme: "HTTP"}}, {HTTPGet: &api.HTTPGetAction{Path: "/", Port: intstr.FromString("port"), Host: "", Scheme: "HTTP"}}, + {HTTPGet: &api.HTTPGetAction{Path: "/", Port: intstr.FromString("port"), Host: "", Scheme: "HTTP", HTTPHeaders: []api.HTTPHeader{{"Host", "foo.example.com"}}}}, + {HTTPGet: &api.HTTPGetAction{Path: "/", Port: intstr.FromString("port"), Host: "", Scheme: "HTTP", HTTPHeaders: []api.HTTPHeader{{"X-Forwarded-For", "1.2.3.4"}, {"X-Forwarded-For", "5.6.7.8"}}}}, } for _, h := range successCases { if errs := validateHandler(&h, field.NewPath("field")); len(errs) != 0 { @@ -1095,6 +1097,8 @@ func TestValidateHandler(t *testing.T) { {HTTPGet: &api.HTTPGetAction{Path: "", Port: intstr.FromInt(0), Host: ""}}, {HTTPGet: &api.HTTPGetAction{Path: "/foo", Port: intstr.FromInt(65536), Host: "host"}}, {HTTPGet: &api.HTTPGetAction{Path: "", Port: intstr.FromString(""), Host: ""}}, + {HTTPGet: &api.HTTPGetAction{Path: "/", Port: intstr.FromString("port"), Host: "", Scheme: "HTTP", HTTPHeaders: []api.HTTPHeader{{"Host:", "foo.example.com"}}}}, + {HTTPGet: &api.HTTPGetAction{Path: "/", Port: intstr.FromString("port"), Host: "", Scheme: "HTTP", HTTPHeaders: []api.HTTPHeader{{"X_Forwarded_For", "foo.example.com"}}}}, } for _, h := range errorCases { if errs := validateHandler(&h, field.NewPath("field")); len(errs) == 0 { diff --git a/pkg/apis/extensions/v1beta1/conversion_generated.go b/pkg/apis/extensions/v1beta1/conversion_generated.go index 0f52858e0f..334df9b660 100644 --- a/pkg/apis/extensions/v1beta1/conversion_generated.go +++ b/pkg/apis/extensions/v1beta1/conversion_generated.go @@ -502,6 +502,16 @@ func autoConvert_api_HTTPGetAction_To_v1_HTTPGetAction(in *api.HTTPGetAction, ou } out.Host = in.Host out.Scheme = v1.URIScheme(in.Scheme) + if in.HTTPHeaders != nil { + out.HTTPHeaders = make([]v1.HTTPHeader, len(in.HTTPHeaders)) + for i := range in.HTTPHeaders { + if err := Convert_api_HTTPHeader_To_v1_HTTPHeader(&in.HTTPHeaders[i], &out.HTTPHeaders[i], s); err != nil { + return err + } + } + } else { + out.HTTPHeaders = nil + } return nil } @@ -509,6 +519,19 @@ func Convert_api_HTTPGetAction_To_v1_HTTPGetAction(in *api.HTTPGetAction, out *v return autoConvert_api_HTTPGetAction_To_v1_HTTPGetAction(in, out, s) } +func autoConvert_api_HTTPHeader_To_v1_HTTPHeader(in *api.HTTPHeader, out *v1.HTTPHeader, s conversion.Scope) error { + if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { + defaulting.(func(*api.HTTPHeader))(in) + } + out.Name = in.Name + out.Value = in.Value + return nil +} + +func Convert_api_HTTPHeader_To_v1_HTTPHeader(in *api.HTTPHeader, out *v1.HTTPHeader, s conversion.Scope) error { + return autoConvert_api_HTTPHeader_To_v1_HTTPHeader(in, out, s) +} + func autoConvert_api_Handler_To_v1_Handler(in *api.Handler, out *v1.Handler, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*api.Handler))(in) @@ -1764,6 +1787,16 @@ func autoConvert_v1_HTTPGetAction_To_api_HTTPGetAction(in *v1.HTTPGetAction, out } out.Host = in.Host out.Scheme = api.URIScheme(in.Scheme) + if in.HTTPHeaders != nil { + out.HTTPHeaders = make([]api.HTTPHeader, len(in.HTTPHeaders)) + for i := range in.HTTPHeaders { + if err := Convert_v1_HTTPHeader_To_api_HTTPHeader(&in.HTTPHeaders[i], &out.HTTPHeaders[i], s); err != nil { + return err + } + } + } else { + out.HTTPHeaders = nil + } return nil } @@ -1771,6 +1804,19 @@ func Convert_v1_HTTPGetAction_To_api_HTTPGetAction(in *v1.HTTPGetAction, out *ap return autoConvert_v1_HTTPGetAction_To_api_HTTPGetAction(in, out, s) } +func autoConvert_v1_HTTPHeader_To_api_HTTPHeader(in *v1.HTTPHeader, out *api.HTTPHeader, s conversion.Scope) error { + if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { + defaulting.(func(*v1.HTTPHeader))(in) + } + out.Name = in.Name + out.Value = in.Value + return nil +} + +func Convert_v1_HTTPHeader_To_api_HTTPHeader(in *v1.HTTPHeader, out *api.HTTPHeader, s conversion.Scope) error { + return autoConvert_v1_HTTPHeader_To_api_HTTPHeader(in, out, s) +} + func autoConvert_v1_Handler_To_api_Handler(in *v1.Handler, out *api.Handler, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*v1.Handler))(in) @@ -5132,6 +5178,7 @@ func init() { autoConvert_api_GitRepoVolumeSource_To_v1_GitRepoVolumeSource, autoConvert_api_GlusterfsVolumeSource_To_v1_GlusterfsVolumeSource, autoConvert_api_HTTPGetAction_To_v1_HTTPGetAction, + autoConvert_api_HTTPHeader_To_v1_HTTPHeader, autoConvert_api_Handler_To_v1_Handler, autoConvert_api_HostPathVolumeSource_To_v1_HostPathVolumeSource, autoConvert_api_ISCSIVolumeSource_To_v1_ISCSIVolumeSource, @@ -5237,6 +5284,7 @@ func init() { autoConvert_v1_GitRepoVolumeSource_To_api_GitRepoVolumeSource, autoConvert_v1_GlusterfsVolumeSource_To_api_GlusterfsVolumeSource, autoConvert_v1_HTTPGetAction_To_api_HTTPGetAction, + autoConvert_v1_HTTPHeader_To_api_HTTPHeader, autoConvert_v1_Handler_To_api_Handler, autoConvert_v1_HostPathVolumeSource_To_api_HostPathVolumeSource, autoConvert_v1_ISCSIVolumeSource_To_api_ISCSIVolumeSource, diff --git a/pkg/apis/extensions/v1beta1/deep_copy_generated.go b/pkg/apis/extensions/v1beta1/deep_copy_generated.go index dec44be59e..a6dd935727 100644 --- a/pkg/apis/extensions/v1beta1/deep_copy_generated.go +++ b/pkg/apis/extensions/v1beta1/deep_copy_generated.go @@ -392,6 +392,22 @@ func deepCopy_v1_HTTPGetAction(in v1.HTTPGetAction, out *v1.HTTPGetAction, c *co } out.Host = in.Host out.Scheme = in.Scheme + if in.HTTPHeaders != nil { + out.HTTPHeaders = make([]v1.HTTPHeader, len(in.HTTPHeaders)) + for i := range in.HTTPHeaders { + if err := deepCopy_v1_HTTPHeader(in.HTTPHeaders[i], &out.HTTPHeaders[i], c); err != nil { + return err + } + } + } else { + out.HTTPHeaders = nil + } + return nil +} + +func deepCopy_v1_HTTPHeader(in v1.HTTPHeader, out *v1.HTTPHeader, c *conversion.Cloner) error { + out.Name = in.Name + out.Value = in.Value return nil } @@ -1967,6 +1983,7 @@ func init() { deepCopy_v1_GitRepoVolumeSource, deepCopy_v1_GlusterfsVolumeSource, deepCopy_v1_HTTPGetAction, + deepCopy_v1_HTTPHeader, deepCopy_v1_Handler, deepCopy_v1_HostPathVolumeSource, deepCopy_v1_ISCSIVolumeSource, diff --git a/pkg/apiserver/validator.go b/pkg/apiserver/validator.go index 6474d37a0d..5e1870ac87 100644 --- a/pkg/apiserver/validator.go +++ b/pkg/apiserver/validator.go @@ -59,7 +59,7 @@ func (server *Server) DoServerCheck(prober httpprober.HTTPProber) (probe.Result, } url := utilnet.FormatURL(scheme, server.Addr, server.Port, server.Path) - result, data, err := prober.Probe(url, probeTimeOut) + result, data, err := prober.Probe(url, nil, probeTimeOut) if err != nil { return probe.Unknown, "", err diff --git a/pkg/apiserver/validator_test.go b/pkg/apiserver/validator_test.go index f6cca87bfe..f02c16300c 100644 --- a/pkg/apiserver/validator_test.go +++ b/pkg/apiserver/validator_test.go @@ -22,6 +22,7 @@ import ( "testing" "k8s.io/kubernetes/pkg/probe" + "net/http" "net/url" "time" ) @@ -32,7 +33,7 @@ type fakeHttpProber struct { err error } -func (f *fakeHttpProber) Probe(*url.URL, time.Duration) (probe.Result, string, error) { +func (f *fakeHttpProber) Probe(*url.URL, http.Header, time.Duration) (probe.Result, string, error) { return f.result, f.body, f.err } diff --git a/pkg/kubelet/prober/prober.go b/pkg/kubelet/prober/prober.go index 12ba3e6472..11d225aaf8 100644 --- a/pkg/kubelet/prober/prober.go +++ b/pkg/kubelet/prober/prober.go @@ -19,6 +19,7 @@ package prober import ( "fmt" "net" + "net/http" "net/url" "strconv" "strings" @@ -126,6 +127,16 @@ func (pb *prober) runProbeWithRetries(p *api.Probe, pod *api.Pod, status api.Pod return result, output, err } +// buildHeaderMap takes a list of HTTPHeader string +// pairs and returns a a populated string->[]string http.Header map. +func buildHeader(headerList []api.HTTPHeader) http.Header { + headers := make(http.Header) + for _, header := range headerList { + headers[header.Name] = append(headers[header.Name], header.Value) + } + return headers +} + func (pb *prober) runProbe(p *api.Probe, pod *api.Pod, status api.PodStatus, container api.Container, containerID kubecontainer.ContainerID) (probe.Result, string, error) { timeout := time.Duration(p.TimeoutSeconds) * time.Second if p.Exec != nil { @@ -145,7 +156,9 @@ func (pb *prober) runProbe(p *api.Probe, pod *api.Pod, status api.PodStatus, con path := p.HTTPGet.Path glog.V(4).Infof("HTTP-Probe Host: %v://%v, Port: %v, Path: %v", scheme, host, port, path) url := formatURL(scheme, host, port, path) - return pb.http.Probe(url, timeout) + headers := buildHeader(p.HTTPGet.HTTPHeaders) + glog.V(4).Infof("HTTP-Probe Headers: %v", headers) + return pb.http.Probe(url, headers, timeout) } if p.TCPSocket != nil { port, err := extractPort(p.TCPSocket.Port, container) diff --git a/pkg/kubelet/prober/prober_test.go b/pkg/kubelet/prober/prober_test.go index e2f2dd02ec..b1c2817250 100644 --- a/pkg/kubelet/prober/prober_test.go +++ b/pkg/kubelet/prober/prober_test.go @@ -19,6 +19,8 @@ package prober import ( "errors" "fmt" + "net/http" + "reflect" "testing" "k8s.io/kubernetes/pkg/api" @@ -164,6 +166,33 @@ func TestGetTCPAddrParts(t *testing.T) { } } +func TestHTTPHeaders(t *testing.T) { + testCases := []struct { + input []api.HTTPHeader + output http.Header + }{ + {[]api.HTTPHeader{}, http.Header{}}, + {[]api.HTTPHeader{ + {"X-Muffins-Or-Cupcakes", "Muffins"}, + }, http.Header{"X-Muffins-Or-Cupcakes": {"Muffins"}}}, + {[]api.HTTPHeader{ + {"X-Muffins-Or-Cupcakes", "Muffins"}, + {"X-Muffins-Or-Plumcakes", "Muffins!"}, + }, http.Header{"X-Muffins-Or-Cupcakes": {"Muffins"}, + "X-Muffins-Or-Plumcakes": {"Muffins!"}}}, + {[]api.HTTPHeader{ + {"X-Muffins-Or-Cupcakes", "Muffins"}, + {"X-Muffins-Or-Cupcakes", "Cupcakes, too"}, + }, http.Header{"X-Muffins-Or-Cupcakes": {"Muffins", "Cupcakes, too"}}}, + } + for _, test := range testCases { + headers := buildHeader(test.input) + if !reflect.DeepEqual(test.output, headers) { + t.Errorf("Expected %#v, got %#v", test.output, headers) + } + } +} + func TestProbe(t *testing.T) { prober := &prober{ refManager: kubecontainer.NewRefManager(), diff --git a/pkg/probe/http/http.go b/pkg/probe/http/http.go index 781bea917e..c5132acdb5 100644 --- a/pkg/probe/http/http.go +++ b/pkg/probe/http/http.go @@ -36,7 +36,7 @@ func New() HTTPProber { } type HTTPProber interface { - Probe(url *url.URL, timeout time.Duration) (probe.Result, string, error) + Probe(url *url.URL, headers http.Header, timeout time.Duration) (probe.Result, string, error) } type httpProber struct { @@ -44,20 +44,26 @@ type httpProber struct { } // Probe returns a ProbeRunner capable of running an http check. -func (pr httpProber) Probe(url *url.URL, timeout time.Duration) (probe.Result, string, error) { - return DoHTTPProbe(url, &http.Client{Timeout: timeout, Transport: pr.transport}) +func (pr httpProber) Probe(url *url.URL, headers http.Header, timeout time.Duration) (probe.Result, string, error) { + return DoHTTPProbe(url, headers, &http.Client{Timeout: timeout, Transport: pr.transport}) } type HTTPGetInterface interface { - Get(u string) (*http.Response, error) + Do(req *http.Request) (*http.Response, error) } // DoHTTPProbe checks if a GET request to the url succeeds. // If the HTTP response code is successful (i.e. 400 > code >= 200), it returns Success. // If the HTTP response code is unsuccessful or HTTP communication fails, it returns Failure. // This is exported because some other packages may want to do direct HTTP probes. -func DoHTTPProbe(url *url.URL, client HTTPGetInterface) (probe.Result, string, error) { - res, err := client.Get(url.String()) +func DoHTTPProbe(url *url.URL, headers http.Header, client HTTPGetInterface) (probe.Result, string, error) { + req, err := http.NewRequest("GET", url.String(), nil) + if err != nil { + // Convert errors into failures to catch timeouts. + return probe.Failure, err.Error(), nil + } + req.Header = headers + res, err := client.Do(req) if err != nil { // Convert errors into failures to catch timeouts. return probe.Failure, err.Error(), nil diff --git a/pkg/probe/http/http_test.go b/pkg/probe/http/http_test.go index 7392d99f7f..018086c50f 100644 --- a/pkg/probe/http/http_test.go +++ b/pkg/probe/http/http_test.go @@ -42,8 +42,8 @@ func containsAny(s string, substrs []string) bool { } func TestHTTPProbeChecker(t *testing.T) { - handleReq := func(s int, body string) func(w http.ResponseWriter) { - return func(w http.ResponseWriter) { + handleReq := func(s int, body string) func(w http.ResponseWriter, r *http.Request) { + return func(w http.ResponseWriter, r *http.Request) { w.WriteHeader(s) w.Write([]byte(body)) } @@ -51,8 +51,9 @@ func TestHTTPProbeChecker(t *testing.T) { prober := New() testCases := []struct { - handler func(w http.ResponseWriter) - health probe.Result + handler func(w http.ResponseWriter, r *http.Request) + reqHeaders http.Header + health probe.Result // go1.5: error message changed for timeout, need to support // both old and new accBodies []string @@ -60,18 +61,41 @@ func TestHTTPProbeChecker(t *testing.T) { // The probe will be filled in below. This is primarily testing that an HTTP GET happens. { handleReq(http.StatusOK, "ok body"), + nil, probe.Success, []string{"ok body"}, }, + { + // Echo handler that returns the contents of request headers in the body + func(w http.ResponseWriter, r *http.Request) { + w.WriteHeader(200) + output := "" + for k, arr := range r.Header { + for _, v := range arr { + output += fmt.Sprintf("%s: %s\n", k, v) + } + } + w.Write([]byte(output)) + }, + http.Header{ + "X-Muffins-Or-Cupcakes": {"muffins"}, + }, + probe.Success, + []string{ + "X-Muffins-Or-Cupcakes: muffins", + }, + }, { handleReq(FailureCode, "fail body"), + nil, probe.Failure, []string{fmt.Sprintf("HTTP probe failed with statuscode: %d", FailureCode)}, }, { - func(w http.ResponseWriter) { + func(w http.ResponseWriter, r *http.Request) { time.Sleep(3 * time.Second) }, + nil, probe.Failure, []string{ "use of closed network connection", @@ -82,7 +106,7 @@ func TestHTTPProbeChecker(t *testing.T) { for _, test := range testCases { // TODO: Close() this when fix #19254 server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - test.handler(w) + test.handler(w, r) })) u, err := url.Parse(server.URL) if err != nil { @@ -96,7 +120,7 @@ func TestHTTPProbeChecker(t *testing.T) { if err != nil { t.Errorf("Unexpected error: %v", err) } - health, output, err := prober.Probe(u, 1*time.Second) + health, output, err := prober.Probe(u, test.reqHeaders, 1*time.Second) if test.health == probe.Unknown && err == nil { t.Errorf("Expected error") } diff --git a/pkg/registry/componentstatus/rest_test.go b/pkg/registry/componentstatus/rest_test.go index c2b40dc615..e98314b108 100644 --- a/pkg/registry/componentstatus/rest_test.go +++ b/pkg/registry/componentstatus/rest_test.go @@ -26,6 +26,7 @@ import ( "k8s.io/kubernetes/pkg/apiserver" "k8s.io/kubernetes/pkg/probe" "k8s.io/kubernetes/pkg/util" + "net/http" "net/url" "time" ) @@ -36,7 +37,7 @@ type fakeHttpProber struct { err error } -func (f *fakeHttpProber) Probe(*url.URL, time.Duration) (probe.Result, string, error) { +func (f *fakeHttpProber) Probe(*url.URL, http.Header, time.Duration) (probe.Result, string, error) { return f.result, f.body, f.err } diff --git a/pkg/util/validation/validation.go b/pkg/util/validation/validation.go index c41960f12f..9607293b7f 100644 --- a/pkg/util/validation/validation.go +++ b/pkg/util/validation/validation.go @@ -167,3 +167,13 @@ var percentRegexp = regexp.MustCompile("^" + percentFmt + "$") func IsValidPercent(percent string) bool { return percentRegexp.MatchString(percent) } + +const HTTPHeaderNameFmt string = "[-A-Za-z0-9]+" + +var httpHeaderNameRegexp = regexp.MustCompile("^" + HTTPHeaderNameFmt + "$") + +// IsHTTPHeaderName checks that a string conforms to the Go HTTP library's +// definition of a valid header field name (a stricter subset than RFC7230). +func IsHTTPHeaderName(value string) bool { + return httpHeaderNameRegexp.MatchString(value) +} diff --git a/pkg/util/validation/validation_test.go b/pkg/util/validation/validation_test.go index 80399c1462..38fc63c3f7 100644 --- a/pkg/util/validation/validation_test.go +++ b/pkg/util/validation/validation_test.go @@ -308,3 +308,30 @@ func TestIsValidIP(t *testing.T) { } } } + +func TestIsHTTPHeaderName(t *testing.T) { + goodValues := []string{ + // Common ones + "Accept-Encoding", "Host", "If-Modified-Since", "X-Forwarded-For", + // Weirdo, but still conforming names + "a", "ab", "abc", "a1", "-a", "a-", "a-b", "a-1", "a--1--2--b", "--abc-123", + "A", "AB", "AbC", "A1", "-A", "A-", "A-B", "A-1", "A--1--2--B", "--123-ABC", + } + for _, val := range goodValues { + if !IsHTTPHeaderName(val) { + t.Errorf("expected true for '%s'", val) + } + } + + badValues := []string{ + "Host:", "X-Forwarded-For:", "X-@Home", + "", "_", "a_", "_a", "1_", "1_2", ".", "a.", ".a", "a.b", "1.", ".1", "1.2", + " ", "a ", " a", "a b", "1 ", " 1", "1 2", "#a#", "^", ",", ";", "=", "<", + "?", "@", "{", + } + for _, val := range badValues { + if IsHTTPHeaderName(val) { + t.Errorf("expected false for '%s'", val) + } + } +}